From 36a32018caa34d9340ad9f29c93bee938130e542 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sat, 10 Oct 2020 23:48:38 +0200 Subject: [PATCH] Started porting Phantasmal World to Kotlin. --- .env.dev | 2 - .env.prod | 2 - .env.test | 2 - .eslintrc.json | 38 - .github/workflows/deploy.yml | 45 - .github/workflows/tests.yml | 43 - .gitignore | 43 +- .prettierrc.json | 8 - .yarn/releases/yarn-berry.cjs | 55 - .yarnrc.yml | 1 - README.md | 2 + assets_generation/index.ts | 14 - assets_generation/quest_stats.ts | 388 - assets_generation/update_drops_ephinea.ts | 183 - assets_generation/update_ephinea_data.ts | 1143 -- assets_generation/update_generic_data.ts | 227 - assets_generation/walk_quests.ts | 114 - build.gradle.kts | 25 + core/build.gradle.kts | 36 + .../kotlin/world/phantasmal/core/FastCast.kt | 3 + .../kotlin/world/phantasmal/core/PwResult.kt | 73 + .../phantasmal/core/disposable/Creation.kt | 3 + .../phantasmal/core/disposable/Disposable.kt | 27 + .../core/disposable/DisposableContainer.kt | 23 + .../phantasmal/core/disposable/Disposer.kt | 80 + .../core/disposable/SimpleDisposable.kt | 8 + .../core/disposable/TrackedDisposable.kt | 39 + .../core/disposable/DisposerTests.kt | 133 + .../core/disposable/TrackedDisposableTests.kt | 51 + .../kotlin/world/phantasmal/core/FastCast.kt | 3 + deploy.ps1 | 39 - gradle.properties | 2 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 58910 bytes gradle/wrapper/gradle-wrapper.properties | 5 + gradlew | 185 + gradlew.bat | 104 + jest.config.js | 21 - lib/build.gradle.kts | 41 + .../world/phantasmal/lib/cursor/Cursor.kt | 122 + .../world/phantasmal/lib/cursor/Endianness.kt | 6 + .../world/phantasmal/lib/fileformats/Iff.kt | 60 + .../lib/fileformats/quest/EntityProp.kt | 15 +- .../lib/fileformats/quest/EntityType.kt | 13 + .../lib/fileformats/quest/Episode.kt | 7 + .../lib/fileformats/quest/NpcType.kt | 1481 ++ observable/build.gradle.kts | 30 + .../world/phantasmal/observable/Emitter.kt | 5 + .../world/phantasmal/observable/Observable.kt | 7 + .../world/phantasmal/observable/Observer.kt | 7 + .../phantasmal/observable/SimpleEmitter.kt | 20 + .../observable/value/AbstractVal.kt | 29 + .../observable/value/DelegatingVal.kt | 17 + .../observable/value/DependentVal.kt | 47 + .../phantasmal/observable/value/MutableVal.kt | 11 + .../phantasmal/observable/value/SimpleVal.kt | 12 + .../phantasmal/observable/value/StaticVal.kt | 22 + .../world/phantasmal/observable/value/Val.kt | 28 + .../observable/value/ValCreation.kt | 25 + .../observable/value/ValExtensions.kt | 13 + .../observable/value/ValObserver.kt | 9 + .../observable/value/list/FoldedVal.kt | 50 + .../observable/value/list/ListVal.kt | 17 + .../observable/value/list/ListValCreation.kt | 6 + .../observable/value/list/ListValObserver.kt | 16 + .../observable/value/list/MutableListVal.kt | 8 + .../observable/value/list/SimpleListVal.kt | 212 + .../observable/SimpleEmitterTests.kt | 14 + .../phantasmal/observable/TestObservable.kt | 52 + .../phantasmal/observable/test/TestSuite.kt | 24 + .../observable/value/DelegatingValTests.kt | 29 + .../observable/value/DependentValTests.kt | 29 + .../observable/value/SimpleValTests.kt | 27 + .../observable/value/StaticValTests.kt | 15 + .../phantasmal/observable/value/TestVal.kt | 76 + .../observable/value/ValCreationTests.kt | 49 + .../value/list/SimpleListValTests.kt | 28 + .../observable/value/list/TestListVal.kt | 30 + package.json | 76 - settings.gradle.kts | 3 + src/__mocks__/monaco-editor.js | 91 - src/__mocks__/static_files.js | 1 - src/__mocks__/webworkers.js | 6 - .../controllers/NavigationController.test.ts | 20 - .../controllers/NavigationController.ts | 38 - src/application/gui/ApplicationView.css | 5 - src/application/gui/ApplicationView.ts | 37 - src/application/gui/MainContentView.ts | 55 - src/application/gui/NavigationButton.css | 24 - src/application/gui/NavigationButton.ts | 33 - src/application/gui/NavigationView.css | 40 - src/application/gui/NavigationView.test.ts | 14 - src/application/gui/NavigationView.ts | 88 - .../__snapshots__/NavigationView.test.ts.snap | 131 - src/application/index.test.ts | 33 - src/application/index.ts | 152 - src/core/Clock.ts | 9 - src/core/DisposablePromise.test.ts | 73 - src/core/DisposablePromise.ts | 253 - src/core/HttpClient.ts | 69 - src/core/Random.ts | 18 - src/core/Result.ts | 89 - src/core/Severity.ts | 20 - src/core/controllers/Controller.ts | 18 - .../ControlFlowGraph.test.ts | 160 - .../data_flow_analysis/ControlFlowGraph.ts | 292 - .../asm/data_flow_analysis/ValueSet.test.ts | 84 - .../asm/data_flow_analysis/ValueSet.ts | 196 - .../get_map_designations.ts | 54 - .../get_register_value.test.ts | 175 - .../data_flow_analysis/get_register_value.ts | 226 - .../asm/data_flow_analysis/get_stack_value.ts | 120 - src/core/data_formats/asm/instructions.ts | 238 - src/core/data_formats/asm/opcodes.ts | 8712 ------------ .../block/AbstractWritableBlock.ts | 141 - .../data_formats/block/ArrayBufferBlock.ts | 24 - src/core/data_formats/block/Block.ts | 60 - src/core/data_formats/block/Endianness.ts | 4 - .../data_formats/block/ResizableBlock.test.ts | 27 - src/core/data_formats/block/ResizableBlock.ts | 54 - src/core/data_formats/block/WritableBlock.ts | 48 - .../block/cursor/AbstractArrayBufferCursor.ts | 212 - .../block/cursor/AbstractWritableCursor.ts | 260 - .../block/cursor/ArrayBufferCursor.ts | 49 - .../data_formats/block/cursor/BufferCursor.ts | 52 - .../data_formats/block/cursor/Cursor.test.ts | 231 - src/core/data_formats/block/cursor/Cursor.ts | 140 - .../block/cursor/ResizableBlockCursor.test.ts | 46 - .../block/cursor/ResizableBlockCursor.ts | 278 - .../block/cursor/WritableCursor.test.ts | 181 - .../block/cursor/WritableCursor.ts | 89 - .../data_formats/compression/prs/Cargo.lock | 291 - .../data_formats/compression/prs/Cargo.toml | 26 - .../data_formats/compression/prs/compress.ts | 147 - .../compression/prs/decompress.ts | 144 - .../compression/prs/index.test.ts | 192 - .../compression/prs/pkg/package.json | 4 - src/core/data_formats/compression/prs/prs.rs | 24 - .../data_formats/compression/prs/prs_wasm.ts | 48 - src/core/data_formats/encryption/prc.ts | 104 - src/core/data_formats/parsing/afs.ts | 79 - .../parsing/area_collision_geometry.test.ts | 21 - .../parsing/area_collision_geometry.ts | 79 - .../data_formats/parsing/area_geometry.ts | 93 - src/core/data_formats/parsing/iff.ts | 80 - src/core/data_formats/parsing/itempmt.test.ts | 18 - src/core/data_formats/parsing/itempmt.ts | 252 - src/core/data_formats/parsing/ninja/angle.ts | 10 - src/core/data_formats/parsing/ninja/index.ts | 211 - src/core/data_formats/parsing/ninja/motion.ts | 249 - src/core/data_formats/parsing/ninja/njcm.ts | 589 - .../data_formats/parsing/ninja/texture.ts | 101 - src/core/data_formats/parsing/ninja/xj.ts | 196 - src/core/data_formats/parsing/prc.ts | 33 - .../data_formats/parsing/quest/BinFormat.ts | 28 - .../data_formats/parsing/quest/Episode.ts | 13 - src/core/data_formats/parsing/quest/Quest.ts | 122 - .../data_formats/parsing/quest/QuestNpc.ts | 495 - .../data_formats/parsing/quest/QuestObject.ts | 168 - .../data_formats/parsing/quest/Version.ts | 20 - src/core/data_formats/parsing/quest/areas.ts | 103 - .../data_formats/parsing/quest/bin.test.ts | 45 - src/core/data_formats/parsing/quest/bin.ts | 191 - .../data_formats/parsing/quest/dat.test.ts | 77 - src/core/data_formats/parsing/quest/dat.ts | 434 - .../data_formats/parsing/quest/index.test.ts | 155 - src/core/data_formats/parsing/quest/index.ts | 298 - .../data_formats/parsing/quest/npc_types.ts | 2376 ---- .../data_formats/parsing/quest/object_code.ts | 740 - .../parsing/quest/object_types.ts | 3328 ----- .../data_formats/parsing/quest/qst.test.ts | 68 - src/core/data_formats/parsing/quest/qst.ts | 619 - .../parsing/quest/set_npc_default_data.ts | 762 - .../parsing/quest/set_object_default_data.ts | 1219 -- src/core/data_formats/parsing/rel.ts | 44 - src/core/data_formats/parsing/rlc.ts | 57 - src/core/data_formats/parsing/unitxt.ts | 40 - src/core/data_formats/vector.ts | 10 - src/core/dto/ItemTypeDto.ts | 59 - src/core/enums.test.ts | 31 - src/core/enums.ts | 23 - src/core/files.ts | 35 - src/core/gui/Button.css | 70 - src/core/gui/Button.ts | 76 - src/core/gui/CheckBox.ts | 39 - src/core/gui/ComboBox.css | 34 - src/core/gui/ComboBox.ts | 147 - src/core/gui/Control.ts | 11 - src/core/gui/Dialog.css | 55 - src/core/gui/Dialog.ts | 194 - src/core/gui/DropDown.css | 9 - src/core/gui/DropDown.ts | 102 - src/core/gui/DurationInput.css | 3 - src/core/gui/DurationInput.ts | 45 - src/core/gui/ErrorWidget.css | 10 - src/core/gui/ErrorWidget.ts | 22 - src/core/gui/FileButton.ts | 30 - src/core/gui/Input.css | 35 - src/core/gui/Input.ts | 85 - src/core/gui/Label.css | 3 - src/core/gui/Label.ts | 35 - src/core/gui/LabelledControl.ts | 62 - src/core/gui/LazyWidget.ts | 52 - src/core/gui/Menu.css | 26 - src/core/gui/Menu.ts | 200 - src/core/gui/NumberInput.css | 7 - src/core/gui/NumberInput.ts | 55 - src/core/gui/RendererWidget.ts | 37 - src/core/gui/Resizable.ts | 3 - src/core/gui/ResizableView.ts | 14 - src/core/gui/ResizableWidget.ts | 14 - src/core/gui/ResultDialog.ts | 89 - src/core/gui/Select.css | 15 - src/core/gui/Select.ts | 143 - src/core/gui/TabContainer.css | 29 - src/core/gui/TabContainer.ts | 143 - src/core/gui/Table.css | 92 - src/core/gui/Table.ts | 228 - src/core/gui/TextArea.css | 34 - src/core/gui/TextArea.ts | 58 - src/core/gui/TextInput.ts | 31 - src/core/gui/ToolBar.css | 27 - src/core/gui/ToolBar.ts | 50 - src/core/gui/View.ts | 32 - src/core/gui/Widget.ts | 199 - src/core/gui/dom.ts | 451 - src/core/gui/golden_layout_theme.css | 75 - src/core/logging.ts | 150 - src/core/math/index.ts | 34 - src/core/model/index.ts | 34 - src/core/model/items.ts | 129 - src/core/observable/Disposable.ts | 10 - src/core/observable/Disposer.test.ts | 55 - src/core/observable/Disposer.ts | 102 - src/core/observable/Emitter.ts | 5 - src/core/observable/Observable.test.ts | 118 - src/core/observable/Observable.ts | 9 - src/core/observable/SimpleEmitter.ts | 36 - src/core/observable/index.test.ts | 25 - src/core/observable/index.ts | 179 - .../property/AbstractMinimalProperty.ts | 59 - .../observable/property/AbstractProperty.ts | 14 - .../observable/property/DependentProperty.ts | 72 - .../property/FlatMappedProperty.test.ts | 26 - .../observable/property/FlatMappedProperty.ts | 67 - .../observable/property/MappedProperty.ts | 17 - src/core/observable/property/Property.test.ts | 154 - src/core/observable/property/Property.ts | 23 - .../property/SimpleProperty.test.ts | 16 - .../observable/property/SimpleProperty.ts | 45 - .../observable/property/WidgetProperty.ts | 13 - .../property/WritableProperty.test.ts | 46 - .../observable/property/WritableProperty.ts | 18 - .../property/list/AbstractListProperty.ts | 194 - .../property/list/DependentListProperty.ts | 111 - .../property/list/FlatMappedListProperty.ts | 98 - .../property/list/ListProperty.test.ts | 69 - .../observable/property/list/ListProperty.ts | 43 - .../property/list/MappedListProperty.test.ts | 31 - .../property/list/MappedListProperty.ts | 23 - .../property/list/SimpleListProperty.test.ts | 38 - .../property/list/SimpleListProperty.ts | 166 - .../property/list/WritableListProperty.ts | 19 - src/core/persistence/Persister.ts | 48 - src/core/primitive_conversion.ts | 11 - src/core/rendering/Renderer.ts | 140 - .../rendering/conversion/GeometryBuilder.ts | 186 - src/core/rendering/conversion/create_mesh.ts | 78 - src/core/rendering/conversion/index.ts | 6 - .../rendering/conversion/ninja_animation.ts | 74 - .../rendering/conversion/ninja_geometry.ts | 312 - .../rendering/conversion/ninja_textures.ts | 53 - src/core/sequential.test.ts | 17 - src/core/sequential.ts | 37 - src/core/stores/DisposableServerMap.ts | 27 - src/core/stores/GuiStore.ts | 208 - src/core/stores/ItemTypeStore.ts | 105 - src/core/stores/ServerMap.ts | 31 - src/core/stores/Store.ts | 22 - src/core/undo/Action.ts | 5 - src/core/undo/SimpleUndo.ts | 64 - src/core/undo/Undo.ts | 26 - src/core/undo/UndoManager.ts | 58 - src/core/undo/UndoStack.test.ts | 71 - src/core/undo/UndoStack.ts | 96 - src/core/util.test.ts | 37 - src/core/util.ts | 177 - src/dps_calc/stores/DpsCalcStore.ts | 189 - src/hunt_optimizer/dto/QuestDto.ts | 6 - src/hunt_optimizer/dto/drops.ts | 18 - src/hunt_optimizer/gui/HelpView.css | 4 - src/hunt_optimizer/gui/HelpView.ts | 24 - src/hunt_optimizer/gui/HuntOptimizerView.ts | 66 - .../gui/MethodsForEpisodeView.css | 4 - .../gui/MethodsForEpisodeView.ts | 164 - src/hunt_optimizer/gui/MethodsView.ts | 42 - .../gui/OptimizationResultView.css | 10 - .../gui/OptimizationResultView.ts | 208 - src/hunt_optimizer/gui/OptimizerView.css | 10 - src/hunt_optimizer/gui/OptimizerView.ts | 22 - src/hunt_optimizer/gui/WantedItemsView.css | 23 - src/hunt_optimizer/gui/WantedItemsView.ts | 115 - src/hunt_optimizer/index.ts | 45 - src/hunt_optimizer/model/HuntMethodModel.ts | 53 - src/hunt_optimizer/model/ItemDrop.ts | 24 - src/hunt_optimizer/model/SimpleQuestModel.ts | 15 - src/hunt_optimizer/model/index.ts | 48 - .../persistence/HuntMethodPersister.ts | 41 - .../persistence/HuntOptimizerPersister.ts | 57 - src/hunt_optimizer/stores/HuntMethodStore.ts | 110 - .../stores/HuntOptimizerStore.ts | 356 - src/hunt_optimizer/stores/ItemDropStore.ts | 134 - src/index.ts | 22 - src/quest_editor/QuestRunner.ts | 381 - .../actions/CreateEntityAction.ts | 27 - src/quest_editor/actions/CreateEventAction.ts | 25 - .../actions/EditEntityPropAction.ts | 28 - .../actions/EditEventDelayAction.ts | 22 - src/quest_editor/actions/EditIdAction.ts | 13 - .../actions/EditLongDescriptionAction.ts | 13 - src/quest_editor/actions/EditNameAction.ts | 13 - .../actions/EditShortDescriptionAction.ts | 13 - src/quest_editor/actions/QuestEditAction.ts | 18 - .../actions/RemoveEntityAction.ts | 28 - src/quest_editor/actions/RemoveEventAction.ts | 73 - .../actions/RotateEntityAction.ts | 39 - .../actions/TranslateEntityAction.ts | 50 - .../controllers/DebugController.test.ts | 80 - .../controllers/DebugController.ts | 115 - .../controllers/EntityInfoController.test.ts | 49 - .../controllers/EntityInfoController.ts | 187 - .../controllers/EventsController.ts | 196 - .../controllers/NpcCountsController.ts | 46 - .../QuestEditorToolBarController.test.ts | 36 - .../QuestEditorToolBarController.ts | 269 - .../controllers/QuestInfoController.test.ts | 43 - .../controllers/QuestInfoController.ts | 74 - src/quest_editor/gui/AsmEditorToolBar.ts | 35 - src/quest_editor/gui/AsmEditorView.css | 30 - src/quest_editor/gui/AsmEditorView.ts | 237 - src/quest_editor/gui/DebugView.css | 52 - src/quest_editor/gui/DebugView.ts | 167 - src/quest_editor/gui/EditorHistory.ts | 102 - src/quest_editor/gui/EntityInfoView.css | 28 - src/quest_editor/gui/EntityInfoView.test.ts | 61 - src/quest_editor/gui/EntityInfoView.ts | 187 - src/quest_editor/gui/EntityListView.css | 20 - src/quest_editor/gui/EntityListView.ts | 82 - src/quest_editor/gui/EventSubGraphView.css | 18 - src/quest_editor/gui/EventSubGraphView.ts | 207 - src/quest_editor/gui/EventView.css | 34 - src/quest_editor/gui/EventView.ts | 165 - src/quest_editor/gui/EventsView.css | 25 - src/quest_editor/gui/EventsView.ts | 147 - src/quest_editor/gui/NpcCountsView.css | 21 - src/quest_editor/gui/NpcCountsView.test.ts | 30 - src/quest_editor/gui/NpcCountsView.ts | 40 - src/quest_editor/gui/NpcListView.ts | 38 - src/quest_editor/gui/ObjectListView.ts | 43 - .../gui/QuestEditorRendererView.ts | 59 - .../gui/QuestEditorToolBarView.css | 11 - .../gui/QuestEditorToolBarView.test.ts | 36 - .../gui/QuestEditorToolBarView.ts | 177 - src/quest_editor/gui/QuestEditorView.ts | 413 - src/quest_editor/gui/QuestInfoView.css | 26 - src/quest_editor/gui/QuestInfoView.test.ts | 51 - src/quest_editor/gui/QuestInfoView.ts | 108 - src/quest_editor/gui/QuestRendererView.ts | 39 - .../gui/QuestRunnerRendererView.ts | 35 - src/quest_editor/gui/RegistersView.css | 40 - src/quest_editor/gui/RegistersView.ts | 175 - src/quest_editor/gui/UnavailableView.css | 8 - src/quest_editor/gui/UnavailableView.ts | 23 - .../__snapshots__/EntityInfoView.test.ts.snap | 609 - .../__snapshots__/NpcCountsView.test.ts.snap | 143 - .../QuestEditorToolBarView.test.ts.snap | 190 - .../__snapshots__/QuestInfoView.test.ts.snap | 218 - src/quest_editor/gui/entity_dnd.ts | 124 - src/quest_editor/index.ts | 114 - src/quest_editor/loading/AreaAssetLoader.ts | 199 - src/quest_editor/loading/EntityAssetLoader.ts | 455 - src/quest_editor/loading/LoadingCache.ts | 33 - src/quest_editor/loading/QuestLoader.ts | 40 - src/quest_editor/model/AreaModel.ts | 23 - src/quest_editor/model/AreaVariantModel.ts | 26 - .../model/QuestEntityModel.test.ts | 52 - src/quest_editor/model/QuestEntityModel.ts | 266 - .../model/QuestEntityPropModel.ts | 81 - .../model/QuestEventActionModel.ts | 74 - .../model/QuestEventDagModel.test.ts | 203 - src/quest_editor/model/QuestEventDagModel.ts | 370 - src/quest_editor/model/QuestEventModel.ts | 48 - src/quest_editor/model/QuestModel.ts | 294 - src/quest_editor/model/QuestNpcModel.ts | 75 - src/quest_editor/model/QuestObjectModel.ts | 55 - src/quest_editor/model/SectionModel.ts | 25 - src/quest_editor/model/WaveModel.ts | 29 - src/quest_editor/model/euler.ts | 15 - .../persistence/QuestEditorUiPersister.ts | 174 - .../rendering/EntityImageRenderer.ts | 92 - .../rendering/Quest3DModelManager.ts | 349 - .../rendering/QuestEditor3DModelManager.ts | 61 - .../rendering/QuestEntityControls.ts | 953 -- src/quest_editor/rendering/QuestRenderer.ts | 234 - .../rendering/QuestRunner3DModelManager.ts | 37 - .../rendering/conversion/areas.ts | 166 - .../rendering/conversion/entities.ts | 57 - src/quest_editor/rendering/pick_ground.ts | 38 - .../scripting/AssemblyAnalyser.ts | 297 - .../scripting/AssemblyLexer.test.ts | 42 - src/quest_editor/scripting/AssemblyLexer.ts | 450 - src/quest_editor/scripting/assembly.test.ts | 193 - src/quest_editor/scripting/assembly.ts | 920 -- src/quest_editor/scripting/assembly_worker.ts | 374 - .../scripting/assembly_worker_messages.ts | 84 - .../scripting/disassembly.test.ts | 191 - src/quest_editor/scripting/disassembly.ts | 222 - src/quest_editor/scripting/vm/Debugger.ts | 134 - .../scripting/vm/InstructionPointer.ts | 69 - src/quest_editor/scripting/vm/Random.ts | 17 - src/quest_editor/scripting/vm/Thread.ts | 202 - .../scripting/vm/VirtualMachine.test.ts | 228 - .../scripting/vm/VirtualMachine.ts | 1276 -- src/quest_editor/scripting/vm/io.ts | 99 - src/quest_editor/scripting/vm/utils.ts | 65 - src/quest_editor/stores/AreaStore.ts | 55 - src/quest_editor/stores/AsmEditorStore.ts | 396 - src/quest_editor/stores/LogStore.ts | 106 - src/quest_editor/stores/QuestEditorStore.ts | 168 - src/quest_editor/stores/asm_syntax.ts | 52 - src/quest_editor/stores/model_conversion.ts | 266 - .../model/CharacterClassOptionsController.ts | 38 - .../controllers/model/ModelController.ts | 31 - .../model/ModelToolBarController.ts | 129 - .../controllers/texture/TextureController.ts | 73 - src/viewer/gui/ViewerView.ts | 47 - .../gui/model/CharacterClassOptionsView.css | 23 - .../gui/model/CharacterClassOptionsView.ts | 50 - .../gui/model/CharacterClassSelectionView.css | 21 - .../gui/model/CharacterClassSelectionView.ts | 68 - src/viewer/gui/model/ModelToolBarView.ts | 104 - src/viewer/gui/model/ModelView.css | 4 - src/viewer/gui/model/ModelView.test.ts | 35 - src/viewer/gui/model/ModelView.ts | 92 - .../__snapshots__/ModelView.test.ts.snap | 3308 ----- src/viewer/gui/texture/TextureView.test.ts | 15 - src/viewer/gui/texture/TextureView.ts | 59 - .../__snapshots__/TextureView.test.ts.snap | 43 - src/viewer/index.ts | 72 - .../loading/CharacterClassAssetLoader.ts | 365 - .../model/CharacterClassAnimationModel.ts | 3 - src/viewer/model/CharacterClassModel.ts | 118 - src/viewer/rendering/ModelRenderer.ts | 272 - src/viewer/rendering/TextureRenderer.ts | 118 - src/viewer/stores/ModelStore.ts | 275 - src/viewer/util/texture_parsing.ts | 58 - test/resources/ItemPMT.bin | Bin 86880 -> 0 bytes test/resources/lost_heat_sword_gc.qst | Bin 17936 -> 0 bytes test/resources/map_forest01c.rel | Bin 72096 -> 0 bytes test/resources/quest118_e.bin | Bin 17511 -> 0 bytes test/resources/quest118_e.dat | Bin 12297 -> 0 bytes test/resources/quest118_e.qst | Bin 32912 -> 0 bytes test/resources/quest27_e.bin | Bin 81173 -> 0 bytes test/resources/quest27_e.qst | Bin 111056 -> 0 bytes test/src/core/FileSystemHttpClient.ts | 21 - test/src/core/StubClock.ts | 9 - test/src/core/rendering/StubRenderer.ts | 11 - .../src/quest_editor/stores/store_creation.ts | 21 - test/src/setup.js | 8 - test/src/utils.ts | 88 - tsconfig-scripts.json | 18 - tsconfig.json | 20 - typedefs/javascript-lp-solver.d.ts | 1 - typedefs/prs-rs/index.d.ts | 16 - typedefs/shaders.d.ts | 9 - typedefs/webworkers.d.ts | 7 - version.txt | 1 - web/build.gradle.kts | 28 + .../resources/asm/opcodes.schema.json | 0 .../resources/asm/opcodes.yml | 0 .../ephinea/client/data/unitxt_j.prs | Bin .../ephinea/ship-config/param/ItemPMT.bin | Bin .../ephinea/ship-config/param/ItemPT.gsl | Bin .../guild/event/Christmas Fiasco.qst | Bin .../quest/episode_1/guild/event/MAE Caves.qst | Bin .../episode_1/guild/event/MAE Forest.qst | Bin .../quest/episode_1/guild/event/MAE Mines.qst | Bin .../quest/episode_1/guild/event/MAE Ruins.qst | Bin .../extermination/Endless Nightmare #1.qst | Bin .../extermination/Endless Nightmare #2.qst | Bin .../extermination/Endless Nightmare #3.qst | Bin .../extermination/Endless Nightmare #4.qst | Bin .../extermination/Mop Up Operation #1.qst | Bin .../extermination/Mop Up Operation #2.qst | Bin .../extermination/Mop Up Operation #3.qst | Bin .../extermination/Mop Up Operation #4.qst | Bin .../guild/extermination/Today's Rate.qst | Bin .../guild/maximum_attack/MA4 -1A-.qst | Bin .../guild/maximum_attack/MA4 -1B-.qst | Bin .../guild/maximum_attack/MA4 -1C-.qst | Bin .../maximum_attack/Maximum Attack 1 Ver2.qst | Bin .../maximum_attack/Maximum Attack S E1.qst | Bin .../maximum_attack/Random Attack Xrd E1.qst | Bin .../guild/retrieval/Dark Research 2.0.qst | Bin .../guild/retrieval/Forsaken Friends.qst | Bin .../guild/retrieval/Fragments of a Memory.qst | Bin .../guild/retrieval/Gallon's Treachery.qst | Bin .../guild/retrieval/Lost HEAT SWORD.qst | Bin .../guild/retrieval/Lost HELL PALLASCH.qst | Bin .../guild/retrieval/Lost ICE SPINNER.qst | Bin .../guild/retrieval/Lost SOUL BLADE.qst | Bin .../guild/retrieval/Rappy's Holiday.qst | Bin .../guild/retrieval/Rescue From Ragol.qst | Bin .../episode_1/guild/solo_only/quest126_e.qst | Bin .../episode_1/guild/solo_only/quest143_e.qst | Bin .../episode_1/guild/solo_only/quest35_e.qst | Bin .../episode_1/guild/vr/Labyrinthine Trial.qst | Bin .../episode_1/guild/vr/Mine Offensive.qst | Bin .../episode_1/guild/vr/Simulator 2.0.qst | Bin .../quest/episode_1/guild/vr/Sugoruku.qst | Bin .../episode_1/guild/vr/Towards the Future.qst | Bin .../quest/episode_1/guild/vr/Tyrell's Ego.qst | Bin .../episode_1/story/government/quest401_e.qst | Bin .../episode_1/story/government/quest402_e.qst | Bin .../episode_1/story/government/quest403_e.qst | Bin .../episode_1/story/government/quest404_e.qst | Bin .../episode_1/story/government/quest405_e.qst | Bin .../episode_1/story/government/quest406_e.qst | Bin .../episode_1/story/government/quest407_e.qst | Bin .../episode_1/story/government/quest408_e.qst | Bin .../episode_1/story/government/quest409_e.qst | Bin .../episode_1/story/government/quest410_e.qst | Bin .../episode_1/story/government/quest411_e.qst | Bin .../episode_1/story/government/quest412_e.qst | Bin .../episode_1/story/government/quest413_e.qst | Bin .../episode_1/story/government/quest414_e.qst | Bin .../episode_1/story/government/quest415_e.qst | Bin .../episode_1/story/side_story/quest10_e.qst | Bin .../episode_1/story/side_story/quest11_e.qst | Bin .../episode_1/story/side_story/quest12_e.qst | Bin .../episode_1/story/side_story/quest13_e.qst | Bin .../episode_1/story/side_story/quest14_e.qst | Bin .../episode_1/story/side_story/quest15_e.qst | Bin .../episode_1/story/side_story/quest16_e.qst | Bin .../episode_1/story/side_story/quest17_e.qst | Bin .../episode_1/story/side_story/quest18_e.qst | Bin .../episode_1/story/side_story/quest19_e.qst | Bin .../episode_1/story/side_story/quest1_e.qst | Bin .../episode_1/story/side_story/quest20_e.qst | Bin .../episode_1/story/side_story/quest21_e.qst | Bin .../episode_1/story/side_story/quest22_e.qst | Bin .../episode_1/story/side_story/quest23_e.qst | Bin .../episode_1/story/side_story/quest24_e.qst | Bin .../episode_1/story/side_story/quest25_e.qst | Bin .../episode_1/story/side_story/quest26_e.qst | Bin .../episode_1/story/side_story/quest2_e.qst | Bin .../episode_1/story/side_story/quest3_e.qst | Bin .../episode_1/story/side_story/quest4_e.qst | Bin .../episode_1/story/side_story/quest5_e.qst | Bin .../episode_1/story/side_story/quest6_e.qst | Bin .../episode_1/story/side_story/quest7_e.qst | Bin .../episode_1/story/side_story/quest8_e.qst | Bin .../episode_1/story/side_story/quest9_e.qst | Bin .../guild/event/Christmas Fiasco II.qst | Bin .../quest/episode_2/guild/event/MAE CCA.qst | Bin .../episode_2/guild/event/MAE Seabed.qst | Bin .../episode_2/guild/event/MAE Spaceship.qst | Bin .../episode_2/guild/event/MAE Temple.qst | Bin .../quest/episode_2/guild/event/MAE Tower.qst | Bin .../extermination/Gal Dal Val's Darkness.qst | Bin .../extermination/Phantasmal World #1.qst | Bin .../extermination/Phantasmal World #2.qst | Bin .../extermination/Phantasmal World #3.qst | Bin .../extermination/Phantasmal World #4.qst | Bin .../episode_2/guild/halloween/quest673_e.qst | Bin .../guild/maximum_attack/MA4 -2A-.qst | Bin .../guild/maximum_attack/MA4 -2B-.qst | Bin .../guild/maximum_attack/MA4 -2C-.qst | Bin .../guild/maximum_attack/MAE GDV.qst | Bin .../episode_2/guild/maximum_attack/MAE VR.qst | Bin .../maximum_attack/Maximum Attack 2 Ver2.qst | Bin .../guild/maximum_attack/Maximum Attack S.qst | Bin .../maximum_attack/Random Attack Xrd II.qst | Bin .../guild/retrieval/Dolmolm Research.qst | Bin .../guild/retrieval/Dream Messenger.qst | Bin .../guild/retrieval/Revisiting Darkness.qst | Bin .../episode_2/guild/solo_only/quest1321_e.qst | Bin .../guild/tower/Raid on Central Tower.qst | Bin .../episode_2/guild/tower/The East Tower.qst | Bin .../guild/tower/The Military Strikes Back.qst | Bin .../episode_2/guild/tower/The West Tower.qst | Bin .../guild/vr/Reach for the Dream.qst | Bin .../guild/vr/Respective Tomorrow.qst | Bin .../episode_2/story/government/quest451_e.qst | Bin .../episode_2/story/government/quest452_e.qst | Bin .../episode_2/story/government/quest453_e.qst | Bin .../episode_2/story/government/quest454_e.qst | Bin .../episode_2/story/government/quest455_e.qst | Bin .../episode_2/story/government/quest456_e.qst | Bin .../episode_2/story/government/quest457_e.qst | Bin .../episode_2/story/government/quest458_e.qst | Bin .../episode_2/story/government/quest459_e.qst | Bin .../episode_2/story/government/quest460_e.qst | Bin .../episode_2/story/government/quest461_e.qst | Bin .../episode_2/story/government/quest462_e.qst | Bin .../episode_2/story/government/quest463_e.qst | Bin .../episode_2/story/government/quest464_e.qst | Bin .../episode_2/story/government/quest465_e.qst | Bin .../episode_2/story/government/quest466_e.qst | Bin .../episode_2/story/government/quest467_e.qst | Bin .../episode_2/story/government/quest468_e.qst | Bin .../episode_2/story/side_story/quest27_e.qst | Bin .../episode_2/story/side_story/quest486_e.qst | Bin .../guild/event/Christmas Fiasco IV.qst | Bin .../episode_4/guild/event/quest939_e.qst | Bin .../episode_4/guild/event/quest940_e.qst | Bin .../extermination/New Mop-Up Operation #1.qst | Bin .../extermination/New Mop-Up Operation #2.qst | Bin .../extermination/New Mop-Up Operation #3.qst | Bin .../extermination/New Mop-Up Operation #4.qst | Bin .../extermination/New Mop-Up Operation #5.qst | Bin .../guild/extermination/Point of Disaster.qst | Bin .../extermination/The Robots' Reckoning.qst | Bin .../guild/extermination/War of Limits 1.qst | Bin .../guild/extermination/War of Limits 2.qst | Bin .../guild/extermination/War of Limits 3.qst | Bin .../guild/extermination/War of Limits 4.qst | Bin .../guild/extermination/War of Limits 5.qst | Bin .../episode_4/guild/halloween/quest675_e.qst | Bin .../guild/maximum_attack/MA4 -4A-.qst | Bin .../guild/maximum_attack/MA4 -4B-.qst | Bin .../guild/maximum_attack/MA4 -4C-.qst | Bin .../episode_4/guild/maximum_attack/MAE 4.qst | Bin .../maximum_attack/Maximum Attack 3 Ver2.qst | Bin .../guild/maximum_attack/Maximum Attack S.qst | Bin .../episode_4/guild/vr/Beyond The Horizon.qst | Bin .../quest/episode_4/guild/vr/LOGiN.qst | Bin .../episode_4/story/government/quest701_e.qst | Bin .../episode_4/story/government/quest702_e.qst | Bin .../episode_4/story/government/quest703_e.qst | Bin .../episode_4/story/government/quest704_e.qst | Bin .../episode_4/story/government/quest705_e.qst | Bin .../episode_4/story/government/quest706_e.qst | Bin .../episode_4/story/government/quest707_e.qst | Bin .../episode_4/story/government/quest708_e.qst | Bin .../episode_4/story/side_story/quest30_e.qst | Bin .../episode_4/story/side_story/quest31_e.qst | Bin .../episode_4/story/side_story/quest32_e.qst | Bin .../episode_4/story/side_story/quest33_e.qst | Bin .../episode_4/story/side_story/quest34_e.qst | Bin .../episode_4/story/side_story/quest36_e.qst | Bin .../resources/plymotiondata.rlc | Bin .../tethealla_v0.143_quests/battle.ini | 0 .../tethealla_v0.143_quests/battle/1.qst | Bin .../tethealla_v0.143_quests/battle/2.qst | Bin .../tethealla_v0.143_quests/battle/3.qst | Bin .../tethealla_v0.143_quests/battle/4.qst | Bin .../tethealla_v0.143_quests/battle/5.qst | Bin .../tethealla_v0.143_quests/battle/6.qst | Bin .../tethealla_v0.143_quests/battle/7.qst | Bin .../tethealla_v0.143_quests/battle/8.qst | Bin .../tethealla_v0.143_quests/battle/quest.lst | 0 .../tethealla_v0.143_quests/chl/ep1/1.qst | Bin .../tethealla_v0.143_quests/chl/ep1/2.qst | Bin .../tethealla_v0.143_quests/chl/ep1/3.qst | Bin .../tethealla_v0.143_quests/chl/ep1/4.qst | Bin .../tethealla_v0.143_quests/chl/ep1/5.qst | Bin .../tethealla_v0.143_quests/chl/ep1/6.qst | Bin .../tethealla_v0.143_quests/chl/ep1/7.qst | Bin .../tethealla_v0.143_quests/chl/ep1/8.qst | Bin .../tethealla_v0.143_quests/chl/ep1/9.qst | Bin .../tethealla_v0.143_quests/chl/ep2/21.qst | Bin .../tethealla_v0.143_quests/chl/ep2/22.qst | Bin .../tethealla_v0.143_quests/chl/ep2/23.qst | Bin .../tethealla_v0.143_quests/chl/ep2/24.qst | Bin .../tethealla_v0.143_quests/chl/ep2/25.qst | Bin .../tethealla_v0.143_quests/ep1/event/ma1.qst | Bin .../ep1/event/ma4-a.qst | Bin .../ep1/event/ma4-b.qst | Bin .../ep1/event/ma4-c.qst | Bin .../ep1/event/princgift.qst | Bin .../ep1/event/quest.lst | 0 .../ep1/event/sunset base.qst | Bin .../ep1/event/whiteday.qst | Bin .../tethealla_v0.143_quests/ep1/ext/en1.qst | Bin .../tethealla_v0.143_quests/ep1/ext/en2.qst | Bin .../tethealla_v0.143_quests/ep1/ext/en3.qst | Bin .../tethealla_v0.143_quests/ep1/ext/en4.qst | Bin .../ep1/ext/mop-up1.qst | Bin .../ep1/ext/mop-up2.qst | Bin .../ep1/ext/mop-up3.qst | Bin .../ep1/ext/mop-up4.qst | Bin .../tethealla_v0.143_quests/ep1/ext/quest.lst | 0 .../ep1/ext/todays rate.qst | Bin .../ep1/recovery/fragmentofmemoryen.qst | Bin .../ep1/recovery/gallon.qst | Bin .../ep1/recovery/lost havoc vulcan.qst | Bin .../ep1/recovery/lost heat sword.qst | Bin .../ep1/recovery/lost ice spinner.qst | Bin .../ep1/recovery/lost soul blade.qst | Bin .../ep1/recovery/quest.lst | 0 .../ep1/recovery/rappy holiday.qst | Bin .../ep1/vr/labyrinthe trial.qst | Bin .../tethealla_v0.143_quests/ep1/vr/quest.lst | 0 .../tethealla_v0.143_quests/ep1/vr/ttf.qst | Bin .../tethealla_v0.143_quests/ep1gov.ini | 0 .../tethealla_v0.143_quests/ep1solo.ini | 0 .../tethealla_v0.143_quests/ep1team.ini | 0 .../ep2/event/beach laughter.qst | Bin .../ep2/event/christmas.qst | Bin .../ep2/event/dream messenger.qst | Bin .../ep2/event/festival on the beach.qst.old | Bin .../ep2/event/halloween.qst | Bin .../tethealla_v0.143_quests/ep2/event/ma2.qst | Bin .../ep2/event/ma4-a.qst | Bin .../ep2/event/ma4-b.qst | Bin .../ep2/event/ma4-c.qst | Bin .../ep2/event/quest.lst | 0 .../ep2/event/quest239.qst | Bin .../ep2/event/singing by the beach.qst | Bin .../tethealla_v0.143_quests/ep2/ext/pw1.qst | Bin .../tethealla_v0.143_quests/ep2/ext/pw2.qst | Bin .../tethealla_v0.143_quests/ep2/ext/pw3.qst | Bin .../tethealla_v0.143_quests/ep2/ext/pw4.qst | Bin .../tethealla_v0.143_quests/ep2/ext/quest.lst | 0 .../ep2/shop/gallon.qst | Bin .../ep2/shop/quest.lst | 0 .../ep2/tower/east.qst | Bin .../ep2/tower/quest.lst | 0 .../ep2/tower/west.qst | Bin .../tethealla_v0.143_quests/ep2/vr/quest.lst | 0 .../ep2/vr/reach for the dream.qst | Bin .../ep2/vr/respectivetomorrow.qst | Bin .../tethealla_v0.143_quests/ep2gov.ini | 0 .../tethealla_v0.143_quests/ep2solo.ini | 0 .../tethealla_v0.143_quests/ep2team.ini | 0 .../ep4/event/clarie's deal.qst | Bin .../ep4/event/login.qst | Bin .../ep4/event/ma4-a.qst | Bin .../ep4/event/ma4-b.qst | Bin .../ep4/event/ma4-c.qst | Bin .../ep4/event/quest.lst | 0 .../ep4/event/wildhouse.qst | Bin .../ep4/ext/newwipe1.qst | Bin .../ep4/ext/newwipe2.qst | Bin .../ep4/ext/newwipe3.qst | Bin .../ep4/ext/newwipe4.qst | Bin .../ep4/ext/newwipe5.qst | Bin .../tethealla_v0.143_quests/ep4/ext/quest.lst | 0 .../ep4/ext/waroflimit1.qst | Bin .../ep4/ext/waroflimit2.qst | Bin .../ep4/ext/waroflimit3.qst | Bin .../ep4/ext/waroflimit4.qst | Bin .../ep4/ext/waroflimit5.qst | Bin .../ep4/shop/itempresent.qst | Bin .../ep4/shop/quest.lst | 0 .../ep4/shop/quest205.qst | Bin .../tethealla_v0.143_quests/ep4/vr/max3.qst | Bin .../tethealla_v0.143_quests/ep4/vr/quest.lst | 0 .../tethealla_v0.143_quests/ep4gov.ini | 0 .../tethealla_v0.143_quests/ep4solo.ini | 0 .../tethealla_v0.143_quests/ep4team.ini | 0 .../tethealla_v0.143_quests/princ/ep1/1-1.qst | Bin .../tethealla_v0.143_quests/princ/ep1/1-2.qst | Bin .../tethealla_v0.143_quests/princ/ep1/1-3.qst | Bin .../tethealla_v0.143_quests/princ/ep1/2-1.qst | Bin .../tethealla_v0.143_quests/princ/ep1/2-2.qst | Bin .../tethealla_v0.143_quests/princ/ep1/2-3.qst | Bin .../tethealla_v0.143_quests/princ/ep1/2-4.qst | Bin .../tethealla_v0.143_quests/princ/ep1/3-1.qst | Bin .../tethealla_v0.143_quests/princ/ep1/3-2.qst | Bin .../tethealla_v0.143_quests/princ/ep1/3-3.qst | Bin .../tethealla_v0.143_quests/princ/ep1/4-1.qst | Bin .../tethealla_v0.143_quests/princ/ep1/4-2.qst | Bin .../tethealla_v0.143_quests/princ/ep1/4-3.qst | Bin .../tethealla_v0.143_quests/princ/ep1/4-4.qst | Bin .../tethealla_v0.143_quests/princ/ep1/4-5.qst | Bin .../princ/ep1/quest.lst | 0 .../princ/ep2/quest.lst | 0 .../princ/ep2/quest451.raw | Bin .../princ/ep2/quest452.raw | Bin .../princ/ep2/quest453.raw | Bin .../princ/ep2/quest454.raw | Bin .../princ/ep2/quest455.raw | Bin .../princ/ep2/quest456.raw | Bin .../princ/ep2/quest457.raw | Bin .../princ/ep2/quest458.raw | Bin .../princ/ep2/quest459.raw | Bin .../princ/ep2/quest460.raw | Bin .../princ/ep2/quest461.raw | Bin .../princ/ep2/quest462.raw | Bin .../princ/ep2/quest463.raw | Bin .../princ/ep2/quest464.raw | Bin .../princ/ep2/quest465.raw | Bin .../princ/ep2/quest466.raw | Bin .../princ/ep2/quest467.raw | Bin .../princ/ep2/quest468.raw | Bin .../tethealla_v0.143_quests/princ/ep4/9-1.qst | Bin .../tethealla_v0.143_quests/princ/ep4/9-2.qst | Bin .../tethealla_v0.143_quests/princ/ep4/9-3.qst | Bin .../tethealla_v0.143_quests/princ/ep4/9-4.qst | Bin .../tethealla_v0.143_quests/princ/ep4/9-5.qst | Bin .../tethealla_v0.143_quests/princ/ep4/9-6.qst | Bin .../tethealla_v0.143_quests/princ/ep4/9-7.qst | Bin .../tethealla_v0.143_quests/princ/ep4/9-8.qst | Bin .../tethealla_v0.143_quests/princ/ep4/pod.qst | Bin .../princ/ep4/quest.lst | 0 .../tethealla_v0.143_quests/solo/ep1/01.qst | Bin .../tethealla_v0.143_quests/solo/ep1/02.qst | Bin .../tethealla_v0.143_quests/solo/ep1/03.qst | Bin .../tethealla_v0.143_quests/solo/ep1/04.qst | Bin .../tethealla_v0.143_quests/solo/ep1/05.qst | Bin .../tethealla_v0.143_quests/solo/ep1/06.qst | Bin .../tethealla_v0.143_quests/solo/ep1/07.qst | Bin .../tethealla_v0.143_quests/solo/ep1/08.qst | Bin .../tethealla_v0.143_quests/solo/ep1/09.qst | Bin .../tethealla_v0.143_quests/solo/ep1/10.qst | Bin .../tethealla_v0.143_quests/solo/ep1/11.qst | Bin .../tethealla_v0.143_quests/solo/ep1/12.qst | Bin .../tethealla_v0.143_quests/solo/ep1/13.qst | Bin .../tethealla_v0.143_quests/solo/ep1/14.qst | Bin .../tethealla_v0.143_quests/solo/ep1/15.qst | Bin .../tethealla_v0.143_quests/solo/ep1/16.qst | Bin .../tethealla_v0.143_quests/solo/ep1/17.qst | Bin .../tethealla_v0.143_quests/solo/ep1/18.qst | Bin .../tethealla_v0.143_quests/solo/ep1/19.qst | Bin .../tethealla_v0.143_quests/solo/ep1/20.qst | Bin .../tethealla_v0.143_quests/solo/ep1/21.qst | Bin .../tethealla_v0.143_quests/solo/ep1/22.qst | Bin .../tethealla_v0.143_quests/solo/ep1/23.qst | Bin .../tethealla_v0.143_quests/solo/ep1/24.qst | Bin .../tethealla_v0.143_quests/solo/ep1/25.qst | Bin .../solo/ep1/quest.lst | 0 .../solo/ep1/side/26.qst | Bin .../solo/ep1/side/goodluck.qst | Bin .../solo/ep1/side/quest.lst | 0 .../solo/ep1/side/quest035.qst | Bin .../solo/ep1/side/quest073.qst | Bin .../tethealla_v0.143_quests/solo/ep2/01.qst | Bin .../solo/ep2/quest.lst | 0 .../solo/ep4/01-blackpaper.qst | Bin .../solo/ep4/02-pioneer spirit.qst | Bin .../solo/ep4/03-Warrior Pride.qst | Bin .../solo/ep4/04-Restless Lion.qst | Bin .../solo/ep4/blackpaper2.qst | Bin .../solo/ep4/quest.lst | 0 .../solo/ep4/wilderending.qst | Bin .../main/kotlin/world/phantasmal/web/Main.kt | 60 + .../phantasmal/web/application/Application.kt | 84 + .../controllers/MainContentController.kt | 10 + .../controllers/NavigationController.kt | 14 + .../application/widgets/ApplicationWidget.kt | 28 + .../application/widgets/MainContentWidget.kt | 22 + .../application/widgets/NavigationWidget.kt | 60 + .../web/application/widgets/PwToolButton.kt | 57 + .../controllers/PathAwareTabController.kt | 40 + .../web/core/controllers/TabController.kt | 22 + .../phantasmal/web/core/stores/UiStore.kt | 200 + .../web/core/widgets/TabContainer.kt | 89 + .../web/huntoptimizer/HuntOptimizer.kt | 14 + .../web/huntoptimizer/HuntOptimizerUrls.kt | 10 + .../controllers/HuntOptimizerController.kt | 17 + .../controllers/MethodsController.kt | 20 + .../huntoptimizer/models/HuntMethodModel.kt | 35 + .../huntoptimizer/models/SimpleQuestModel.kt | 11 + .../web/huntoptimizer/widgets/HelpWidget.kt | 34 + .../widgets/HuntOptimizerWidget.kt | 31 + .../widgets/MethodsForEpisodeWidget.kt | 16 + .../huntoptimizer/widgets/MethodsWidget.kt | 15 + .../resources/assets}/box_drops.ephinea.json | 0 .../assets}/enemy_drops.ephinea.json | 0 .../assets}/images/sectionids/Bluefull.png | Bin .../assets}/images/sectionids/Greenill.png | Bin .../assets}/images/sectionids/Oran.png | Bin .../assets}/images/sectionids/Pinkal.png | Bin .../assets}/images/sectionids/Purplenum.png | Bin .../assets}/images/sectionids/Redria.png | Bin .../assets}/images/sectionids/Skyly.png | Bin .../assets}/images/sectionids/Viridia.png | Bin .../assets}/images/sectionids/Whitill.png | Bin .../assets}/images/sectionids/Yellowboze.png | Bin .../resources/assets}/item_types.ephinea.json | 0 .../assets}/maps/map_ancient01_00c.rel | Bin .../assets}/maps/map_ancient01_00n.rel | Bin .../assets}/maps/map_ancient01_01c.rel | Bin .../assets}/maps/map_ancient01_01n.rel | Bin .../assets}/maps/map_ancient01_02c.rel | Bin .../assets}/maps/map_ancient01_02n.rel | Bin .../assets}/maps/map_ancient01_03c.rel | Bin .../assets}/maps/map_ancient01_03n.rel | Bin .../assets}/maps/map_ancient01_04c.rel | Bin .../assets}/maps/map_ancient01_04n.rel | Bin .../assets}/maps/map_ancient02_00c.rel | Bin .../assets}/maps/map_ancient02_00n.rel | Bin .../assets}/maps/map_ancient02_01c.rel | Bin .../assets}/maps/map_ancient02_01n.rel | Bin .../assets}/maps/map_ancient02_02c.rel | Bin .../assets}/maps/map_ancient02_02n.rel | Bin .../assets}/maps/map_ancient02_03c.rel | Bin .../assets}/maps/map_ancient02_03n.rel | Bin .../assets}/maps/map_ancient02_04c.rel | Bin .../assets}/maps/map_ancient02_04n.rel | Bin .../assets}/maps/map_ancient03_00c.rel | Bin .../assets}/maps/map_ancient03_00n.rel | Bin .../assets}/maps/map_ancient03_01c.rel | Bin .../assets}/maps/map_ancient03_01n.rel | Bin .../assets}/maps/map_ancient03_02c.rel | Bin .../assets}/maps/map_ancient03_02n.rel | Bin .../assets}/maps/map_ancient03_03c.rel | Bin .../assets}/maps/map_ancient03_03n.rel | Bin .../assets}/maps/map_ancient03_04c.rel | Bin .../assets}/maps/map_ancient03_04n.rel | Bin .../resources/assets}/maps/map_boss01c.rel | Bin .../resources/assets}/maps/map_boss01n.rel | Bin .../resources/assets}/maps/map_boss02c.rel | Bin .../resources/assets}/maps/map_boss02n.rel | Bin .../resources/assets}/maps/map_boss03c.rel | Bin .../resources/assets}/maps/map_boss03n.rel | Bin .../resources/assets}/maps/map_boss05c.rel | Bin .../resources/assets}/maps/map_boss05n.rel | Bin .../resources/assets}/maps/map_boss06c.rel | Bin .../resources/assets}/maps/map_boss06n.rel | Bin .../resources/assets}/maps/map_boss07c.rel | Bin .../resources/assets}/maps/map_boss07n.rel | Bin .../resources/assets}/maps/map_boss08c.rel | Bin .../resources/assets}/maps/map_boss08n.rel | Bin .../resources/assets}/maps/map_boss09_00c.rel | Bin .../resources/assets}/maps/map_boss09_00n.rel | Bin .../resources/assets}/maps/map_cave01_00c.rel | Bin .../resources/assets}/maps/map_cave01_00n.rel | Bin .../resources/assets}/maps/map_cave01_01c.rel | Bin .../resources/assets}/maps/map_cave01_01n.rel | Bin .../resources/assets}/maps/map_cave01_02c.rel | Bin .../resources/assets}/maps/map_cave01_02n.rel | Bin .../resources/assets}/maps/map_cave01_03c.rel | Bin .../resources/assets}/maps/map_cave01_03n.rel | Bin .../resources/assets}/maps/map_cave01_04c.rel | Bin .../resources/assets}/maps/map_cave01_04n.rel | Bin .../resources/assets}/maps/map_cave01_05c.rel | Bin .../resources/assets}/maps/map_cave01_05n.rel | Bin .../resources/assets}/maps/map_cave02_00c.rel | Bin .../resources/assets}/maps/map_cave02_00n.rel | Bin .../resources/assets}/maps/map_cave02_01c.rel | Bin .../resources/assets}/maps/map_cave02_01n.rel | Bin .../resources/assets}/maps/map_cave02_02c.rel | Bin .../resources/assets}/maps/map_cave02_02n.rel | Bin .../resources/assets}/maps/map_cave02_03c.rel | Bin .../resources/assets}/maps/map_cave02_03n.rel | Bin .../resources/assets}/maps/map_cave02_04c.rel | Bin .../resources/assets}/maps/map_cave02_04n.rel | Bin .../resources/assets}/maps/map_cave03_00c.rel | Bin .../resources/assets}/maps/map_cave03_00n.rel | Bin .../resources/assets}/maps/map_cave03_01c.rel | Bin .../resources/assets}/maps/map_cave03_01n.rel | Bin .../resources/assets}/maps/map_cave03_02c.rel | Bin .../resources/assets}/maps/map_cave03_02n.rel | Bin .../resources/assets}/maps/map_cave03_03c.rel | Bin .../resources/assets}/maps/map_cave03_03n.rel | Bin .../resources/assets}/maps/map_cave03_04c.rel | Bin .../resources/assets}/maps/map_cave03_04n.rel | Bin .../resources/assets}/maps/map_cave03_05c.rel | Bin .../resources/assets}/maps/map_cave03_05n.rel | Bin .../resources/assets}/maps/map_city00_00c.rel | Bin .../resources/assets}/maps/map_city00_00n.rel | Bin .../resources/assets}/maps/map_city02_00c.rel | Bin .../resources/assets}/maps/map_city02_00n.rel | Bin .../assets}/maps/map_crater01_00c.rel | Bin .../assets}/maps/map_crater01_00n.rel | Bin .../assets}/maps/map_darkfalz00c.rel | Bin .../assets}/maps/map_darkfalz00n.rel | Bin .../assets}/maps/map_desert01_00c.rel | Bin .../assets}/maps/map_desert01_00n.rel | Bin .../assets}/maps/map_desert01_01c.rel | Bin .../assets}/maps/map_desert01_01n.rel | Bin .../assets}/maps/map_desert01_02c.rel | Bin .../assets}/maps/map_desert01_02n.rel | Bin .../assets}/maps/map_desert02_00c.rel | Bin .../assets}/maps/map_desert02_00n.rel | Bin .../assets}/maps/map_desert02_01c.rel | Bin .../assets}/maps/map_desert02_01n.rel | Bin .../assets}/maps/map_desert02_02c.rel | Bin .../assets}/maps/map_desert02_02n.rel | Bin .../assets}/maps/map_desert03_00c.rel | Bin .../assets}/maps/map_desert03_00n.rel | Bin .../assets}/maps/map_desert03_01c.rel | Bin .../assets}/maps/map_desert03_01n.rel | Bin .../assets}/maps/map_desert03_02c.rel | Bin .../assets}/maps/map_desert03_02n.rel | Bin .../resources/assets}/maps/map_forest01c.rel | Bin .../resources/assets}/maps/map_forest01n.rel | Bin .../resources/assets}/maps/map_forest02c.rel | Bin .../resources/assets}/maps/map_forest02n.rel | Bin .../assets}/maps/map_jungle01_00c.rel | Bin .../assets}/maps/map_jungle01_00n.rel | Bin .../assets}/maps/map_jungle02_00c.rel | Bin .../assets}/maps/map_jungle02_00n.rel | Bin .../assets}/maps/map_jungle03_00c.rel | Bin .../assets}/maps/map_jungle03_00n.rel | Bin .../assets}/maps/map_jungle04_00c.rel | Bin .../assets}/maps/map_jungle04_00n.rel | Bin .../assets}/maps/map_jungle04_01c.rel | Bin .../assets}/maps/map_jungle04_01n.rel | Bin .../assets}/maps/map_jungle04_02c.rel | Bin .../assets}/maps/map_jungle04_02n.rel | Bin .../assets}/maps/map_jungle05_00c.rel | Bin .../assets}/maps/map_jungle05_00n.rel | Bin .../assets}/maps/map_jungle06_00c.rel | Bin .../assets}/maps/map_jungle06_00n.rel | Bin .../assets}/maps/map_jungle07_00c.rel | Bin .../assets}/maps/map_jungle07_00n.rel | Bin .../assets}/maps/map_jungle07_01c.rel | Bin .../assets}/maps/map_jungle07_01n.rel | Bin .../assets}/maps/map_jungle07_02c.rel | Bin .../assets}/maps/map_jungle07_02n.rel | Bin .../assets}/maps/map_jungle07_03c.rel | Bin .../assets}/maps/map_jungle07_03n.rel | Bin .../assets}/maps/map_jungle07_04c.rel | Bin .../assets}/maps/map_jungle07_04n.rel | Bin .../resources/assets}/maps/map_labo00_00c.rel | Bin .../resources/assets}/maps/map_labo00_00n.rel | Bin .../resources/assets}/maps/map_lobby_00c.rel | Bin .../resources/assets}/maps/map_lobby_00n.rel | Bin .../resources/assets}/maps/map_lobby_01c.rel | Bin .../resources/assets}/maps/map_lobby_01n.rel | Bin .../resources/assets}/maps/map_lobby_02c.rel | Bin .../resources/assets}/maps/map_lobby_02n.rel | Bin .../resources/assets}/maps/map_lobby_03c.rel | Bin .../resources/assets}/maps/map_lobby_03n.rel | Bin .../resources/assets}/maps/map_lobby_04c.rel | Bin .../resources/assets}/maps/map_lobby_04n.rel | Bin .../resources/assets}/maps/map_lobby_05c.rel | Bin .../resources/assets}/maps/map_lobby_05n.rel | Bin .../resources/assets}/maps/map_lobby_06c.rel | Bin .../resources/assets}/maps/map_lobby_06n.rel | Bin .../resources/assets}/maps/map_lobby_07c.rel | Bin .../resources/assets}/maps/map_lobby_07n.rel | Bin .../resources/assets}/maps/map_lobby_08c.rel | Bin .../resources/assets}/maps/map_lobby_08n.rel | Bin .../resources/assets}/maps/map_lobby_09c.rel | Bin .../resources/assets}/maps/map_lobby_09n.rel | Bin .../resources/assets}/maps/map_lobby_10c.rel | Bin .../resources/assets}/maps/map_lobby_10n.rel | Bin .../assets}/maps/map_lobby_green_be00c.rel | Bin .../assets}/maps/map_lobby_green_be00n.rel | Bin .../assets}/maps/map_lobby_red_be00c.rel | Bin .../assets}/maps/map_lobby_red_be00n.rel | Bin .../assets}/maps/map_lobby_yellow_be00c.rel | Bin .../assets}/maps/map_lobby_yellow_be00n.rel | Bin .../assets}/maps/map_machine01_00c.rel | Bin .../assets}/maps/map_machine01_00n.rel | Bin .../assets}/maps/map_machine01_01c.rel | Bin .../assets}/maps/map_machine01_01n.rel | Bin .../assets}/maps/map_machine01_02c.rel | Bin .../assets}/maps/map_machine01_02n.rel | Bin .../assets}/maps/map_machine01_03c.rel | Bin .../assets}/maps/map_machine01_03n.rel | Bin .../assets}/maps/map_machine01_04c.rel | Bin .../assets}/maps/map_machine01_04n.rel | Bin .../assets}/maps/map_machine01_05c.rel | Bin .../assets}/maps/map_machine01_05n.rel | Bin .../assets}/maps/map_machine02_00c.rel | Bin .../assets}/maps/map_machine02_00n.rel | Bin .../assets}/maps/map_machine02_01c.rel | Bin .../assets}/maps/map_machine02_01n.rel | Bin .../assets}/maps/map_machine02_02c.rel | Bin .../assets}/maps/map_machine02_02n.rel | Bin .../assets}/maps/map_machine02_03c.rel | Bin .../assets}/maps/map_machine02_03n.rel | Bin .../assets}/maps/map_machine02_04c.rel | Bin .../assets}/maps/map_machine02_04n.rel | Bin .../assets}/maps/map_machine02_05c.rel | Bin .../assets}/maps/map_machine02_05n.rel | Bin .../assets}/maps/map_ruins01_00c.rel | Bin .../assets}/maps/map_ruins01_00n.rel | Bin .../assets}/maps/map_ruins01_01c.rel | Bin .../assets}/maps/map_ruins01_01n.rel | Bin .../assets}/maps/map_ruins01_02c.rel | Bin .../assets}/maps/map_ruins01_02n.rel | Bin .../assets}/maps/map_ruins02_00c.rel | Bin .../assets}/maps/map_ruins02_00n.rel | Bin .../assets}/maps/map_ruins02_01c.rel | Bin .../assets}/maps/map_ruins02_01n.rel | Bin .../assets}/maps/map_ruins02_02c.rel | Bin .../assets}/maps/map_ruins02_02n.rel | Bin .../assets}/maps/map_seabed01_00c.rel | Bin .../assets}/maps/map_seabed01_00n.rel | Bin .../assets}/maps/map_seabed01_01c.rel | Bin .../assets}/maps/map_seabed01_01n.rel | Bin .../assets}/maps/map_seabed01_02c.rel | Bin .../assets}/maps/map_seabed01_02n.rel | Bin .../assets}/maps/map_seabed02_00c.rel | Bin .../assets}/maps/map_seabed02_00n.rel | Bin .../assets}/maps/map_seabed02_01c.rel | Bin .../assets}/maps/map_seabed02_01n.rel | Bin .../assets}/maps/map_seabed02_02c.rel | Bin .../assets}/maps/map_seabed02_02n.rel | Bin .../resources/assets}/maps/map_soccer11c.rel | Bin .../resources/assets}/maps/map_soccer11n.rel | Bin .../resources/assets}/maps/map_soccer12c.rel | Bin .../resources/assets}/maps/map_soccer12n.rel | Bin .../assets}/maps/map_space01_00c.rel | Bin .../assets}/maps/map_space01_00n.rel | Bin .../assets}/maps/map_space01_01c.rel | Bin .../assets}/maps/map_space01_01n.rel | Bin .../assets}/maps/map_space01_02c.rel | Bin .../assets}/maps/map_space01_02n.rel | Bin .../assets}/maps/map_space02_00c.rel | Bin .../assets}/maps/map_space02_00n.rel | Bin .../assets}/maps/map_space02_01c.rel | Bin .../assets}/maps/map_space02_01n.rel | Bin .../assets}/maps/map_space02_02c.rel | Bin .../assets}/maps/map_space02_02n.rel | Bin .../resources/assets}/maps/map_test01_00c.rel | Bin .../resources/assets}/maps/map_test01_00n.rel | Bin .../resources/assets}/maps/map_vs01_00c.rel | Bin .../resources/assets}/maps/map_vs01_00n.rel | Bin .../resources/assets}/maps/map_vs01_01c.rel | Bin .../resources/assets}/maps/map_vs01_01n.rel | Bin .../resources/assets}/maps/map_vs01_02c.rel | Bin .../resources/assets}/maps/map_vs01_02n.rel | Bin .../resources/assets}/maps/map_vs02_00c.rel | Bin .../resources/assets}/maps/map_vs02_00n.rel | Bin .../resources/assets}/maps/map_vs02_01c.rel | Bin .../resources/assets}/maps/map_vs02_01n.rel | Bin .../resources/assets}/maps/map_vs02_02c.rel | Bin .../resources/assets}/maps/map_vs02_02n.rel | Bin .../assets}/maps/map_wilds01_00c.rel | Bin .../assets}/maps/map_wilds01_00n.rel | Bin .../assets}/maps/map_wilds01_01c.rel | Bin .../assets}/maps/map_wilds01_01n.rel | Bin .../assets}/maps/map_wilds01_02c.rel | Bin .../assets}/maps/map_wilds01_02n.rel | Bin .../assets}/maps/map_wilds01_03c.rel | Bin .../assets}/maps/map_wilds01_03n.rel | Bin .../main/resources/assets}/npcs/AlRappy.nj | Bin .../main/resources/assets}/npcs/AlRappy.xvm | Bin .../src/main/resources/assets}/npcs/Astark.nj | Bin .../main/resources/assets}/npcs/Astark.xvm | Bin .../main/resources/assets}/npcs/BaBoota.nj | Bin .../main/resources/assets}/npcs/BaBoota.xvm | Bin .../main/resources/assets}/npcs/BarbaRay.nj | Bin .../main/resources/assets}/npcs/BarbaRay.xvm | Bin .../resources/assets}/npcs/BarbarousWolf.nj | Bin .../resources/assets}/npcs/BarbarousWolf.xvm | Bin .../resources/assets}/npcs/BlueSoldier.nj | Bin .../resources/assets}/npcs/BlueSoldier.xvm | Bin .../src/main/resources/assets}/npcs/Booma.nj | Bin .../src/main/resources/assets}/npcs/Booma.xvm | Bin .../src/main/resources/assets}/npcs/Boota.nj | Bin .../src/main/resources/assets}/npcs/Boota.xvm | Bin .../main/resources/assets}/npcs/Bulclaw.nj | Bin .../main/resources/assets}/npcs/Bulclaw.xvm | Bin .../src/main/resources/assets}/npcs/Bulk.nj | Bin .../src/main/resources/assets}/npcs/Bulk.xvm | Bin .../main/resources/assets}/npcs/Canadine.nj | Bin .../main/resources/assets}/npcs/Canadine.xvm | Bin .../src/main/resources/assets}/npcs/Canane.nj | Bin .../main/resources/assets}/npcs/Canane.xvm | Bin .../resources/assets}/npcs/ChaosBringer.nj | Bin .../resources/assets}/npcs/ChaosBringer.xvm | Bin .../resources/assets}/npcs/ChaosSorcerer.nj | Bin .../resources/assets}/npcs/ChaosSorcerer.xvm | Bin .../src/main/resources/assets}/npcs/Claw.nj | Bin .../src/main/resources/assets}/npcs/Claw.xvm | Bin .../main/resources/assets}/npcs/DarkBelra.nj | Bin .../main/resources/assets}/npcs/DarkBelra.xvm | Bin .../main/resources/assets}/npcs/DarkFalz.nj | Bin .../main/resources/assets}/npcs/DarkFalz.xvm | Bin .../main/resources/assets}/npcs/DarkGunner.nj | Bin .../resources/assets}/npcs/DarkGunner.xvm | Bin .../main/resources/assets}/npcs/DeRolLe.nj | Bin .../main/resources/assets}/npcs/DeRolLe.xvm | Bin .../main/resources/assets}/npcs/DelLily.nj | Bin .../main/resources/assets}/npcs/DelLily.xvm | Bin .../main/resources/assets}/npcs/DelRappy.nj | Bin .../main/resources/assets}/npcs/DelRappy.xvm | Bin .../main/resources/assets}/npcs/Delbiter.nj | Bin .../main/resources/assets}/npcs/Delbiter.xvm | Bin .../main/resources/assets}/npcs/Deldepth.nj | Bin .../main/resources/assets}/npcs/Deldepth.xvm | Bin .../main/resources/assets}/npcs/Delsaber.nj | Bin .../main/resources/assets}/npcs/Delsaber.xvm | Bin .../main/resources/assets}/npcs/Dimenian.nj | Bin .../main/resources/assets}/npcs/Dimenian.xvm | Bin .../main/resources/assets}/npcs/Dolmdarl.nj | Bin .../main/resources/assets}/npcs/Dolmdarl.xvm | Bin .../main/resources/assets}/npcs/Dolmolm.nj | Bin .../main/resources/assets}/npcs/Dolmolm.xvm | Bin .../main/resources/assets}/npcs/Dorphon.nj | Bin .../main/resources/assets}/npcs/Dorphon.xvm | Bin .../resources/assets}/npcs/DorphonEclair.nj | Bin .../resources/assets}/npcs/DorphonEclair.xvm | Bin .../src/main/resources/assets}/npcs/Dragon.nj | Bin .../main/resources/assets}/npcs/Dragon.xvm | Bin .../main/resources/assets}/npcs/Dubchic.nj | Bin .../main/resources/assets}/npcs/Dubchic.xvm | Bin .../main/resources/assets}/npcs/Dubswitch.xj | Bin .../main/resources/assets}/npcs/Dubswitch.xvm | Bin .../main/resources/assets}/npcs/Epsilon.nj | Bin .../main/resources/assets}/npcs/Epsilon.xvm | Bin .../main/resources/assets}/npcs/EvilShark.nj | Bin .../main/resources/assets}/npcs/EvilShark.xvm | Bin .../main/resources/assets}/npcs/FemaleFat.nj | Bin .../main/resources/assets}/npcs/FemaleFat.xvm | Bin .../resources/assets}/npcs/FemaleMacho.nj | Bin .../resources/assets}/npcs/FemaleMacho.xvm | Bin .../main/resources/assets}/npcs/FemaleTall.nj | Bin .../resources/assets}/npcs/FemaleTall.xvm | Bin .../main/resources/assets}/npcs/GalGryphon.nj | Bin .../resources/assets}/npcs/GalGryphon.xvm | Bin .../src/main/resources/assets}/npcs/Garanz.nj | Bin .../main/resources/assets}/npcs/Garanz.xvm | Bin .../src/main/resources/assets}/npcs/Gee.nj | Bin .../src/main/resources/assets}/npcs/Gee.xvm | Bin .../src/main/resources/assets}/npcs/GiGue.nj | Bin .../src/main/resources/assets}/npcs/GiGue.xvm | Bin .../main/resources/assets}/npcs/Gibbles.nj | Bin .../main/resources/assets}/npcs/Gibbles.xvm | Bin .../main/resources/assets}/npcs/Gigobooma.nj | Bin .../main/resources/assets}/npcs/Gigobooma.xvm | Bin .../main/resources/assets}/npcs/Gilchic.nj | Bin .../main/resources/assets}/npcs/Gilchic.xvm | Bin .../main/resources/assets}/npcs/Girtablulu.nj | Bin .../resources/assets}/npcs/Girtablulu.xvm | Bin .../main/resources/assets}/npcs/Gobooma.nj | Bin .../main/resources/assets}/npcs/Gobooma.xvm | Bin .../main/resources/assets}/npcs/GolDragon.nj | Bin .../main/resources/assets}/npcs/GolDragon.xvm | Bin .../src/main/resources/assets}/npcs/Goran.nj | Bin .../src/main/resources/assets}/npcs/Goran.xvm | Bin .../resources/assets}/npcs/GoranDetonator.nj | Bin .../resources/assets}/npcs/GoranDetonator.xvm | Bin .../resources/assets}/npcs/GrassAssassin.nj | Bin .../resources/assets}/npcs/GrassAssassin.xvm | Bin .../main/resources/assets}/npcs/GuilShark.nj | Bin .../main/resources/assets}/npcs/GuilShark.xvm | Bin .../main/resources/assets}/npcs/GuildLady.nj | Bin .../main/resources/assets}/npcs/GuildLady.xvm | Bin .../main/resources/assets}/npcs/Hildebear.nj | Bin .../main/resources/assets}/npcs/Hildebear.xvm | Bin .../main/resources/assets}/npcs/Hildeblue.nj | Bin .../main/resources/assets}/npcs/Hildeblue.xvm | Bin .../main/resources/assets}/npcs/IllGill.nj | Bin .../main/resources/assets}/npcs/IllGill.xvm | Bin .../src/main/resources/assets}/npcs/Irene.nj | Bin .../src/main/resources/assets}/npcs/Irene.xvm | Bin .../main/resources/assets}/npcs/ItemShop.nj | Bin .../main/resources/assets}/npcs/ItemShop.xvm | Bin .../main/resources/assets}/npcs/Kondrieu.nj | Bin .../main/resources/assets}/npcs/Kondrieu.xvm | Bin .../main/resources/assets}/npcs/LaDimenian.nj | Bin .../resources/assets}/npcs/LaDimenian.xvm | Bin .../main/resources/assets}/npcs/LoveRappy.nj | Bin .../main/resources/assets}/npcs/LoveRappy.xvm | Bin .../main/resources/assets}/npcs/MaleDwarf.nj | Bin .../main/resources/assets}/npcs/MaleDwarf.xvm | Bin .../main/resources/assets}/npcs/MaleFat.nj | Bin .../main/resources/assets}/npcs/MaleFat.xvm | Bin .../main/resources/assets}/npcs/MaleMacho.nj | Bin .../main/resources/assets}/npcs/MaleMacho.xvm | Bin .../main/resources/assets}/npcs/MaleOld.nj | Bin .../main/resources/assets}/npcs/MaleOld.xvm | Bin .../main/resources/assets}/npcs/Mericarol.nj | Bin .../main/resources/assets}/npcs/Mericarol.xvm | Bin .../main/resources/assets}/npcs/Mericus.nj | Bin .../main/resources/assets}/npcs/Mericus.xvm | Bin .../main/resources/assets}/npcs/Merikle.nj | Bin .../main/resources/assets}/npcs/Merikle.xvm | Bin .../main/resources/assets}/npcs/Merillia.nj | Bin .../main/resources/assets}/npcs/Merillia.xvm | Bin .../main/resources/assets}/npcs/Meriltas.nj | Bin .../main/resources/assets}/npcs/Meriltas.xvm | Bin .../main/resources/assets}/npcs/MerissaA.nj | Bin .../main/resources/assets}/npcs/MerissaA.xvm | Bin .../main/resources/assets}/npcs/MerissaAA.nj | Bin .../main/resources/assets}/npcs/MerissaAA.xvm | Bin .../src/main/resources/assets}/npcs/Monest.nj | Bin .../main/resources/assets}/npcs/Monest.xvm | Bin .../src/main/resources/assets}/npcs/Morfos.nj | Bin .../main/resources/assets}/npcs/Morfos.xvm | Bin .../main/resources/assets}/npcs/Mothmant.nj | Bin .../main/resources/assets}/npcs/Mothmant.xvm | Bin .../main/resources/assets}/npcs/NanoDragon.nj | Bin .../resources/assets}/npcs/NanoDragon.xvm | Bin .../main/resources/assets}/npcs/NarLily.nj | Bin .../main/resources/assets}/npcs/NarLily.xvm | Bin .../src/main/resources/assets}/npcs/Nurse.nj | Bin .../src/main/resources/assets}/npcs/Nurse.xvm | Bin .../src/main/resources/assets}/npcs/Nurse2.nj | Bin .../main/resources/assets}/npcs/Nurse2.xvm | Bin .../main/resources/assets}/npcs/OlgaFlow.nj | Bin .../main/resources/assets}/npcs/OlgaFlow.xvm | Bin .../main/resources/assets}/npcs/PalShark.nj | Bin .../main/resources/assets}/npcs/PalShark.xvm | Bin .../main/resources/assets}/npcs/PanArms.nj | Bin .../main/resources/assets}/npcs/PanArms.xvm | Bin .../src/main/resources/assets}/npcs/Pazuzu.nj | Bin .../main/resources/assets}/npcs/Pazuzu.xvm | Bin .../resources/assets}/npcs/PofuillySlime.nj | Bin .../resources/assets}/npcs/PofuillySlime.xvm | Bin .../main/resources/assets}/npcs/PoisonLily.nj | Bin .../resources/assets}/npcs/PoisonLily.xvm | Bin .../resources/assets}/npcs/PouillySlime.nj | Bin .../resources/assets}/npcs/PouillySlime.xvm | Bin .../main/resources/assets}/npcs/Principal.nj | Bin .../main/resources/assets}/npcs/Principal.xvm | Bin .../main/resources/assets}/npcs/PyroGoran.nj | Bin .../main/resources/assets}/npcs/PyroGoran.xvm | Bin .../main/resources/assets}/npcs/RagRappy.nj | Bin .../main/resources/assets}/npcs/RagRappy.xvm | Bin .../main/resources/assets}/npcs/Recobox.nj | Bin .../main/resources/assets}/npcs/Recobox.xvm | Bin .../main/resources/assets}/npcs/RedSoldier.nj | Bin .../resources/assets}/npcs/RedSoldier.xvm | Bin .../resources/assets}/npcs/SaintMilion.nj | Bin .../resources/assets}/npcs/SaintMilion.xvm | Bin .../main/resources/assets}/npcs/SandRappy.nj | Bin .../main/resources/assets}/npcs/SandRappy.xvm | Bin .../resources/assets}/npcs/SatelliteLizard.nj | Bin .../assets}/npcs/SatelliteLizard.xvm | Bin .../main/resources/assets}/npcs/SavageWolf.nj | Bin .../resources/assets}/npcs/SavageWolf.xvm | Bin .../main/resources/assets}/npcs/Scientist.nj | Bin .../main/resources/assets}/npcs/Scientist.xvm | Bin .../main/resources/assets}/npcs/Shambertin.nj | Bin .../resources/assets}/npcs/Shambertin.xvm | Bin .../main/resources/assets}/npcs/SinowBeat.nj | Bin .../main/resources/assets}/npcs/SinowBeat.xvm | Bin .../resources/assets}/npcs/SinowBerill.nj | Bin .../resources/assets}/npcs/SinowBerill.xvm | Bin .../main/resources/assets}/npcs/SinowGold.nj | Bin .../main/resources/assets}/npcs/SinowGold.xvm | Bin .../resources/assets}/npcs/SinowSpigell.nj | Bin .../resources/assets}/npcs/SinowSpigell.xvm | Bin .../main/resources/assets}/npcs/SinowZele.nj | Bin .../main/resources/assets}/npcs/SinowZele.xvm | Bin .../main/resources/assets}/npcs/SinowZoa.nj | Bin .../main/resources/assets}/npcs/SinowZoa.xvm | Bin .../main/resources/assets}/npcs/SoDimenian.nj | Bin .../resources/assets}/npcs/SoDimenian.xvm | Bin .../src/main/resources/assets}/npcs/Tekker.nj | Bin .../main/resources/assets}/npcs/Tekker.xvm | Bin .../main/resources/assets}/npcs/UlGibbon.nj | Bin .../main/resources/assets}/npcs/UlGibbon.xvm | Bin .../resources/assets}/npcs/VolOptPart2.nj | Bin .../resources/assets}/npcs/VolOptPart2.xvm | Bin .../src/main/resources/assets}/npcs/Yowie.nj | Bin .../src/main/resources/assets}/npcs/Yowie.xvm | Bin .../main/resources/assets}/npcs/ZeBoota.nj | Bin .../main/resources/assets}/npcs/ZeBoota.xvm | Bin .../main/resources/assets}/npcs/ZolGibbon.nj | Bin .../main/resources/assets}/npcs/ZolGibbon.xvm | Bin .../src/main/resources/assets}/npcs/Zu.nj | Bin .../src/main/resources/assets}/npcs/Zu.xvm | Bin .../main/resources/assets}/objects/10-2.xj | Bin .../main/resources/assets}/objects/10-2.xvm | Bin .../src/main/resources/assets}/objects/10.xj | Bin .../src/main/resources/assets}/objects/10.xvm | Bin .../main/resources/assets}/objects/11-2.xj | Bin .../main/resources/assets}/objects/11-2.xvm | Bin .../src/main/resources/assets}/objects/11.xj | Bin .../src/main/resources/assets}/objects/11.xvm | Bin .../main/resources/assets}/objects/12-2.xj | Bin .../main/resources/assets}/objects/12-2.xvm | Bin .../src/main/resources/assets}/objects/12.xj | Bin .../src/main/resources/assets}/objects/12.xvm | Bin .../main/resources/assets}/objects/128-2.xj | Bin .../main/resources/assets}/objects/128-3.xj | Bin .../main/resources/assets}/objects/128-4.xj | Bin .../main/resources/assets}/objects/128-5.xj | Bin .../src/main/resources/assets}/objects/128.xj | Bin .../main/resources/assets}/objects/128.xvm | Bin .../main/resources/assets}/objects/129-2.xj | Bin .../main/resources/assets}/objects/129-3.xj | Bin .../src/main/resources/assets}/objects/129.xj | Bin .../main/resources/assets}/objects/129.xvm | Bin .../main/resources/assets}/objects/13-2.xj | Bin .../main/resources/assets}/objects/13-2.xvm | Bin .../src/main/resources/assets}/objects/13.xj | Bin .../src/main/resources/assets}/objects/13.xvm | Bin .../main/resources/assets}/objects/130-2.xj | Bin .../src/main/resources/assets}/objects/130.xj | Bin .../main/resources/assets}/objects/130.xvm | Bin .../main/resources/assets}/objects/131-2.xj | Bin .../src/main/resources/assets}/objects/131.xj | Bin .../main/resources/assets}/objects/131.xvm | Bin .../main/resources/assets}/objects/132-2.xj | Bin .../main/resources/assets}/objects/132-3.xj | Bin .../src/main/resources/assets}/objects/132.xj | Bin .../main/resources/assets}/objects/132.xvm | Bin .../src/main/resources/assets}/objects/133.xj | Bin .../main/resources/assets}/objects/133.xvm | Bin .../src/main/resources/assets}/objects/134.xj | Bin .../main/resources/assets}/objects/134.xvm | Bin .../main/resources/assets}/objects/135-0.xj | Bin .../main/resources/assets}/objects/135-0.xvm | Bin .../main/resources/assets}/objects/135-1.xj | Bin .../main/resources/assets}/objects/135-1.xvm | Bin .../src/main/resources/assets}/objects/135.xj | Bin .../main/resources/assets}/objects/135.xvm | Bin .../main/resources/assets}/objects/136-2.xj | Bin .../main/resources/assets}/objects/136-3.xj | Bin .../src/main/resources/assets}/objects/136.xj | Bin .../main/resources/assets}/objects/136.xvm | Bin .../src/main/resources/assets}/objects/137.xj | Bin .../main/resources/assets}/objects/137.xvm | Bin .../main/resources/assets}/objects/139-0.xj | Bin .../main/resources/assets}/objects/139-0.xvm | Bin .../main/resources/assets}/objects/139-1.xj | Bin .../main/resources/assets}/objects/139-1.xvm | Bin .../src/main/resources/assets}/objects/139.xj | Bin .../main/resources/assets}/objects/139.xvm | Bin .../main/resources/assets}/objects/140-2.xj | Bin .../src/main/resources/assets}/objects/140.xj | Bin .../main/resources/assets}/objects/140.xvm | Bin .../src/main/resources/assets}/objects/141.xj | Bin .../main/resources/assets}/objects/141.xvm | Bin .../main/resources/assets}/objects/142-2.xj | Bin .../main/resources/assets}/objects/142-2.xvm | Bin .../src/main/resources/assets}/objects/142.xj | Bin .../main/resources/assets}/objects/142.xvm | Bin .../src/main/resources/assets}/objects/143.xj | Bin .../main/resources/assets}/objects/143.xvm | Bin .../main/resources/assets}/objects/144-2.xj | Bin .../main/resources/assets}/objects/144-a.xj | Bin .../main/resources/assets}/objects/144-a.xvm | Bin .../src/main/resources/assets}/objects/144.xj | Bin .../main/resources/assets}/objects/144.xvm | Bin .../main/resources/assets}/objects/145-2.xj | Bin .../main/resources/assets}/objects/145-3.xj | Bin .../src/main/resources/assets}/objects/145.xj | Bin .../main/resources/assets}/objects/145.xvm | Bin .../main/resources/assets}/objects/146-2.xj | Bin .../main/resources/assets}/objects/146-3.xj | Bin .../main/resources/assets}/objects/146-4.xj | Bin .../src/main/resources/assets}/objects/146.xj | Bin .../main/resources/assets}/objects/146.xvm | Bin .../main/resources/assets}/objects/147-2.xj | Bin .../main/resources/assets}/objects/147-3.xj | Bin .../main/resources/assets}/objects/147-4.xj | Bin .../src/main/resources/assets}/objects/147.xj | Bin .../main/resources/assets}/objects/147.xvm | Bin .../src/main/resources/assets}/objects/149.xj | Bin .../main/resources/assets}/objects/149.xvm | Bin .../src/main/resources/assets}/objects/15.xj | Bin .../src/main/resources/assets}/objects/15.xvm | Bin .../main/resources/assets}/objects/150-2.xj | Bin .../src/main/resources/assets}/objects/150.xj | Bin .../main/resources/assets}/objects/150.xvm | Bin .../main/resources/assets}/objects/151-2.xj | Bin .../src/main/resources/assets}/objects/151.xj | Bin .../main/resources/assets}/objects/151.xvm | Bin .../src/main/resources/assets}/objects/19.xj | Bin .../src/main/resources/assets}/objects/19.xvm | Bin .../src/main/resources/assets}/objects/192.xj | Bin .../main/resources/assets}/objects/192.xvm | Bin .../src/main/resources/assets}/objects/193.xj | Bin .../main/resources/assets}/objects/193.xvm | Bin .../src/main/resources/assets}/objects/194.xj | Bin .../main/resources/assets}/objects/194.xvm | Bin .../main/resources/assets}/objects/195-2.xj | Bin .../main/resources/assets}/objects/195-3.xj | Bin .../src/main/resources/assets}/objects/195.xj | Bin .../main/resources/assets}/objects/195.xvm | Bin .../src/main/resources/assets}/objects/196.xj | Bin .../main/resources/assets}/objects/196.xvm | Bin .../src/main/resources/assets}/objects/197.xj | Bin .../main/resources/assets}/objects/197.xvm | Bin .../src/main/resources/assets}/objects/198.xj | Bin .../main/resources/assets}/objects/198.xvm | Bin .../src/main/resources/assets}/objects/199.xj | Bin .../main/resources/assets}/objects/199.xvm | Bin .../src/main/resources/assets}/objects/2-2.xj | Bin .../src/main/resources/assets}/objects/2.xj | Bin .../src/main/resources/assets}/objects/2.xvm | Bin .../src/main/resources/assets}/objects/200.xj | Bin .../main/resources/assets}/objects/200.xvm | Bin .../src/main/resources/assets}/objects/201.xj | Bin .../main/resources/assets}/objects/201.xvm | Bin .../src/main/resources/assets}/objects/204.nj | Bin .../main/resources/assets}/objects/204.xvm | Bin .../src/main/resources/assets}/objects/205.xj | Bin .../main/resources/assets}/objects/205.xvm | Bin .../src/main/resources/assets}/objects/206.xj | Bin .../main/resources/assets}/objects/206.xvm | Bin .../main/resources/assets}/objects/207-2.xj | Bin .../src/main/resources/assets}/objects/207.xj | Bin .../main/resources/assets}/objects/207.xvm | Bin .../src/main/resources/assets}/objects/208.xj | Bin .../main/resources/assets}/objects/208.xvm | Bin .../src/main/resources/assets}/objects/209.xj | Bin .../main/resources/assets}/objects/209.xvm | Bin .../src/main/resources/assets}/objects/210.xj | Bin .../main/resources/assets}/objects/210.xvm | Bin .../src/main/resources/assets}/objects/211.xj | Bin .../main/resources/assets}/objects/211.xvm | Bin .../src/main/resources/assets}/objects/212.xj | Bin .../main/resources/assets}/objects/212.xvm | Bin .../src/main/resources/assets}/objects/213.xj | Bin .../main/resources/assets}/objects/213.xvm | Bin .../src/main/resources/assets}/objects/214.xj | Bin .../main/resources/assets}/objects/214.xvm | Bin .../src/main/resources/assets}/objects/215.xj | Bin .../main/resources/assets}/objects/215.xvm | Bin .../src/main/resources/assets}/objects/216.xj | Bin .../main/resources/assets}/objects/216.xvm | Bin .../src/main/resources/assets}/objects/217.xj | Bin .../main/resources/assets}/objects/217.xvm | Bin .../src/main/resources/assets}/objects/218.xj | Bin .../main/resources/assets}/objects/218.xvm | Bin .../src/main/resources/assets}/objects/219.xj | Bin .../main/resources/assets}/objects/219.xvm | Bin .../src/main/resources/assets}/objects/220.xj | Bin .../main/resources/assets}/objects/220.xvm | Bin .../src/main/resources/assets}/objects/222.xj | Bin .../main/resources/assets}/objects/222.xvm | Bin .../src/main/resources/assets}/objects/223.xj | Bin .../main/resources/assets}/objects/223.xvm | Bin .../src/main/resources/assets}/objects/224.xj | Bin .../main/resources/assets}/objects/224.xvm | Bin .../src/main/resources/assets}/objects/225.xj | Bin .../main/resources/assets}/objects/225.xvm | Bin .../main/resources/assets}/objects/25-2.xj | Bin .../src/main/resources/assets}/objects/25.xj | Bin .../src/main/resources/assets}/objects/25.xvm | Bin .../src/main/resources/assets}/objects/256.xj | Bin .../main/resources/assets}/objects/256.xvm | Bin .../src/main/resources/assets}/objects/257.xj | Bin .../main/resources/assets}/objects/257.xvm | Bin .../src/main/resources/assets}/objects/258.xj | Bin .../main/resources/assets}/objects/258.xvm | Bin .../src/main/resources/assets}/objects/259.xj | Bin .../main/resources/assets}/objects/259.xvm | Bin .../src/main/resources/assets}/objects/260.xj | Bin .../main/resources/assets}/objects/260.xvm | Bin .../src/main/resources/assets}/objects/261.xj | Bin .../main/resources/assets}/objects/261.xvm | Bin .../src/main/resources/assets}/objects/262.xj | Bin .../main/resources/assets}/objects/262.xvm | Bin .../main/resources/assets}/objects/264-a.xj | Bin .../main/resources/assets}/objects/264-a.xvm | Bin .../main/resources/assets}/objects/264-b.xj | Bin .../main/resources/assets}/objects/264-b.xvm | Bin .../src/main/resources/assets}/objects/264.xj | Bin .../main/resources/assets}/objects/264.xvm | Bin .../main/resources/assets}/objects/265-a.xj | Bin .../main/resources/assets}/objects/265-a.xvm | Bin .../main/resources/assets}/objects/265-b.xj | Bin .../main/resources/assets}/objects/265-b.xvm | Bin .../src/main/resources/assets}/objects/265.xj | Bin .../main/resources/assets}/objects/265.xvm | Bin .../main/resources/assets}/objects/266-a.xj | Bin .../main/resources/assets}/objects/266-a.xvm | Bin .../main/resources/assets}/objects/266-b.xj | Bin .../main/resources/assets}/objects/266-b.xvm | Bin .../src/main/resources/assets}/objects/266.xj | Bin .../main/resources/assets}/objects/266.xvm | Bin .../src/main/resources/assets}/objects/267.xj | Bin .../main/resources/assets}/objects/267.xvm | Bin .../src/main/resources/assets}/objects/268.xj | Bin .../main/resources/assets}/objects/268.xvm | Bin .../main/resources/assets}/objects/27-2.xj | Bin .../src/main/resources/assets}/objects/27.xj | Bin .../src/main/resources/assets}/objects/27.xvm | Bin .../main/resources/assets}/objects/28-2.xj | Bin .../src/main/resources/assets}/objects/28.xj | Bin .../src/main/resources/assets}/objects/28.xvm | Bin .../src/main/resources/assets}/objects/3-2.xj | Bin .../src/main/resources/assets}/objects/3.xj | Bin .../src/main/resources/assets}/objects/3.xvm | Bin .../src/main/resources/assets}/objects/304.nj | Bin .../main/resources/assets}/objects/304.xvm | Bin .../main/resources/assets}/objects/320-2.xj | Bin .../main/resources/assets}/objects/320-3.xj | Bin .../main/resources/assets}/objects/320-4.xj | Bin .../main/resources/assets}/objects/320-a.xj | Bin .../main/resources/assets}/objects/320-a.xvm | Bin .../main/resources/assets}/objects/320-b.xj | Bin .../main/resources/assets}/objects/320-b.xvm | Bin .../main/resources/assets}/objects/320-c.xj | Bin .../main/resources/assets}/objects/320-c.xvm | Bin .../src/main/resources/assets}/objects/320.xj | Bin .../main/resources/assets}/objects/320.xvm | Bin .../main/resources/assets}/objects/321-2.xj | Bin .../main/resources/assets}/objects/321-a.xj | Bin .../main/resources/assets}/objects/321-a.xvm | Bin .../src/main/resources/assets}/objects/321.xj | Bin .../main/resources/assets}/objects/321.xvm | Bin .../main/resources/assets}/objects/322-2.xj | Bin .../main/resources/assets}/objects/322-a.xj | Bin .../main/resources/assets}/objects/322-a.xvm | Bin .../src/main/resources/assets}/objects/322.xj | Bin .../main/resources/assets}/objects/322.xvm | Bin .../src/main/resources/assets}/objects/323.xj | Bin .../main/resources/assets}/objects/323.xvm | Bin .../src/main/resources/assets}/objects/324.xj | Bin .../main/resources/assets}/objects/324.xvm | Bin .../src/main/resources/assets}/objects/325.xj | Bin .../main/resources/assets}/objects/325.xvm | Bin .../src/main/resources/assets}/objects/326.xj | Bin .../main/resources/assets}/objects/326.xvm | Bin .../src/main/resources/assets}/objects/327.xj | Bin .../main/resources/assets}/objects/327.xvm | Bin .../src/main/resources/assets}/objects/328.xj | Bin .../main/resources/assets}/objects/328.xvm | Bin .../src/main/resources/assets}/objects/329.xj | Bin .../main/resources/assets}/objects/329.xvm | Bin .../src/main/resources/assets}/objects/330.xj | Bin .../main/resources/assets}/objects/330.xvm | Bin .../src/main/resources/assets}/objects/331.xj | Bin .../main/resources/assets}/objects/331.xvm | Bin .../src/main/resources/assets}/objects/332.xj | Bin .../main/resources/assets}/objects/332.xvm | Bin .../src/main/resources/assets}/objects/333.xj | Bin .../main/resources/assets}/objects/333.xvm | Bin .../src/main/resources/assets}/objects/334.xj | Bin .../main/resources/assets}/objects/334.xvm | Bin .../src/main/resources/assets}/objects/335.xj | Bin .../main/resources/assets}/objects/335.xvm | Bin .../src/main/resources/assets}/objects/336.xj | Bin .../main/resources/assets}/objects/336.xvm | Bin .../src/main/resources/assets}/objects/337.xj | Bin .../main/resources/assets}/objects/337.xvm | Bin .../src/main/resources/assets}/objects/338.xj | Bin .../main/resources/assets}/objects/338.xvm | Bin .../main/resources/assets}/objects/339-2.xj | Bin .../main/resources/assets}/objects/339-3.xj | Bin .../main/resources/assets}/objects/339-4.xj | Bin .../src/main/resources/assets}/objects/339.xj | Bin .../main/resources/assets}/objects/339.xvm | Bin .../main/resources/assets}/objects/341-2.xj | Bin .../main/resources/assets}/objects/341-3.xj | Bin .../src/main/resources/assets}/objects/341.xj | Bin .../main/resources/assets}/objects/341.xvm | Bin .../src/main/resources/assets}/objects/342.xj | Bin .../main/resources/assets}/objects/342.xvm | Bin .../src/main/resources/assets}/objects/345.xj | Bin .../main/resources/assets}/objects/345.xvm | Bin .../src/main/resources/assets}/objects/346.xj | Bin .../main/resources/assets}/objects/346.xvm | Bin .../src/main/resources/assets}/objects/347.xj | Bin .../main/resources/assets}/objects/347.xvm | Bin .../src/main/resources/assets}/objects/348.xj | Bin .../main/resources/assets}/objects/348.xvm | Bin .../src/main/resources/assets}/objects/349.xj | Bin .../main/resources/assets}/objects/349.xvm | Bin .../src/main/resources/assets}/objects/350.xj | Bin .../main/resources/assets}/objects/350.xvm | Bin .../src/main/resources/assets}/objects/351.xj | Bin .../main/resources/assets}/objects/351.xvm | Bin .../main/resources/assets}/objects/353-2.xj | Bin .../main/resources/assets}/objects/353-3.xj | Bin .../src/main/resources/assets}/objects/353.xj | Bin .../main/resources/assets}/objects/353.xvm | Bin .../main/resources/assets}/objects/354-2.xj | Bin .../main/resources/assets}/objects/354-3.xj | Bin .../src/main/resources/assets}/objects/354.xj | Bin .../main/resources/assets}/objects/354.xvm | Bin .../src/main/resources/assets}/objects/358.xj | Bin .../main/resources/assets}/objects/358.xvm | Bin .../src/main/resources/assets}/objects/359.xj | Bin .../main/resources/assets}/objects/359.xvm | Bin .../src/main/resources/assets}/objects/368.xj | Bin .../main/resources/assets}/objects/368.xvm | Bin .../src/main/resources/assets}/objects/369.xj | Bin .../main/resources/assets}/objects/369.xvm | Bin .../main/resources/assets}/objects/370-0.xj | Bin .../main/resources/assets}/objects/370-0.xvm | Bin .../main/resources/assets}/objects/370-1.xj | Bin .../main/resources/assets}/objects/370-1.xvm | Bin .../main/resources/assets}/objects/370-2.xj | Bin .../main/resources/assets}/objects/370-2.xvm | Bin .../main/resources/assets}/objects/370-3.xj | Bin .../main/resources/assets}/objects/370-3.xvm | Bin .../src/main/resources/assets}/objects/385.xj | Bin .../main/resources/assets}/objects/385.xvm | Bin .../src/main/resources/assets}/objects/386.xj | Bin .../main/resources/assets}/objects/386.xvm | Bin .../src/main/resources/assets}/objects/390.xj | Bin .../main/resources/assets}/objects/390.xvm | Bin .../src/main/resources/assets}/objects/391.xj | Bin .../main/resources/assets}/objects/391.xvm | Bin .../src/main/resources/assets}/objects/395.xj | Bin .../main/resources/assets}/objects/395.xvm | Bin .../src/main/resources/assets}/objects/396.xj | Bin .../main/resources/assets}/objects/396.xvm | Bin .../src/main/resources/assets}/objects/401.xj | Bin .../main/resources/assets}/objects/401.xvm | Bin .../src/main/resources/assets}/objects/402.xj | Bin .../main/resources/assets}/objects/402.xvm | Bin .../src/main/resources/assets}/objects/403.xj | Bin .../main/resources/assets}/objects/403.xvm | Bin .../src/main/resources/assets}/objects/416.xj | Bin .../main/resources/assets}/objects/416.xvm | Bin .../src/main/resources/assets}/objects/417.xj | Bin .../main/resources/assets}/objects/417.xvm | Bin .../src/main/resources/assets}/objects/418.xj | Bin .../main/resources/assets}/objects/418.xvm | Bin .../src/main/resources/assets}/objects/419.xj | Bin .../main/resources/assets}/objects/419.xvm | Bin .../src/main/resources/assets}/objects/420.xj | Bin .../main/resources/assets}/objects/420.xvm | Bin .../src/main/resources/assets}/objects/421.xj | Bin .../main/resources/assets}/objects/421.xvm | Bin .../src/main/resources/assets}/objects/422.xj | Bin .../main/resources/assets}/objects/422.xvm | Bin .../src/main/resources/assets}/objects/423.xj | Bin .../main/resources/assets}/objects/423.xvm | Bin .../src/main/resources/assets}/objects/425.xj | Bin .../main/resources/assets}/objects/425.xvm | Bin .../src/main/resources/assets}/objects/426.xj | Bin .../main/resources/assets}/objects/426.xvm | Bin .../src/main/resources/assets}/objects/427.xj | Bin .../main/resources/assets}/objects/427.xvm | Bin .../src/main/resources/assets}/objects/448.xj | Bin .../main/resources/assets}/objects/448.xvm | Bin .../main/resources/assets}/objects/512-2.xj | Bin .../main/resources/assets}/objects/512-3.xj | Bin .../main/resources/assets}/objects/512-4.xj | Bin .../src/main/resources/assets}/objects/512.xj | Bin .../main/resources/assets}/objects/512.xvm | Bin .../main/resources/assets}/objects/513-2.xj | Bin .../src/main/resources/assets}/objects/513.xj | Bin .../main/resources/assets}/objects/513.xvm | Bin .../main/resources/assets}/objects/514-2.xj | Bin .../src/main/resources/assets}/objects/514.xj | Bin .../main/resources/assets}/objects/514.xvm | Bin .../main/resources/assets}/objects/515-2.xj | Bin .../main/resources/assets}/objects/515-3.xj | Bin .../main/resources/assets}/objects/515-4.xj | Bin .../src/main/resources/assets}/objects/515.xj | Bin .../main/resources/assets}/objects/515.xvm | Bin .../main/resources/assets}/objects/516-2.xj | Bin .../main/resources/assets}/objects/516-3.xj | Bin .../main/resources/assets}/objects/516-4.xj | Bin .../src/main/resources/assets}/objects/516.xj | Bin .../main/resources/assets}/objects/516.xvm | Bin .../main/resources/assets}/objects/517-2.xj | Bin .../src/main/resources/assets}/objects/517.xj | Bin .../main/resources/assets}/objects/517.xvm | Bin .../src/main/resources/assets}/objects/518.xj | Bin .../main/resources/assets}/objects/518.xvm | Bin .../src/main/resources/assets}/objects/519.xj | Bin .../main/resources/assets}/objects/519.xvm | Bin .../src/main/resources/assets}/objects/520.xj | Bin .../main/resources/assets}/objects/520.xvm | Bin .../src/main/resources/assets}/objects/521.xj | Bin .../main/resources/assets}/objects/521.xvm | Bin .../main/resources/assets}/objects/527-0.xj | Bin .../main/resources/assets}/objects/527-0.xvm | Bin .../main/resources/assets}/objects/527-1.xj | Bin .../main/resources/assets}/objects/527-1.xvm | Bin .../src/main/resources/assets}/objects/527.xj | Bin .../main/resources/assets}/objects/527.xvm | Bin .../main/resources/assets}/objects/528-0.xj | Bin .../main/resources/assets}/objects/528-0.xvm | Bin .../main/resources/assets}/objects/528-1.xj | Bin .../main/resources/assets}/objects/528-1.xvm | Bin .../main/resources/assets}/objects/528-2.xj | Bin .../src/main/resources/assets}/objects/528.xj | Bin .../main/resources/assets}/objects/528.xvm | Bin .../src/main/resources/assets}/objects/544.xj | Bin .../main/resources/assets}/objects/544.xvm | Bin .../src/main/resources/assets}/objects/545.xj | Bin .../main/resources/assets}/objects/545.xvm | Bin .../src/main/resources/assets}/objects/546.xj | Bin .../main/resources/assets}/objects/546.xvm | Bin .../main/resources/assets}/objects/547-0.xj | Bin .../main/resources/assets}/objects/547-0.xvm | Bin .../main/resources/assets}/objects/547-1.xj | Bin .../main/resources/assets}/objects/547-1.xvm | Bin .../src/main/resources/assets}/objects/547.xj | Bin .../main/resources/assets}/objects/547.xvm | Bin .../src/main/resources/assets}/objects/548.xj | Bin .../main/resources/assets}/objects/548.xvm | Bin .../src/main/resources/assets}/objects/549.xj | Bin .../main/resources/assets}/objects/549.xvm | Bin .../src/main/resources/assets}/objects/550.xj | Bin .../main/resources/assets}/objects/550.xvm | Bin .../src/main/resources/assets}/objects/551.nj | Bin .../main/resources/assets}/objects/551.xvm | Bin .../main/resources/assets}/objects/552-2.xj | Bin .../main/resources/assets}/objects/552-3.xj | Bin .../src/main/resources/assets}/objects/552.xj | Bin .../main/resources/assets}/objects/552.xvm | Bin .../src/main/resources/assets}/objects/553.xj | Bin .../main/resources/assets}/objects/553.xvm | Bin .../main/resources/assets}/objects/67-2.xj | Bin .../src/main/resources/assets}/objects/67.xj | Bin .../src/main/resources/assets}/objects/67.xvm | Bin .../src/main/resources/assets}/objects/68.xj | Bin .../src/main/resources/assets}/objects/68.xvm | Bin .../src/main/resources/assets}/objects/688.xj | Bin .../main/resources/assets}/objects/688.xvm | Bin .../src/main/resources/assets}/objects/689.xj | Bin .../main/resources/assets}/objects/689.xvm | Bin .../main/resources/assets}/objects/69-0.xj | Bin .../main/resources/assets}/objects/69-0.xvm | Bin .../main/resources/assets}/objects/69-1.xj | Bin .../main/resources/assets}/objects/69-1.xvm | Bin .../main/resources/assets}/objects/69-2.xj | Bin .../main/resources/assets}/objects/69-a.xj | Bin .../src/main/resources/assets}/objects/69.xj | Bin .../src/main/resources/assets}/objects/69.xvm | Bin .../src/main/resources/assets}/objects/690.xj | Bin .../main/resources/assets}/objects/690.xvm | Bin .../src/main/resources/assets}/objects/691.xj | Bin .../main/resources/assets}/objects/691.xvm | Bin .../src/main/resources/assets}/objects/692.xj | Bin .../main/resources/assets}/objects/692.xvm | Bin .../src/main/resources/assets}/objects/693.xj | Bin .../main/resources/assets}/objects/693.xvm | Bin .../src/main/resources/assets}/objects/694.xj | Bin .../main/resources/assets}/objects/694.xvm | Bin .../src/main/resources/assets}/objects/696.xj | Bin .../main/resources/assets}/objects/696.xvm | Bin .../src/main/resources/assets}/objects/699.xj | Bin .../main/resources/assets}/objects/699.xvm | Bin .../src/main/resources/assets}/objects/70.xj | Bin .../src/main/resources/assets}/objects/70.xvm | Bin .../main/resources/assets}/objects/701-2.xj | Bin .../src/main/resources/assets}/objects/701.xj | Bin .../main/resources/assets}/objects/701.xvm | Bin .../src/main/resources/assets}/objects/71.xj | Bin .../src/main/resources/assets}/objects/71.xvm | Bin .../main/resources/assets}/objects/72-2.xj | Bin .../src/main/resources/assets}/objects/72.xj | Bin .../src/main/resources/assets}/objects/72.xvm | Bin .../src/main/resources/assets}/objects/73.xj | Bin .../src/main/resources/assets}/objects/73.xvm | Bin .../src/main/resources/assets}/objects/74.xj | Bin .../src/main/resources/assets}/objects/74.xvm | Bin .../main/resources/assets}/objects/75-2.nj | Bin .../src/main/resources/assets}/objects/75.nj | Bin .../src/main/resources/assets}/objects/75.xvm | Bin .../main/resources/assets}/objects/76-2.xj | Bin .../main/resources/assets}/objects/76-3.xj | Bin .../src/main/resources/assets}/objects/76.xj | Bin .../src/main/resources/assets}/objects/76.xvm | Bin .../main/resources/assets}/objects/769-0.nj | Bin .../main/resources/assets}/objects/769-0.xvm | Bin .../main/resources/assets}/objects/769-1.nj | Bin .../main/resources/assets}/objects/769-1.xvm | Bin .../main/resources/assets}/objects/769-2.nj | Bin .../main/resources/assets}/objects/769-2.xvm | Bin .../src/main/resources/assets}/objects/769.nj | Bin .../main/resources/assets}/objects/769.xvm | Bin .../main/resources/assets}/objects/77-2.nj | Bin .../main/resources/assets}/objects/77-3.nj | Bin .../main/resources/assets}/objects/77-4.nj | Bin .../src/main/resources/assets}/objects/77.nj | Bin .../src/main/resources/assets}/objects/77.xvm | Bin .../main/resources/assets}/objects/770-0.nj | Bin .../main/resources/assets}/objects/770-0.xvm | Bin .../main/resources/assets}/objects/770-1.nj | Bin .../main/resources/assets}/objects/770-1.xvm | Bin .../main/resources/assets}/objects/770-2.nj | Bin .../main/resources/assets}/objects/770-2.xvm | Bin .../src/main/resources/assets}/objects/78.nj | Bin .../src/main/resources/assets}/objects/78.xvm | Bin .../src/main/resources/assets}/objects/79.xj | Bin .../src/main/resources/assets}/objects/79.xvm | Bin .../main/resources/assets}/objects/80-2.nj | Bin .../src/main/resources/assets}/objects/80.nj | Bin .../src/main/resources/assets}/objects/80.xvm | Bin .../main/resources/assets}/objects/81-0.nj | Bin .../main/resources/assets}/objects/81-0.xvm | Bin .../main/resources/assets}/objects/81-1.nj | Bin .../main/resources/assets}/objects/81-1.xvm | Bin .../main/resources/assets}/objects/81-2.nj | Bin .../main/resources/assets}/objects/81-2.xvm | Bin .../main/resources/assets}/objects/81-3.nj | Bin .../main/resources/assets}/objects/81-3.xvm | Bin .../src/main/resources/assets}/objects/81.nj | Bin .../src/main/resources/assets}/objects/81.xvm | Bin .../main/resources/assets}/objects/82-2.nj | Bin .../src/main/resources/assets}/objects/82.nj | Bin .../src/main/resources/assets}/objects/82.xvm | Bin .../src/main/resources/assets}/objects/84.xj | Bin .../src/main/resources/assets}/objects/84.xvm | Bin .../src/main/resources/assets}/objects/86.xj | Bin .../src/main/resources/assets}/objects/86.xvm | Bin .../src/main/resources/assets}/objects/896.nj | Bin .../main/resources/assets}/objects/896.xvm | Bin .../main/resources/assets}/objects/902-0.nj | Bin .../main/resources/assets}/objects/902-0.xvm | Bin .../main/resources/assets}/objects/902-1.nj | Bin .../main/resources/assets}/objects/902-1.xvm | Bin .../main/resources/assets}/objects/902-2.nj | Bin .../main/resources/assets}/objects/902-2.xvm | Bin .../src/main/resources/assets}/objects/902.nj | Bin .../main/resources/assets}/objects/902.xvm | Bin .../src/main/resources/assets}/objects/907.nj | Bin .../main/resources/assets}/objects/907.xvm | Bin .../src/main/resources/assets}/objects/909.nj | Bin .../main/resources/assets}/objects/909.xvm | Bin .../main/resources/assets}/objects/911-0.nj | Bin .../main/resources/assets}/objects/911-0.xvm | Bin .../main/resources/assets}/objects/911-1.nj | Bin .../main/resources/assets}/objects/911-1.xvm | Bin .../src/main/resources/assets}/objects/911.nj | Bin .../main/resources/assets}/objects/911.xvm | Bin .../assets}/player/FOmarAccessory0.nj | Bin .../assets}/player/FOmarAccessory1.nj | Bin .../assets}/player/FOmarAccessory2.nj | Bin .../assets}/player/FOmarAccessory3.nj | Bin .../assets}/player/FOmarAccessory4.nj | Bin .../assets}/player/FOmarAccessory5.nj | Bin .../assets}/player/FOmarAccessory6.nj | Bin .../assets}/player/FOmarAccessory7.nj | Bin .../assets}/player/FOmarAccessory8.nj | Bin .../assets}/player/FOmarAccessory9.nj | Bin .../resources/assets}/player/FOmarBody.nj | Bin .../resources/assets}/player/FOmarHair0.nj | Bin .../resources/assets}/player/FOmarHair1.nj | Bin .../resources/assets}/player/FOmarHair2.nj | Bin .../resources/assets}/player/FOmarHair3.nj | Bin .../resources/assets}/player/FOmarHair4.nj | Bin .../resources/assets}/player/FOmarHair5.nj | Bin .../resources/assets}/player/FOmarHair6.nj | Bin .../resources/assets}/player/FOmarHair7.nj | Bin .../resources/assets}/player/FOmarHair8.nj | Bin .../resources/assets}/player/FOmarHair9.nj | Bin .../resources/assets}/player/FOmarHead0.nj | Bin .../resources/assets}/player/FOmarTex.afs | Bin .../assets}/player/FOmarlAccessory0.nj | Bin .../assets}/player/FOmarlAccessory1.nj | Bin .../assets}/player/FOmarlAccessory2.nj | Bin .../assets}/player/FOmarlAccessory3.nj | Bin .../assets}/player/FOmarlAccessory4.nj | Bin .../assets}/player/FOmarlAccessory5.nj | Bin .../assets}/player/FOmarlAccessory6.nj | Bin .../assets}/player/FOmarlAccessory7.nj | Bin .../assets}/player/FOmarlAccessory8.nj | Bin .../assets}/player/FOmarlAccessory9.nj | Bin .../resources/assets}/player/FOmarlBody.nj | Bin .../resources/assets}/player/FOmarlHair0.nj | Bin .../resources/assets}/player/FOmarlHair1.nj | Bin .../resources/assets}/player/FOmarlHair2.nj | Bin .../resources/assets}/player/FOmarlHair3.nj | Bin .../resources/assets}/player/FOmarlHair4.nj | Bin .../resources/assets}/player/FOmarlHair5.nj | Bin .../resources/assets}/player/FOmarlHair6.nj | Bin .../resources/assets}/player/FOmarlHair7.nj | Bin .../resources/assets}/player/FOmarlHair8.nj | Bin .../resources/assets}/player/FOmarlHair9.nj | Bin .../resources/assets}/player/FOmarlHead0.nj | Bin .../resources/assets}/player/FOmarlTex.afs | Bin .../assets}/player/FOnewearlAccessory0.nj | Bin .../assets}/player/FOnewearlAccessory1.nj | Bin .../assets}/player/FOnewearlAccessory2.nj | Bin .../assets}/player/FOnewearlAccessory3.nj | Bin .../assets}/player/FOnewearlAccessory4.nj | Bin .../assets}/player/FOnewearlAccessory5.nj | Bin .../assets}/player/FOnewearlAccessory6.nj | Bin .../assets}/player/FOnewearlAccessory7.nj | Bin .../assets}/player/FOnewearlAccessory8.nj | Bin .../assets}/player/FOnewearlAccessory9.nj | Bin .../resources/assets}/player/FOnewearlBody.nj | Bin .../assets}/player/FOnewearlHair0.nj | Bin .../assets}/player/FOnewearlHair1.nj | Bin .../assets}/player/FOnewearlHair2.nj | Bin .../assets}/player/FOnewearlHair3.nj | Bin .../assets}/player/FOnewearlHair4.nj | Bin .../assets}/player/FOnewearlHair5.nj | Bin .../assets}/player/FOnewearlHair6.nj | Bin .../assets}/player/FOnewearlHair7.nj | Bin .../assets}/player/FOnewearlHair8.nj | Bin .../assets}/player/FOnewearlHair9.nj | Bin .../assets}/player/FOnewearlHead0.nj | Bin .../resources/assets}/player/FOnewearlTex.afs | Bin .../assets}/player/FOnewmAccessory0.nj | Bin .../assets}/player/FOnewmAccessory1.nj | Bin .../assets}/player/FOnewmAccessory2.nj | Bin .../assets}/player/FOnewmAccessory3.nj | Bin .../assets}/player/FOnewmAccessory4.nj | Bin .../assets}/player/FOnewmAccessory5.nj | Bin .../assets}/player/FOnewmAccessory6.nj | Bin .../assets}/player/FOnewmAccessory7.nj | Bin .../assets}/player/FOnewmAccessory8.nj | Bin .../assets}/player/FOnewmAccessory9.nj | Bin .../resources/assets}/player/FOnewmBody.nj | Bin .../resources/assets}/player/FOnewmHair0.nj | Bin .../resources/assets}/player/FOnewmHair1.nj | Bin .../resources/assets}/player/FOnewmHair2.nj | Bin .../resources/assets}/player/FOnewmHair3.nj | Bin .../resources/assets}/player/FOnewmHair4.nj | Bin .../resources/assets}/player/FOnewmHair5.nj | Bin .../resources/assets}/player/FOnewmHair6.nj | Bin .../resources/assets}/player/FOnewmHair7.nj | Bin .../resources/assets}/player/FOnewmHair8.nj | Bin .../resources/assets}/player/FOnewmHair9.nj | Bin .../resources/assets}/player/FOnewmHead0.nj | Bin .../resources/assets}/player/FOnewmTex.afs | Bin .../resources/assets}/player/HUcasealBody.nj | Bin .../resources/assets}/player/HUcasealHead0.nj | Bin .../resources/assets}/player/HUcasealHead1.nj | Bin .../resources/assets}/player/HUcasealHead2.nj | Bin .../resources/assets}/player/HUcasealHead3.nj | Bin .../resources/assets}/player/HUcasealHead4.nj | Bin .../resources/assets}/player/HUcasealTex.afs | Bin .../resources/assets}/player/HUcastBody.nj | Bin .../resources/assets}/player/HUcastHead0.nj | Bin .../resources/assets}/player/HUcastHead1.nj | Bin .../resources/assets}/player/HUcastHead2.nj | Bin .../resources/assets}/player/HUcastHead3.nj | Bin .../resources/assets}/player/HUcastHead4.nj | Bin .../resources/assets}/player/HUcastTex.afs | Bin .../assets}/player/HUmarAccessory6.nj | Bin .../resources/assets}/player/HUmarBody.nj | Bin .../resources/assets}/player/HUmarHair0.nj | Bin .../resources/assets}/player/HUmarHair1.nj | Bin .../resources/assets}/player/HUmarHair2.nj | Bin .../resources/assets}/player/HUmarHair3.nj | Bin .../resources/assets}/player/HUmarHair4.nj | Bin .../resources/assets}/player/HUmarHair5.nj | Bin .../resources/assets}/player/HUmarHair6.nj | Bin .../resources/assets}/player/HUmarHair7.nj | Bin .../resources/assets}/player/HUmarHair8.nj | Bin .../resources/assets}/player/HUmarHair9.nj | Bin .../resources/assets}/player/HUmarHead0.nj | Bin .../resources/assets}/player/HUmarTex.afs | Bin .../resources/assets}/player/HUnewearlBody.nj | Bin .../assets}/player/HUnewearlHair0.nj | Bin .../assets}/player/HUnewearlHair1.nj | Bin .../assets}/player/HUnewearlHair2.nj | Bin .../assets}/player/HUnewearlHair3.nj | Bin .../assets}/player/HUnewearlHair4.nj | Bin .../assets}/player/HUnewearlHair5.nj | Bin .../assets}/player/HUnewearlHair6.nj | Bin .../assets}/player/HUnewearlHair7.nj | Bin .../assets}/player/HUnewearlHair8.nj | Bin .../assets}/player/HUnewearlHair9.nj | Bin .../assets}/player/HUnewearlHead0.nj | Bin .../resources/assets}/player/HUnewearlTex.afs | Bin .../resources/assets}/player/RAcasealBody.nj | Bin .../resources/assets}/player/RAcasealHead0.nj | Bin .../resources/assets}/player/RAcasealHead1.nj | Bin .../resources/assets}/player/RAcasealHead2.nj | Bin .../resources/assets}/player/RAcasealHead3.nj | Bin .../resources/assets}/player/RAcasealHead4.nj | Bin .../resources/assets}/player/RAcasealTex.afs | Bin .../resources/assets}/player/RAcastBody.nj | Bin .../resources/assets}/player/RAcastHead0.nj | Bin .../resources/assets}/player/RAcastHead1.nj | Bin .../resources/assets}/player/RAcastHead2.nj | Bin .../resources/assets}/player/RAcastHead3.nj | Bin .../resources/assets}/player/RAcastHead4.nj | Bin .../resources/assets}/player/RAcastTex.afs | Bin .../assets}/player/RAmarAccessory0.nj | Bin .../assets}/player/RAmarAccessory1.nj | Bin .../assets}/player/RAmarAccessory2.nj | Bin .../assets}/player/RAmarAccessory3.nj | Bin .../assets}/player/RAmarAccessory4.nj | Bin .../assets}/player/RAmarAccessory5.nj | Bin .../assets}/player/RAmarAccessory6.nj | Bin .../assets}/player/RAmarAccessory7.nj | Bin .../assets}/player/RAmarAccessory8.nj | Bin .../assets}/player/RAmarAccessory9.nj | Bin .../resources/assets}/player/RAmarBody.nj | Bin .../resources/assets}/player/RAmarHair0.nj | Bin .../resources/assets}/player/RAmarHair1.nj | Bin .../resources/assets}/player/RAmarHair2.nj | Bin .../resources/assets}/player/RAmarHair3.nj | Bin .../resources/assets}/player/RAmarHair4.nj | Bin .../resources/assets}/player/RAmarHair5.nj | Bin .../resources/assets}/player/RAmarHair6.nj | Bin .../resources/assets}/player/RAmarHair7.nj | Bin .../resources/assets}/player/RAmarHair8.nj | Bin .../resources/assets}/player/RAmarHair9.nj | Bin .../resources/assets}/player/RAmarHead0.nj | Bin .../resources/assets}/player/RAmarTex.afs | Bin .../assets}/player/RAmarlAccessory0.nj | Bin .../assets}/player/RAmarlAccessory1.nj | Bin .../assets}/player/RAmarlAccessory2.nj | Bin .../assets}/player/RAmarlAccessory3.nj | Bin .../assets}/player/RAmarlAccessory4.nj | Bin .../assets}/player/RAmarlAccessory5.nj | Bin .../assets}/player/RAmarlAccessory6.nj | Bin .../assets}/player/RAmarlAccessory7.nj | Bin .../assets}/player/RAmarlAccessory8.nj | Bin .../assets}/player/RAmarlAccessory9.nj | Bin .../resources/assets}/player/RAmarlBody.nj | Bin .../resources/assets}/player/RAmarlHair0.nj | Bin .../resources/assets}/player/RAmarlHair1.nj | Bin .../resources/assets}/player/RAmarlHair2.nj | Bin .../resources/assets}/player/RAmarlHair3.nj | Bin .../resources/assets}/player/RAmarlHair4.nj | Bin .../resources/assets}/player/RAmarlHair5.nj | Bin .../resources/assets}/player/RAmarlHair6.nj | Bin .../resources/assets}/player/RAmarlHair7.nj | Bin .../resources/assets}/player/RAmarlHair8.nj | Bin .../resources/assets}/player/RAmarlHair9.nj | Bin .../resources/assets}/player/RAmarlHead0.nj | Bin .../resources/assets}/player/RAmarlTex.afs | Bin .../player/animation/animation_000.njm | Bin .../player/animation/animation_001.njm | Bin .../player/animation/animation_002.njm | Bin .../player/animation/animation_003.njm | Bin .../player/animation/animation_004.njm | Bin .../player/animation/animation_005.njm | Bin .../player/animation/animation_006.njm | Bin .../player/animation/animation_007.njm | Bin .../player/animation/animation_008.njm | Bin .../player/animation/animation_009.njm | Bin .../player/animation/animation_010.njm | Bin .../player/animation/animation_011.njm | Bin .../player/animation/animation_012.njm | Bin .../player/animation/animation_013.njm | Bin .../player/animation/animation_014.njm | Bin .../player/animation/animation_015.njm | Bin .../player/animation/animation_016.njm | Bin .../player/animation/animation_017.njm | Bin .../player/animation/animation_018.njm | Bin .../player/animation/animation_019.njm | Bin .../player/animation/animation_020.njm | Bin .../player/animation/animation_021.njm | Bin .../player/animation/animation_022.njm | Bin .../player/animation/animation_023.njm | Bin .../player/animation/animation_024.njm | Bin .../player/animation/animation_025.njm | Bin .../player/animation/animation_026.njm | Bin .../player/animation/animation_027.njm | Bin .../player/animation/animation_028.njm | Bin .../player/animation/animation_029.njm | Bin .../player/animation/animation_030.njm | Bin .../player/animation/animation_031.njm | Bin .../player/animation/animation_032.njm | Bin .../player/animation/animation_033.njm | Bin .../player/animation/animation_034.njm | Bin .../player/animation/animation_035.njm | Bin .../player/animation/animation_036.njm | Bin .../player/animation/animation_037.njm | Bin .../player/animation/animation_038.njm | Bin .../player/animation/animation_039.njm | Bin .../player/animation/animation_040.njm | Bin .../player/animation/animation_041.njm | Bin .../player/animation/animation_042.njm | Bin .../player/animation/animation_043.njm | Bin .../player/animation/animation_044.njm | Bin .../player/animation/animation_045.njm | Bin .../player/animation/animation_046.njm | Bin .../player/animation/animation_047.njm | Bin .../player/animation/animation_048.njm | Bin .../player/animation/animation_049.njm | Bin .../player/animation/animation_050.njm | Bin .../player/animation/animation_051.njm | Bin .../player/animation/animation_052.njm | Bin .../player/animation/animation_053.njm | Bin .../player/animation/animation_054.njm | Bin .../player/animation/animation_055.njm | Bin .../player/animation/animation_056.njm | Bin .../player/animation/animation_057.njm | Bin .../player/animation/animation_058.njm | Bin .../player/animation/animation_059.njm | Bin .../player/animation/animation_060.njm | Bin .../player/animation/animation_061.njm | Bin .../player/animation/animation_062.njm | Bin .../player/animation/animation_063.njm | Bin .../player/animation/animation_064.njm | Bin .../player/animation/animation_065.njm | Bin .../player/animation/animation_066.njm | Bin .../player/animation/animation_067.njm | Bin .../player/animation/animation_068.njm | Bin .../player/animation/animation_069.njm | Bin .../player/animation/animation_070.njm | Bin .../player/animation/animation_071.njm | Bin .../player/animation/animation_072.njm | Bin .../player/animation/animation_073.njm | Bin .../player/animation/animation_074.njm | Bin .../player/animation/animation_075.njm | Bin .../player/animation/animation_076.njm | Bin .../player/animation/animation_077.njm | Bin .../player/animation/animation_078.njm | Bin .../player/animation/animation_079.njm | Bin .../player/animation/animation_080.njm | Bin .../player/animation/animation_081.njm | Bin .../player/animation/animation_082.njm | Bin .../player/animation/animation_083.njm | Bin .../player/animation/animation_084.njm | Bin .../player/animation/animation_085.njm | Bin .../player/animation/animation_086.njm | Bin .../player/animation/animation_087.njm | Bin .../player/animation/animation_088.njm | Bin .../player/animation/animation_089.njm | Bin .../player/animation/animation_090.njm | Bin .../player/animation/animation_091.njm | Bin .../player/animation/animation_092.njm | Bin .../player/animation/animation_093.njm | Bin .../player/animation/animation_094.njm | Bin .../player/animation/animation_095.njm | Bin .../player/animation/animation_096.njm | Bin .../player/animation/animation_097.njm | Bin .../player/animation/animation_098.njm | Bin .../player/animation/animation_099.njm | Bin .../player/animation/animation_100.njm | Bin .../player/animation/animation_101.njm | Bin .../player/animation/animation_102.njm | Bin .../player/animation/animation_103.njm | Bin .../player/animation/animation_104.njm | Bin .../player/animation/animation_105.njm | Bin .../player/animation/animation_106.njm | Bin .../player/animation/animation_107.njm | Bin .../player/animation/animation_108.njm | Bin .../player/animation/animation_109.njm | Bin .../player/animation/animation_110.njm | Bin .../player/animation/animation_111.njm | Bin .../player/animation/animation_112.njm | Bin .../player/animation/animation_113.njm | Bin .../player/animation/animation_114.njm | Bin .../player/animation/animation_115.njm | Bin .../player/animation/animation_116.njm | Bin .../player/animation/animation_117.njm | Bin .../player/animation/animation_118.njm | Bin .../player/animation/animation_119.njm | Bin .../player/animation/animation_120.njm | Bin .../player/animation/animation_121.njm | Bin .../player/animation/animation_122.njm | Bin .../player/animation/animation_123.njm | Bin .../player/animation/animation_124.njm | Bin .../player/animation/animation_125.njm | Bin .../player/animation/animation_126.njm | Bin .../player/animation/animation_127.njm | Bin .../player/animation/animation_128.njm | Bin .../player/animation/animation_129.njm | Bin .../player/animation/animation_130.njm | Bin .../player/animation/animation_131.njm | Bin .../player/animation/animation_132.njm | Bin .../player/animation/animation_133.njm | Bin .../player/animation/animation_134.njm | Bin .../player/animation/animation_135.njm | Bin .../player/animation/animation_136.njm | Bin .../player/animation/animation_137.njm | Bin .../player/animation/animation_138.njm | Bin .../player/animation/animation_139.njm | Bin .../player/animation/animation_140.njm | Bin .../player/animation/animation_141.njm | Bin .../player/animation/animation_142.njm | Bin .../player/animation/animation_143.njm | Bin .../player/animation/animation_144.njm | Bin .../player/animation/animation_145.njm | Bin .../player/animation/animation_146.njm | Bin .../player/animation/animation_147.njm | Bin .../player/animation/animation_148.njm | Bin .../player/animation/animation_149.njm | Bin .../player/animation/animation_150.njm | Bin .../player/animation/animation_151.njm | Bin .../player/animation/animation_152.njm | Bin .../player/animation/animation_153.njm | Bin .../player/animation/animation_154.njm | Bin .../player/animation/animation_155.njm | Bin .../player/animation/animation_156.njm | Bin .../player/animation/animation_157.njm | Bin .../player/animation/animation_158.njm | Bin .../player/animation/animation_159.njm | Bin .../player/animation/animation_160.njm | Bin .../player/animation/animation_161.njm | Bin .../player/animation/animation_162.njm | Bin .../player/animation/animation_163.njm | Bin .../player/animation/animation_164.njm | Bin .../player/animation/animation_165.njm | Bin .../player/animation/animation_166.njm | Bin .../player/animation/animation_167.njm | Bin .../player/animation/animation_168.njm | Bin .../player/animation/animation_169.njm | Bin .../player/animation/animation_170.njm | Bin .../player/animation/animation_171.njm | Bin .../player/animation/animation_172.njm | Bin .../player/animation/animation_173.njm | Bin .../player/animation/animation_174.njm | Bin .../player/animation/animation_175.njm | Bin .../player/animation/animation_176.njm | Bin .../player/animation/animation_177.njm | Bin .../player/animation/animation_178.njm | Bin .../player/animation/animation_179.njm | Bin .../player/animation/animation_180.njm | Bin .../player/animation/animation_181.njm | Bin .../player/animation/animation_182.njm | Bin .../player/animation/animation_183.njm | Bin .../player/animation/animation_184.njm | Bin .../player/animation/animation_185.njm | Bin .../player/animation/animation_186.njm | Bin .../player/animation/animation_187.njm | Bin .../player/animation/animation_188.njm | Bin .../player/animation/animation_189.njm | Bin .../player/animation/animation_190.njm | Bin .../player/animation/animation_191.njm | Bin .../player/animation/animation_192.njm | Bin .../player/animation/animation_193.njm | Bin .../player/animation/animation_194.njm | Bin .../player/animation/animation_195.njm | Bin .../player/animation/animation_196.njm | Bin .../player/animation/animation_197.njm | Bin .../player/animation/animation_198.njm | Bin .../player/animation/animation_199.njm | Bin .../player/animation/animation_200.njm | Bin .../player/animation/animation_201.njm | Bin .../player/animation/animation_202.njm | Bin .../player/animation/animation_203.njm | Bin .../player/animation/animation_204.njm | Bin .../player/animation/animation_205.njm | Bin .../player/animation/animation_206.njm | Bin .../player/animation/animation_207.njm | Bin .../player/animation/animation_208.njm | Bin .../player/animation/animation_209.njm | Bin .../player/animation/animation_210.njm | Bin .../player/animation/animation_211.njm | Bin .../player/animation/animation_212.njm | Bin .../player/animation/animation_213.njm | Bin .../player/animation/animation_214.njm | Bin .../player/animation/animation_215.njm | Bin .../player/animation/animation_216.njm | Bin .../player/animation/animation_217.njm | Bin .../player/animation/animation_218.njm | Bin .../player/animation/animation_219.njm | Bin .../player/animation/animation_220.njm | Bin .../player/animation/animation_221.njm | Bin .../player/animation/animation_222.njm | Bin .../player/animation/animation_223.njm | Bin .../player/animation/animation_224.njm | Bin .../player/animation/animation_225.njm | Bin .../player/animation/animation_226.njm | Bin .../player/animation/animation_227.njm | Bin .../player/animation/animation_228.njm | Bin .../player/animation/animation_229.njm | Bin .../player/animation/animation_230.njm | Bin .../player/animation/animation_231.njm | Bin .../player/animation/animation_232.njm | Bin .../player/animation/animation_233.njm | Bin .../player/animation/animation_234.njm | Bin .../player/animation/animation_235.njm | Bin .../player/animation/animation_236.njm | Bin .../player/animation/animation_237.njm | Bin .../player/animation/animation_238.njm | Bin .../player/animation/animation_239.njm | Bin .../player/animation/animation_240.njm | Bin .../player/animation/animation_241.njm | Bin .../player/animation/animation_242.njm | Bin .../player/animation/animation_243.njm | Bin .../player/animation/animation_244.njm | Bin .../player/animation/animation_245.njm | Bin .../player/animation/animation_246.njm | Bin .../player/animation/animation_247.njm | Bin .../player/animation/animation_248.njm | Bin .../player/animation/animation_249.njm | Bin .../player/animation/animation_250.njm | Bin .../player/animation/animation_251.njm | Bin .../player/animation/animation_252.njm | Bin .../player/animation/animation_253.njm | Bin .../player/animation/animation_254.njm | Bin .../player/animation/animation_255.njm | Bin .../player/animation/animation_256.njm | Bin .../player/animation/animation_257.njm | Bin .../player/animation/animation_258.njm | Bin .../player/animation/animation_259.njm | Bin .../player/animation/animation_260.njm | Bin .../player/animation/animation_261.njm | Bin .../player/animation/animation_262.njm | Bin .../player/animation/animation_263.njm | Bin .../player/animation/animation_264.njm | Bin .../player/animation/animation_265.njm | Bin .../player/animation/animation_266.njm | Bin .../player/animation/animation_267.njm | Bin .../player/animation/animation_268.njm | Bin .../player/animation/animation_269.njm | Bin .../player/animation/animation_270.njm | Bin .../player/animation/animation_271.njm | Bin .../player/animation/animation_272.njm | Bin .../player/animation/animation_273.njm | Bin .../player/animation/animation_274.njm | Bin .../player/animation/animation_275.njm | Bin .../player/animation/animation_276.njm | Bin .../player/animation/animation_277.njm | Bin .../player/animation/animation_278.njm | Bin .../player/animation/animation_279.njm | Bin .../player/animation/animation_280.njm | Bin .../player/animation/animation_281.njm | Bin .../player/animation/animation_282.njm | Bin .../player/animation/animation_283.njm | Bin .../player/animation/animation_284.njm | Bin .../player/animation/animation_285.njm | Bin .../player/animation/animation_286.njm | Bin .../player/animation/animation_287.njm | Bin .../player/animation/animation_288.njm | Bin .../player/animation/animation_289.njm | Bin .../player/animation/animation_290.njm | Bin .../player/animation/animation_291.njm | Bin .../player/animation/animation_292.njm | Bin .../player/animation/animation_293.njm | Bin .../player/animation/animation_294.njm | Bin .../player/animation/animation_295.njm | Bin .../player/animation/animation_296.njm | Bin .../player/animation/animation_297.njm | Bin .../player/animation/animation_298.njm | Bin .../player/animation/animation_299.njm | Bin .../player/animation/animation_300.njm | Bin .../player/animation/animation_301.njm | Bin .../player/animation/animation_302.njm | Bin .../player/animation/animation_303.njm | Bin .../player/animation/animation_304.njm | Bin .../player/animation/animation_305.njm | Bin .../player/animation/animation_306.njm | Bin .../player/animation/animation_307.njm | Bin .../player/animation/animation_308.njm | Bin .../player/animation/animation_309.njm | Bin .../player/animation/animation_310.njm | Bin .../player/animation/animation_311.njm | Bin .../player/animation/animation_312.njm | Bin .../player/animation/animation_313.njm | Bin .../player/animation/animation_314.njm | Bin .../player/animation/animation_315.njm | Bin .../player/animation/animation_316.njm | Bin .../player/animation/animation_317.njm | Bin .../player/animation/animation_318.njm | Bin .../player/animation/animation_319.njm | Bin .../player/animation/animation_320.njm | Bin .../player/animation/animation_321.njm | Bin .../player/animation/animation_322.njm | Bin .../player/animation/animation_323.njm | Bin .../player/animation/animation_324.njm | Bin .../player/animation/animation_325.njm | Bin .../player/animation/animation_326.njm | Bin .../player/animation/animation_327.njm | Bin .../player/animation/animation_328.njm | Bin .../player/animation/animation_329.njm | Bin .../player/animation/animation_330.njm | Bin .../player/animation/animation_331.njm | Bin .../player/animation/animation_332.njm | Bin .../player/animation/animation_333.njm | Bin .../player/animation/animation_334.njm | Bin .../player/animation/animation_335.njm | Bin .../player/animation/animation_336.njm | Bin .../player/animation/animation_337.njm | Bin .../player/animation/animation_338.njm | Bin .../player/animation/animation_339.njm | Bin .../player/animation/animation_340.njm | Bin .../player/animation/animation_341.njm | Bin .../player/animation/animation_342.njm | Bin .../player/animation/animation_343.njm | Bin .../player/animation/animation_344.njm | Bin .../player/animation/animation_345.njm | Bin .../player/animation/animation_346.njm | Bin .../player/animation/animation_347.njm | Bin .../player/animation/animation_348.njm | Bin .../player/animation/animation_349.njm | Bin .../player/animation/animation_350.njm | Bin .../player/animation/animation_351.njm | Bin .../player/animation/animation_352.njm | Bin .../player/animation/animation_353.njm | Bin .../player/animation/animation_354.njm | Bin .../player/animation/animation_355.njm | Bin .../player/animation/animation_356.njm | Bin .../player/animation/animation_357.njm | Bin .../player/animation/animation_358.njm | Bin .../player/animation/animation_359.njm | Bin .../player/animation/animation_360.njm | Bin .../player/animation/animation_361.njm | Bin .../player/animation/animation_362.njm | Bin .../player/animation/animation_363.njm | Bin .../player/animation/animation_364.njm | Bin .../player/animation/animation_365.njm | Bin .../player/animation/animation_366.njm | Bin .../player/animation/animation_367.njm | Bin .../player/animation/animation_368.njm | Bin .../player/animation/animation_369.njm | Bin .../player/animation/animation_370.njm | Bin .../player/animation/animation_371.njm | Bin .../player/animation/animation_372.njm | Bin .../player/animation/animation_373.njm | Bin .../player/animation/animation_374.njm | Bin .../player/animation/animation_375.njm | Bin .../player/animation/animation_376.njm | Bin .../player/animation/animation_377.njm | Bin .../player/animation/animation_378.njm | Bin .../player/animation/animation_379.njm | Bin .../player/animation/animation_380.njm | Bin .../player/animation/animation_381.njm | Bin .../player/animation/animation_382.njm | Bin .../player/animation/animation_383.njm | Bin .../player/animation/animation_384.njm | Bin .../player/animation/animation_385.njm | Bin .../player/animation/animation_386.njm | Bin .../player/animation/animation_387.njm | Bin .../player/animation/animation_388.njm | Bin .../player/animation/animation_389.njm | Bin .../player/animation/animation_390.njm | Bin .../player/animation/animation_391.njm | Bin .../player/animation/animation_392.njm | Bin .../player/animation/animation_393.njm | Bin .../player/animation/animation_394.njm | Bin .../player/animation/animation_395.njm | Bin .../player/animation/animation_396.njm | Bin .../player/animation/animation_397.njm | Bin .../player/animation/animation_398.njm | Bin .../player/animation/animation_399.njm | Bin .../player/animation/animation_400.njm | Bin .../player/animation/animation_401.njm | Bin .../player/animation/animation_402.njm | Bin .../player/animation/animation_403.njm | Bin .../player/animation/animation_404.njm | Bin .../player/animation/animation_405.njm | Bin .../player/animation/animation_406.njm | Bin .../player/animation/animation_407.njm | Bin .../player/animation/animation_408.njm | Bin .../player/animation/animation_409.njm | Bin .../player/animation/animation_410.njm | Bin .../player/animation/animation_411.njm | Bin .../player/animation/animation_412.njm | Bin .../player/animation/animation_413.njm | Bin .../player/animation/animation_414.njm | Bin .../player/animation/animation_415.njm | Bin .../player/animation/animation_416.njm | Bin .../player/animation/animation_417.njm | Bin .../player/animation/animation_418.njm | Bin .../player/animation/animation_419.njm | Bin .../player/animation/animation_420.njm | Bin .../player/animation/animation_421.njm | Bin .../player/animation/animation_422.njm | Bin .../player/animation/animation_423.njm | Bin .../player/animation/animation_424.njm | Bin .../player/animation/animation_425.njm | Bin .../player/animation/animation_426.njm | Bin .../player/animation/animation_427.njm | Bin .../player/animation/animation_428.njm | Bin .../player/animation/animation_429.njm | Bin .../player/animation/animation_430.njm | Bin .../player/animation/animation_431.njm | Bin .../player/animation/animation_432.njm | Bin .../player/animation/animation_433.njm | Bin .../player/animation/animation_434.njm | Bin .../player/animation/animation_435.njm | Bin .../player/animation/animation_436.njm | Bin .../player/animation/animation_437.njm | Bin .../player/animation/animation_438.njm | Bin .../player/animation/animation_439.njm | Bin .../player/animation/animation_440.njm | Bin .../player/animation/animation_441.njm | Bin .../player/animation/animation_442.njm | Bin .../player/animation/animation_443.njm | Bin .../player/animation/animation_444.njm | Bin .../player/animation/animation_445.njm | Bin .../player/animation/animation_446.njm | Bin .../player/animation/animation_447.njm | Bin .../player/animation/animation_448.njm | Bin .../player/animation/animation_449.njm | Bin .../player/animation/animation_450.njm | Bin .../player/animation/animation_451.njm | Bin .../player/animation/animation_452.njm | Bin .../player/animation/animation_453.njm | Bin .../player/animation/animation_454.njm | Bin .../player/animation/animation_455.njm | Bin .../player/animation/animation_456.njm | Bin .../player/animation/animation_457.njm | Bin .../player/animation/animation_458.njm | Bin .../player/animation/animation_459.njm | Bin .../player/animation/animation_460.njm | Bin .../player/animation/animation_461.njm | Bin .../player/animation/animation_462.njm | Bin .../player/animation/animation_463.njm | Bin .../player/animation/animation_464.njm | Bin .../player/animation/animation_465.njm | Bin .../player/animation/animation_466.njm | Bin .../player/animation/animation_467.njm | Bin .../player/animation/animation_468.njm | Bin .../player/animation/animation_469.njm | Bin .../player/animation/animation_470.njm | Bin .../player/animation/animation_471.njm | Bin .../player/animation/animation_472.njm | Bin .../player/animation/animation_473.njm | Bin .../player/animation/animation_474.njm | Bin .../player/animation/animation_475.njm | Bin .../player/animation/animation_476.njm | Bin .../player/animation/animation_477.njm | Bin .../player/animation/animation_478.njm | Bin .../player/animation/animation_479.njm | Bin .../player/animation/animation_480.njm | Bin .../player/animation/animation_481.njm | Bin .../player/animation/animation_482.njm | Bin .../player/animation/animation_483.njm | Bin .../player/animation/animation_484.njm | Bin .../player/animation/animation_485.njm | Bin .../player/animation/animation_486.njm | Bin .../player/animation/animation_487.njm | Bin .../player/animation/animation_488.njm | Bin .../player/animation/animation_489.njm | Bin .../player/animation/animation_490.njm | Bin .../player/animation/animation_491.njm | Bin .../player/animation/animation_492.njm | Bin .../player/animation/animation_493.njm | Bin .../player/animation/animation_494.njm | Bin .../player/animation/animation_495.njm | Bin .../player/animation/animation_496.njm | Bin .../player/animation/animation_497.njm | Bin .../player/animation/animation_498.njm | Bin .../player/animation/animation_499.njm | Bin .../player/animation/animation_500.njm | Bin .../player/animation/animation_501.njm | Bin .../player/animation/animation_502.njm | Bin .../player/animation/animation_503.njm | Bin .../player/animation/animation_504.njm | Bin .../player/animation/animation_505.njm | Bin .../player/animation/animation_506.njm | Bin .../player/animation/animation_507.njm | Bin .../player/animation/animation_508.njm | Bin .../player/animation/animation_509.njm | Bin .../player/animation/animation_510.njm | Bin .../player/animation/animation_511.njm | Bin .../player/animation/animation_512.njm | Bin .../player/animation/animation_513.njm | Bin .../player/animation/animation_514.njm | Bin .../player/animation/animation_515.njm | Bin .../player/animation/animation_516.njm | Bin .../player/animation/animation_517.njm | Bin .../player/animation/animation_518.njm | Bin .../player/animation/animation_519.njm | Bin .../player/animation/animation_520.njm | Bin .../player/animation/animation_521.njm | Bin .../player/animation/animation_522.njm | Bin .../player/animation/animation_523.njm | Bin .../player/animation/animation_524.njm | Bin .../player/animation/animation_525.njm | Bin .../player/animation/animation_526.njm | Bin .../player/animation/animation_527.njm | Bin .../player/animation/animation_528.njm | Bin .../player/animation/animation_529.njm | Bin .../player/animation/animation_530.njm | Bin .../player/animation/animation_531.njm | Bin .../player/animation/animation_532.njm | Bin .../player/animation/animation_533.njm | Bin .../player/animation/animation_534.njm | Bin .../player/animation/animation_535.njm | Bin .../player/animation/animation_536.njm | Bin .../player/animation/animation_537.njm | Bin .../player/animation/animation_538.njm | Bin .../player/animation/animation_539.njm | Bin .../player/animation/animation_540.njm | Bin .../player/animation/animation_541.njm | Bin .../player/animation/animation_542.njm | Bin .../player/animation/animation_543.njm | Bin .../player/animation/animation_544.njm | Bin .../player/animation/animation_545.njm | Bin .../player/animation/animation_546.njm | Bin .../player/animation/animation_547.njm | Bin .../player/animation/animation_548.njm | Bin .../player/animation/animation_549.njm | Bin .../player/animation/animation_550.njm | Bin .../player/animation/animation_551.njm | Bin .../player/animation/animation_552.njm | Bin .../player/animation/animation_553.njm | Bin .../player/animation/animation_554.njm | Bin .../player/animation/animation_555.njm | Bin .../player/animation/animation_556.njm | Bin .../player/animation/animation_557.njm | Bin .../player/animation/animation_558.njm | Bin .../player/animation/animation_559.njm | Bin .../player/animation/animation_560.njm | Bin .../player/animation/animation_561.njm | Bin .../player/animation/animation_562.njm | Bin .../player/animation/animation_563.njm | Bin .../player/animation/animation_564.njm | Bin .../player/animation/animation_565.njm | Bin .../player/animation/animation_566.njm | Bin .../player/animation/animation_567.njm | Bin .../player/animation/animation_568.njm | Bin .../player/animation/animation_569.njm | Bin .../player/animation/animation_570.njm | Bin .../player/animation/animation_571.njm | Bin .../main/resources/assets}/player/plObdy00.nj | Bin .../main/resources/assets}/player/plOhai00.nj | Bin .../main/resources/assets}/player/plOhed00.nj | Bin .../main/resources/assets}/player/plPbdy00.nj | Bin .../main/resources/assets}/player/plPhai00.nj | Bin .../main/resources/assets}/player/plPhed00.nj | Bin .../main/resources/assets}/player/plQbdy00.nj | Bin .../main/resources/assets}/player/plQhai00.nj | Bin .../main/resources/assets}/player/plQhed00.nj | Bin .../main/resources/assets}/player/plRbdy00.nj | Bin .../main/resources/assets}/player/plRhai00.nj | Bin .../main/resources/assets}/player/plRhed00.nj | Bin .../main/resources/assets}/player/plSbdy00.nj | Bin .../main/resources/assets}/player/plShai00.nj | Bin .../main/resources/assets}/player/plShed00.nj | Bin .../main/resources/assets}/player/plTbdy00.nj | Bin .../main/resources/assets}/player/plThai00.nj | Bin .../main/resources/assets}/player/plThed00.nj | Bin .../main/resources/assets}/player/plUbdy00.nj | Bin .../main/resources/assets}/player/plUhed00.nj | Bin .../main/resources/assets}/player/plVbdy00.nj | Bin .../main/resources/assets}/player/plVhed00.nj | Bin .../main/resources/assets}/player/plWbdy00.nj | Bin .../main/resources/assets}/player/plWhed00.nj | Bin .../main/resources/assets}/player/plXbdy00.nj | Bin .../main/resources/assets}/player/plXhed00.nj | Bin .../main/resources/assets}/player/plYbdy00.nj | Bin .../main/resources/assets}/player/plYhed00.nj | Bin .../resources/assets}/quests.ephinea.json | 0 .../assets}/quests/defaults/default_ep_1.qst | Bin .../gui => web/src/main/resources}/index.css | 4 +- web/src/main/resources/index.html | 13 + .../PathAwareTabControllerTests.kt | 86 + .../phantasmal/web/core/store/UiStoreTests.kt | 92 + .../phantasmal/web/test/TestApplicationUrl.kt | 38 + .../world/phantasmal/web/test/TestSuite.kt | 24 + webpack.common.js | 43 - webpack.dev.js | 68 - webpack.prod.js | 45 - webui/build.gradle.kts | 16 + .../webui/controllers/Controller.kt | 5 + .../world/phantasmal/webui/dom/Creation.kt | 212 + .../kotlin/world/phantasmal/webui/dom/Dom.kt | 21 + .../world/phantasmal/webui/stores/Store.kt | 5 + .../phantasmal/webui/widgets/LazyLoader.kt | 22 + .../world/phantasmal/webui/widgets/Widget.kt | 177 + .../world/phantasmal/webui/test/TestSuite.kt | 24 + .../phantasmal/webui/widgets/WidgetTests.kt | 78 + yarn.lock | 11458 ---------------- 2715 files changed, 5247 insertions(+), 73485 deletions(-) delete mode 100644 .env.dev delete mode 100644 .env.prod delete mode 100644 .env.test delete mode 100644 .eslintrc.json delete mode 100644 .github/workflows/deploy.yml delete mode 100644 .github/workflows/tests.yml delete mode 100644 .prettierrc.json delete mode 100644 .yarn/releases/yarn-berry.cjs delete mode 100644 .yarnrc.yml delete mode 100644 assets_generation/index.ts delete mode 100644 assets_generation/quest_stats.ts delete mode 100644 assets_generation/update_drops_ephinea.ts delete mode 100644 assets_generation/update_ephinea_data.ts delete mode 100644 assets_generation/update_generic_data.ts delete mode 100644 assets_generation/walk_quests.ts create mode 100644 build.gradle.kts create mode 100644 core/build.gradle.kts create mode 100644 core/src/commonMain/kotlin/world/phantasmal/core/FastCast.kt create mode 100644 core/src/commonMain/kotlin/world/phantasmal/core/PwResult.kt create mode 100644 core/src/commonMain/kotlin/world/phantasmal/core/disposable/Creation.kt create mode 100644 core/src/commonMain/kotlin/world/phantasmal/core/disposable/Disposable.kt create mode 100644 core/src/commonMain/kotlin/world/phantasmal/core/disposable/DisposableContainer.kt create mode 100644 core/src/commonMain/kotlin/world/phantasmal/core/disposable/Disposer.kt create mode 100644 core/src/commonMain/kotlin/world/phantasmal/core/disposable/SimpleDisposable.kt create mode 100644 core/src/commonMain/kotlin/world/phantasmal/core/disposable/TrackedDisposable.kt create mode 100644 core/src/commonTest/kotlin/world/phantasmal/core/disposable/DisposerTests.kt create mode 100644 core/src/commonTest/kotlin/world/phantasmal/core/disposable/TrackedDisposableTests.kt create mode 100644 core/src/jsMain/kotlin/world/phantasmal/core/FastCast.kt delete mode 100644 deploy.ps1 create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100644 gradlew create mode 100644 gradlew.bat delete mode 100644 jest.config.js create mode 100644 lib/build.gradle.kts create mode 100644 lib/src/commonMain/kotlin/world/phantasmal/lib/cursor/Cursor.kt create mode 100644 lib/src/commonMain/kotlin/world/phantasmal/lib/cursor/Endianness.kt create mode 100644 lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/Iff.kt rename src/core/data_formats/parsing/quest/properties.ts => lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/EntityProp.kt (64%) create mode 100644 lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/EntityType.kt create mode 100644 lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/Episode.kt create mode 100644 lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/NpcType.kt create mode 100644 observable/build.gradle.kts create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/Emitter.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/Observable.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/Observer.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/SimpleEmitter.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/AbstractVal.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/DelegatingVal.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/DependentVal.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/MutableVal.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/SimpleVal.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/StaticVal.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/Val.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValCreation.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValExtensions.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValObserver.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/FoldedVal.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListVal.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListValCreation.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListValObserver.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/MutableListVal.kt create mode 100644 observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/SimpleListVal.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/SimpleEmitterTests.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/TestObservable.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/test/TestSuite.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/value/DelegatingValTests.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/value/DependentValTests.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/value/SimpleValTests.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/value/StaticValTests.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/value/TestVal.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/value/ValCreationTests.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/value/list/SimpleListValTests.kt create mode 100644 observable/src/commonTest/kotlin/world/phantasmal/observable/value/list/TestListVal.kt delete mode 100644 package.json create mode 100644 settings.gradle.kts delete mode 100644 src/__mocks__/monaco-editor.js delete mode 100644 src/__mocks__/static_files.js delete mode 100644 src/__mocks__/webworkers.js delete mode 100644 src/application/controllers/NavigationController.test.ts delete mode 100644 src/application/controllers/NavigationController.ts delete mode 100644 src/application/gui/ApplicationView.css delete mode 100644 src/application/gui/ApplicationView.ts delete mode 100644 src/application/gui/MainContentView.ts delete mode 100644 src/application/gui/NavigationButton.css delete mode 100644 src/application/gui/NavigationButton.ts delete mode 100644 src/application/gui/NavigationView.css delete mode 100644 src/application/gui/NavigationView.test.ts delete mode 100644 src/application/gui/NavigationView.ts delete mode 100644 src/application/gui/__snapshots__/NavigationView.test.ts.snap delete mode 100644 src/application/index.test.ts delete mode 100644 src/application/index.ts delete mode 100644 src/core/Clock.ts delete mode 100644 src/core/DisposablePromise.test.ts delete mode 100644 src/core/DisposablePromise.ts delete mode 100644 src/core/HttpClient.ts delete mode 100644 src/core/Random.ts delete mode 100644 src/core/Result.ts delete mode 100644 src/core/Severity.ts delete mode 100644 src/core/controllers/Controller.ts delete mode 100644 src/core/data_formats/asm/data_flow_analysis/ControlFlowGraph.test.ts delete mode 100644 src/core/data_formats/asm/data_flow_analysis/ControlFlowGraph.ts delete mode 100644 src/core/data_formats/asm/data_flow_analysis/ValueSet.test.ts delete mode 100644 src/core/data_formats/asm/data_flow_analysis/ValueSet.ts delete mode 100644 src/core/data_formats/asm/data_flow_analysis/get_map_designations.ts delete mode 100644 src/core/data_formats/asm/data_flow_analysis/get_register_value.test.ts delete mode 100644 src/core/data_formats/asm/data_flow_analysis/get_register_value.ts delete mode 100644 src/core/data_formats/asm/data_flow_analysis/get_stack_value.ts delete mode 100644 src/core/data_formats/asm/instructions.ts delete mode 100644 src/core/data_formats/asm/opcodes.ts delete mode 100644 src/core/data_formats/block/AbstractWritableBlock.ts delete mode 100644 src/core/data_formats/block/ArrayBufferBlock.ts delete mode 100644 src/core/data_formats/block/Block.ts delete mode 100644 src/core/data_formats/block/Endianness.ts delete mode 100644 src/core/data_formats/block/ResizableBlock.test.ts delete mode 100644 src/core/data_formats/block/ResizableBlock.ts delete mode 100644 src/core/data_formats/block/WritableBlock.ts delete mode 100644 src/core/data_formats/block/cursor/AbstractArrayBufferCursor.ts delete mode 100644 src/core/data_formats/block/cursor/AbstractWritableCursor.ts delete mode 100644 src/core/data_formats/block/cursor/ArrayBufferCursor.ts delete mode 100644 src/core/data_formats/block/cursor/BufferCursor.ts delete mode 100644 src/core/data_formats/block/cursor/Cursor.test.ts delete mode 100644 src/core/data_formats/block/cursor/Cursor.ts delete mode 100644 src/core/data_formats/block/cursor/ResizableBlockCursor.test.ts delete mode 100644 src/core/data_formats/block/cursor/ResizableBlockCursor.ts delete mode 100644 src/core/data_formats/block/cursor/WritableCursor.test.ts delete mode 100644 src/core/data_formats/block/cursor/WritableCursor.ts delete mode 100644 src/core/data_formats/compression/prs/Cargo.lock delete mode 100644 src/core/data_formats/compression/prs/Cargo.toml delete mode 100644 src/core/data_formats/compression/prs/compress.ts delete mode 100644 src/core/data_formats/compression/prs/decompress.ts delete mode 100644 src/core/data_formats/compression/prs/index.test.ts delete mode 100644 src/core/data_formats/compression/prs/pkg/package.json delete mode 100644 src/core/data_formats/compression/prs/prs.rs delete mode 100644 src/core/data_formats/compression/prs/prs_wasm.ts delete mode 100644 src/core/data_formats/encryption/prc.ts delete mode 100644 src/core/data_formats/parsing/afs.ts delete mode 100644 src/core/data_formats/parsing/area_collision_geometry.test.ts delete mode 100644 src/core/data_formats/parsing/area_collision_geometry.ts delete mode 100644 src/core/data_formats/parsing/area_geometry.ts delete mode 100644 src/core/data_formats/parsing/iff.ts delete mode 100644 src/core/data_formats/parsing/itempmt.test.ts delete mode 100644 src/core/data_formats/parsing/itempmt.ts delete mode 100644 src/core/data_formats/parsing/ninja/angle.ts delete mode 100644 src/core/data_formats/parsing/ninja/index.ts delete mode 100644 src/core/data_formats/parsing/ninja/motion.ts delete mode 100644 src/core/data_formats/parsing/ninja/njcm.ts delete mode 100644 src/core/data_formats/parsing/ninja/texture.ts delete mode 100644 src/core/data_formats/parsing/ninja/xj.ts delete mode 100644 src/core/data_formats/parsing/prc.ts delete mode 100644 src/core/data_formats/parsing/quest/BinFormat.ts delete mode 100644 src/core/data_formats/parsing/quest/Episode.ts delete mode 100644 src/core/data_formats/parsing/quest/Quest.ts delete mode 100644 src/core/data_formats/parsing/quest/QuestNpc.ts delete mode 100644 src/core/data_formats/parsing/quest/QuestObject.ts delete mode 100644 src/core/data_formats/parsing/quest/Version.ts delete mode 100644 src/core/data_formats/parsing/quest/areas.ts delete mode 100644 src/core/data_formats/parsing/quest/bin.test.ts delete mode 100644 src/core/data_formats/parsing/quest/bin.ts delete mode 100644 src/core/data_formats/parsing/quest/dat.test.ts delete mode 100644 src/core/data_formats/parsing/quest/dat.ts delete mode 100644 src/core/data_formats/parsing/quest/index.test.ts delete mode 100644 src/core/data_formats/parsing/quest/index.ts delete mode 100644 src/core/data_formats/parsing/quest/npc_types.ts delete mode 100644 src/core/data_formats/parsing/quest/object_code.ts delete mode 100644 src/core/data_formats/parsing/quest/object_types.ts delete mode 100644 src/core/data_formats/parsing/quest/qst.test.ts delete mode 100644 src/core/data_formats/parsing/quest/qst.ts delete mode 100644 src/core/data_formats/parsing/quest/set_npc_default_data.ts delete mode 100644 src/core/data_formats/parsing/quest/set_object_default_data.ts delete mode 100644 src/core/data_formats/parsing/rel.ts delete mode 100644 src/core/data_formats/parsing/rlc.ts delete mode 100644 src/core/data_formats/parsing/unitxt.ts delete mode 100644 src/core/data_formats/vector.ts delete mode 100644 src/core/dto/ItemTypeDto.ts delete mode 100644 src/core/enums.test.ts delete mode 100644 src/core/enums.ts delete mode 100644 src/core/files.ts delete mode 100644 src/core/gui/Button.css delete mode 100644 src/core/gui/Button.ts delete mode 100644 src/core/gui/CheckBox.ts delete mode 100644 src/core/gui/ComboBox.css delete mode 100644 src/core/gui/ComboBox.ts delete mode 100644 src/core/gui/Control.ts delete mode 100644 src/core/gui/Dialog.css delete mode 100644 src/core/gui/Dialog.ts delete mode 100644 src/core/gui/DropDown.css delete mode 100644 src/core/gui/DropDown.ts delete mode 100644 src/core/gui/DurationInput.css delete mode 100644 src/core/gui/DurationInput.ts delete mode 100644 src/core/gui/ErrorWidget.css delete mode 100644 src/core/gui/ErrorWidget.ts delete mode 100644 src/core/gui/FileButton.ts delete mode 100644 src/core/gui/Input.css delete mode 100644 src/core/gui/Input.ts delete mode 100644 src/core/gui/Label.css delete mode 100644 src/core/gui/Label.ts delete mode 100644 src/core/gui/LabelledControl.ts delete mode 100644 src/core/gui/LazyWidget.ts delete mode 100644 src/core/gui/Menu.css delete mode 100644 src/core/gui/Menu.ts delete mode 100644 src/core/gui/NumberInput.css delete mode 100644 src/core/gui/NumberInput.ts delete mode 100644 src/core/gui/RendererWidget.ts delete mode 100644 src/core/gui/Resizable.ts delete mode 100644 src/core/gui/ResizableView.ts delete mode 100644 src/core/gui/ResizableWidget.ts delete mode 100644 src/core/gui/ResultDialog.ts delete mode 100644 src/core/gui/Select.css delete mode 100644 src/core/gui/Select.ts delete mode 100644 src/core/gui/TabContainer.css delete mode 100644 src/core/gui/TabContainer.ts delete mode 100644 src/core/gui/Table.css delete mode 100644 src/core/gui/Table.ts delete mode 100644 src/core/gui/TextArea.css delete mode 100644 src/core/gui/TextArea.ts delete mode 100644 src/core/gui/TextInput.ts delete mode 100644 src/core/gui/ToolBar.css delete mode 100644 src/core/gui/ToolBar.ts delete mode 100644 src/core/gui/View.ts delete mode 100644 src/core/gui/Widget.ts delete mode 100644 src/core/gui/dom.ts delete mode 100644 src/core/gui/golden_layout_theme.css delete mode 100644 src/core/logging.ts delete mode 100644 src/core/math/index.ts delete mode 100644 src/core/model/index.ts delete mode 100644 src/core/model/items.ts delete mode 100644 src/core/observable/Disposable.ts delete mode 100644 src/core/observable/Disposer.test.ts delete mode 100644 src/core/observable/Disposer.ts delete mode 100644 src/core/observable/Emitter.ts delete mode 100644 src/core/observable/Observable.test.ts delete mode 100644 src/core/observable/Observable.ts delete mode 100644 src/core/observable/SimpleEmitter.ts delete mode 100644 src/core/observable/index.test.ts delete mode 100644 src/core/observable/index.ts delete mode 100644 src/core/observable/property/AbstractMinimalProperty.ts delete mode 100644 src/core/observable/property/AbstractProperty.ts delete mode 100644 src/core/observable/property/DependentProperty.ts delete mode 100644 src/core/observable/property/FlatMappedProperty.test.ts delete mode 100644 src/core/observable/property/FlatMappedProperty.ts delete mode 100644 src/core/observable/property/MappedProperty.ts delete mode 100644 src/core/observable/property/Property.test.ts delete mode 100644 src/core/observable/property/Property.ts delete mode 100644 src/core/observable/property/SimpleProperty.test.ts delete mode 100644 src/core/observable/property/SimpleProperty.ts delete mode 100644 src/core/observable/property/WidgetProperty.ts delete mode 100644 src/core/observable/property/WritableProperty.test.ts delete mode 100644 src/core/observable/property/WritableProperty.ts delete mode 100644 src/core/observable/property/list/AbstractListProperty.ts delete mode 100644 src/core/observable/property/list/DependentListProperty.ts delete mode 100644 src/core/observable/property/list/FlatMappedListProperty.ts delete mode 100644 src/core/observable/property/list/ListProperty.test.ts delete mode 100644 src/core/observable/property/list/ListProperty.ts delete mode 100644 src/core/observable/property/list/MappedListProperty.test.ts delete mode 100644 src/core/observable/property/list/MappedListProperty.ts delete mode 100644 src/core/observable/property/list/SimpleListProperty.test.ts delete mode 100644 src/core/observable/property/list/SimpleListProperty.ts delete mode 100644 src/core/observable/property/list/WritableListProperty.ts delete mode 100644 src/core/persistence/Persister.ts delete mode 100644 src/core/primitive_conversion.ts delete mode 100644 src/core/rendering/Renderer.ts delete mode 100644 src/core/rendering/conversion/GeometryBuilder.ts delete mode 100644 src/core/rendering/conversion/create_mesh.ts delete mode 100644 src/core/rendering/conversion/index.ts delete mode 100644 src/core/rendering/conversion/ninja_animation.ts delete mode 100644 src/core/rendering/conversion/ninja_geometry.ts delete mode 100644 src/core/rendering/conversion/ninja_textures.ts delete mode 100644 src/core/sequential.test.ts delete mode 100644 src/core/sequential.ts delete mode 100644 src/core/stores/DisposableServerMap.ts delete mode 100644 src/core/stores/GuiStore.ts delete mode 100644 src/core/stores/ItemTypeStore.ts delete mode 100644 src/core/stores/ServerMap.ts delete mode 100644 src/core/stores/Store.ts delete mode 100644 src/core/undo/Action.ts delete mode 100644 src/core/undo/SimpleUndo.ts delete mode 100644 src/core/undo/Undo.ts delete mode 100644 src/core/undo/UndoManager.ts delete mode 100644 src/core/undo/UndoStack.test.ts delete mode 100644 src/core/undo/UndoStack.ts delete mode 100644 src/core/util.test.ts delete mode 100644 src/core/util.ts delete mode 100644 src/dps_calc/stores/DpsCalcStore.ts delete mode 100644 src/hunt_optimizer/dto/QuestDto.ts delete mode 100644 src/hunt_optimizer/dto/drops.ts delete mode 100644 src/hunt_optimizer/gui/HelpView.css delete mode 100644 src/hunt_optimizer/gui/HelpView.ts delete mode 100644 src/hunt_optimizer/gui/HuntOptimizerView.ts delete mode 100644 src/hunt_optimizer/gui/MethodsForEpisodeView.css delete mode 100644 src/hunt_optimizer/gui/MethodsForEpisodeView.ts delete mode 100644 src/hunt_optimizer/gui/MethodsView.ts delete mode 100644 src/hunt_optimizer/gui/OptimizationResultView.css delete mode 100644 src/hunt_optimizer/gui/OptimizationResultView.ts delete mode 100644 src/hunt_optimizer/gui/OptimizerView.css delete mode 100644 src/hunt_optimizer/gui/OptimizerView.ts delete mode 100644 src/hunt_optimizer/gui/WantedItemsView.css delete mode 100644 src/hunt_optimizer/gui/WantedItemsView.ts delete mode 100644 src/hunt_optimizer/index.ts delete mode 100644 src/hunt_optimizer/model/HuntMethodModel.ts delete mode 100644 src/hunt_optimizer/model/ItemDrop.ts delete mode 100644 src/hunt_optimizer/model/SimpleQuestModel.ts delete mode 100644 src/hunt_optimizer/model/index.ts delete mode 100644 src/hunt_optimizer/persistence/HuntMethodPersister.ts delete mode 100644 src/hunt_optimizer/persistence/HuntOptimizerPersister.ts delete mode 100644 src/hunt_optimizer/stores/HuntMethodStore.ts delete mode 100644 src/hunt_optimizer/stores/HuntOptimizerStore.ts delete mode 100644 src/hunt_optimizer/stores/ItemDropStore.ts delete mode 100644 src/index.ts delete mode 100644 src/quest_editor/QuestRunner.ts delete mode 100644 src/quest_editor/actions/CreateEntityAction.ts delete mode 100644 src/quest_editor/actions/CreateEventAction.ts delete mode 100644 src/quest_editor/actions/EditEntityPropAction.ts delete mode 100644 src/quest_editor/actions/EditEventDelayAction.ts delete mode 100644 src/quest_editor/actions/EditIdAction.ts delete mode 100644 src/quest_editor/actions/EditLongDescriptionAction.ts delete mode 100644 src/quest_editor/actions/EditNameAction.ts delete mode 100644 src/quest_editor/actions/EditShortDescriptionAction.ts delete mode 100644 src/quest_editor/actions/QuestEditAction.ts delete mode 100644 src/quest_editor/actions/RemoveEntityAction.ts delete mode 100644 src/quest_editor/actions/RemoveEventAction.ts delete mode 100644 src/quest_editor/actions/RotateEntityAction.ts delete mode 100644 src/quest_editor/actions/TranslateEntityAction.ts delete mode 100644 src/quest_editor/controllers/DebugController.test.ts delete mode 100644 src/quest_editor/controllers/DebugController.ts delete mode 100644 src/quest_editor/controllers/EntityInfoController.test.ts delete mode 100644 src/quest_editor/controllers/EntityInfoController.ts delete mode 100644 src/quest_editor/controllers/EventsController.ts delete mode 100644 src/quest_editor/controllers/NpcCountsController.ts delete mode 100644 src/quest_editor/controllers/QuestEditorToolBarController.test.ts delete mode 100644 src/quest_editor/controllers/QuestEditorToolBarController.ts delete mode 100644 src/quest_editor/controllers/QuestInfoController.test.ts delete mode 100644 src/quest_editor/controllers/QuestInfoController.ts delete mode 100644 src/quest_editor/gui/AsmEditorToolBar.ts delete mode 100644 src/quest_editor/gui/AsmEditorView.css delete mode 100644 src/quest_editor/gui/AsmEditorView.ts delete mode 100644 src/quest_editor/gui/DebugView.css delete mode 100644 src/quest_editor/gui/DebugView.ts delete mode 100644 src/quest_editor/gui/EditorHistory.ts delete mode 100644 src/quest_editor/gui/EntityInfoView.css delete mode 100644 src/quest_editor/gui/EntityInfoView.test.ts delete mode 100644 src/quest_editor/gui/EntityInfoView.ts delete mode 100644 src/quest_editor/gui/EntityListView.css delete mode 100644 src/quest_editor/gui/EntityListView.ts delete mode 100644 src/quest_editor/gui/EventSubGraphView.css delete mode 100644 src/quest_editor/gui/EventSubGraphView.ts delete mode 100644 src/quest_editor/gui/EventView.css delete mode 100644 src/quest_editor/gui/EventView.ts delete mode 100644 src/quest_editor/gui/EventsView.css delete mode 100644 src/quest_editor/gui/EventsView.ts delete mode 100644 src/quest_editor/gui/NpcCountsView.css delete mode 100644 src/quest_editor/gui/NpcCountsView.test.ts delete mode 100644 src/quest_editor/gui/NpcCountsView.ts delete mode 100644 src/quest_editor/gui/NpcListView.ts delete mode 100644 src/quest_editor/gui/ObjectListView.ts delete mode 100644 src/quest_editor/gui/QuestEditorRendererView.ts delete mode 100644 src/quest_editor/gui/QuestEditorToolBarView.css delete mode 100644 src/quest_editor/gui/QuestEditorToolBarView.test.ts delete mode 100644 src/quest_editor/gui/QuestEditorToolBarView.ts delete mode 100644 src/quest_editor/gui/QuestEditorView.ts delete mode 100644 src/quest_editor/gui/QuestInfoView.css delete mode 100644 src/quest_editor/gui/QuestInfoView.test.ts delete mode 100644 src/quest_editor/gui/QuestInfoView.ts delete mode 100644 src/quest_editor/gui/QuestRendererView.ts delete mode 100644 src/quest_editor/gui/QuestRunnerRendererView.ts delete mode 100644 src/quest_editor/gui/RegistersView.css delete mode 100644 src/quest_editor/gui/RegistersView.ts delete mode 100644 src/quest_editor/gui/UnavailableView.css delete mode 100644 src/quest_editor/gui/UnavailableView.ts delete mode 100644 src/quest_editor/gui/__snapshots__/EntityInfoView.test.ts.snap delete mode 100644 src/quest_editor/gui/__snapshots__/NpcCountsView.test.ts.snap delete mode 100644 src/quest_editor/gui/__snapshots__/QuestEditorToolBarView.test.ts.snap delete mode 100644 src/quest_editor/gui/__snapshots__/QuestInfoView.test.ts.snap delete mode 100644 src/quest_editor/gui/entity_dnd.ts delete mode 100644 src/quest_editor/index.ts delete mode 100644 src/quest_editor/loading/AreaAssetLoader.ts delete mode 100644 src/quest_editor/loading/EntityAssetLoader.ts delete mode 100644 src/quest_editor/loading/LoadingCache.ts delete mode 100644 src/quest_editor/loading/QuestLoader.ts delete mode 100644 src/quest_editor/model/AreaModel.ts delete mode 100644 src/quest_editor/model/AreaVariantModel.ts delete mode 100644 src/quest_editor/model/QuestEntityModel.test.ts delete mode 100644 src/quest_editor/model/QuestEntityModel.ts delete mode 100644 src/quest_editor/model/QuestEntityPropModel.ts delete mode 100644 src/quest_editor/model/QuestEventActionModel.ts delete mode 100644 src/quest_editor/model/QuestEventDagModel.test.ts delete mode 100644 src/quest_editor/model/QuestEventDagModel.ts delete mode 100644 src/quest_editor/model/QuestEventModel.ts delete mode 100644 src/quest_editor/model/QuestModel.ts delete mode 100644 src/quest_editor/model/QuestNpcModel.ts delete mode 100644 src/quest_editor/model/QuestObjectModel.ts delete mode 100644 src/quest_editor/model/SectionModel.ts delete mode 100644 src/quest_editor/model/WaveModel.ts delete mode 100644 src/quest_editor/model/euler.ts delete mode 100644 src/quest_editor/persistence/QuestEditorUiPersister.ts delete mode 100644 src/quest_editor/rendering/EntityImageRenderer.ts delete mode 100644 src/quest_editor/rendering/Quest3DModelManager.ts delete mode 100644 src/quest_editor/rendering/QuestEditor3DModelManager.ts delete mode 100644 src/quest_editor/rendering/QuestEntityControls.ts delete mode 100644 src/quest_editor/rendering/QuestRenderer.ts delete mode 100644 src/quest_editor/rendering/QuestRunner3DModelManager.ts delete mode 100644 src/quest_editor/rendering/conversion/areas.ts delete mode 100644 src/quest_editor/rendering/conversion/entities.ts delete mode 100644 src/quest_editor/rendering/pick_ground.ts delete mode 100644 src/quest_editor/scripting/AssemblyAnalyser.ts delete mode 100644 src/quest_editor/scripting/AssemblyLexer.test.ts delete mode 100644 src/quest_editor/scripting/AssemblyLexer.ts delete mode 100644 src/quest_editor/scripting/assembly.test.ts delete mode 100644 src/quest_editor/scripting/assembly.ts delete mode 100644 src/quest_editor/scripting/assembly_worker.ts delete mode 100644 src/quest_editor/scripting/assembly_worker_messages.ts delete mode 100644 src/quest_editor/scripting/disassembly.test.ts delete mode 100644 src/quest_editor/scripting/disassembly.ts delete mode 100644 src/quest_editor/scripting/vm/Debugger.ts delete mode 100644 src/quest_editor/scripting/vm/InstructionPointer.ts delete mode 100644 src/quest_editor/scripting/vm/Random.ts delete mode 100644 src/quest_editor/scripting/vm/Thread.ts delete mode 100644 src/quest_editor/scripting/vm/VirtualMachine.test.ts delete mode 100644 src/quest_editor/scripting/vm/VirtualMachine.ts delete mode 100644 src/quest_editor/scripting/vm/io.ts delete mode 100644 src/quest_editor/scripting/vm/utils.ts delete mode 100644 src/quest_editor/stores/AreaStore.ts delete mode 100644 src/quest_editor/stores/AsmEditorStore.ts delete mode 100644 src/quest_editor/stores/LogStore.ts delete mode 100644 src/quest_editor/stores/QuestEditorStore.ts delete mode 100644 src/quest_editor/stores/asm_syntax.ts delete mode 100644 src/quest_editor/stores/model_conversion.ts delete mode 100644 src/viewer/controllers/model/CharacterClassOptionsController.ts delete mode 100644 src/viewer/controllers/model/ModelController.ts delete mode 100644 src/viewer/controllers/model/ModelToolBarController.ts delete mode 100644 src/viewer/controllers/texture/TextureController.ts delete mode 100644 src/viewer/gui/ViewerView.ts delete mode 100644 src/viewer/gui/model/CharacterClassOptionsView.css delete mode 100644 src/viewer/gui/model/CharacterClassOptionsView.ts delete mode 100644 src/viewer/gui/model/CharacterClassSelectionView.css delete mode 100644 src/viewer/gui/model/CharacterClassSelectionView.ts delete mode 100644 src/viewer/gui/model/ModelToolBarView.ts delete mode 100644 src/viewer/gui/model/ModelView.css delete mode 100644 src/viewer/gui/model/ModelView.test.ts delete mode 100644 src/viewer/gui/model/ModelView.ts delete mode 100644 src/viewer/gui/model/__snapshots__/ModelView.test.ts.snap delete mode 100644 src/viewer/gui/texture/TextureView.test.ts delete mode 100644 src/viewer/gui/texture/TextureView.ts delete mode 100644 src/viewer/gui/texture/__snapshots__/TextureView.test.ts.snap delete mode 100644 src/viewer/index.ts delete mode 100644 src/viewer/loading/CharacterClassAssetLoader.ts delete mode 100644 src/viewer/model/CharacterClassAnimationModel.ts delete mode 100644 src/viewer/model/CharacterClassModel.ts delete mode 100644 src/viewer/rendering/ModelRenderer.ts delete mode 100644 src/viewer/rendering/TextureRenderer.ts delete mode 100644 src/viewer/stores/ModelStore.ts delete mode 100644 src/viewer/util/texture_parsing.ts delete mode 100644 test/resources/ItemPMT.bin delete mode 100644 test/resources/lost_heat_sword_gc.qst delete mode 100644 test/resources/map_forest01c.rel delete mode 100644 test/resources/quest118_e.bin delete mode 100644 test/resources/quest118_e.dat delete mode 100644 test/resources/quest118_e.qst delete mode 100644 test/resources/quest27_e.bin delete mode 100644 test/resources/quest27_e.qst delete mode 100644 test/src/core/FileSystemHttpClient.ts delete mode 100644 test/src/core/StubClock.ts delete mode 100644 test/src/core/rendering/StubRenderer.ts delete mode 100644 test/src/quest_editor/stores/store_creation.ts delete mode 100644 test/src/setup.js delete mode 100644 test/src/utils.ts delete mode 100644 tsconfig-scripts.json delete mode 100644 tsconfig.json delete mode 100644 typedefs/javascript-lp-solver.d.ts delete mode 100644 typedefs/prs-rs/index.d.ts delete mode 100644 typedefs/shaders.d.ts delete mode 100644 typedefs/webworkers.d.ts delete mode 100644 version.txt create mode 100644 web/build.gradle.kts rename {assets_generation => web/src/assets_generation}/resources/asm/opcodes.schema.json (100%) rename {assets_generation => web/src/assets_generation}/resources/asm/opcodes.yml (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/client/data/unitxt_j.prs (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/param/ItemPMT.bin (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/param/ItemPT.gsl (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/event/Christmas Fiasco.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/event/MAE Caves.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/event/MAE Forest.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/event/MAE Mines.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/event/MAE Ruins.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/extermination/Endless Nightmare #1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/extermination/Endless Nightmare #2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/extermination/Endless Nightmare #3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/extermination/Endless Nightmare #4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/extermination/Mop Up Operation #1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/extermination/Mop Up Operation #2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/extermination/Mop Up Operation #3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/extermination/Mop Up Operation #4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/extermination/Today's Rate.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/maximum_attack/MA4 -1A-.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/maximum_attack/MA4 -1B-.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/maximum_attack/MA4 -1C-.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/maximum_attack/Maximum Attack 1 Ver2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/maximum_attack/Maximum Attack S E1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/maximum_attack/Random Attack Xrd E1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/retrieval/Dark Research 2.0.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/retrieval/Forsaken Friends.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/retrieval/Fragments of a Memory.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/retrieval/Gallon's Treachery.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/retrieval/Lost HEAT SWORD.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/retrieval/Lost HELL PALLASCH.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/retrieval/Lost ICE SPINNER.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/retrieval/Lost SOUL BLADE.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/retrieval/Rappy's Holiday.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/retrieval/Rescue From Ragol.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/solo_only/quest126_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/solo_only/quest143_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/solo_only/quest35_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/vr/Labyrinthine Trial.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/vr/Mine Offensive.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/vr/Simulator 2.0.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/vr/Sugoruku.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/vr/Towards the Future.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/guild/vr/Tyrell's Ego.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest401_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest402_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest403_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest404_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest405_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest406_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest407_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest408_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest409_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest410_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest411_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest412_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest413_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest414_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/government/quest415_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest10_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest11_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest12_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest13_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest14_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest15_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest16_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest17_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest18_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest19_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest1_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest20_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest21_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest22_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest23_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest24_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest25_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest26_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest2_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest3_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest4_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest5_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest6_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest7_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest8_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_1/story/side_story/quest9_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/event/Christmas Fiasco II.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/event/MAE CCA.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/event/MAE Seabed.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/event/MAE Spaceship.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/event/MAE Temple.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/event/MAE Tower.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/extermination/Gal Dal Val's Darkness.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/extermination/Phantasmal World #1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/extermination/Phantasmal World #2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/extermination/Phantasmal World #3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/extermination/Phantasmal World #4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/halloween/quest673_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/maximum_attack/MA4 -2A-.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/maximum_attack/MA4 -2B-.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/maximum_attack/MA4 -2C-.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/maximum_attack/MAE GDV.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/maximum_attack/MAE VR.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/maximum_attack/Maximum Attack 2 Ver2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/maximum_attack/Maximum Attack S.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/maximum_attack/Random Attack Xrd II.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/retrieval/Dolmolm Research.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/retrieval/Dream Messenger.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/retrieval/Revisiting Darkness.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/solo_only/quest1321_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/tower/Raid on Central Tower.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/tower/The East Tower.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/tower/The Military Strikes Back.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/tower/The West Tower.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/vr/Reach for the Dream.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/guild/vr/Respective Tomorrow.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest451_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest452_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest453_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest454_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest455_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest456_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest457_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest458_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest459_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest460_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest461_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest462_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest463_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest464_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest465_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest466_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest467_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/government/quest468_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/side_story/quest27_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_2/story/side_story/quest486_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/event/Christmas Fiasco IV.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/event/quest939_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/event/quest940_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/New Mop-Up Operation #1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/New Mop-Up Operation #2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/New Mop-Up Operation #3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/New Mop-Up Operation #4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/New Mop-Up Operation #5.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/Point of Disaster.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/The Robots' Reckoning.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/War of Limits 1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/War of Limits 2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/War of Limits 3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/War of Limits 4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/extermination/War of Limits 5.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/halloween/quest675_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/maximum_attack/MA4 -4A-.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/maximum_attack/MA4 -4B-.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/maximum_attack/MA4 -4C-.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/maximum_attack/MAE 4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/maximum_attack/Maximum Attack 3 Ver2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/maximum_attack/Maximum Attack S.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/vr/Beyond The Horizon.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/guild/vr/LOGiN.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/government/quest701_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/government/quest702_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/government/quest703_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/government/quest704_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/government/quest705_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/government/quest706_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/government/quest707_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/government/quest708_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/side_story/quest30_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/side_story/quest31_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/side_story/quest32_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/side_story/quest33_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/side_story/quest34_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/ephinea/ship-config/quest/episode_4/story/side_story/quest36_e.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/plymotiondata.rlc (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/battle.ini (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/battle/1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/battle/2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/battle/3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/battle/4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/battle/5.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/battle/6.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/battle/7.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/battle/8.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/battle/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep1/1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep1/2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep1/3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep1/4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep1/5.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep1/6.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep1/7.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep1/8.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep1/9.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep2/21.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep2/22.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep2/23.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep2/24.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/chl/ep2/25.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/event/ma1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/event/ma4-a.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/event/ma4-b.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/event/ma4-c.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/event/princgift.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/event/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/event/sunset base.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/event/whiteday.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/ext/en1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/ext/en2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/ext/en3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/ext/en4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/ext/mop-up1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/ext/mop-up2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/ext/mop-up3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/ext/mop-up4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/ext/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/ext/todays rate.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/recovery/fragmentofmemoryen.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/recovery/gallon.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/recovery/lost havoc vulcan.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/recovery/lost heat sword.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/recovery/lost ice spinner.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/recovery/lost soul blade.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/recovery/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/recovery/rappy holiday.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/vr/labyrinthe trial.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/vr/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1/vr/ttf.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1gov.ini (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1solo.ini (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep1team.ini (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/beach laughter.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/christmas.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/dream messenger.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/festival on the beach.qst.old (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/halloween.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/ma2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/ma4-a.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/ma4-b.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/ma4-c.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/quest239.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/event/singing by the beach.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/ext/pw1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/ext/pw2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/ext/pw3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/ext/pw4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/ext/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/shop/gallon.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/shop/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/tower/east.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/tower/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/tower/west.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/vr/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/vr/reach for the dream.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2/vr/respectivetomorrow.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2gov.ini (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2solo.ini (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep2team.ini (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/event/clarie's deal.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/event/login.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/event/ma4-a.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/event/ma4-b.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/event/ma4-c.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/event/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/event/wildhouse.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/newwipe1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/newwipe2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/newwipe3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/newwipe4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/newwipe5.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/waroflimit1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/waroflimit2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/waroflimit3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/waroflimit4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/ext/waroflimit5.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/shop/itempresent.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/shop/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/shop/quest205.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/vr/max3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4/vr/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4gov.ini (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4solo.ini (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/ep4team.ini (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/1-1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/1-2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/1-3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/2-1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/2-2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/2-3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/2-4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/3-1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/3-2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/3-3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/4-1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/4-2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/4-3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/4-4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/4-5.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep1/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest451.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest452.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest453.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest454.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest455.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest456.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest457.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest458.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest459.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest460.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest461.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest462.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest463.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest464.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest465.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest466.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest467.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep2/quest468.raw (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep4/9-1.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep4/9-2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep4/9-3.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep4/9-4.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep4/9-5.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep4/9-6.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep4/9-7.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep4/9-8.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep4/pod.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/princ/ep4/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/01.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/02.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/03.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/04.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/05.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/06.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/07.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/08.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/09.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/10.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/11.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/12.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/13.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/14.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/15.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/16.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/17.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/18.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/19.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/20.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/21.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/22.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/23.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/24.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/25.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/side/26.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/side/goodluck.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/side/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/side/quest035.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep1/side/quest073.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep2/01.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep2/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep4/01-blackpaper.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep4/02-pioneer spirit.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep4/03-Warrior Pride.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep4/04-Restless Lion.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep4/blackpaper2.qst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep4/quest.lst (100%) rename {assets_generation => web/src/assets_generation}/resources/tethealla_v0.143_quests/solo/ep4/wilderending.qst (100%) create mode 100644 web/src/main/kotlin/world/phantasmal/web/Main.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/application/Application.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/application/controllers/MainContentController.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/application/controllers/NavigationController.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/application/widgets/ApplicationWidget.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/application/widgets/MainContentWidget.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/application/widgets/NavigationWidget.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/application/widgets/PwToolButton.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/core/controllers/PathAwareTabController.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/core/controllers/TabController.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/core/stores/UiStore.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/core/widgets/TabContainer.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/huntoptimizer/HuntOptimizer.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/huntoptimizer/HuntOptimizerUrls.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/huntoptimizer/controllers/HuntOptimizerController.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/huntoptimizer/controllers/MethodsController.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/huntoptimizer/models/HuntMethodModel.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/huntoptimizer/models/SimpleQuestModel.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/huntoptimizer/widgets/HelpWidget.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/huntoptimizer/widgets/HuntOptimizerWidget.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/huntoptimizer/widgets/MethodsForEpisodeWidget.kt create mode 100644 web/src/main/kotlin/world/phantasmal/web/huntoptimizer/widgets/MethodsWidget.kt rename {assets => web/src/main/resources/assets}/box_drops.ephinea.json (100%) rename {assets => web/src/main/resources/assets}/enemy_drops.ephinea.json (100%) rename {assets => web/src/main/resources/assets}/images/sectionids/Bluefull.png (100%) rename {assets => web/src/main/resources/assets}/images/sectionids/Greenill.png (100%) rename {assets => web/src/main/resources/assets}/images/sectionids/Oran.png (100%) rename {assets => web/src/main/resources/assets}/images/sectionids/Pinkal.png (100%) rename {assets => web/src/main/resources/assets}/images/sectionids/Purplenum.png (100%) rename {assets => web/src/main/resources/assets}/images/sectionids/Redria.png (100%) rename {assets => web/src/main/resources/assets}/images/sectionids/Skyly.png (100%) rename {assets => web/src/main/resources/assets}/images/sectionids/Viridia.png (100%) rename {assets => web/src/main/resources/assets}/images/sectionids/Whitill.png (100%) rename {assets => web/src/main/resources/assets}/images/sectionids/Yellowboze.png (100%) rename {assets => web/src/main/resources/assets}/item_types.ephinea.json (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient01_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient01_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient01_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient01_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient01_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient01_03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient01_04c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient01_04n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient02_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient02_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient02_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient02_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient02_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient02_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient02_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient02_03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient02_04c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient02_04n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient03_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient03_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient03_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient03_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient03_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient03_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient03_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient03_03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient03_04c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ancient03_04n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss05c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss05n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss06c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss06n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss07c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss07n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss08c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss08n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss09_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_boss09_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_04c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_04n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_05c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave01_05n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave02_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave02_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave02_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave02_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave02_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave02_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave02_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave02_03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave02_04c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave02_04n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_04c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_04n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_05c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_cave03_05n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_city00_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_city00_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_city02_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_city02_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_crater01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_crater01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_darkfalz00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_darkfalz00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert01_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert01_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert01_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert01_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert02_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert02_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert02_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert02_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert02_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert02_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert03_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert03_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert03_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert03_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert03_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_desert03_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_forest01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_forest01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_forest02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_forest02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle02_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle02_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle03_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle03_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle04_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle04_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle04_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle04_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle04_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle04_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle05_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle05_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle06_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle06_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle07_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle07_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle07_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle07_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle07_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle07_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle07_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle07_03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle07_04c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_jungle07_04n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_labo00_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_labo00_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_04c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_04n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_05c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_05n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_06c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_06n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_07c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_07n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_08c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_08n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_09c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_09n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_10c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_10n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_green_be00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_green_be00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_red_be00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_red_be00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_yellow_be00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_lobby_yellow_be00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_04c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_04n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_05c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine01_05n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_03n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_04c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_04n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_05c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_machine02_05n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins01_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins01_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins01_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins01_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins02_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins02_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins02_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins02_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins02_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_ruins02_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed01_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed01_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed01_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed01_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed02_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed02_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed02_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed02_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed02_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_seabed02_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_soccer11c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_soccer11n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_soccer12c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_soccer12n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space01_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space01_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space01_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space01_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space02_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space02_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space02_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space02_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space02_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_space02_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_test01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_test01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs01_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs01_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs01_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs01_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs02_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs02_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs02_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs02_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs02_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_vs02_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_wilds01_00c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_wilds01_00n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_wilds01_01c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_wilds01_01n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_wilds01_02c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_wilds01_02n.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_wilds01_03c.rel (100%) rename {assets => web/src/main/resources/assets}/maps/map_wilds01_03n.rel (100%) rename {assets => web/src/main/resources/assets}/npcs/AlRappy.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/AlRappy.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Astark.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Astark.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/BaBoota.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/BaBoota.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/BarbaRay.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/BarbaRay.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/BarbarousWolf.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/BarbarousWolf.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/BlueSoldier.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/BlueSoldier.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Booma.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Booma.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Boota.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Boota.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Bulclaw.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Bulclaw.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Bulk.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Bulk.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Canadine.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Canadine.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Canane.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Canane.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/ChaosBringer.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/ChaosBringer.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/ChaosSorcerer.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/ChaosSorcerer.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Claw.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Claw.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/DarkBelra.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/DarkBelra.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/DarkFalz.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/DarkFalz.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/DarkGunner.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/DarkGunner.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/DeRolLe.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/DeRolLe.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/DelLily.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/DelLily.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/DelRappy.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/DelRappy.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Delbiter.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Delbiter.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Deldepth.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Deldepth.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Delsaber.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Delsaber.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Dimenian.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Dimenian.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Dolmdarl.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Dolmdarl.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Dolmolm.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Dolmolm.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Dorphon.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Dorphon.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/DorphonEclair.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/DorphonEclair.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Dragon.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Dragon.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Dubchic.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Dubchic.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Dubswitch.xj (100%) rename {assets => web/src/main/resources/assets}/npcs/Dubswitch.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Epsilon.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Epsilon.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/EvilShark.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/EvilShark.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/FemaleFat.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/FemaleFat.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/FemaleMacho.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/FemaleMacho.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/FemaleTall.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/FemaleTall.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/GalGryphon.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/GalGryphon.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Garanz.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Garanz.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Gee.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Gee.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/GiGue.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/GiGue.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Gibbles.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Gibbles.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Gigobooma.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Gigobooma.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Gilchic.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Gilchic.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Girtablulu.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Girtablulu.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Gobooma.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Gobooma.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/GolDragon.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/GolDragon.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Goran.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Goran.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/GoranDetonator.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/GoranDetonator.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/GrassAssassin.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/GrassAssassin.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/GuilShark.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/GuilShark.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/GuildLady.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/GuildLady.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Hildebear.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Hildebear.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Hildeblue.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Hildeblue.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/IllGill.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/IllGill.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Irene.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Irene.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/ItemShop.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/ItemShop.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Kondrieu.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Kondrieu.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/LaDimenian.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/LaDimenian.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/LoveRappy.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/LoveRappy.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/MaleDwarf.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/MaleDwarf.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/MaleFat.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/MaleFat.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/MaleMacho.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/MaleMacho.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/MaleOld.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/MaleOld.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Mericarol.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Mericarol.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Mericus.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Mericus.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Merikle.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Merikle.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Merillia.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Merillia.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Meriltas.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Meriltas.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/MerissaA.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/MerissaA.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/MerissaAA.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/MerissaAA.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Monest.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Monest.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Morfos.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Morfos.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Mothmant.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Mothmant.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/NanoDragon.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/NanoDragon.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/NarLily.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/NarLily.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Nurse.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Nurse.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Nurse2.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Nurse2.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/OlgaFlow.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/OlgaFlow.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/PalShark.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/PalShark.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/PanArms.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/PanArms.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Pazuzu.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Pazuzu.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/PofuillySlime.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/PofuillySlime.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/PoisonLily.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/PoisonLily.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/PouillySlime.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/PouillySlime.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Principal.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Principal.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/PyroGoran.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/PyroGoran.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/RagRappy.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/RagRappy.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Recobox.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Recobox.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/RedSoldier.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/RedSoldier.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SaintMilion.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SaintMilion.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SandRappy.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SandRappy.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SatelliteLizard.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SatelliteLizard.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SavageWolf.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SavageWolf.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Scientist.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Scientist.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Shambertin.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Shambertin.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowBeat.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowBeat.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowBerill.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowBerill.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowGold.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowGold.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowSpigell.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowSpigell.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowZele.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowZele.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowZoa.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SinowZoa.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/SoDimenian.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/SoDimenian.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Tekker.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Tekker.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/UlGibbon.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/UlGibbon.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/VolOptPart2.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/VolOptPart2.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Yowie.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Yowie.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/ZeBoota.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/ZeBoota.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/ZolGibbon.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/ZolGibbon.xvm (100%) rename {assets => web/src/main/resources/assets}/npcs/Zu.nj (100%) rename {assets => web/src/main/resources/assets}/npcs/Zu.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/10-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/10-2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/10.xj (100%) rename {assets => web/src/main/resources/assets}/objects/10.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/11-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/11-2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/11.xj (100%) rename {assets => web/src/main/resources/assets}/objects/11.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/12-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/12-2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/12.xj (100%) rename {assets => web/src/main/resources/assets}/objects/12.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/128-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/128-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/128-4.xj (100%) rename {assets => web/src/main/resources/assets}/objects/128-5.xj (100%) rename {assets => web/src/main/resources/assets}/objects/128.xj (100%) rename {assets => web/src/main/resources/assets}/objects/128.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/129-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/129-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/129.xj (100%) rename {assets => web/src/main/resources/assets}/objects/129.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/13-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/13-2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/13.xj (100%) rename {assets => web/src/main/resources/assets}/objects/13.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/130-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/130.xj (100%) rename {assets => web/src/main/resources/assets}/objects/130.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/131-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/131.xj (100%) rename {assets => web/src/main/resources/assets}/objects/131.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/132-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/132-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/132.xj (100%) rename {assets => web/src/main/resources/assets}/objects/132.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/133.xj (100%) rename {assets => web/src/main/resources/assets}/objects/133.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/134.xj (100%) rename {assets => web/src/main/resources/assets}/objects/134.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/135-0.xj (100%) rename {assets => web/src/main/resources/assets}/objects/135-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/135-1.xj (100%) rename {assets => web/src/main/resources/assets}/objects/135-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/135.xj (100%) rename {assets => web/src/main/resources/assets}/objects/135.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/136-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/136-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/136.xj (100%) rename {assets => web/src/main/resources/assets}/objects/136.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/137.xj (100%) rename {assets => web/src/main/resources/assets}/objects/137.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/139-0.xj (100%) rename {assets => web/src/main/resources/assets}/objects/139-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/139-1.xj (100%) rename {assets => web/src/main/resources/assets}/objects/139-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/139.xj (100%) rename {assets => web/src/main/resources/assets}/objects/139.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/140-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/140.xj (100%) rename {assets => web/src/main/resources/assets}/objects/140.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/141.xj (100%) rename {assets => web/src/main/resources/assets}/objects/141.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/142-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/142-2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/142.xj (100%) rename {assets => web/src/main/resources/assets}/objects/142.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/143.xj (100%) rename {assets => web/src/main/resources/assets}/objects/143.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/144-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/144-a.xj (100%) rename {assets => web/src/main/resources/assets}/objects/144-a.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/144.xj (100%) rename {assets => web/src/main/resources/assets}/objects/144.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/145-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/145-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/145.xj (100%) rename {assets => web/src/main/resources/assets}/objects/145.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/146-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/146-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/146-4.xj (100%) rename {assets => web/src/main/resources/assets}/objects/146.xj (100%) rename {assets => web/src/main/resources/assets}/objects/146.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/147-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/147-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/147-4.xj (100%) rename {assets => web/src/main/resources/assets}/objects/147.xj (100%) rename {assets => web/src/main/resources/assets}/objects/147.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/149.xj (100%) rename {assets => web/src/main/resources/assets}/objects/149.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/15.xj (100%) rename {assets => web/src/main/resources/assets}/objects/15.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/150-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/150.xj (100%) rename {assets => web/src/main/resources/assets}/objects/150.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/151-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/151.xj (100%) rename {assets => web/src/main/resources/assets}/objects/151.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/19.xj (100%) rename {assets => web/src/main/resources/assets}/objects/19.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/192.xj (100%) rename {assets => web/src/main/resources/assets}/objects/192.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/193.xj (100%) rename {assets => web/src/main/resources/assets}/objects/193.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/194.xj (100%) rename {assets => web/src/main/resources/assets}/objects/194.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/195-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/195-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/195.xj (100%) rename {assets => web/src/main/resources/assets}/objects/195.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/196.xj (100%) rename {assets => web/src/main/resources/assets}/objects/196.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/197.xj (100%) rename {assets => web/src/main/resources/assets}/objects/197.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/198.xj (100%) rename {assets => web/src/main/resources/assets}/objects/198.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/199.xj (100%) rename {assets => web/src/main/resources/assets}/objects/199.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/2-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/200.xj (100%) rename {assets => web/src/main/resources/assets}/objects/200.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/201.xj (100%) rename {assets => web/src/main/resources/assets}/objects/201.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/204.nj (100%) rename {assets => web/src/main/resources/assets}/objects/204.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/205.xj (100%) rename {assets => web/src/main/resources/assets}/objects/205.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/206.xj (100%) rename {assets => web/src/main/resources/assets}/objects/206.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/207-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/207.xj (100%) rename {assets => web/src/main/resources/assets}/objects/207.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/208.xj (100%) rename {assets => web/src/main/resources/assets}/objects/208.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/209.xj (100%) rename {assets => web/src/main/resources/assets}/objects/209.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/210.xj (100%) rename {assets => web/src/main/resources/assets}/objects/210.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/211.xj (100%) rename {assets => web/src/main/resources/assets}/objects/211.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/212.xj (100%) rename {assets => web/src/main/resources/assets}/objects/212.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/213.xj (100%) rename {assets => web/src/main/resources/assets}/objects/213.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/214.xj (100%) rename {assets => web/src/main/resources/assets}/objects/214.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/215.xj (100%) rename {assets => web/src/main/resources/assets}/objects/215.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/216.xj (100%) rename {assets => web/src/main/resources/assets}/objects/216.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/217.xj (100%) rename {assets => web/src/main/resources/assets}/objects/217.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/218.xj (100%) rename {assets => web/src/main/resources/assets}/objects/218.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/219.xj (100%) rename {assets => web/src/main/resources/assets}/objects/219.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/220.xj (100%) rename {assets => web/src/main/resources/assets}/objects/220.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/222.xj (100%) rename {assets => web/src/main/resources/assets}/objects/222.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/223.xj (100%) rename {assets => web/src/main/resources/assets}/objects/223.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/224.xj (100%) rename {assets => web/src/main/resources/assets}/objects/224.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/225.xj (100%) rename {assets => web/src/main/resources/assets}/objects/225.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/25-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/25.xj (100%) rename {assets => web/src/main/resources/assets}/objects/25.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/256.xj (100%) rename {assets => web/src/main/resources/assets}/objects/256.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/257.xj (100%) rename {assets => web/src/main/resources/assets}/objects/257.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/258.xj (100%) rename {assets => web/src/main/resources/assets}/objects/258.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/259.xj (100%) rename {assets => web/src/main/resources/assets}/objects/259.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/260.xj (100%) rename {assets => web/src/main/resources/assets}/objects/260.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/261.xj (100%) rename {assets => web/src/main/resources/assets}/objects/261.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/262.xj (100%) rename {assets => web/src/main/resources/assets}/objects/262.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/264-a.xj (100%) rename {assets => web/src/main/resources/assets}/objects/264-a.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/264-b.xj (100%) rename {assets => web/src/main/resources/assets}/objects/264-b.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/264.xj (100%) rename {assets => web/src/main/resources/assets}/objects/264.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/265-a.xj (100%) rename {assets => web/src/main/resources/assets}/objects/265-a.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/265-b.xj (100%) rename {assets => web/src/main/resources/assets}/objects/265-b.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/265.xj (100%) rename {assets => web/src/main/resources/assets}/objects/265.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/266-a.xj (100%) rename {assets => web/src/main/resources/assets}/objects/266-a.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/266-b.xj (100%) rename {assets => web/src/main/resources/assets}/objects/266-b.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/266.xj (100%) rename {assets => web/src/main/resources/assets}/objects/266.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/267.xj (100%) rename {assets => web/src/main/resources/assets}/objects/267.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/268.xj (100%) rename {assets => web/src/main/resources/assets}/objects/268.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/27-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/27.xj (100%) rename {assets => web/src/main/resources/assets}/objects/27.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/28-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/28.xj (100%) rename {assets => web/src/main/resources/assets}/objects/28.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/3-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/3.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/304.nj (100%) rename {assets => web/src/main/resources/assets}/objects/304.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/320-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/320-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/320-4.xj (100%) rename {assets => web/src/main/resources/assets}/objects/320-a.xj (100%) rename {assets => web/src/main/resources/assets}/objects/320-a.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/320-b.xj (100%) rename {assets => web/src/main/resources/assets}/objects/320-b.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/320-c.xj (100%) rename {assets => web/src/main/resources/assets}/objects/320-c.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/320.xj (100%) rename {assets => web/src/main/resources/assets}/objects/320.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/321-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/321-a.xj (100%) rename {assets => web/src/main/resources/assets}/objects/321-a.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/321.xj (100%) rename {assets => web/src/main/resources/assets}/objects/321.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/322-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/322-a.xj (100%) rename {assets => web/src/main/resources/assets}/objects/322-a.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/322.xj (100%) rename {assets => web/src/main/resources/assets}/objects/322.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/323.xj (100%) rename {assets => web/src/main/resources/assets}/objects/323.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/324.xj (100%) rename {assets => web/src/main/resources/assets}/objects/324.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/325.xj (100%) rename {assets => web/src/main/resources/assets}/objects/325.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/326.xj (100%) rename {assets => web/src/main/resources/assets}/objects/326.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/327.xj (100%) rename {assets => web/src/main/resources/assets}/objects/327.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/328.xj (100%) rename {assets => web/src/main/resources/assets}/objects/328.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/329.xj (100%) rename {assets => web/src/main/resources/assets}/objects/329.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/330.xj (100%) rename {assets => web/src/main/resources/assets}/objects/330.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/331.xj (100%) rename {assets => web/src/main/resources/assets}/objects/331.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/332.xj (100%) rename {assets => web/src/main/resources/assets}/objects/332.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/333.xj (100%) rename {assets => web/src/main/resources/assets}/objects/333.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/334.xj (100%) rename {assets => web/src/main/resources/assets}/objects/334.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/335.xj (100%) rename {assets => web/src/main/resources/assets}/objects/335.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/336.xj (100%) rename {assets => web/src/main/resources/assets}/objects/336.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/337.xj (100%) rename {assets => web/src/main/resources/assets}/objects/337.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/338.xj (100%) rename {assets => web/src/main/resources/assets}/objects/338.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/339-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/339-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/339-4.xj (100%) rename {assets => web/src/main/resources/assets}/objects/339.xj (100%) rename {assets => web/src/main/resources/assets}/objects/339.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/341-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/341-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/341.xj (100%) rename {assets => web/src/main/resources/assets}/objects/341.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/342.xj (100%) rename {assets => web/src/main/resources/assets}/objects/342.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/345.xj (100%) rename {assets => web/src/main/resources/assets}/objects/345.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/346.xj (100%) rename {assets => web/src/main/resources/assets}/objects/346.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/347.xj (100%) rename {assets => web/src/main/resources/assets}/objects/347.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/348.xj (100%) rename {assets => web/src/main/resources/assets}/objects/348.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/349.xj (100%) rename {assets => web/src/main/resources/assets}/objects/349.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/350.xj (100%) rename {assets => web/src/main/resources/assets}/objects/350.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/351.xj (100%) rename {assets => web/src/main/resources/assets}/objects/351.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/353-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/353-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/353.xj (100%) rename {assets => web/src/main/resources/assets}/objects/353.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/354-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/354-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/354.xj (100%) rename {assets => web/src/main/resources/assets}/objects/354.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/358.xj (100%) rename {assets => web/src/main/resources/assets}/objects/358.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/359.xj (100%) rename {assets => web/src/main/resources/assets}/objects/359.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/368.xj (100%) rename {assets => web/src/main/resources/assets}/objects/368.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/369.xj (100%) rename {assets => web/src/main/resources/assets}/objects/369.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/370-0.xj (100%) rename {assets => web/src/main/resources/assets}/objects/370-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/370-1.xj (100%) rename {assets => web/src/main/resources/assets}/objects/370-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/370-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/370-2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/370-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/370-3.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/385.xj (100%) rename {assets => web/src/main/resources/assets}/objects/385.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/386.xj (100%) rename {assets => web/src/main/resources/assets}/objects/386.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/390.xj (100%) rename {assets => web/src/main/resources/assets}/objects/390.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/391.xj (100%) rename {assets => web/src/main/resources/assets}/objects/391.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/395.xj (100%) rename {assets => web/src/main/resources/assets}/objects/395.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/396.xj (100%) rename {assets => web/src/main/resources/assets}/objects/396.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/401.xj (100%) rename {assets => web/src/main/resources/assets}/objects/401.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/402.xj (100%) rename {assets => web/src/main/resources/assets}/objects/402.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/403.xj (100%) rename {assets => web/src/main/resources/assets}/objects/403.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/416.xj (100%) rename {assets => web/src/main/resources/assets}/objects/416.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/417.xj (100%) rename {assets => web/src/main/resources/assets}/objects/417.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/418.xj (100%) rename {assets => web/src/main/resources/assets}/objects/418.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/419.xj (100%) rename {assets => web/src/main/resources/assets}/objects/419.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/420.xj (100%) rename {assets => web/src/main/resources/assets}/objects/420.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/421.xj (100%) rename {assets => web/src/main/resources/assets}/objects/421.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/422.xj (100%) rename {assets => web/src/main/resources/assets}/objects/422.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/423.xj (100%) rename {assets => web/src/main/resources/assets}/objects/423.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/425.xj (100%) rename {assets => web/src/main/resources/assets}/objects/425.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/426.xj (100%) rename {assets => web/src/main/resources/assets}/objects/426.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/427.xj (100%) rename {assets => web/src/main/resources/assets}/objects/427.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/448.xj (100%) rename {assets => web/src/main/resources/assets}/objects/448.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/512-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/512-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/512-4.xj (100%) rename {assets => web/src/main/resources/assets}/objects/512.xj (100%) rename {assets => web/src/main/resources/assets}/objects/512.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/513-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/513.xj (100%) rename {assets => web/src/main/resources/assets}/objects/513.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/514-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/514.xj (100%) rename {assets => web/src/main/resources/assets}/objects/514.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/515-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/515-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/515-4.xj (100%) rename {assets => web/src/main/resources/assets}/objects/515.xj (100%) rename {assets => web/src/main/resources/assets}/objects/515.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/516-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/516-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/516-4.xj (100%) rename {assets => web/src/main/resources/assets}/objects/516.xj (100%) rename {assets => web/src/main/resources/assets}/objects/516.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/517-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/517.xj (100%) rename {assets => web/src/main/resources/assets}/objects/517.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/518.xj (100%) rename {assets => web/src/main/resources/assets}/objects/518.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/519.xj (100%) rename {assets => web/src/main/resources/assets}/objects/519.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/520.xj (100%) rename {assets => web/src/main/resources/assets}/objects/520.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/521.xj (100%) rename {assets => web/src/main/resources/assets}/objects/521.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/527-0.xj (100%) rename {assets => web/src/main/resources/assets}/objects/527-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/527-1.xj (100%) rename {assets => web/src/main/resources/assets}/objects/527-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/527.xj (100%) rename {assets => web/src/main/resources/assets}/objects/527.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/528-0.xj (100%) rename {assets => web/src/main/resources/assets}/objects/528-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/528-1.xj (100%) rename {assets => web/src/main/resources/assets}/objects/528-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/528-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/528.xj (100%) rename {assets => web/src/main/resources/assets}/objects/528.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/544.xj (100%) rename {assets => web/src/main/resources/assets}/objects/544.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/545.xj (100%) rename {assets => web/src/main/resources/assets}/objects/545.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/546.xj (100%) rename {assets => web/src/main/resources/assets}/objects/546.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/547-0.xj (100%) rename {assets => web/src/main/resources/assets}/objects/547-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/547-1.xj (100%) rename {assets => web/src/main/resources/assets}/objects/547-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/547.xj (100%) rename {assets => web/src/main/resources/assets}/objects/547.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/548.xj (100%) rename {assets => web/src/main/resources/assets}/objects/548.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/549.xj (100%) rename {assets => web/src/main/resources/assets}/objects/549.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/550.xj (100%) rename {assets => web/src/main/resources/assets}/objects/550.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/551.nj (100%) rename {assets => web/src/main/resources/assets}/objects/551.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/552-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/552-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/552.xj (100%) rename {assets => web/src/main/resources/assets}/objects/552.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/553.xj (100%) rename {assets => web/src/main/resources/assets}/objects/553.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/67-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/67.xj (100%) rename {assets => web/src/main/resources/assets}/objects/67.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/68.xj (100%) rename {assets => web/src/main/resources/assets}/objects/68.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/688.xj (100%) rename {assets => web/src/main/resources/assets}/objects/688.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/689.xj (100%) rename {assets => web/src/main/resources/assets}/objects/689.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/69-0.xj (100%) rename {assets => web/src/main/resources/assets}/objects/69-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/69-1.xj (100%) rename {assets => web/src/main/resources/assets}/objects/69-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/69-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/69-a.xj (100%) rename {assets => web/src/main/resources/assets}/objects/69.xj (100%) rename {assets => web/src/main/resources/assets}/objects/69.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/690.xj (100%) rename {assets => web/src/main/resources/assets}/objects/690.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/691.xj (100%) rename {assets => web/src/main/resources/assets}/objects/691.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/692.xj (100%) rename {assets => web/src/main/resources/assets}/objects/692.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/693.xj (100%) rename {assets => web/src/main/resources/assets}/objects/693.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/694.xj (100%) rename {assets => web/src/main/resources/assets}/objects/694.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/696.xj (100%) rename {assets => web/src/main/resources/assets}/objects/696.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/699.xj (100%) rename {assets => web/src/main/resources/assets}/objects/699.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/70.xj (100%) rename {assets => web/src/main/resources/assets}/objects/70.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/701-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/701.xj (100%) rename {assets => web/src/main/resources/assets}/objects/701.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/71.xj (100%) rename {assets => web/src/main/resources/assets}/objects/71.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/72-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/72.xj (100%) rename {assets => web/src/main/resources/assets}/objects/72.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/73.xj (100%) rename {assets => web/src/main/resources/assets}/objects/73.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/74.xj (100%) rename {assets => web/src/main/resources/assets}/objects/74.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/75-2.nj (100%) rename {assets => web/src/main/resources/assets}/objects/75.nj (100%) rename {assets => web/src/main/resources/assets}/objects/75.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/76-2.xj (100%) rename {assets => web/src/main/resources/assets}/objects/76-3.xj (100%) rename {assets => web/src/main/resources/assets}/objects/76.xj (100%) rename {assets => web/src/main/resources/assets}/objects/76.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/769-0.nj (100%) rename {assets => web/src/main/resources/assets}/objects/769-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/769-1.nj (100%) rename {assets => web/src/main/resources/assets}/objects/769-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/769-2.nj (100%) rename {assets => web/src/main/resources/assets}/objects/769-2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/769.nj (100%) rename {assets => web/src/main/resources/assets}/objects/769.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/77-2.nj (100%) rename {assets => web/src/main/resources/assets}/objects/77-3.nj (100%) rename {assets => web/src/main/resources/assets}/objects/77-4.nj (100%) rename {assets => web/src/main/resources/assets}/objects/77.nj (100%) rename {assets => web/src/main/resources/assets}/objects/77.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/770-0.nj (100%) rename {assets => web/src/main/resources/assets}/objects/770-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/770-1.nj (100%) rename {assets => web/src/main/resources/assets}/objects/770-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/770-2.nj (100%) rename {assets => web/src/main/resources/assets}/objects/770-2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/78.nj (100%) rename {assets => web/src/main/resources/assets}/objects/78.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/79.xj (100%) rename {assets => web/src/main/resources/assets}/objects/79.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/80-2.nj (100%) rename {assets => web/src/main/resources/assets}/objects/80.nj (100%) rename {assets => web/src/main/resources/assets}/objects/80.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/81-0.nj (100%) rename {assets => web/src/main/resources/assets}/objects/81-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/81-1.nj (100%) rename {assets => web/src/main/resources/assets}/objects/81-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/81-2.nj (100%) rename {assets => web/src/main/resources/assets}/objects/81-2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/81-3.nj (100%) rename {assets => web/src/main/resources/assets}/objects/81-3.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/81.nj (100%) rename {assets => web/src/main/resources/assets}/objects/81.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/82-2.nj (100%) rename {assets => web/src/main/resources/assets}/objects/82.nj (100%) rename {assets => web/src/main/resources/assets}/objects/82.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/84.xj (100%) rename {assets => web/src/main/resources/assets}/objects/84.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/86.xj (100%) rename {assets => web/src/main/resources/assets}/objects/86.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/896.nj (100%) rename {assets => web/src/main/resources/assets}/objects/896.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/902-0.nj (100%) rename {assets => web/src/main/resources/assets}/objects/902-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/902-1.nj (100%) rename {assets => web/src/main/resources/assets}/objects/902-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/902-2.nj (100%) rename {assets => web/src/main/resources/assets}/objects/902-2.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/902.nj (100%) rename {assets => web/src/main/resources/assets}/objects/902.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/907.nj (100%) rename {assets => web/src/main/resources/assets}/objects/907.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/909.nj (100%) rename {assets => web/src/main/resources/assets}/objects/909.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/911-0.nj (100%) rename {assets => web/src/main/resources/assets}/objects/911-0.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/911-1.nj (100%) rename {assets => web/src/main/resources/assets}/objects/911-1.xvm (100%) rename {assets => web/src/main/resources/assets}/objects/911.nj (100%) rename {assets => web/src/main/resources/assets}/objects/911.xvm (100%) rename {assets => web/src/main/resources/assets}/player/FOmarAccessory0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarAccessory1.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarAccessory2.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarAccessory3.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarAccessory4.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarAccessory5.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarAccessory6.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarAccessory7.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarAccessory8.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarAccessory9.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHair0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHair1.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHair2.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHair3.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHair4.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHair5.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHair6.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHair7.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHair8.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHair9.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlAccessory0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlAccessory1.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlAccessory2.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlAccessory3.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlAccessory4.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlAccessory5.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlAccessory6.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlAccessory7.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlAccessory8.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlAccessory9.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHair0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHair1.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHair2.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHair3.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHair4.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHair5.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHair6.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHair7.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHair8.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHair9.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOmarlTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlAccessory0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlAccessory1.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlAccessory2.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlAccessory3.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlAccessory4.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlAccessory5.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlAccessory6.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlAccessory7.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlAccessory8.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlAccessory9.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHair0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHair1.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHair2.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHair3.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHair4.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHair5.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHair6.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHair7.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHair8.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHair9.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewearlTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmAccessory0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmAccessory1.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmAccessory2.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmAccessory3.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmAccessory4.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmAccessory5.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmAccessory6.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmAccessory7.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmAccessory8.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmAccessory9.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHair0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHair1.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHair2.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHair3.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHair4.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHair5.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHair6.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHair7.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHair8.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHair9.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/FOnewmTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/HUcasealBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcasealHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcasealHead1.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcasealHead2.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcasealHead3.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcasealHead4.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcasealTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/HUcastBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcastHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcastHead1.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcastHead2.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcastHead3.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcastHead4.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUcastTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/HUmarAccessory6.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHair0.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHair1.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHair2.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHair3.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHair4.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHair5.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHair6.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHair7.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHair8.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHair9.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUmarTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHair0.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHair1.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHair2.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHair3.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHair4.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHair5.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHair6.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHair7.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHair8.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHair9.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/HUnewearlTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/RAcasealBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcasealHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcasealHead1.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcasealHead2.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcasealHead3.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcasealHead4.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcasealTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/RAcastBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcastHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcastHead1.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcastHead2.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcastHead3.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcastHead4.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAcastTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/RAmarAccessory0.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarAccessory1.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarAccessory2.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarAccessory3.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarAccessory4.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarAccessory5.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarAccessory6.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarAccessory7.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarAccessory8.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarAccessory9.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHair0.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHair1.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHair2.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHair3.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHair4.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHair5.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHair6.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHair7.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHair8.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHair9.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlAccessory0.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlAccessory1.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlAccessory2.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlAccessory3.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlAccessory4.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlAccessory5.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlAccessory6.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlAccessory7.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlAccessory8.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlAccessory9.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlBody.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHair0.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHair1.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHair2.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHair3.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHair4.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHair5.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHair6.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHair7.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHair8.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHair9.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlHead0.nj (100%) rename {assets => web/src/main/resources/assets}/player/RAmarlTex.afs (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_000.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_001.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_002.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_003.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_004.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_005.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_006.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_007.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_008.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_009.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_010.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_011.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_012.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_013.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_014.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_015.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_016.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_017.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_018.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_019.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_020.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_021.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_022.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_023.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_024.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_025.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_026.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_027.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_028.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_029.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_030.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_031.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_032.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_033.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_034.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_035.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_036.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_037.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_038.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_039.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_040.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_041.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_042.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_043.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_044.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_045.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_046.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_047.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_048.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_049.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_050.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_051.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_052.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_053.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_054.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_055.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_056.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_057.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_058.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_059.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_060.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_061.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_062.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_063.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_064.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_065.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_066.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_067.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_068.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_069.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_070.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_071.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_072.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_073.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_074.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_075.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_076.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_077.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_078.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_079.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_080.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_081.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_082.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_083.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_084.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_085.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_086.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_087.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_088.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_089.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_090.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_091.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_092.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_093.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_094.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_095.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_096.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_097.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_098.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_099.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_100.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_101.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_102.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_103.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_104.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_105.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_106.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_107.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_108.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_109.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_110.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_111.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_112.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_113.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_114.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_115.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_116.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_117.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_118.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_119.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_120.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_121.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_122.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_123.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_124.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_125.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_126.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_127.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_128.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_129.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_130.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_131.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_132.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_133.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_134.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_135.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_136.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_137.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_138.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_139.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_140.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_141.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_142.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_143.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_144.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_145.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_146.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_147.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_148.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_149.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_150.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_151.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_152.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_153.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_154.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_155.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_156.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_157.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_158.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_159.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_160.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_161.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_162.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_163.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_164.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_165.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_166.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_167.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_168.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_169.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_170.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_171.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_172.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_173.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_174.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_175.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_176.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_177.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_178.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_179.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_180.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_181.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_182.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_183.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_184.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_185.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_186.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_187.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_188.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_189.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_190.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_191.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_192.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_193.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_194.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_195.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_196.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_197.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_198.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_199.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_200.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_201.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_202.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_203.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_204.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_205.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_206.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_207.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_208.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_209.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_210.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_211.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_212.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_213.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_214.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_215.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_216.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_217.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_218.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_219.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_220.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_221.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_222.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_223.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_224.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_225.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_226.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_227.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_228.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_229.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_230.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_231.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_232.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_233.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_234.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_235.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_236.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_237.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_238.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_239.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_240.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_241.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_242.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_243.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_244.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_245.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_246.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_247.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_248.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_249.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_250.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_251.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_252.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_253.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_254.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_255.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_256.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_257.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_258.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_259.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_260.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_261.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_262.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_263.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_264.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_265.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_266.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_267.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_268.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_269.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_270.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_271.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_272.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_273.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_274.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_275.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_276.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_277.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_278.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_279.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_280.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_281.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_282.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_283.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_284.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_285.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_286.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_287.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_288.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_289.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_290.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_291.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_292.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_293.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_294.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_295.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_296.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_297.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_298.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_299.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_300.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_301.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_302.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_303.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_304.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_305.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_306.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_307.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_308.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_309.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_310.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_311.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_312.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_313.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_314.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_315.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_316.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_317.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_318.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_319.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_320.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_321.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_322.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_323.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_324.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_325.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_326.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_327.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_328.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_329.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_330.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_331.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_332.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_333.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_334.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_335.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_336.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_337.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_338.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_339.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_340.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_341.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_342.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_343.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_344.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_345.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_346.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_347.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_348.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_349.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_350.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_351.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_352.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_353.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_354.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_355.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_356.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_357.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_358.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_359.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_360.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_361.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_362.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_363.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_364.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_365.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_366.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_367.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_368.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_369.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_370.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_371.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_372.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_373.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_374.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_375.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_376.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_377.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_378.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_379.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_380.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_381.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_382.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_383.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_384.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_385.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_386.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_387.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_388.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_389.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_390.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_391.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_392.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_393.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_394.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_395.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_396.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_397.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_398.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_399.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_400.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_401.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_402.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_403.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_404.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_405.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_406.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_407.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_408.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_409.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_410.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_411.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_412.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_413.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_414.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_415.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_416.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_417.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_418.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_419.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_420.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_421.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_422.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_423.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_424.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_425.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_426.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_427.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_428.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_429.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_430.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_431.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_432.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_433.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_434.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_435.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_436.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_437.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_438.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_439.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_440.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_441.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_442.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_443.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_444.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_445.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_446.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_447.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_448.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_449.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_450.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_451.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_452.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_453.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_454.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_455.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_456.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_457.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_458.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_459.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_460.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_461.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_462.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_463.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_464.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_465.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_466.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_467.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_468.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_469.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_470.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_471.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_472.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_473.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_474.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_475.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_476.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_477.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_478.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_479.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_480.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_481.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_482.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_483.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_484.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_485.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_486.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_487.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_488.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_489.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_490.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_491.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_492.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_493.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_494.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_495.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_496.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_497.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_498.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_499.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_500.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_501.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_502.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_503.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_504.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_505.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_506.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_507.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_508.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_509.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_510.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_511.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_512.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_513.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_514.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_515.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_516.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_517.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_518.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_519.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_520.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_521.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_522.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_523.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_524.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_525.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_526.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_527.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_528.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_529.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_530.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_531.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_532.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_533.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_534.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_535.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_536.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_537.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_538.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_539.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_540.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_541.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_542.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_543.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_544.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_545.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_546.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_547.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_548.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_549.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_550.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_551.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_552.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_553.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_554.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_555.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_556.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_557.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_558.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_559.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_560.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_561.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_562.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_563.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_564.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_565.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_566.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_567.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_568.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_569.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_570.njm (100%) rename {assets => web/src/main/resources/assets}/player/animation/animation_571.njm (100%) rename {assets => web/src/main/resources/assets}/player/plObdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plOhai00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plOhed00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plPbdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plPhai00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plPhed00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plQbdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plQhai00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plQhed00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plRbdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plRhai00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plRhed00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plSbdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plShai00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plShed00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plTbdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plThai00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plThed00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plUbdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plUhed00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plVbdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plVhed00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plWbdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plWhed00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plXbdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plXhed00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plYbdy00.nj (100%) rename {assets => web/src/main/resources/assets}/player/plYhed00.nj (100%) rename {assets => web/src/main/resources/assets}/quests.ephinea.json (100%) rename {assets => web/src/main/resources/assets}/quests/defaults/default_ep_1.qst (100%) rename {src/core/gui => web/src/main/resources}/index.css (97%) create mode 100644 web/src/main/resources/index.html create mode 100644 web/src/test/kotlin/world/phantasmal/web/core/controllers/PathAwareTabControllerTests.kt create mode 100644 web/src/test/kotlin/world/phantasmal/web/core/store/UiStoreTests.kt create mode 100644 web/src/test/kotlin/world/phantasmal/web/test/TestApplicationUrl.kt create mode 100644 web/src/test/kotlin/world/phantasmal/web/test/TestSuite.kt delete mode 100644 webpack.common.js delete mode 100644 webpack.dev.js delete mode 100644 webpack.prod.js create mode 100644 webui/build.gradle.kts create mode 100644 webui/src/main/kotlin/world/phantasmal/webui/controllers/Controller.kt create mode 100644 webui/src/main/kotlin/world/phantasmal/webui/dom/Creation.kt create mode 100644 webui/src/main/kotlin/world/phantasmal/webui/dom/Dom.kt create mode 100644 webui/src/main/kotlin/world/phantasmal/webui/stores/Store.kt create mode 100644 webui/src/main/kotlin/world/phantasmal/webui/widgets/LazyLoader.kt create mode 100644 webui/src/main/kotlin/world/phantasmal/webui/widgets/Widget.kt create mode 100644 webui/src/test/kotlin/world/phantasmal/webui/test/TestSuite.kt create mode 100644 webui/src/test/kotlin/world/phantasmal/webui/widgets/WidgetTests.kt delete mode 100644 yarn.lock diff --git a/.env.dev b/.env.dev deleted file mode 100644 index 281d65ca..00000000 --- a/.env.dev +++ /dev/null @@ -1,2 +0,0 @@ -LOG_LEVEL=Debug -PUBLIC_URL=/assets diff --git a/.env.prod b/.env.prod deleted file mode 100644 index ffc071b7..00000000 --- a/.env.prod +++ /dev/null @@ -1,2 +0,0 @@ -LOG_LEVEL=Info -PUBLIC_URL=/assets diff --git a/.env.test b/.env.test deleted file mode 100644 index 58578e36..00000000 --- a/.env.test +++ /dev/null @@ -1,2 +0,0 @@ -LOG_LEVEL=Warning -RUN_ALL_TESTS=false \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 4d12fb78..00000000 --- a/.eslintrc.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended", - "prettier", - "prettier/@typescript-eslint", - "plugin:prettier/recommended" - ], - "plugins": ["@typescript-eslint", "prettier"], - "root": true, - "env": { - "browser": true, - "es6": true, - "jest": true, - "node": true - }, - "ignorePatterns": ["webpack.*.js"], - "rules": { - "@typescript-eslint/array-type": ["warn", { "default": "array", "readonly": "array" }], - "@typescript-eslint/ban-ts-ignore": "off", - "@typescript-eslint/camelcase": "off", - "@typescript-eslint/explicit-function-return-type": ["warn", { "allowExpressions": true }], - "@typescript-eslint/explicit-member-accessibility": "off", - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-inferrable-types": "off", - "@typescript-eslint/no-non-null-assertion": "off", - "@typescript-eslint/no-parameter-properties": "off", - "@typescript-eslint/no-use-before-define": "off", - "@typescript-eslint/prefer-interface": "off", - "no-console": "warn", - "no-constant-condition": ["warn", { "checkLoops": false }], - "no-empty": "warn", - "no-useless-escape": "warn", - "prefer-const": "warn", - "prettier/prettier": "warn" - }, - "parser": "@typescript-eslint/parser" -} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 9caeb6bc..00000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Deploy - -on: - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - persist-credentials: false - - - name: Yarn cache - uses: actions/cache@v2 - env: - cache-name: yarn-cache - with: - path: .yarn/cache - key: ${{ runner.os }}-deploy-${{ env.cache-name }} - - - name: Install dependencies - uses: CultureHQ/actions-yarn@v1.0.1 - with: - args: install - - - name: Test - uses: CultureHQ/actions-yarn@v1.0.1 - with: - args: test - - - name: Build - uses: CultureHQ/actions-yarn@v1.0.1 - with: - args: build - - - name: Deploy - uses: JamesIves/github-pages-deploy-action@3.6.2 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages - FOLDER: dist - CLEAN: true diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index 6ea53638..00000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Tests - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Yarn cache - uses: actions/cache@v2 - env: - cache-name: yarn-cache - with: - path: .yarn/cache - key: ${{ runner.os }}-tests-${{ env.cache-name }} - - - name: Install dependencies - uses: CultureHQ/actions-yarn@v1.0.1 - with: - args: install - - - name: Lint - uses: CultureHQ/actions-yarn@v1.0.1 - with: - args: lint - - - name: Check formatting - uses: CultureHQ/actions-yarn@v1.0.1 - with: - args: check_formatting - - - name: Test - uses: CultureHQ/actions-yarn@v1.0.1 - with: - args: test diff --git a/.gitignore b/.gitignore index 30b92f80..9aa9783a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,42 +1,11 @@ -# editors +# Editors .idea .vscode -# dependencies -/node_modules -.yarn/* -!.yarn/releases -!.yarn/plugins -!.yarn/sdks -!.yarn/versions -.pnp.* +# Gradle +.gradle +build -# testing -/coverage - -# production -/build -/dist -/deployment - -# misc +# Misc. .DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -# log files -npm-debug.log* -yarn-debug.log* -yarn-error.log* -# node error reports -report.*.json - -# binary files -*.wasm -# rust output -target/ -# wasm-pack output -pkg/* -!pkg/package.json +*.log diff --git a/.prettierrc.json b/.prettierrc.json deleted file mode 100644 index c6ea1f86..00000000 --- a/.prettierrc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "endOfLine": "auto", - "printWidth": 100, - "tabWidth": 4, - "singleQuote": false, - "trailingComma": "all", - "arrowParens": "avoid" -} diff --git a/.yarn/releases/yarn-berry.cjs b/.yarn/releases/yarn-berry.cjs deleted file mode 100644 index a1513175..00000000 --- a/.yarn/releases/yarn-berry.cjs +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env node -module.exports=(()=>{var __webpack_modules__={80150:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>g});var n=r(5624);const i={optional:!0},A=[["@samverschueren/stream-to-observable@*",{peerDependenciesMeta:{rxjs:i,zenObservable:i}}],["any-observable@<0.5.1",{peerDependenciesMeta:{rxjs:i,zenObservable:i}}],["@pm2/agent@<1.0.4",{dependencies:{debug:"*"}}],["debug@*",{peerDependenciesMeta:{"supports-color":i}}],["got@<11",{dependencies:{"@types/responselike":"^1.0.0","@types/keyv":"^3.1.1"}}],["cacheable-lookup@<4.1.2",{dependencies:{"@types/keyv":"^3.1.1"}}],["http-link-dataloader@*",{peerDependencies:{graphql:"^0.13.1 || ^14.0.0"}}],["typescript-language-server@*",{dependencies:{"vscode-jsonrpc":"^5.0.1","vscode-languageserver-protocol":"^3.15.0"}}],["postcss-syntax@*",{peerDependenciesMeta:{"postcss-html":i,"postcss-jsx":i,"postcss-less":i,"postcss-markdown":i,"postcss-scss":i}}],["jss-plugin-rule-value-function@<=10.1.1",{dependencies:{"tiny-warning":"^1.0.2"}}],["ink-select-input@*",{peerDependencies:{react:"^16.8.2"}}],["promise-inflight@*",{peerDependenciesMeta:{bluebird:i}}]];let o,s,a;const c=new Map([[n.structUtils.makeIdent(null,"fsevents").identHash,function(){return void 0===o&&(o=r(78761).brotliDecompressSync(Buffer.from("G8AcICwLeENqnk8o74LOyiZCqCn+nfkoHoOW2Wy/ZaLbawoJug0vEah6g6y0zM2VGKAGUXjpuyyX/35emYdTZ6IKvYYekxabWJ1MJUiPj18N39noRCXSRrg4d2/37WX2X0qjlXq3R++KiYujNAsyg/RYlEBIhMIYluF015kiMUIInfP/zLRSUC4vdAA5Hz54RWXtId4PIrS/APSpqXY7WSjFrGFx1NpG7a1wkmKkqQ3t1AEgHU4ayRIZccu55KrViKVdWamBsYZElYvL+xzjdHr7IAf3XDhHh294rE87BITNRj4i4r7zsis3y1dyzswVF4ICvCQhRQ44dvdWLhSmQW3++3Oy8IrUcOu0vcNk1UWyjgI/icHvNAC6WXkq6MXNs3+eOK1pkhb7wwvev2j5JPssZR293ExF+QYuwPyu/EKKFKCQkbYH1NZ9GlJ+DieCJ+8PFYF8renTSEr6GSJZTtzYrUIgN44cG5WnWJphIHh8mD5A6UGvfPC8RxSgpYPus/yoHw+idviDBeCWy+hxN5v2A2dDSuiz+tpLphJ01JO3IduKMVtNfr1qq/BLCqkP59S+vFP/Cof0sWbqkffhPFcl4SLIxWq1qFcKYDKzclwBBzVFiPWC7LlvMk9m8xGjaQ2R2P+BZR3anFJoyXATv0PvZnP/tioMsJJFC7f5gI9Fmy4U/LRUVo3N/OxY2a6kykxjwVvchhI5t5BdDPjYONcUTtkrzMtXFhSASbtzx7uIxYfhvs4/3mW6hKqwLBaipralUhPdfo5h4SiOic7o+oOUwl5/Aff6cyh3wEeDB4tVA79bq29MEeRfTV+Oe3fr/UhZQtkY0iE8vqSle2b58SXY0mkGmBiRjoPIkAFs1OSlJ3nSz9raEeB1ZWvJ2xiclGu1xTT6NRw3NaHU0k4R+4t0SIlltXJAW4kHj92+lB7TLjIWZfWfBNncDSYqP8jmg+jV7VyIgy/uk09ipbLdLM6Xr76rabkrZyQ3Qk8S71SEqlWRxEjWsKaELHnDeAxqaYrL0ITQr2S9xbXg0rnId4wtsQgZw21lye/up1/dTfXT+MkD5AP0i4YCh99d1V3sdxTAEDlI0nFBTjPoJwJnctqtFkgcP+Xakk36SgMSHuOZh/KUlex2NIizXmbBwicMK9s1LK6dQOqBuFZlX9lanWTwnVGuVvr3olrdhlClWC3T7S9NdfVsaYZKBDfYEZnTL7pZcKnE60KSutBZSaSgM+0BQbg1+qJHaVwb0X2Dhv70O7k7ALDJiNiA7GdsX1Ygf4ktBZv66did31wGeUm5JBJLemdjZHRa2YATgMFlye4t0hcz9ha4eXoVOc2EXHVqDdjeItztOwm7tBzcHR8Mwwb/HqtC/VKZC0IiH8TE/FE7x9SHWGUnTUNEBlucGudFTKYYlQaIjoANOgXsGLVtemCeplca3Wv1CMijvkZXTiUd8KmEZ2z6frw/kpo7gG/nDo2VkG6e+veL+scVhKDSObOXKcdtw+/Wbbw269oDLe5BLyqsR9VTc631RKspQYcCMx9M2xRKn7uZog504EXqMOPmUCHwW0yqiHxxoN+sMqYhjo/A8r4KAJ9TX7siey+38u6rhHYtDIMBKBk/lewEzgzDqFxxnqmvRK+XjeObr1axojyQobCerDLaHtzU1fwLHasuURSspKMhvR6QpWketRn2MJqMRLU0DQC0YCVLT+qeCS1LaZKQsQ0ZS1I1rKPmRjp7QQ2YDzdwpIHdTmPuBEIyIgXXiUQ/w6ZcFj4AA2ozg5zYaI5+3zGniD4ABtHXjuwGdRlRW6dngE5mECYu/0QnYwo5I6Z3KfM7BmZ/l4//i25lwXry79v/jxsAaMAc","base64")).toString()),o}],[n.structUtils.makeIdent(null,"resolve").identHash,function(){return void 0===s&&(s=r(78761).brotliDecompressSync(Buffer.from("G1QTIIzURnVBnGa0VPvr81orV8AFIqdU0sqrdcVgCdukgAZwi8a50gLk9+19Z2NcUILjmzXkzt4dzm5a6Yoys+/9qnKiaApXukOiuoyUaMcynG4X7X4vBaIE/PL30gwG6HSGJkLxb9PnLjfMr+748n7sM6C/NycK6ber/bX1reVVxta6W/31tZIhfrS+upoE/TPRHj0S/l0T59gTGdtKOp1OmMOJt9rhfucDdLJ2tgyfnO+u4YMkQAcYq/nebTcDmbXhqhgo6iQA4M3m4xya4Cos3p6klmkmQT+S4DLDZfwfMF+sUCx36KleOtaHLQfEIz0Bmncj/Ngi3lqOl4391EWEfIss6gVp3oDUGwsSZJKeOVONJWZg+Mue3KUMV3aMqYJ+7b2219D+GFDi8EV5y/Y+5J+He0oNjKAgqLsJziEsS9uIaCu3BHBKSXxNKKa2ShbfglcWoiiVT2kfGI7Gw+YJ/Sqy1H6wdFWtyVUQIa82JPwbeV25YKLzc5ZIFM6GCPSA+J9dTvJbs5LuuKnLP3f09gCu2jxqsAv6CA+ZySVaUJr2d3A70BC/uBCKr2OVrWgC3fSwb7NlfkgSEEiejrMGvhya9lMbVI6lMsFKN330A1/FOaefHQdNGLEZ3IwFF87H3xVlM0Xxsmbi/7A60oymRcIe0tH90alG6ez/yA7jwYotxuHWZdR+1HlMcddGHAV6QD/gXYPV0wnNv47I+5FGevzZFMqWSO8GU4nQ3FjsdgdJcD+c1rvudERKuLyd7bxiBpnsMDHsvPP4nXdXkld/gUNks3GAE1Otmb90bavDyiw4Mrx496Iw+jbLTgsCZGZXSZ9vM55C7KGe4HyJAKXEk0iT/Cj/PFwLJBN7pcP7ZFfYtUApGTWKkYhI9IE2zt/5ByH72wdvH+88b71zuv/FMCX3w6x5nzhY44Cg5IYv9LeKwHuHIWgPbfgrAcUxOlKkPRdQOIDF/aBuLPJAXD+TgxCNXx4jQxeR/qlBWVikFPfEI4rXMUc4kZ2w9KbPKYRvFUag0dVlVoyUP4zfidbTXAdZF88jAckl+NHjLFCNdX7EQ1PbLSOl+P+MqgwEOCi6dxgWZ7NCwJBjWKpk1LaxwKrhZ4aEC/0lMPJYe5S8xAakDcmA2kSS86GjEMTrv3VEu0S0YGZcxToMV524G4WAc4CReePePdipvs4aXRL5p+aeN96yfMGjsiTbQNxgbdRKc+keQ+NxYIEm1mBtEO29WrcbrqNbQRMR66KpGG4aG0NtmRyZ2JhUvu0paCklRlID8PT3gSiwZrqr4XZXoBBzBMrveWCuOg7iTgGDXDdbGi8XHkQf5KXDGFUxWueu5wkSa6gMWY1599g2piQjwBKIAPt4N5cOZdFBidz2feGwEAy1j1UydGxDSCCUsh314cUIIRV/dWCheceubL2gU8CibewmP7UxmN5kN4I7zfQhPxkP0NCcei8GXQpw4c3krEzW7PR2hgi/hqqqR58UJ/ZVfWxfcH5ZKMo4itkmPK0FCGxzzIRP20lK/gz28Y03sY233KvSVWUKl9rcbX6MbHjpUG8MvNlw72p6FwTejv92zgpnCxVJnIHHZhCBxNcHF5RTveRp513hUtTHHq4BIndlytZT5xoTSYfHKqKNr4o9kcGINIz6tZSKRdtbON3Ydr9cgqxHIeisMNIsvPg/IFMZuBbSqqDLeSO5dak1cGr76FtH2PC7hs0S0Oq3GsmF1Ga4YABAMGcdPAWzTk26B7cKV91I2b0V/GYvnsEQ1YGntRqi5EQqTlgZszbV/32GuZtUF49JOA/r4jAdwUOsbPo6mNoBlJPYjM5axrZaWQf33bFsLWqiyvvDOM4x0Ng802T7cuP2a3q98GWq6yiq6q3M77hcZlOUnmryctRYmI4Hb2F5XixFohkBmySCjU+M7/WQVE5YAtnlxiUJDhFN0y1tNeMWY9E0MfZi2rQ4eC72WXjsAA==","base64")).toString()),s}],[n.structUtils.makeIdent(null,"typescript").identHash,function(){return void 0===a&&(a=r(78761).brotliDecompressSync(Buffer.from("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","base64")).toString()),a}]]),g={hooks:{registerPackageExtensions:async(e,t)=>{for(const[e,r]of A)t(n.structUtils.parseDescriptor(e,!0),r)},getBuiltinPatch:async(e,t)=>{var r;if(!t.startsWith("compat/"))return;const i=n.structUtils.parseIdent(t.slice("compat/".length)),A=null===(r=c.get(i.identHash))||void 0===r?void 0:r();return void 0!==A?A:null},reduceDependency:async(e,t,r,i)=>void 0===c.get(e.identHash)?e:n.structUtils.makeDescriptor(e,n.structUtils.makeRange({protocol:"patch:",source:n.structUtils.stringifyDescriptor(e),selector:`builtin`,params:null}))}}},10420:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>h});var n=r(36370),i=r(95397),A=r(5624),o=r(93103);class s extends i.BaseCommand{constructor(){super(...arguments),this.quiet=!1,this.args=[]}async execute(){const e=[];this.pkg&&e.push("--package",this.pkg),this.quiet&&e.push("--quiet");const t=A.structUtils.parseIdent(this.command),r=A.structUtils.makeIdent(t.scope,"create-"+t.name);return this.cli.run(["dlx",...e,A.structUtils.stringifyIdent(r),...this.args])}}(0,n.gn)([o.Command.String("-p,--package")],s.prototype,"pkg",void 0),(0,n.gn)([o.Command.Boolean("-q,--quiet")],s.prototype,"quiet",void 0),(0,n.gn)([o.Command.String()],s.prototype,"command",void 0),(0,n.gn)([o.Command.Proxy()],s.prototype,"args",void 0),(0,n.gn)([o.Command.Path("create")],s.prototype,"execute",null);var a=r(27122),c=r(40376),g=r(56537),l=r(46009);class u extends i.BaseCommand{constructor(){super(...arguments),this.quiet=!1,this.args=[]}async execute(){return a.VK.telemetry=null,await g.xfs.mktempPromise(async e=>{const t=l.y1.join(e,"dlx-"+process.pid);await g.xfs.mkdirPromise(t),await g.xfs.writeFilePromise(l.y1.join(t,"package.json"),"{}\n"),await g.xfs.writeFilePromise(l.y1.join(t,"yarn.lock"),"");const r=l.y1.join(t,".yarnrc.yml"),n=await a.VK.findProjectCwd(this.context.cwd,l.QS.lockfile),o=null!==n?l.y1.join(n,".yarnrc.yml"):null;null!==o&&g.xfs.existsSync(o)?(await g.xfs.copyFilePromise(o,r),await a.VK.updateConfiguration(t,e=>{const t={...e,enableGlobalCache:!0,enableTelemetry:!1};return Array.isArray(e.plugins)&&(t.plugins=e.plugins.map(e=>{const t="string"==typeof e?e:e.path,r=l.cS.isAbsolute(t)?t:l.cS.resolve(l.cS.fromPortablePath(n),t);return"string"==typeof e?r:{path:r,spec:e.spec}})),t})):await g.xfs.writeFilePromise(r,"enableGlobalCache: true\nenableTelemetry: false\n");const s=void 0!==this.pkg?[this.pkg]:[this.command],u=A.structUtils.parseDescriptor(this.command).name,h=await this.cli.run(["add","--",...s],{cwd:t,quiet:this.quiet});if(0!==h)return h;this.quiet||this.context.stdout.write("\n");const f=await a.VK.find(t,this.context.plugins),{project:p,workspace:C}=await c.I.find(f,t);if(null===C)throw new i.WorkspaceRequiredError(p.cwd,t);return await p.restoreInstallState(),await A.scriptUtils.executeWorkspaceAccessibleBinary(C,u,this.args,{cwd:this.context.cwd,stdin:this.context.stdin,stdout:this.context.stdout,stderr:this.context.stderr})})}}u.usage=o.Command.Usage({description:"run a package in a temporary environment",details:"\n This command will install a package within a temporary environment, and run its binary script if it contains any. The binary will run within the current cwd.\n\n By default Yarn will download the package named `command`, but this can be changed through the use of the `-p,--package` flag which will instruct Yarn to still run the same command but from a different package.\n\n Also by default Yarn will print the full install logs when installing the given package. This behavior can be disabled by using the `-q,--quiet` flag which will instruct Yarn to only report critical errors.\n\n Using `yarn dlx` as a replacement of `yarn add` isn't recommended, as it makes your project non-deterministic (Yarn doesn't keep track of the packages installed through `dlx` - neither their name, nor their version).\n ",examples:[["Use create-react-app to create a new React app","yarn dlx create-react-app ./my-app"]]}),(0,n.gn)([o.Command.String("-p,--package")],u.prototype,"pkg",void 0),(0,n.gn)([o.Command.Boolean("-q,--quiet")],u.prototype,"quiet",void 0),(0,n.gn)([o.Command.String()],u.prototype,"command",void 0),(0,n.gn)([o.Command.Proxy()],u.prototype,"args",void 0),(0,n.gn)([o.Command.Path("dlx")],u.prototype,"execute",null);const h={commands:[s,u]}},61736:(e,t,r)=>{"use strict";r.r(t),r.d(t,{suggestUtils:()=>n,default:()=>Oe});var n={};r.r(n),r.d(n,{Modifier:()=>A,Strategy:()=>o,Target:()=>i,applyModifier:()=>D,extractDescriptorFromPath:()=>k,extractRangeModifier:()=>b,fetchDescriptorFrom:()=>F,findProjectDescriptors:()=>S,getModifier:()=>Q,getSuggestedDescriptors:()=>M});var i,A,o,s=r(27122),a=r(36370),c=r(95397),g=r(28148),l=r(62152),u=r(92659),h=r(40376),f=r(15815),p=r(5624),C=r(93103),d=r(61899),I=r(33720),E=r(46611),m=r(46009),B=r(56537),w=r(53887),y=r.n(w);function Q(e,t){return e.exact?A.EXACT:e.caret?A.CARET:e.tilde?A.TILDE:t.configuration.get("defaultSemverRangePrefix")}!function(e){e.REGULAR="dependencies",e.DEVELOPMENT="devDependencies",e.PEER="peerDependencies"}(i||(i={})),function(e){e.CARET="^",e.TILDE="~",e.EXACT=""}(A||(A={})),function(e){e.KEEP="keep",e.REUSE="reuse",e.PROJECT="project",e.LATEST="latest",e.CACHE="cache"}(o||(o={}));const v=/^([\^~]?)[0-9]+(?:\.[0-9]+){0,2}(?:-\S+)?$/;function b(e,{project:t}){const r=e.match(v);return r?r[1]:t.configuration.get("defaultSemverRangePrefix")}function D(e,t){let{protocol:r,source:n,params:i,selector:A}=p.structUtils.parseRange(e.range);return y().valid(A)&&(A=`${t}${e.range}`),p.structUtils.makeDescriptor(e,p.structUtils.makeRange({protocol:r,source:n,params:i,selector:A}))}async function S(e,{project:t,target:r}){const n=new Map,A=e=>{let t=n.get(e.descriptorHash);return t||n.set(e.descriptorHash,t={descriptor:e,locators:[]}),t};for(const n of t.workspaces)if(r===i.PEER){const t=n.manifest.peerDependencies.get(e.identHash);void 0!==t&&A(t).locators.push(n.locator)}else{const t=n.manifest.dependencies.get(e.identHash),o=n.manifest.devDependencies.get(e.identHash);r===i.DEVELOPMENT?void 0!==o?A(o).locators.push(n.locator):void 0!==t&&A(t).locators.push(n.locator):void 0!==t?A(t).locators.push(n.locator):void 0!==o&&A(o).locators.push(n.locator)}return n}async function k(e,{cwd:t,workspace:r}){return await async function(e){return await B.xfs.mktempPromise(async t=>{const r=s.VK.create(t);return r.useWithSource(t,{enableMirror:!1,compressionLevel:0},t,{overwrite:!0}),await e(new g.C(t,{configuration:r,check:!1,immutable:!1}))})}(async n=>{m.y1.isAbsolute(e)||(e=m.y1.relative(r.cwd,m.y1.resolve(t,e))).match(/^\.{0,2}\//)||(e="./"+e);const{project:i}=r,A=await F(p.structUtils.makeIdent(null,"archive"),e,{project:r.project,cache:n,workspace:r});if(!A)throw new Error("Assertion failed: The descriptor should have been found");const o=new I.$,s=i.configuration.makeResolver(),a=i.configuration.makeFetcher(),c={checksums:i.storedChecksums,project:i,cache:n,fetcher:a,report:o,resolver:s},g=s.bindDescriptor(A,r.anchoredLocator,c),l=p.structUtils.convertDescriptorToLocator(g),u=await a.fetch(l,c),h=await E.G.find(u.prefixPath,{baseFs:u.packageFs});if(!h.name)throw new Error("Target path doesn't have a name");return p.structUtils.makeDescriptor(h.name,e)})}async function M(e,{project:t,workspace:r,cache:n,target:A,modifier:s,strategies:a,maxResults:c=1/0}){if(!(c>=0))throw new Error(`Invalid maxResults (${c})`);if("unknown"!==e.range)return{suggestions:[{descriptor:e,name:"Use "+p.structUtils.prettyDescriptor(t.configuration,e),reason:"(unambiguous explicit request)"}],rejections:[]};const g=null!=r&&r.manifest[A].get(e.identHash)||null,l=[],u=[],h=async e=>{try{await e()}catch(e){u.push(e)}};for(const u of a){if(l.length>=c)break;switch(u){case o.KEEP:await h(async()=>{g&&l.push({descriptor:g,name:"Keep "+p.structUtils.prettyDescriptor(t.configuration,g),reason:"(no changes)"})});break;case o.REUSE:await h(async()=>{for(const{descriptor:n,locators:i}of(await S(e,{project:t,target:A})).values()){if(1===i.length&&i[0].locatorHash===r.anchoredLocator.locatorHash&&a.includes(o.KEEP))continue;let e="(originally used by "+p.structUtils.prettyLocator(t.configuration,i[0]);e+=i.length>1?` and ${i.length-1} other${i.length>2?"s":""})`:")",l.push({descriptor:n,name:"Reuse "+p.structUtils.prettyDescriptor(t.configuration,n),reason:e})}});break;case o.CACHE:await h(async()=>{for(const r of t.storedDescriptors.values())r.identHash===e.identHash&&l.push({descriptor:r,name:"Reuse "+p.structUtils.prettyDescriptor(t.configuration,r),reason:"(already used somewhere in the lockfile)"})});break;case o.PROJECT:await h(async()=>{if(null!==r.manifest.name&&e.identHash===r.manifest.name.identHash)return;const n=t.tryWorkspaceByIdent(e);null!==n&&l.push({descriptor:n.anchoredDescriptor,name:"Attach "+p.structUtils.prettyWorkspace(t.configuration,n),reason:`(local workspace at ${n.cwd})`})});break;case o.LATEST:await h(async()=>{if("unknown"!==e.range)l.push({descriptor:e,name:"Use "+p.structUtils.prettyRange(t.configuration,e.range),reason:"(explicit range requested)"});else if(A===i.PEER)l.push({descriptor:p.structUtils.makeDescriptor(e,"*"),name:"Use *",reason:"(catch-all peer dependency pattern)"});else if(t.configuration.get("enableNetwork")){let i=await F(e,"latest",{project:t,cache:n,workspace:r,preserveModifier:!1});i&&(i=D(i,s),l.push({descriptor:i,name:"Use "+p.structUtils.prettyDescriptor(t.configuration,i),reason:"(resolved from latest)"}))}else l.push({descriptor:null,name:"Resolve from latest",reason:t.configuration.format("(unavailable because enableNetwork is toggled off)","grey")})})}}return{suggestions:l.slice(0,c),rejections:u.slice(0,c)}}async function F(e,t,{project:r,cache:n,workspace:i,preserveModifier:A=!0}){const o=p.structUtils.makeDescriptor(e,t),s=new I.$,a=r.configuration.makeFetcher(),c=r.configuration.makeResolver(),g={project:r,fetcher:a,cache:n,checksums:r.storedChecksums,report:s,skipIntegrityCheck:!0},l={...g,resolver:c,fetchOptions:g},u=c.bindDescriptor(o,i.anchoredLocator,l),h=await c.getCandidates(u,new Map,l);if(0===h.length)return null;const f=h[0];let{protocol:C,source:d,params:E,selector:m}=p.structUtils.parseRange(p.structUtils.convertToManifestRange(f.reference));if(C===r.configuration.get("defaultProtocol")&&(C=null),y().valid(m)&&!1!==A){m=b("string"==typeof A?A:o.range,{project:r})+m}return p.structUtils.makeDescriptor(f,p.structUtils.makeRange({protocol:C,source:d,params:E,selector:m}))}class N extends c.BaseCommand{constructor(){super(...arguments),this.packages=[],this.json=!1,this.exact=!1,this.tilde=!1,this.caret=!1,this.dev=!1,this.peer=!1,this.optional=!1,this.preferDev=!1,this.interactive=null,this.cached=!1}async execute(){var e;const t=await s.VK.find(this.context.cwd,this.context.plugins),{project:r,workspace:n}=await h.I.find(t,this.context.cwd),A=await g.C.find(t);if(!n)throw new c.WorkspaceRequiredError(r.cwd,this.context.cwd);const a=null!==(e=this.interactive)&&void 0!==e?e:t.get("preferInteractive"),I=Q(this,r),E=[...a?[o.REUSE]:[],o.PROJECT,...this.cached?[o.CACHE]:[],o.LATEST],m=a?1/0:1,B=await Promise.all(this.packages.map(async e=>{const t=e.match(/^\.{0,2}\//)?await k(e,{cwd:this.context.cwd,workspace:n}):p.structUtils.parseDescriptor(e),o=function(e,t,{dev:r,peer:n,preferDev:A,optional:o}){const s=e.manifest[i.REGULAR].has(t.identHash),a=e.manifest[i.DEVELOPMENT].has(t.identHash),c=e.manifest[i.PEER].has(t.identHash);if((r||n)&&s)throw new C.UsageError(`Package "${p.structUtils.prettyIdent(e.project.configuration,t)}" is already listed as a regular dependency - remove the -D,-P flags or remove it from your dependencies first`);if(!r&&!n&&c)throw new C.UsageError(`Package "${p.structUtils.prettyIdent(e.project.configuration,t)}" is already listed as a peer dependency - use either of -D or -P, or remove it from your peer dependencies first`);if(o&&a)throw new C.UsageError(`Package "${p.structUtils.prettyIdent(e.project.configuration,t)}" is already listed as a dev dependency - remove the -O flag or remove it from your dev dependencies first`);if(o&&!n&&c)throw new C.UsageError(`Package "${p.structUtils.prettyIdent(e.project.configuration,t)}" is already listed as a peer dependency - remove the -O flag or add the -P flag or remove it from your peer dependencies first`);if((r||A)&&o)throw new C.UsageError(`Package "${p.structUtils.prettyIdent(e.project.configuration,t)}" cannot simultaneously be a dev dependency and an optional dependency`);return n?i.PEER:r||A?i.DEVELOPMENT:s?i.REGULAR:a?i.DEVELOPMENT:i.REGULAR}(n,t,{dev:this.dev,peer:this.peer,preferDev:this.preferDev,optional:this.optional});return[t,await M(t,{project:r,workspace:n,cache:A,target:o,modifier:I,strategies:E,maxResults:m}),o]})),w=await l.h.start({configuration:t,stdout:this.context.stdout,suggestInstall:!1},async e=>{for(const[n,{suggestions:i,rejections:A}]of B){if(0===i.filter(e=>null!==e.descriptor).length){const[i]=A;if(void 0===i)throw new Error("Assertion failed: Expected an error to have been set");const o=this.cli.error(i);r.configuration.get("enableNetwork")?e.reportError(u.b.CANT_SUGGEST_RESOLUTIONS,`${p.structUtils.prettyDescriptor(t,n)} can't be resolved to a satisfying range:\n\n${o}`):e.reportError(u.b.CANT_SUGGEST_RESOLUTIONS,`${p.structUtils.prettyDescriptor(t,n)} can't be resolved to a satisfying range (note: network resolution has been disabled):\n\n${o}`)}}});if(w.hasErrors())return w.exitCode();let y=!1;const v=[],b=[];for(const[,{suggestions:e},t]of B){let r;const i=e.filter(e=>null!==e.descriptor),A=i[0].descriptor,o=i.every(e=>p.structUtils.areDescriptorsEqual(e.descriptor,A));1===i.length||o?r=A:(y=!0,({answer:r}=await(0,d.prompt)({type:"select",name:"answer",message:"Which range do you want to use?",choices:e.map(({descriptor:e,name:t,reason:r})=>e?{name:t,hint:r,descriptor:e}:{name:t,hint:r,disabled:!0}),onCancel:()=>process.exit(130),result(e){return this.find(e,"descriptor")},stdin:this.context.stdin,stdout:this.context.stdout})));const s=n.manifest[t].get(r.identHash);void 0!==s&&s.descriptorHash===r.descriptorHash||(n.manifest[t].set(r.identHash,r),this.optional&&("dependencies"===t?n.manifest.ensureDependencyMeta({...r,range:"unknown"}).optional=!0:"peerDependencies"===t&&(n.manifest.ensurePeerDependencyMeta({...r,range:"unknown"}).optional=!0)),void 0===s?v.push([n,t,r,E]):b.push([n,t,s,r]))}await t.triggerMultipleHooks(e=>e.afterWorkspaceDependencyAddition,v),await t.triggerMultipleHooks(e=>e.afterWorkspaceDependencyReplacement,b),y&&this.context.stdout.write("\n");return(await f.Pk.start({configuration:t,json:this.json,stdout:this.context.stdout,includeLogs:!this.context.quiet},async e=>{await r.install({cache:A,report:e})})).exitCode()}}N.usage=C.Command.Usage({description:"add dependencies to the project",details:"\n This command adds a package to the package.json for the nearest workspace.\n\n - If it didn't exist before, the package will by default be added to the regular `dependencies` field, but this behavior can be overriden thanks to the `-D,--dev` flag (which will cause the dependency to be added to the `devDependencies` field instead) and the `-P,--peer` flag (which will do the same but for `peerDependencies`).\n\n - If the package was already listed in your dependencies, it will by default be upgraded whether it's part of your `dependencies` or `devDependencies` (it won't ever update `peerDependencies`, though).\n\n - If set, the `--prefer-dev` flag will operate as a more flexible `-D,--dev` in that it will add the package to your `devDependencies` if it isn't already listed in either `dependencies` or `devDependencies`, but it will also happily upgrade your `dependencies` if that's what you already use (whereas `-D,--dev` would throw an exception).\n\n - If set, the `-O,--optional` flag will add the package to the `optionalDependencies` field and, in combination with the `-P,--peer` flag, it will add the package as an optional peer dependency. If the package was already listed in your `dependencies`, it will be upgraded to `optionalDependencies`. If the package was already listed in your `peerDependencies`, in combination with the `-P,--peer` flag, it will be upgraded to an optional peer dependency: `\"peerDependenciesMeta\": { \"\": { \"optional\": true } }`\n\n - If the added package doesn't specify a range at all its `latest` tag will be resolved and the returned version will be used to generate a new semver range (using the `^` modifier by default unless otherwise configured via the `defaultSemverRangePrefix` configuration, or the `~` modifier if `-T,--tilde` is specified, or no modifier at all if `-E,--exact` is specified). Two exceptions to this rule: the first one is that if the package is a workspace then its local version will be used, and the second one is that if you use `-P,--peer` the default range will be `*` and won't be resolved at all.\n\n - If the added package specifies a tag range (such as `latest` or `rc`), Yarn will resolve this tag to a semver version and use that in the resulting package.json entry (meaning that `yarn add foo@latest` will have exactly the same effect as `yarn add foo`).\n\n If the `--cached` option is used, Yarn will preferably reuse the highest version already used somewhere within the project, even if through a transitive dependency.\n\n If the `-i,--interactive` option is used (or if the `preferInteractive` settings is toggled on) the command will first try to check whether other workspaces in the project use the specified package and, if so, will offer to reuse them.\n\n If the `--json` flag is set the output will follow a JSON-stream output also known as NDJSON (https://github.com/ndjson/ndjson-spec).\n\n For a compilation of all the supported protocols, please consult the dedicated page from our website: .\n ",examples:[["Add a regular package to the current workspace","$0 add lodash"],["Add a specific version for a package to the current workspace","$0 add lodash@1.2.3"],["Add a package from a GitHub repository (the master branch) to the current workspace using a URL","$0 add lodash@https://github.com/lodash/lodash"],["Add a package from a GitHub repository (the master branch) to the current workspace using the GitHub protocol","$0 add lodash@github:lodash/lodash"],["Add a package from a GitHub repository (the master branch) to the current workspace using the GitHub protocol (shorthand)","$0 add lodash@lodash/lodash"],["Add a package from a specific branch of a GitHub repository to the current workspace using the GitHub protocol (shorthand)","$0 add lodash-es@lodash/lodash#es"]]}),(0,a.gn)([C.Command.Rest()],N.prototype,"packages",void 0),(0,a.gn)([C.Command.Boolean("--json")],N.prototype,"json",void 0),(0,a.gn)([C.Command.Boolean("-E,--exact")],N.prototype,"exact",void 0),(0,a.gn)([C.Command.Boolean("-T,--tilde")],N.prototype,"tilde",void 0),(0,a.gn)([C.Command.Boolean("-C,--caret")],N.prototype,"caret",void 0),(0,a.gn)([C.Command.Boolean("-D,--dev")],N.prototype,"dev",void 0),(0,a.gn)([C.Command.Boolean("-P,--peer")],N.prototype,"peer",void 0),(0,a.gn)([C.Command.Boolean("-O,--optional")],N.prototype,"optional",void 0),(0,a.gn)([C.Command.Boolean("--prefer-dev")],N.prototype,"preferDev",void 0),(0,a.gn)([C.Command.Boolean("-i,--interactive")],N.prototype,"interactive",void 0),(0,a.gn)([C.Command.Boolean("--cached")],N.prototype,"cached",void 0),(0,a.gn)([C.Command.Path("add")],N.prototype,"execute",null);class R extends c.BaseCommand{constructor(){super(...arguments),this.verbose=!1,this.json=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t,locator:r}=await h.I.find(e,this.context.cwd);if(await t.restoreInstallState(),this.name){const n=(await p.scriptUtils.getPackageAccessibleBinaries(r,{project:t})).get(this.name);if(!n)throw new C.UsageError(`Couldn't find a binary named "${this.name}" for package "${p.structUtils.prettyLocator(e,r)}"`);const[,i]=n;return this.context.stdout.write(i+"\n"),0}return(await f.Pk.start({configuration:e,json:this.json,stdout:this.context.stdout},async n=>{const i=await p.scriptUtils.getPackageAccessibleBinaries(r,{project:t}),A=Array.from(i.keys()).reduce((e,t)=>Math.max(e,t.length),0);for(const[e,[t,r]]of i)n.reportJson({name:e,source:p.structUtils.stringifyIdent(t),path:r});if(this.verbose)for(const[t,[r]]of i)n.reportInfo(null,`${t.padEnd(A," ")} ${p.structUtils.prettyLocator(e,r)}`);else for(const e of i.keys())n.reportInfo(null,e)})).exitCode()}}R.usage=C.Command.Usage({description:"get the path to a binary script",details:"\n When used without arguments, this command will print the list of all the binaries available in the current workspace. Adding the `-v,--verbose` flag will cause the output to contain both the binary name and the locator of the package that provides the binary.\n\n When an argument is specified, this command will just print the path to the binary on the standard output and exit. Note that the reported path may be stored within a zip archive.\n\n If the `--json` flag is set the output will follow a JSON-stream output also known as NDJSON (https://github.com/ndjson/ndjson-spec).\n ",examples:[["List all the available binaries","$0 bin"],["Print the path to a specific binary","$0 bin eslint"]]}),(0,a.gn)([C.Command.String({required:!1})],R.prototype,"name",void 0),(0,a.gn)([C.Command.Boolean("-v,--verbose")],R.prototype,"verbose",void 0),(0,a.gn)([C.Command.Boolean("--json")],R.prototype,"json",void 0),(0,a.gn)([C.Command.Path("bin")],R.prototype,"execute",null);class K extends c.BaseCommand{constructor(){super(...arguments),this.mirror=!1,this.all=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),t=await g.C.find(e);return(await f.Pk.start({configuration:e,stdout:this.context.stdout},async()=>{const e=(this.all||this.mirror)&&null!==t.mirrorCwd,r=!this.mirror;e&&await B.xfs.removePromise(t.mirrorCwd),r&&await B.xfs.removePromise(t.cwd)})).exitCode()}}K.usage=C.Command.Usage({description:"remove the shared cache files",details:"\n This command will remove all the files from the cache.\n\n By default only the local cache will be cleaned. This behavior can be disabled with the `--mirror`, which will lead to the removal of the global cache files instead, or `--all` (which will remove both the local and global caches for the current project).\n ",examples:[["Remove all the local archives","$0 cache clean"],["Remove all the archives stored in the ~/.yarn directory","$0 cache clean --mirror"]]}),(0,a.gn)([C.Command.Boolean("--mirror")],K.prototype,"mirror",void 0),(0,a.gn)([C.Command.Boolean("--all")],K.prototype,"all",void 0),(0,a.gn)([C.Command.Path("cache","clean")],K.prototype,"execute",null);var x=r(44674),L=r.n(x),P=r(31669);class U extends c.BaseCommand{constructor(){super(...arguments),this.json=!1,this.unsafe=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),t=this.name.replace(/[.[].*$/,""),r=this.name.replace(/^[^.[]*/,"");if(void 0===e.settings.get(t))throw new C.UsageError(`Couldn't find a configuration settings named "${t}"`);const n=T(e.getSpecial(t,{hideSecrets:!this.unsafe,getNativePaths:!0})),i=r?L()(n,r):n,A=await f.Pk.start({configuration:e,includeFooter:!1,json:this.json,stdout:this.context.stdout},async e=>{e.reportJson(i)});if(!this.json){if("string"==typeof i)return this.context.stdout.write(i+"\n"),A.exitCode();P.inspect.styles.name="cyan",this.context.stdout.write((0,P.inspect)(i,{depth:1/0,colors:!0,compact:!1})+"\n")}return A.exitCode()}}function T(e){if(e instanceof Map&&(e=Object.fromEntries(e)),"object"==typeof e&&null!==e)for(const t of Object.keys(e)){const r=e[t];"object"==typeof r&&null!==r&&(e[t]=T(r))}return e}U.usage=C.Command.Usage({description:"read a configuration settings",details:"\n This command will print a configuration setting.\n\n Secrets (such as tokens) will be redacted from the output by default. If this behavior isn't desired, set the `--no-redacted` to get the untransformed value.\n ",examples:[["Print a simple configuration setting","yarn config get yarnPath"],["Print a complex configuration setting","yarn config get packageExtensions"],["Print a nested field from the configuration","yarn config get 'npmScopes[\"my-company\"].npmRegistryServer'"],["Print a token from the configuration","yarn config get npmAuthToken --no-redacted"],["Print a configuration setting as JSON","yarn config get packageExtensions --json"]]}),(0,a.gn)([C.Command.String()],U.prototype,"name",void 0),(0,a.gn)([C.Command.Boolean("--json")],U.prototype,"json",void 0),(0,a.gn)([C.Command.Boolean("--no-redacted")],U.prototype,"unsafe",void 0),(0,a.gn)([C.Command.Path("config","get")],U.prototype,"execute",null);var O=r(82558),j=r.n(O),Y=r(81534),G=r.n(Y);class _ extends c.BaseCommand{constructor(){super(...arguments),this.json=!1,this.home=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins);if(!e.projectCwd)throw new C.UsageError("This command must be run from within a project folder");const t=this.name.replace(/[.[].*$/,""),r=this.name.replace(/^[^.[]*/,"");if(void 0===e.settings.get(t))throw new C.UsageError(`Couldn't find a configuration settings named "${t}"`);const n=this.json?JSON.parse(this.value):this.value,i=this.home?e=>s.VK.updateHomeConfiguration(e):t=>s.VK.updateConfiguration(e.projectCwd,t);await i(e=>{if(r){const t=j()(e);return G()(t,this.name,n),t}return{...e,[t]:n}});const A=T((await s.VK.find(this.context.cwd,this.context.plugins)).getSpecial(t,{hideSecrets:!0,getNativePaths:!0})),o=r?L()(A,r):A;return(await f.Pk.start({configuration:e,includeFooter:!1,stdout:this.context.stdout},async e=>{P.inspect.styles.name="cyan",e.reportInfo(u.b.UNNAMED,`Successfully set ${this.name} to ${(0,P.inspect)(o,{depth:1/0,colors:!0,compact:!1})}`)})).exitCode()}}_.usage=C.Command.Usage({description:"change a configuration settings",details:"\n This command will set a configuration setting.\n\n - If set, the `-H,--home` flag will update the home configuration instead of the project configuration.\n\n When used without the `--json` flag, it can only set a simple configuration setting (a string, a number, or a boolean).\n\n When used with the `--json` flag, it can set both simple and complex configuration settings, including Arrays and Objects.\n ",examples:[["Set a simple configuration setting (a string, a number, or a boolean)","yarn config set initScope myScope"],["Set a simple configuration setting (a string, a number, or a boolean) using the `--json` flag",'yarn config set initScope --json \\"myScope\\"'],["Set a complex configuration setting (an Array) using the `--json` flag",'yarn config set unsafeHttpWhitelist --json \'["*.example.com", "example.com"]\''],["Set a complex configuration setting (an Object) using the `--json` flag",'yarn config set packageExtensions --json \'{ "@babel/parser@*": { "dependencies": { "@babel/types": "*" } } }\'']]}),(0,a.gn)([C.Command.String()],_.prototype,"name",void 0),(0,a.gn)([C.Command.String()],_.prototype,"value",void 0),(0,a.gn)([C.Command.Boolean("--json")],_.prototype,"json",void 0),(0,a.gn)([C.Command.Boolean("-H,--home")],_.prototype,"home",void 0),(0,a.gn)([C.Command.Path("config","set")],_.prototype,"execute",null);class H extends c.BaseCommand{constructor(){super(...arguments),this.verbose=!1,this.why=!1,this.json=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins,{strict:!1});return(await f.Pk.start({configuration:e,json:this.json,stdout:this.context.stdout},async t=>{if(e.invalid.size>0&&!this.json){for(const[r,n]of e.invalid)t.reportError(u.b.INVALID_CONFIGURATION_KEY,`Invalid configuration key "${r}" in ${n}`);t.reportSeparator()}if(this.json){const r=p.miscUtils.sortMap(e.settings.keys(),e=>e);for(const n of r){const r=e.settings.get(n),i=e.getSpecial(n,{hideSecrets:!0,getNativePaths:!0}),A=e.sources.get(n);this.verbose?t.reportJson({key:n,effective:i,source:A}):t.reportJson({key:n,effective:i,source:A,...r})}}else{const r=p.miscUtils.sortMap(e.settings.keys(),e=>e),n=r.reduce((e,t)=>Math.max(e,t.length),0),i={breakLength:1/0,colors:e.get("enableColors"),maxArrayLength:2};if(this.why||this.verbose){const A=r.map(t=>{const r=e.settings.get(t);if(!r)throw new Error(`Assertion failed: This settings ("${t}") should have been registered`);return[t,this.why?e.sources.get(t)||"":r.description]}),o=A.reduce((e,[,t])=>Math.max(e,t.length),0);for(const[r,s]of A)t.reportInfo(null,`${r.padEnd(n," ")} ${s.padEnd(o," ")} ${(0,P.inspect)(e.getSpecial(r,{hideSecrets:!0,getNativePaths:!0}),i)}`)}else for(const A of r)t.reportInfo(null,`${A.padEnd(n," ")} ${(0,P.inspect)(e.getSpecial(A,{hideSecrets:!0,getNativePaths:!0}),i)}`)}})).exitCode()}}H.usage=C.Command.Usage({description:"display the current configuration",details:"\n This command prints the current active configuration settings.\n\n When used together with the `-v,--verbose` option, the output will contain the settings description on top of the regular key/value information.\n\n When used together with the `--why` flag, the output will also contain the reason why a settings is set a particular way.\n\n If the `--json` flag is set the output will follow a JSON-stream output also known as NDJSON (https://github.com/ndjson/ndjson-spec).\n\n Note that the paths settings will be normalized - especially on Windows. It means that paths such as `C:\\project` will be transparently shown as `/mnt/c/project`.\n ",examples:[["Print the active configuration settings","$0 config"]]}),(0,a.gn)([C.Command.Boolean("-v,--verbose")],H.prototype,"verbose",void 0),(0,a.gn)([C.Command.Boolean("--why")],H.prototype,"why",void 0),(0,a.gn)([C.Command.Boolean("--json")],H.prototype,"json",void 0),(0,a.gn)([C.Command.Path("config")],H.prototype,"execute",null);var J,q=r(2401),z=r.n(q),W=r(15966);!function(e){e.HIGHEST="highest"}(J||(J={}));const V=new Set(Object.values(J)),X={highest:async(e,t,{resolver:r,fetcher:n,resolveOptions:i,fetchOptions:A})=>{const o=new Map;for(const[t,r]of e.storedResolutions){const n=e.storedDescriptors.get(t);if(void 0===n)throw new Error(`Assertion failed: The descriptor (${t}) should have been registered`);p.miscUtils.getSetWithDefault(o,n.identHash).add(r)}return Array.from(e.storedDescriptors.values(),async n=>{if(t.length&&!z().isMatch(p.structUtils.stringifyIdent(n),t))return null;const A=e.storedResolutions.get(n.descriptorHash);if(void 0===A)throw new Error(`Assertion failed: The resolution (${n.descriptorHash}) should have been registered`);const s=e.originalPackages.get(A);if(void 0===s)return null;if(!r.shouldPersistResolution(s,i))return null;const a=o.get(n.identHash);if(void 0===a)throw new Error(`Assertion failed: The resolutions (${n.identHash}) should have been registered`);if(1===a.size)return null;const c=[...a].map(t=>{const r=e.originalPackages.get(t);if(void 0===r)throw new Error(`Assertion failed: The package (${t}) should have been registered`);return r.reference}),g=await r.getSatisfying(n,c,i),l=null==g?void 0:g[0];if(void 0===l)return null;const u=l.locatorHash,h=e.originalPackages.get(u);if(void 0===h)throw new Error(`Assertion failed: The package (${u}) should have been registered`);return u===A?null:{descriptor:n,currentPackage:s,updatedPackage:h}})}};class Z extends c.BaseCommand{constructor(){super(...arguments),this.patterns=[],this.strategy=J.HIGHEST,this.check=!1,this.json=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t}=await h.I.find(e,this.context.cwd),r=await g.C.find(e);let n=0;const i=await f.Pk.start({configuration:e,includeFooter:!1,stdout:this.context.stdout,json:this.json},async e=>{n=await async function({strategy:e,project:t,patterns:r,cache:n,report:i}){const{configuration:A}=t,o=new I.$,a=A.makeResolver(),c=A.makeFetcher(),g={cache:n,checksums:t.storedChecksums,fetcher:c,project:t,report:o,skipIntegrityCheck:!0},l={project:t,resolver:a,report:o,fetchOptions:g};return await i.startTimerPromise("Deduplication step",async()=>{const n=X[e],o=await n(t,r,{resolver:a,resolveOptions:l,fetcher:c,fetchOptions:g}),h=f.Pk.progressViaCounter(o.length);i.reportProgress(h);let C,d=0;switch(await Promise.all(o.map(e=>e.then(e=>{if(null===e)return;d++;const{descriptor:r,currentPackage:n,updatedPackage:o}=e;i.reportInfo(u.b.UNNAMED,`${p.structUtils.prettyDescriptor(A,r)} can be deduped from ${p.structUtils.prettyLocator(A,n)} to ${p.structUtils.prettyLocator(A,o)}`),i.reportJson({descriptor:p.structUtils.stringifyDescriptor(r),currentResolution:p.structUtils.stringifyLocator(n),updatedResolution:p.structUtils.stringifyLocator(o)}),t.storedResolutions.set(r.descriptorHash,o.locatorHash)}).finally(()=>h.tick()))),d){case 0:C="No packages";break;case 1:C="One package";break;default:C=d+" packages"}const I=A.format(e,s.a5.CODE);return i.reportInfo(u.b.UNNAMED,`${C} can be deduped using the ${I} strategy`),d})}({project:t,strategy:this.strategy,patterns:this.patterns,cache:r,report:e})});if(i.hasErrors())return i.exitCode();if(this.check)return n?1:0;return(await f.Pk.start({configuration:e,stdout:this.context.stdout,json:this.json},async e=>{await t.install({cache:r,report:e})})).exitCode()}}Z.schema=W.object().shape({strategy:W.string().test({name:"strategy",message:"${path} must be one of ${strategies}",params:{strategies:[...V].join(", ")},test:e=>V.has(e)})}),Z.usage=C.Command.Usage({description:"deduplicate dependencies with overlapping ranges",details:"\n Duplicates are defined as descriptors with overlapping ranges being resolved and locked to different locators. They are a natural consequence of Yarn's deterministic installs, but they can sometimes pile up and unnecessarily increase the size of your project.\n\n This command dedupes dependencies in the current project using different strategies (only one is implemented at the moment):\n\n - `highest`: Reuses (where possible) the locators with the highest versions. This means that dependencies can only be upgraded, never downgraded. It's also guaranteed that it never takes more than a single pass to dedupe the entire dependency tree.\n\n **Note:** Even though it never produces a wrong dependency tree, this command should be used with caution, as it modifies the dependency tree, which can sometimes cause problems when packages don't strictly follow semver recommendations. Because of this, it is recommended to also review the changes manually.\n\n If set, the `-c,--check` flag will only report the found duplicates, without persisting the modified dependency tree. If changes are found, the command will exit with a non-zero exit code, making it suitable for CI purposes.\n\n This command accepts glob patterns as arguments (if valid Idents and supported by [micromatch](https://github.com/micromatch/micromatch)). Make sure to escape the patterns, to prevent your own shell from trying to expand them.\n\n ### In-depth explanation:\n\n Yarn doesn't deduplicate dependencies by default, otherwise installs wouldn't be deterministic and the lockfile would be useless. What it actually does is that it tries to not duplicate dependencies in the first place.\n\n **Example:** If `foo@^2.3.4` (a dependency of a dependency) has already been resolved to `foo@2.3.4`, running `yarn add foo@*`will cause Yarn to reuse `foo@2.3.4`, even if the latest `foo` is actually `foo@2.10.14`, thus preventing unnecessary duplication.\n\n Duplication happens when Yarn can't unlock dependencies that have already been locked inside the lockfile.\n\n **Example:** If `foo@^2.3.4` (a dependency of a dependency) has already been resolved to `foo@2.3.4`, running `yarn add foo@2.10.14` will cause Yarn to install `foo@2.10.14` because the existing resolution doesn't satisfy the range `2.10.14`. This behavior can lead to (sometimes) unwanted duplication, since now the lockfile contains 2 separate resolutions for the 2 `foo` descriptors, even though they have overlapping ranges, which means that the lockfile can be simplified so that both descriptors resolve to `foo@2.10.14`.\n ",examples:[["Dedupe all packages","$0 dedupe"],["Dedupe all packages using a specific strategy","$0 dedupe --strategy highest"],["Dedupe a specific package","$0 dedupe lodash"],["Dedupe all packages with the `@babel/*` scope","$0 dedupe '@babel/*'"],["Check for duplicates (can be used as a CI step)","$0 dedupe --check"]]}),(0,a.gn)([C.Command.Rest()],Z.prototype,"patterns",void 0),(0,a.gn)([C.Command.String("-s,--strategy")],Z.prototype,"strategy",void 0),(0,a.gn)([C.Command.Boolean("-c,--check")],Z.prototype,"check",void 0),(0,a.gn)([C.Command.Boolean("--json")],Z.prototype,"json",void 0),(0,a.gn)([C.Command.Path("dedupe")],Z.prototype,"execute",null);class $ extends C.Command{async execute(){const{plugins:e}=await s.VK.find(this.context.cwd,this.context.plugins),t=[];for(const r of e){const{commands:e}=r[1];if(e){const n=C.Cli.from(e).definitions();t.push([r[0],n])}}const n=this.cli.definitions(),i=r(60306)["@yarnpkg/builder"].bundles.standard;for(const e of t){const t=e[1];for(const r of t)n.find(e=>{return t=e.path,n=r.path,t.split(" ").slice(1).join()===n.split(" ").slice(1).join();var t,n}).plugin={name:e[0],isDefault:i.includes(e[0])}}this.context.stdout.write(JSON.stringify({commands:n},null,2)+"\n")}}(0,a.gn)([C.Command.Path("--clipanion=definitions")],$.prototype,"execute",null);class ee extends C.Command{async execute(){this.context.stdout.write(this.cli.usage(null))}}(0,a.gn)([C.Command.Path("help"),C.Command.Path("--help"),C.Command.Path("-h")],ee.prototype,"execute",null);class te extends C.Command{constructor(){super(...arguments),this.args=[]}async execute(){if(this.leadingArgument.match(/[\\/]/)&&!p.structUtils.tryParseIdent(this.leadingArgument)){const e=m.y1.resolve(this.context.cwd,m.cS.toPortablePath(this.leadingArgument));return await this.cli.run(this.args,{cwd:e})}return await this.cli.run(["run",this.leadingArgument,...this.args])}}(0,a.gn)([C.Command.String()],te.prototype,"leadingArgument",void 0),(0,a.gn)([C.Command.Proxy()],te.prototype,"args",void 0);var re=r(59355);class ne extends C.Command{async execute(){this.context.stdout.write((re.o||"")+"\n")}}(0,a.gn)([C.Command.Path("-v"),C.Command.Path("--version")],ne.prototype,"execute",null);class ie extends c.BaseCommand{constructor(){super(...arguments),this.args=[]}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t}=await h.I.find(e,this.context.cwd);return await B.xfs.mktempPromise(async e=>{const{code:r}=await p.execUtils.pipevp(this.commandName,this.args,{cwd:this.context.cwd,stdin:this.context.stdin,stdout:this.context.stdout,stderr:this.context.stderr,env:await p.scriptUtils.makeScriptEnv({project:t,binFolder:e})});return r})}}ie.usage=C.Command.Usage({description:"execute a shell command",details:"\n This command simply executes a shell binary within the context of the root directory of the active workspace.\n\n It also makes sure to call it in a way that's compatible with the current project (for example, on PnP projects the environment will be setup in such a way that PnP will be correctly injected into the environment).\n ",examples:[["Execute a shell command","$0 exec echo Hello World"]]}),(0,a.gn)([C.Command.String()],ie.prototype,"commandName",void 0),(0,a.gn)([C.Command.Proxy()],ie.prototype,"args",void 0),(0,a.gn)([C.Command.Path("exec")],ie.prototype,"execute",null);var Ae=r(35691),oe=r(55125),se=r(5864);class ae extends c.BaseCommand{constructor(){super(...arguments),this.json=!1,this.checkCache=!1,this.silent=!1}async execute(){var e,t,r;const n=await s.VK.find(this.context.cwd,this.context.plugins);void 0!==this.inlineBuilds&&n.useWithSource("",{enableInlineBuilds:this.inlineBuilds},n.startingCwd,{overwrite:!0});const i=!!process.env.NOW_BUILDER,A=!!process.env.NETLIFY,o=!!process.env.FUNCTION_TARGET||!!process.env.GOOGLE_RUNTIME,a=async(e,{error:t})=>{const r=await f.Pk.start({configuration:n,stdout:this.context.stdout,includeFooter:!1},async r=>{t?r.reportError(u.b.DEPRECATED_CLI_SETTINGS,e):r.reportWarning(u.b.DEPRECATED_CLI_SETTINGS,e)});return r.hasErrors()?r.exitCode():null};if(void 0!==this.ignoreEngines){const e=await a("The --ignore-engines option is deprecated; engine checking isn't a core feature anymore",{error:!i});if(null!==e)return e}if(void 0!==this.registry){const e=await a("The --registry option is deprecated; prefer setting npmRegistryServer in your .yarnrc.yml file",{error:!1});if(null!==e)return e}if(void 0!==this.preferOffline){const e=await a("The --prefer-offline flag is deprecated; use the --cached flag with 'yarn add' instead",{error:!i});if(null!==e)return e}if(void 0!==this.production){const e=await a("The --production option is deprecated on 'install'; use 'yarn workspaces focus' instead",{error:!0});if(null!==e)return e}if(void 0!==this.nonInteractive){const e=await a("The --non-interactive option is deprecated",{error:!o});if(null!==e)return e}if(void 0!==this.frozenLockfile){const e=await a("The --frozen-lockfile option is deprecated; use --immutable and/or --immutable-cache instead",{error:!o&&!se.TRAVIS});if(null!==e)return e}if(void 0!==this.cacheFolder){const e=await a("The cache-folder option has been deprecated; use rc settings instead",{error:!A});if(null!==e)return e}const l=void 0===this.immutable&&void 0===this.frozenLockfile?null!==(e=n.get("enableImmutableInstalls"))&&void 0!==e&&e:null!==(r=null!==(t=this.immutable)&&void 0!==t?t:this.frozenLockfile)&&void 0!==r&&r;if(null!==n.projectCwd){const e=await f.Pk.start({configuration:n,json:this.json,stdout:this.context.stdout,includeFooter:!1},async e=>{await async function(e,t){if(!e.projectCwd)return!1;const r=m.y1.join(e.projectCwd,e.get("lockfileFilename"));if(!await B.xfs.existsPromise(r))return!1;const n=await B.xfs.readFilePromise(r,"utf8");if(!n.includes("<<<<<<<"))return!1;if(t)throw new Ae.lk(u.b.AUTOMERGE_IMMUTABLE,"Cannot autofix a lockfile when running an immutable install");const[i,A]=function(e){const t=[[],[]],r=e.split(/\r?\n/g);let n=!1;for(;r.length>0;){const e=r.shift();if(void 0===e)throw new Error("Assertion failed: Some lines should remain");if(e.startsWith("<<<<<<<")){for(;r.length>0;){const e=r.shift();if(void 0===e)throw new Error("Assertion failed: Some lines should remain");if("======="===e){n=!1;break}n||e.startsWith("|||||||")?n=!0:t[0].push(e)}for(;r.length>0;){const e=r.shift();if(void 0===e)throw new Error("Assertion failed: Some lines should remain");if(e.startsWith(">>>>>>>"))break;t[1].push(e)}}else t[0].push(e),t[1].push(e)}return[t[0].join("\n"),t[1].join("\n")]}(n);let o,s;try{o=(0,oe.parseSyml)(i),s=(0,oe.parseSyml)(A)}catch(e){throw new Ae.lk(u.b.AUTOMERGE_FAILED_TO_PARSE,"The individual variants of the lockfile failed to parse")}const a={...o,...s};for(const[e,t]of Object.entries(a))"string"==typeof t&&delete a[e];return await B.xfs.changeFilePromise(r,(0,oe.stringifySyml)(a),{automaticNewlines:!0}),!0}(n,l)&&(e.reportInfo(u.b.AUTOMERGE_SUCCESS,"Automatically fixed merge conflicts 👍"),e.reportSeparator())});if(e.hasErrors())return e.exitCode()}if(null!==n.projectCwd){const e=await f.Pk.start({configuration:n,json:this.json,stdout:this.context.stdout,includeFooter:!1},async e=>{var t;(null===(t=s.VK.telemetry)||void 0===t?void 0:t.isNew)&&(e.reportInfo(u.b.TELEMETRY_NOTICE,"Yarn will periodically gather anonymous telemetry: https://yarnpkg.com/advanced/telemetry"),e.reportInfo(u.b.TELEMETRY_NOTICE,`Run ${n.format("yarn config set --home enableTelemetry 0",s.a5.CODE)} to disable`),e.reportSeparator())});if(e.hasErrors())return e.exitCode()}const{project:p,workspace:C}=await h.I.find(n,this.context.cwd),d=await g.C.find(n,{immutable:this.immutableCache,check:this.checkCache});if(!C)throw new c.WorkspaceRequiredError(p.cwd,this.context.cwd);return(await f.Pk.start({configuration:n,json:this.json,stdout:this.context.stdout,includeLogs:!0},async e=>{await p.install({cache:d,report:e,immutable:l})})).exitCode()}}ae.usage=C.Command.Usage({description:"install the project dependencies",details:"\n This command setup your project if needed. The installation is splitted in four different steps that each have their own characteristics:\n\n - **Resolution:** First the package manager will resolve your dependencies. The exact way a dependency version is privileged over another isn't standardized outside of the regular semver guarantees. If a package doesn't resolve to what you would expect, check that all dependencies are correctly declared (also check our website for more information: ).\n\n - **Fetch:** Then we download all the dependencies if needed, and make sure that they're all stored within our cache (check the value of `cacheFolder` in `yarn config` to see where are stored the cache files).\n\n - **Link:** Then we send the dependency tree information to internal plugins tasked from writing them on the disk in some form (for example by generating the .pnp.js file you might know).\n\n - **Build:** Once the dependency tree has been written on the disk, the package manager will now be free to run the build scripts for all packages that might need it, in a topological order compatible with the way they depend on one another.\n\n Note that running this command is not part of the recommended workflow. Yarn supports zero-installs, which means that as long as you store your cache and your .pnp.js file inside your repository, everything will work without requiring any install right after cloning your repository or switching branches.\n\n If the `--immutable` option is set, Yarn will abort with an error exit code if the lockfile was to be modified (other paths can be added using the `immutablePaths` configuration setting). For backward compatibility we offer an alias under the name of `--frozen-lockfile`, but it will be removed in a later release.\n\n If the `--immutable-cache` option is set, Yarn will abort with an error exit code if the cache folder was to be modified (either because files would be added, or because they'd be removed).\n\n If the `--check-cache` option is set, Yarn will always refetch the packages and will ensure that their checksum matches what's 1/ described in the lockfile 2/ inside the existing cache files (if present). This is recommended as part of your CI workflow if you're both following the Zero-Installs model and accepting PRs from third-parties, as they'd otherwise have the ability to alter the checked-in packages before submitting them.\n\n If the `--inline-builds` option is set, Yarn will verbosely print the output of the build steps of your dependencies (instead of writing them into individual files). This is likely useful mostly for debug purposes only when using Docker-like environments.\n\n If the `--json` flag is set the output will follow a JSON-stream output also known as NDJSON (https://github.com/ndjson/ndjson-spec).\n ",examples:[["Install the project","$0 install"],["Validate a project when using Zero-Installs","$0 install --immutable --immutable-cache"],["Validate a project when using Zero-Installs (slightly safer if you accept external PRs)","$0 install --immutable --immutable-cache --check-cache"]]}),(0,a.gn)([C.Command.Boolean("--json")],ae.prototype,"json",void 0),(0,a.gn)([C.Command.Boolean("--immutable")],ae.prototype,"immutable",void 0),(0,a.gn)([C.Command.Boolean("--immutable-cache")],ae.prototype,"immutableCache",void 0),(0,a.gn)([C.Command.Boolean("--check-cache")],ae.prototype,"checkCache",void 0),(0,a.gn)([C.Command.Boolean("--production",{hidden:!0})],ae.prototype,"production",void 0),(0,a.gn)([C.Command.Boolean("--non-interactive",{hidden:!0})],ae.prototype,"nonInteractive",void 0),(0,a.gn)([C.Command.Boolean("--frozen-lockfile",{hidden:!0})],ae.prototype,"frozenLockfile",void 0),(0,a.gn)([C.Command.Boolean("--prefer-offline",{hidden:!0})],ae.prototype,"preferOffline",void 0),(0,a.gn)([C.Command.Boolean("--ignore-engines",{hidden:!0})],ae.prototype,"ignoreEngines",void 0),(0,a.gn)([C.Command.String("--registry",{hidden:!0})],ae.prototype,"registry",void 0),(0,a.gn)([C.Command.Boolean("--inline-builds")],ae.prototype,"inlineBuilds",void 0),(0,a.gn)([C.Command.String("--cache-folder",{hidden:!0})],ae.prototype,"cacheFolder",void 0),(0,a.gn)([C.Command.Boolean("--silent",{hidden:!0})],ae.prototype,"silent",void 0),(0,a.gn)([C.Command.Path(),C.Command.Path("install")],ae.prototype,"execute",null);class ce extends c.BaseCommand{constructor(){super(...arguments),this.all=!1,this.private=!1,this.relative=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await h.I.find(e,this.context.cwd),n=await g.C.find(e);if(!r)throw new c.WorkspaceRequiredError(t.cwd,this.context.cwd);const i=m.y1.resolve(this.context.cwd,m.cS.toPortablePath(this.destination)),A=await s.VK.find(i,this.context.plugins),{project:o,workspace:a}=await h.I.find(A,i);if(!a)throw new c.WorkspaceRequiredError(o.cwd,i);const l=t.topLevelWorkspace,u=[];if(this.all){for(const e of o.workspaces)!e.manifest.name||e.manifest.private&&!this.private||u.push(e);if(0===u.length)throw new C.UsageError("No workspace found to be linked in the target project")}else{if(!a.manifest.name)throw new C.UsageError("The target workspace doesn't have a name and thus cannot be linked");if(a.manifest.private&&!this.private)throw new C.UsageError("The target workspace is marked private - use the --private flag to link it anyway");u.push(a)}for(const e of u){const r=p.structUtils.stringifyIdent(e.locator),n=this.relative?m.y1.relative(t.cwd,e.cwd):e.cwd;l.manifest.resolutions.push({pattern:{descriptor:{fullName:r}},reference:"portal:"+n})}return(await f.Pk.start({configuration:e,stdout:this.context.stdout},async e=>{await t.install({cache:n,report:e})})).exitCode()}}ce.usage=C.Command.Usage({description:"connect the local project to another one",details:"\n This command will set a new `resolutions` field in the project-level manifest and point it to the workspace at the specified location (even if part of another project).\n\n If the `--all` option is set, all workspaces belonging to the target project will be linked to the current one.\n\n There is no `yarn unlink` command. To unlink the workspaces from the current project one must revert the changes made to the `resolutions` field.\n ",examples:[["Register a remote workspace for use in the current project","$0 link ~/ts-loader"],["Register all workspaces from a remote project for use in the current project","$0 link ~/jest --all"]]}),(0,a.gn)([C.Command.String()],ce.prototype,"destination",void 0),(0,a.gn)([C.Command.Boolean("-A,--all")],ce.prototype,"all",void 0),(0,a.gn)([C.Command.Boolean("-p,--private")],ce.prototype,"private",void 0),(0,a.gn)([C.Command.Boolean("-r,--relative")],ce.prototype,"relative",void 0),(0,a.gn)([C.Command.Path("link")],ce.prototype,"execute",null);class ge extends c.BaseCommand{constructor(){super(...arguments),this.args=[]}async execute(){return this.cli.run(["exec","node",...this.args])}}ge.usage=C.Command.Usage({description:"run node with the hook already setup",details:"\n This command simply runs Node. It also makes sure to call it in a way that's compatible with the current project (for example, on PnP projects the environment will be setup in such a way that PnP will be correctly injected into the environment).\n\n The Node process will use the exact same version of Node as the one used to run Yarn itself, which might be a good way to ensure that your commands always use a consistent Node version.\n ",examples:[["Run a Node script","$0 node ./my-script.js"]]}),(0,a.gn)([C.Command.Proxy()],ge.prototype,"args",void 0),(0,a.gn)([C.Command.Path("node")],ge.prototype,"execute",null);var le=r(12087),ue=r(85622),he=r.n(ue);class fe extends c.BaseCommand{constructor(){super(...arguments),this.onlyIfNeeded=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins);if(e.get("yarnPath")&&this.onlyIfNeeded)return 0;let t;if("latest"===this.version||"berry"===this.version)t="https://github.com/yarnpkg/berry/raw/master/packages/yarnpkg-cli/bin/yarn.js";else if("classic"===this.version)t="https://nightly.yarnpkg.com/latest.js";else if(p.semverUtils.v(this.version,">=2.0.0"))t=`https://github.com/yarnpkg/berry/raw/%40yarnpkg/cli/${this.version}/packages/yarnpkg-cli/bin/yarn.js`;else{if(!p.semverUtils.v(this.version,"^0.x || ^1.x"))throw y().validRange(this.version)?new C.UsageError("Support for ranges got removed - please use the exact version you want to install, or 'latest' to get the latest build available"):new C.UsageError(`Invalid version descriptor "${this.version}"`);t=`https://github.com/yarnpkg/yarn/releases/download/v${this.version}/yarn-${this.version}.js`}return(await f.Pk.start({configuration:e,stdout:this.context.stdout},async r=>{r.reportInfo(u.b.UNNAMED,"Downloading "+e.format(t,"green"));const n=await p.httpUtils.get(t,{configuration:e});await pe(e,null,n,{report:r})})).exitCode()}}async function pe(e,t,r,{report:n}){const i=e.projectCwd?e.projectCwd:e.startingCwd;null===t&&await B.xfs.mktempPromise(async e=>{const n=m.y1.join(e,"yarn.cjs");await B.xfs.writeFilePromise(n,r);const{stdout:A}=await p.execUtils.execvp(process.execPath,[m.cS.fromPortablePath(n),"--version"],{cwd:i,env:{...process.env,YARN_IGNORE_PATH:"1"}});if(t=A.trim(),!y().valid(t))throw new Error("Invalid semver version")});const A=m.y1.resolve(i,".yarn/releases"),o=m.y1.resolve(A,`yarn-${t}.cjs`),a=m.y1.relative(e.startingCwd,o),c=m.y1.relative(i,o),g=e.get("yarnPath"),l=null===g||g.startsWith(A+"/");n.reportInfo(u.b.UNNAMED,"Saving the new release in "+e.format(a,"magenta")),await B.xfs.removePromise(m.y1.dirname(o)),await B.xfs.mkdirPromise(m.y1.dirname(o),{recursive:!0}),await B.xfs.writeFilePromise(o,r),await B.xfs.chmodPromise(o,493),l&&await s.VK.updateConfiguration(i,{yarnPath:c})}fe.usage=C.Command.Usage({description:"lock the Yarn version used by the project",details:"\n This command will download a specific release of Yarn directly from the Yarn GitHub repository, will store it inside your project, and will change the `yarnPath` settings from your project `.yarnrc.yml` file to point to the new file.\n\n A very good use case for this command is to enforce the version of Yarn used by the any single member of your team inside a same project - by doing this you ensure that you have control on Yarn upgrades and downgrades (including on your deployment servers), and get rid of most of the headaches related to someone using a slightly different version and getting a different behavior than you.\n ",examples:[["Download the latest release from the Yarn repository","$0 set version latest"],["Download the latest classic release from the Yarn repository","$0 set version classic"],["Download a specific Yarn 2 build","$0 set version 2.0.0-rc.30"],["Switch back to a specific Yarn 1 release","$0 set version 1.22.1"]]}),(0,a.gn)([C.Command.Boolean("--only-if-needed")],fe.prototype,"onlyIfNeeded",void 0),(0,a.gn)([C.Command.String()],fe.prototype,"version",void 0),(0,a.gn)([C.Command.Path("policies","set-version"),C.Command.Path("set","version")],fe.prototype,"execute",null);const Ce=/^[0-9]+$/;function de(e){return Ce.test(e)?`pull/${e}/head`:e}class Ie extends c.BaseCommand{constructor(){super(...arguments),this.repository="https://github.com/yarnpkg/berry.git",this.branch="master",this.plugins=[],this.noMinify=!1,this.force=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),t=void 0!==this.installPath?m.y1.resolve(this.context.cwd,m.cS.toPortablePath(this.installPath)):m.y1.resolve(m.cS.toPortablePath((0,le.tmpdir)()),"yarnpkg-sources",p.hashUtils.makeHash(this.repository).slice(0,6));return(await f.Pk.start({configuration:e,stdout:this.context.stdout},async r=>{await me(this,{configuration:e,report:r,target:t}),r.reportSeparator(),r.reportInfo(u.b.UNNAMED,"Building a fresh bundle"),r.reportSeparator(),await Ee((({plugins:e,noMinify:t},r)=>[["yarn","build:cli",...(new Array).concat(...e.map(e=>["--plugin",he().resolve(r,e)])),...t?["--no-minify"]:[],"|"]])(this,t),{configuration:e,context:this.context,target:t}),r.reportSeparator();const n=m.y1.resolve(t,"packages/yarnpkg-cli/bundles/yarn.js"),i=await B.xfs.readFilePromise(n);await pe(e,"sources",i,{report:r})})).exitCode()}}async function Ee(e,{configuration:t,context:r,target:n}){for(const[i,...A]of e){const e="|"===A[A.length-1];if(e&&A.pop(),e)await p.execUtils.pipevp(i,A,{cwd:n,stdin:r.stdin,stdout:r.stdout,stderr:r.stderr,strict:!0});else{r.stdout.write(t.format(" $ "+[i,...A].join(" "),"grey")+"\n");try{await p.execUtils.execvp(i,A,{cwd:n,strict:!0})}catch(e){throw r.stdout.write(e.stdout||e.stack),e}}}}async function me(e,{configuration:t,report:r,target:n}){let i=!1;if(!e.force&&B.xfs.existsSync(m.y1.join(n,".git"))){r.reportInfo(u.b.UNNAMED,"Fetching the latest commits"),r.reportSeparator();try{await Ee((({branch:e})=>[["git","fetch","origin",de(e),"--force"],["git","reset","--hard","FETCH_HEAD"],["git","clean","-dfx"]])(e),{configuration:t,context:e.context,target:n}),i=!0}catch(e){r.reportSeparator(),r.reportWarning(u.b.UNNAMED,"Repository update failed; we'll try to regenerate it")}}i||(r.reportInfo(u.b.UNNAMED,"Cloning the remote repository"),r.reportSeparator(),await B.xfs.removePromise(n),await B.xfs.mkdirPromise(n,{recursive:!0}),await Ee((({repository:e,branch:t},r)=>[["git","init",m.cS.fromPortablePath(r)],["git","remote","add","origin",e],["git","fetch","origin",de(t)],["git","reset","--hard","FETCH_HEAD"]])(e,n),{configuration:t,context:e.context,target:n}))}Ie.usage=C.Command.Usage({description:"build Yarn from master",details:"\n This command will clone the Yarn repository into a temporary folder, then build it. The resulting bundle will then be copied into the local project.\n ",examples:[["Build Yarn from master","$0 set version from sources"]]}),(0,a.gn)([C.Command.String("--path")],Ie.prototype,"installPath",void 0),(0,a.gn)([C.Command.String("--repository")],Ie.prototype,"repository",void 0),(0,a.gn)([C.Command.String("--branch")],Ie.prototype,"branch",void 0),(0,a.gn)([C.Command.Array("--plugin")],Ie.prototype,"plugins",void 0),(0,a.gn)([C.Command.Boolean("--no-minify")],Ie.prototype,"noMinify",void 0),(0,a.gn)([C.Command.Boolean("-f,--force")],Ie.prototype,"force",void 0),(0,a.gn)([C.Command.Path("set","version","from","sources")],Ie.prototype,"execute",null);var Be=r(78835),we=r(92184);async function ye(e){const t=await p.httpUtils.get("https://raw.githubusercontent.com/yarnpkg/berry/master/plugins.yml",{configuration:e});return(0,oe.parseSyml)(t.toString())}class Qe extends c.BaseCommand{constructor(){super(...arguments),this.json=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins);return(await f.Pk.start({configuration:e,json:this.json,stdout:this.context.stdout},async t=>{const r=await ye(e);for(const[e,{experimental:n,...i}]of Object.entries(r)){let r=e;n&&(r+=" [experimental]"),t.reportJson({name:e,experimental:n,...i}),t.reportInfo(null,r)}})).exitCode()}}Qe.usage=C.Command.Usage({category:"Plugin-related commands",description:"list the available official plugins",details:"\n This command prints the plugins available directly from the Yarn repository. Only those plugins can be referenced by name in `yarn plugin import`.\n ",examples:[["List the official plugins","$0 plugin list"]]}),(0,a.gn)([C.Command.Boolean("--json")],Qe.prototype,"json",void 0),(0,a.gn)([C.Command.Path("plugin","list")],Qe.prototype,"execute",null);class ve extends c.BaseCommand{async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins);return(await f.Pk.start({configuration:e,stdout:this.context.stdout},async t=>{const{project:r}=await h.I.find(e,this.context.cwd);let n,i;if(this.name.match(/^\.{0,2}[\\/]/)||m.cS.isAbsolute(this.name)){const A=m.y1.resolve(this.context.cwd,m.cS.toPortablePath(this.name));t.reportInfo(u.b.UNNAMED,"Reading "+e.format(A,"green")),n=m.y1.relative(r.cwd,A),i=await B.xfs.readFilePromise(A)}else{let r;if(this.name.match(/^https?:/)){try{new Be.URL(this.name)}catch(e){throw new Ae.lk(u.b.INVALID_PLUGIN_REFERENCE,`Plugin specifier "${this.name}" is neither a plugin name nor a valid url`)}n=this.name,r=this.name}else{const t=p.structUtils.parseIdent(this.name.replace(/^((@yarnpkg\/)?plugin-)?/,"@yarnpkg/plugin-")),i=p.structUtils.stringifyIdent(t),A=await ye(e);if(!Object.prototype.hasOwnProperty.call(A,i))throw new Ae.lk(u.b.PLUGIN_NAME_NOT_FOUND,`Couldn't find a plugin named "${i}" on the remote registry. Note that only the plugins referenced on our website (https://github.com/yarnpkg/berry/blob/master/plugins.yml) can be referenced by their name; any other plugin will have to be referenced through its public url (for example https://github.com/yarnpkg/berry/raw/master/packages/plugin-typescript/bin/%40yarnpkg/plugin-typescript.js).`);n=i,r=A[i].url}t.reportInfo(u.b.UNNAMED,"Downloading "+e.format(r,"green")),i=await p.httpUtils.get(r,{configuration:e})}await be(n,i,{project:r,report:t})})).exitCode()}}async function be(e,t,{project:r,report:n}){const{configuration:i}=r,A={},o={exports:A};(0,we.runInNewContext)(t.toString(),{module:o,exports:A});const a=o.exports.name,c=`.yarn/plugins/${a}.cjs`,g=m.y1.resolve(r.cwd,c);n.reportInfo(u.b.UNNAMED,"Saving the new plugin in "+i.format(c,"magenta")),await B.xfs.mkdirPromise(m.y1.dirname(g),{recursive:!0}),await B.xfs.writeFilePromise(g,t);const l={path:c,spec:e};await s.VK.updateConfiguration(r.cwd,e=>{const t=[];let n=!1;for(const i of e.plugins||[]){const e="string"!=typeof i?i.path:i,A=m.y1.resolve(r.cwd,m.cS.toPortablePath(e)),{name:o}=p.miscUtils.dynamicRequire(m.cS.fromPortablePath(A));o!==a?t.push(i):(t.push(l),n=!0)}return n||t.push(l),{...e,plugins:t}})}ve.usage=C.Command.Usage({category:"Plugin-related commands",description:"download a plugin",details:"\n This command downloads the specified plugin from its remote location and updates the configuration to reference it in further CLI invocations.\n\n Three types of plugin references are accepted:\n\n - If the plugin is stored within the Yarn repository, it can be referenced by name.\n - Third-party plugins can be referenced directly through their public urls.\n - Local plugins can be referenced by their path on the disk.\n\n Plugins cannot be downloaded from the npm registry, and aren't allowed to have dependencies (they need to be bundled into a single file, possibly thanks to the `@yarnpkg/builder` package).\n ",examples:[['Download and activate the "@yarnpkg/plugin-exec" plugin',"$0 plugin import @yarnpkg/plugin-exec"],['Download and activate the "@yarnpkg/plugin-exec" plugin (shorthand)',"$0 plugin import exec"],["Download and activate a community plugin","$0 plugin import https://example.org/path/to/plugin.js"],["Activate a local plugin","$0 plugin import ./path/to/plugin.js"]]}),(0,a.gn)([C.Command.String()],ve.prototype,"name",void 0),(0,a.gn)([C.Command.Path("plugin","import")],ve.prototype,"execute",null);class De extends c.BaseCommand{constructor(){super(...arguments),this.repository="https://github.com/yarnpkg/berry.git",this.branch="master",this.noMinify=!1,this.force=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),t=void 0!==this.installPath?m.y1.resolve(this.context.cwd,m.cS.toPortablePath(this.installPath)):m.y1.resolve(m.cS.toPortablePath((0,le.tmpdir)()),"yarnpkg-sources",p.hashUtils.makeHash(this.repository).slice(0,6));return(await f.Pk.start({configuration:e,stdout:this.context.stdout},async r=>{const{project:n}=await h.I.find(e,this.context.cwd),i=p.structUtils.parseIdent(this.name.replace(/^((@yarnpkg\/)?plugin-)?/,"@yarnpkg/plugin-")),A=p.structUtils.stringifyIdent(i),o=await ye(e);if(!Object.prototype.hasOwnProperty.call(o,A))throw new Ae.lk(u.b.PLUGIN_NAME_NOT_FOUND,`Couldn't find a plugin named "${A}" on the remote registry. Note that only the plugins referenced on our website (https://github.com/yarnpkg/berry/blob/master/plugins.yml) can be built and imported from sources.`);const s=A,a=s.replace(/@yarnpkg\//,"");await me(this,{configuration:e,report:r,target:t}),r.reportSeparator(),r.reportInfo(u.b.UNNAMED,"Building a fresh "+a),r.reportSeparator(),await Ee((({pluginName:e,noMinify:t},r)=>[["yarn","build:"+e,...t?["--no-minify"]:[],"|"]])({pluginName:a,noMinify:this.noMinify}),{configuration:e,context:this.context,target:t}),r.reportSeparator();const c=m.y1.resolve(t,`packages/${a}/bundles/${s}.js`),g=await B.xfs.readFilePromise(c);await be(s,g,{project:n,report:r})})).exitCode()}}De.usage=C.Command.Usage({category:"Plugin-related commands",description:"build a plugin from sources",details:"\n This command clones the Yarn repository into a temporary folder, builds the specified contrib plugin and updates the configuration to reference it in further CLI invocations.\n\n The plugins can be referenced by their short name if sourced from the official Yarn repository.\n ",examples:[['Build and activate the "@yarnpkg/plugin-exec" plugin',"$0 plugin import from sources @yarnpkg/plugin-exec"],['Build and activate the "@yarnpkg/plugin-exec" plugin (shorthand)',"$0 plugin import from sources exec"]]}),(0,a.gn)([C.Command.String()],De.prototype,"name",void 0),(0,a.gn)([C.Command.String("--path")],De.prototype,"installPath",void 0),(0,a.gn)([C.Command.String("--repository")],De.prototype,"repository",void 0),(0,a.gn)([C.Command.String("--branch")],De.prototype,"branch",void 0),(0,a.gn)([C.Command.Boolean("--no-minify")],De.prototype,"noMinify",void 0),(0,a.gn)([C.Command.Boolean("-f,--force")],De.prototype,"force",void 0),(0,a.gn)([C.Command.Path("plugin","import","from","sources")],De.prototype,"execute",null);class Se extends c.BaseCommand{async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t}=await h.I.find(e,this.context.cwd);return(await f.Pk.start({configuration:e,stdout:this.context.stdout},async r=>{const n=this.name,i=p.structUtils.parseIdent(n);if(!e.plugins.has(n))throw new C.UsageError(p.structUtils.prettyIdent(e,i)+" isn't referenced by the current configuration");const A=`.yarn/plugins/${n}.cjs`,o=m.y1.resolve(t.cwd,A);B.xfs.existsSync(o)&&(r.reportInfo(u.b.UNNAMED,`Removing ${e.format(A,s.a5.PATH)}...`),await B.xfs.removePromise(o)),r.reportInfo(u.b.UNNAMED,"Updating the configuration..."),await s.VK.updateConfiguration(t.cwd,e=>{if(!Array.isArray(e.plugins))return e;const t=e.plugins.filter(e=>e.path!==A);return e.plugins.length===t.length?e:{...e,plugins:t}})})).exitCode()}}Se.usage=C.Command.Usage({category:"Plugin-related commands",description:"remove a plugin",details:"\n This command deletes the specified plugin from the .yarn/plugins folder and removes it from the configuration.\n\n **Note:** The plugins have to be referenced by their name property, which can be obtained using the `yarn plugin runtime` command. Shorthands are not allowed.\n ",examples:[["Remove a plugin imported from the Yarn repository","$0 plugin remove @yarnpkg/plugin-typescript"],["Remove a plugin imported from a local file","$0 plugin remove my-local-plugin"]]}),(0,a.gn)([C.Command.String()],Se.prototype,"name",void 0),(0,a.gn)([C.Command.Path("plugin","remove")],Se.prototype,"execute",null);class ke extends c.BaseCommand{constructor(){super(...arguments),this.json=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins);return(await f.Pk.start({configuration:e,json:this.json,stdout:this.context.stdout},async t=>{for(const r of e.plugins.keys()){const e=this.context.plugins.plugins.has(r);let n=r;e&&(n+=" [builtin]"),t.reportJson({name:r,builtin:e}),t.reportInfo(null,""+n)}})).exitCode()}}ke.usage=C.Command.Usage({category:"Plugin-related commands",description:"list the active plugins",details:"\n This command prints the currently active plugins. Will be displayed both builtin plugins and external plugins.\n ",examples:[["List the currently active plugins","$0 plugin runtime"]]}),(0,a.gn)([C.Command.Boolean("--json")],ke.prototype,"json",void 0),(0,a.gn)([C.Command.Path("plugin","runtime")],ke.prototype,"execute",null);class Me extends c.BaseCommand{constructor(){super(...arguments),this.idents=[]}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await h.I.find(e,this.context.cwd),n=await g.C.find(e);if(!r)throw new c.WorkspaceRequiredError(t.cwd,this.context.cwd);const i=new Set;for(const e of this.idents)i.add(p.structUtils.parseIdent(e).identHash);await t.resolveEverything({cache:n,report:new I.$});const A=e.get("bstatePath"),o=B.xfs.existsSync(A)?(0,oe.parseSyml)(await B.xfs.readFilePromise(A,"utf8")):{},a=new Map;for(const e of t.storedPackages.values()){if(!Object.prototype.hasOwnProperty.call(o,e.locatorHash))continue;if(0===i.size||i.has(e.identHash))continue;const t=o[e.locatorHash];a.set(e.locatorHash,t)}if(a.size>0){const r=e.get("bstatePath"),n=h.I.generateBuildStateFile(a,t.storedPackages);await B.xfs.mkdirPromise(m.y1.dirname(r),{recursive:!0}),await B.xfs.changeFilePromise(r,n,{automaticNewlines:!0})}else await B.xfs.removePromise(A);return(await f.Pk.start({configuration:e,stdout:this.context.stdout,includeLogs:!this.context.quiet},async e=>{await t.install({cache:n,report:e})})).exitCode()}}Me.usage=C.Command.Usage({description:"rebuild the project's native packages",details:"\n This command will automatically cause Yarn to forget about previous compilations of the given packages and to run them again.\n\n Note that while Yarn forgets the compilation, the previous artifacts aren't erased from the filesystem and may affect the next builds (in good or bad). To avoid this, you may remove the .yarn/unplugged folder, or any other relevant location where packages might have been stored (Yarn may offer a way to do that automatically in the future).\n\n By default all packages will be rebuilt, but you can filter the list by specifying the names of the packages you want to clear from memory.\n ",examples:[["Rebuild all packages","$0 rebuild"],["Rebuild fsevents only","$0 rebuild fsevents"]]}),(0,a.gn)([C.Command.Rest()],Me.prototype,"idents",void 0),(0,a.gn)([C.Command.Path("rebuild")],Me.prototype,"execute",null);class Fe extends c.BaseCommand{constructor(){super(...arguments),this.all=!1,this.patterns=[]}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await h.I.find(e,this.context.cwd),n=await g.C.find(e);if(!r)throw new c.WorkspaceRequiredError(t.cwd,this.context.cwd);const A=this.all?t.workspaces:[r],o=[i.REGULAR,i.DEVELOPMENT,i.PEER],a=[];let l=!1;const u=[];for(const e of this.patterns){let t=!1;const r=p.structUtils.parseIdent(e);for(const n of A){const i=[...n.manifest.peerDependenciesMeta.keys()];for(const r of z()(i,e))n.manifest.peerDependenciesMeta.delete(r),l=!0,t=!0;for(const e of o){const i=n.manifest.getForScope(e),A=[...i.values()].map(e=>p.structUtils.stringifyIdent(e));for(const o of z()(A,p.structUtils.stringifyIdent(r))){const{identHash:r}=p.structUtils.parseIdent(o),A=i.get(r);if(void 0===A)throw new Error("Assertion failed: Expected the descriptor to be registered");n.manifest[e].delete(r),u.push([n,e,A]),l=!0,t=!0}}}t||a.push(e)}const d=a.length>1?"Patterns":"Pattern",I=a.length>1?"don't":"doesn't",E=this.all?"any":"this";if(a.length>0)throw new C.UsageError(`${d} ${a.join(", ")} ${I} match packages referenced by ${E} workspace`);if(l){await e.triggerMultipleHooks(e=>e.afterWorkspaceDependencyRemoval,u);return(await f.Pk.start({configuration:e,stdout:this.context.stdout},async e=>{await t.install({cache:n,report:e})})).exitCode()}return 0}}Fe.usage=C.Command.Usage({description:"remove dependencies from the project",details:"\n This command will remove the packages matching the specified patterns from the current workspace.\n\n If the `-A,--all` option is set, the operation will be applied to all workspaces from the current project.\n\n This command accepts glob patterns as arguments (if valid Idents and supported by [micromatch](https://github.com/micromatch/micromatch)). Make sure to escape the patterns, to prevent your own shell from trying to expand them.\n ",examples:[["Remove a dependency from the current project","$0 remove lodash"],["Remove a dependency from all workspaces at once","$0 remove lodash --all"],["Remove all dependencies starting with `eslint-`","$0 remove 'eslint-*'"],["Remove all dependencies with the `@babel` scope","$0 remove '@babel/*'"],["Remove all dependencies matching `react-dom` or `react-helmet`","$0 remove 'react-{dom,helmet}'"]]}),(0,a.gn)([C.Command.Boolean("-A,--all")],Fe.prototype,"all",void 0),(0,a.gn)([C.Command.Rest()],Fe.prototype,"patterns",void 0),(0,a.gn)([C.Command.Path("remove")],Fe.prototype,"execute",null);class Ne extends c.BaseCommand{async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await h.I.find(e,this.context.cwd);if(!r)throw new c.WorkspaceRequiredError(t.cwd,this.context.cwd);return(await f.Pk.start({configuration:e,stdout:this.context.stdout},async t=>{const n=r.manifest.scripts,i=p.miscUtils.sortMap(n.keys(),e=>e),A={breakLength:1/0,colors:e.get("enableColors"),maxArrayLength:2},o=i.reduce((e,t)=>Math.max(e,t.length),0);for(const[e,r]of n.entries())t.reportInfo(null,`${e.padEnd(o," ")} ${(0,P.inspect)(r,A)}`)})).exitCode()}}(0,a.gn)([C.Command.Path("run")],Ne.prototype,"execute",null);class Re extends c.BaseCommand{constructor(){super(...arguments),this.inspect=!1,this.inspectBrk=!1,this.topLevel=!1,this.binariesOnly=!1,this.args=[]}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r,locator:n}=await h.I.find(e,this.context.cwd);await t.restoreInstallState();const i=this.topLevel?t.topLevelWorkspace.anchoredLocator:n;if(!this.binariesOnly&&await p.scriptUtils.hasPackageScript(i,this.scriptName,{project:t}))return await p.scriptUtils.executePackageScript(i,this.scriptName,this.args,{project:t,stdin:this.context.stdin,stdout:this.context.stdout,stderr:this.context.stderr});if((await p.scriptUtils.getPackageAccessibleBinaries(i,{project:t})).get(this.scriptName)){const e=[];return this.inspect&&("string"==typeof this.inspect?e.push("--inspect="+this.inspect):e.push("--inspect")),this.inspectBrk&&("string"==typeof this.inspectBrk?e.push("--inspect-brk="+this.inspectBrk):e.push("--inspect-brk")),await p.scriptUtils.executePackageAccessibleBinary(i,this.scriptName,this.args,{cwd:this.context.cwd,project:t,stdin:this.context.stdin,stdout:this.context.stdout,stderr:this.context.stderr,nodeArgs:e})}if(!this.topLevel&&!this.binariesOnly&&r&&this.scriptName.includes(":")){const e=(await Promise.all(t.workspaces.map(async e=>e.manifest.scripts.has(this.scriptName)?e:null))).filter(e=>null!==e);if(1===e.length)return await p.scriptUtils.executeWorkspaceScript(e[0],this.scriptName,this.args,{stdin:this.context.stdin,stdout:this.context.stdout,stderr:this.context.stderr})}if(this.topLevel)throw"node-gyp"===this.scriptName?new C.UsageError(`Couldn't find a script name "${this.scriptName}" in the top-level (used by ${p.structUtils.prettyLocator(e,n)}). This typically happens because some package depends on "node-gyp" to build itself, but didn't list it in their dependencies. To fix that, please run "yarn add node-gyp" into your top-level workspace. You also can open an issue on the repository of the specified package to suggest them to use an optional peer dependency.`):new C.UsageError(`Couldn't find a script name "${this.scriptName}" in the top-level (used by ${p.structUtils.prettyLocator(e,n)}).`);{if("global"===this.scriptName)throw new C.UsageError("The 'yarn global' commands have been removed in 2.x - consider using 'yarn dlx' or a third-party plugin instead");const e=[this.scriptName].concat(this.args);for(const[t,r]of c.pluginCommands)for(const n of r)if(e.length>=n.length&&JSON.stringify(e.slice(0,n.length))===JSON.stringify(n))throw new C.UsageError(`Couldn't find a script named "${this.scriptName}", but a matching command can be found in the ${t} plugin. You can install it with "yarn plugin import ${t}".`);throw new C.UsageError(`Couldn't find a script named "${this.scriptName}".`)}}}Re.usage=C.Command.Usage({description:"run a script defined in the package.json",details:"\n This command will run a tool. The exact tool that will be executed will depend on the current state of your workspace:\n\n - If the `scripts` field from your local package.json contains a matching script name, its definition will get executed.\n\n - Otherwise, if one of the local workspace's dependencies exposes a binary with a matching name, this binary will get executed (the `--inspect` and `--inspect-brk` options will then be forwarded to the underlying Node process).\n\n - Otherwise, if the specified name contains a colon character and if one of the workspaces in the project contains exactly one script with a matching name, then this script will get executed.\n\n Whatever happens, the cwd of the spawned process will be the workspace that declares the script (which makes it possible to call commands cross-workspaces using the third syntax).\n ",examples:[["Run the tests from the local workspace","$0 run test"],['Same thing, but without the "run" keyword',"$0 test"],["Inspect Webpack while running","$0 run --inspect-brk webpack"]]}),(0,a.gn)([C.Command.String("--inspect",{tolerateBoolean:!0})],Re.prototype,"inspect",void 0),(0,a.gn)([C.Command.String("--inspect-brk",{tolerateBoolean:!0})],Re.prototype,"inspectBrk",void 0),(0,a.gn)([C.Command.Boolean("-T,--top-level",{hidden:!0})],Re.prototype,"topLevel",void 0),(0,a.gn)([C.Command.Boolean("-B,--binaries-only",{hidden:!0})],Re.prototype,"binariesOnly",void 0),(0,a.gn)([C.Command.Boolean("--silent",{hidden:!0})],Re.prototype,"silent",void 0),(0,a.gn)([C.Command.String()],Re.prototype,"scriptName",void 0),(0,a.gn)([C.Command.Proxy()],Re.prototype,"args",void 0),(0,a.gn)([C.Command.Path("run")],Re.prototype,"execute",null);class Ke extends c.BaseCommand{constructor(){super(...arguments),this.save=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await h.I.find(e,this.context.cwd),n=await g.C.find(e);if(!r)throw new c.WorkspaceRequiredError(t.cwd,this.context.cwd);const i=p.structUtils.parseDescriptor(this.descriptor,!0),A=p.structUtils.makeDescriptor(i,this.resolution);t.storedDescriptors.set(i.descriptorHash,i),t.storedDescriptors.set(A.descriptorHash,A),t.resolutionAliases.set(i.descriptorHash,A.descriptorHash);return(await f.Pk.start({configuration:e,stdout:this.context.stdout},async e=>{await t.install({cache:n,report:e})})).exitCode()}}Ke.usage=C.Command.Usage({description:"enforce a package resolution",details:'\n This command updates the resolution table so that `descriptor` is resolved by `resolution`.\n\n Note that by default this command only affect the current resolution table - meaning that this "manual override" will disappear if you remove the lockfile, or if the package disappear from the table. If you wish to make the enforced resolution persist whatever happens, add the `-s,--save` flag which will also edit the `resolutions` field from your top-level manifest.\n\n Note that no attempt is made at validating that `resolution` is a valid resolution entry for `descriptor`.\n ',examples:[["Force all instances of lodash@^1.2.3 to resolve to 1.5.0","$0 set resolution lodash@^1.2.3 1.5.0"]]}),(0,a.gn)([C.Command.String()],Ke.prototype,"descriptor",void 0),(0,a.gn)([C.Command.String()],Ke.prototype,"resolution",void 0),(0,a.gn)([C.Command.Boolean("-s,--save")],Ke.prototype,"save",void 0),(0,a.gn)([C.Command.Path("set","resolution")],Ke.prototype,"execute",null);class xe extends c.BaseCommand{constructor(){super(...arguments),this.patterns=[],this.interactive=null,this.verbose=!1,this.exact=!1,this.tilde=!1,this.caret=!1}async execute(){var e;const t=await s.VK.find(this.context.cwd,this.context.plugins),{project:r,workspace:n}=await h.I.find(t,this.context.cwd),A=await g.C.find(t);if(!n)throw new c.WorkspaceRequiredError(r.cwd,this.context.cwd);const a=null!==(e=this.interactive)&&void 0!==e?e:t.get("preferInteractive"),I=Q(this,r),E=a?[o.KEEP,o.REUSE,o.PROJECT,o.LATEST]:[o.PROJECT,o.LATEST],m=[],B=[];for(const e of this.patterns){let t=!1;const n=p.structUtils.parseDescriptor(e);for(const e of r.workspaces)for(const o of[i.REGULAR,i.DEVELOPMENT]){const i=[...e.manifest.getForScope(o).values()].map(e=>p.structUtils.stringifyIdent(e));for(const s of z()(i,p.structUtils.stringifyIdent(n))){const i=p.structUtils.parseIdent(s),a=e.manifest[o].get(i.identHash);if(void 0===a)throw new Error("Assertion failed: Expected the descriptor to be registered");const c=p.structUtils.makeDescriptor(i,n.range);m.push(Promise.resolve().then(async()=>[e,o,a,await M(c,{project:r,workspace:e,cache:A,target:o,modifier:I,strategies:E})])),t=!0}}t||B.push(e)}if(B.length>1)throw new C.UsageError(`Patterns ${B.join(", ")} don't match any packages referenced by any workspace`);if(B.length>0)throw new C.UsageError(`Pattern ${B[0]} doesn't match any packages referenced by any workspace`);const w=await Promise.all(m),y=await l.h.start({configuration:t,stdout:this.context.stdout,suggestInstall:!1},async e=>{for(const[,,n,{suggestions:i,rejections:A}]of w){const o=i.filter(e=>null!==e.descriptor);if(0===o.length){const[i]=A;if(void 0===i)throw new Error("Assertion failed: Expected an error to have been set");const o=this.cli.error(i);r.configuration.get("enableNetwork")?e.reportError(u.b.CANT_SUGGEST_RESOLUTIONS,`${p.structUtils.prettyDescriptor(t,n)} can't be resolved to a satisfying range\n\n${o}`):e.reportError(u.b.CANT_SUGGEST_RESOLUTIONS,`${p.structUtils.prettyDescriptor(t,n)} can't be resolved to a satisfying range (note: network resolution has been disabled)\n\n${o}`)}else o.length>1&&!a&&e.reportError(u.b.CANT_SUGGEST_RESOLUTIONS,p.structUtils.prettyDescriptor(t,n)+" has multiple possible upgrade strategies; use -i to disambiguate manually")}});if(y.hasErrors())return y.exitCode();let v=!1;const b=[];for(const[e,n,,{suggestions:i}]of w){let A;const o=i.filter(e=>null!==e.descriptor),s=o[0].descriptor,a=o.every(e=>p.structUtils.areDescriptorsEqual(e.descriptor,s));1===o.length||a?A=s:(v=!0,({answer:A}=await(0,d.prompt)({type:"select",name:"answer",message:`Which range to you want to use in ${p.structUtils.prettyWorkspace(t,e)} ❯ ${n}?`,choices:i.map(({descriptor:e,name:t,reason:r})=>e?{name:t,hint:r,descriptor:e}:{name:t,hint:r,disabled:!0}),onCancel:()=>process.exit(130),result(e){return this.find(e,"descriptor")},stdin:this.context.stdin,stdout:this.context.stdout})));const c=e.manifest[n].get(A.identHash);if(void 0===c)throw new Error("Assertion failed: This descriptor should have a matching entry");if(c.descriptorHash!==A.descriptorHash)e.manifest[n].set(A.identHash,A),b.push([e,n,c,A]);else{const n=t.makeResolver(),i={project:r,resolver:n},A=n.bindDescriptor(c,e.anchoredLocator,i);r.forgetResolution(A)}}await t.triggerMultipleHooks(e=>e.afterWorkspaceDependencyReplacement,b),v&&this.context.stdout.write("\n");return(await f.Pk.start({configuration:t,stdout:this.context.stdout},async e=>{await r.install({cache:A,report:e})})).exitCode()}}xe.usage=C.Command.Usage({description:"upgrade dependencies across the project",details:"\n This command upgrades the packages matching the list of specified patterns to their latest available version across the whole project (regardless of whether they're part of `dependencies` or `devDependencies` - `peerDependencies` won't be affected). This is a project-wide command: all workspaces will be upgraded in the process.\n\n If `-i,--interactive` is set (or if the `preferInteractive` settings is toggled on) the command will offer various choices, depending on the detected upgrade paths. Some upgrades require this flag in order to resolve ambiguities.\n\n The, `-C,--caret`, `-E,--exact` and `-T,--tilde` options have the same meaning as in the `add` command (they change the modifier used when the range is missing or a tag, and are ignored when the range is explicitly set).\n\n This command accepts glob patterns as arguments (if valid Descriptors and supported by [micromatch](https://github.com/micromatch/micromatch)). Make sure to escape the patterns, to prevent your own shell from trying to expand them.\n\n **Note:** The ranges have to be static, only the package scopes and names can contain glob patterns.\n ",examples:[["Upgrade all instances of lodash to the latest release","$0 up lodash"],["Upgrade all instances of lodash to the latest release, but ask confirmation for each","$0 up lodash -i"],["Upgrade all instances of lodash to 1.2.3","$0 up lodash@1.2.3"],["Upgrade all instances of packages with the `@babel` scope to the latest release","$0 up '@babel/*'"],["Upgrade all instances of packages containing the word `jest` to the latest release","$0 up '*jest*'"],["Upgrade all instances of packages with the `@babel` scope to 7.0.0","$0 up '@babel/*@7.0.0'"]]}),(0,a.gn)([C.Command.Rest()],xe.prototype,"patterns",void 0),(0,a.gn)([C.Command.Boolean("-i,--interactive")],xe.prototype,"interactive",void 0),(0,a.gn)([C.Command.Boolean("-v,--verbose")],xe.prototype,"verbose",void 0),(0,a.gn)([C.Command.Boolean("-E,--exact")],xe.prototype,"exact",void 0),(0,a.gn)([C.Command.Boolean("-T,--tilde")],xe.prototype,"tilde",void 0),(0,a.gn)([C.Command.Boolean("-C,--caret")],xe.prototype,"caret",void 0),(0,a.gn)([C.Command.Path("up")],xe.prototype,"execute",null);var Le=r(94682);class Pe extends c.BaseCommand{constructor(){super(...arguments),this.recursive=!1,this.peers=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await h.I.find(e,this.context.cwd);if(!r)throw new c.WorkspaceRequiredError(t.cwd,this.context.cwd);await t.restoreInstallState();const n=p.structUtils.parseIdent(this.package).identHash,i=this.recursive?function(e,t,{configuration:r,peers:n}){const i=p.miscUtils.sortMap(e.workspaces,e=>p.structUtils.stringifyLocator(e.anchoredLocator)),A=new Set,o=new Set,s=r=>{if(A.has(r.locatorHash))return o.has(r.locatorHash);if(A.add(r.locatorHash),r.identHash===t)return o.add(r.locatorHash),!0;let i=!1;r.identHash===t&&(i=!0);for(const t of r.dependencies.values()){if(!n&&r.peerDependencies.has(t.identHash))continue;const A=e.storedResolutions.get(t.descriptorHash);if(!A)throw new Error("Assertion failed: The resolution should have been registered");const o=e.storedPackages.get(A);if(!o)throw new Error("Assertion failed: The package should have been registered");s(o)&&(i=!0)}return i&&o.add(r.locatorHash),i};for(const t of i){const r=e.storedPackages.get(t.anchoredLocator.locatorHash);if(!r)throw new Error("Assertion failed: The package should have been registered");s(r)}const a=new Set,c={},g=(t,i,A)=>{if(!o.has(t.locatorHash))return;const s={};if(i[null!==A?`${p.structUtils.prettyLocator(r,t)} (via ${p.structUtils.prettyRange(r,A)})`:""+p.structUtils.prettyLocator(r,t)]=s,!a.has(t.locatorHash)&&(a.add(t.locatorHash),null===A||!e.tryWorkspaceByLocator(t)))for(const r of t.dependencies.values()){if(!n&&t.peerDependencies.has(r.identHash))continue;const i=e.storedResolutions.get(r.descriptorHash);if(!i)throw new Error("Assertion failed: The resolution should have been registered");const A=e.storedPackages.get(i);if(!A)throw new Error("Assertion failed: The package should have been registered");g(A,s,r.range)}};for(const t of i){const r=e.storedPackages.get(t.anchoredLocator.locatorHash);if(!r)throw new Error("Assertion failed: The package should have been registered");g(r,c,null)}return c}(t,n,{configuration:e,peers:this.peers}):function(e,t,{configuration:r,peers:n}){const i=p.miscUtils.sortMap(e.storedPackages.values(),e=>p.structUtils.stringifyLocator(e)),A={};for(const o of i){let i=null;for(const s of o.dependencies.values()){if(!n&&o.peerDependencies.has(s.identHash))continue;const a=e.storedResolutions.get(s.descriptorHash);if(!a)throw new Error("Assertion failed: The resolution should have been registered");const c=e.storedPackages.get(a);if(!c)throw new Error("Assertion failed: The package should have been registered");if(c.identHash!==t)continue;if(null===i){i={};const e=""+p.structUtils.prettyLocator(r,o);A[e]=i}const g=`${p.structUtils.prettyLocator(r,c)} (via ${p.structUtils.prettyRange(r,s.range)})`;i[g]={}}}return A}(t,n,{configuration:e,peers:this.peers});!function(e,t){let r=(0,Le.asTree)(t,!1,!1);r=r.replace(/^([├└]─)/gm,"│\n$1").replace(/^│\n/,""),e.write(r)}(this.context.stdout,i)}}Pe.usage=C.Command.Usage({description:"display the reason why a package is needed",details:'\n This command prints the exact reasons why a package appears in the dependency tree.\n\n If `-R,--recursive` is set, the listing will go in depth and will list, for each workspaces, what are all the paths that lead to the dependency. Note that the display is somewhat optimized in that it will not print the package listing twice for a single package, so if you see a leaf named "Foo" when looking for "Bar", it means that "Foo" already got printed higher in the tree.\n\n If `--peers` is set, the command will also print the peer dependencies that match the specified name.\n ',examples:[["Explain why lodash is used in your project","$0 why lodash"]]}),(0,a.gn)([C.Command.String()],Pe.prototype,"package",void 0),(0,a.gn)([C.Command.Boolean("-R,--recursive")],Pe.prototype,"recursive",void 0),(0,a.gn)([C.Command.Boolean("--peers")],Pe.prototype,"peers",void 0),(0,a.gn)([C.Command.Path("why")],Pe.prototype,"execute",null);class Ue extends c.BaseCommand{constructor(){super(...arguments),this.verbose=!1,this.json=!1}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t}=await h.I.find(e,this.context.cwd);return(await f.Pk.start({configuration:e,json:this.json,stdout:this.context.stdout},async e=>{for(const r of t.workspaces){const{manifest:n}=r;let i;if(this.verbose){const e=new Set,r=new Set;for(const i of E.G.hardDependencies)for(const[A,o]of n.getForScope(i)){const n=t.tryWorkspaceByDescriptor(o);null===n?t.workspacesByIdent.has(A)&&r.add(o):e.add(n)}i={workspaceDependencies:Array.from(e).map(e=>e.relativeCwd),mismatchedWorkspaceDependencies:Array.from(r).map(e=>p.structUtils.stringifyDescriptor(e))}}e.reportInfo(null,""+r.relativeCwd),e.reportJson({location:r.relativeCwd,name:n.name?p.structUtils.stringifyIdent(n.name):null,...i})}})).exitCode()}}Ue.usage=C.Command.Usage({category:"Workspace-related commands",description:"list all available workspaces",details:"\n This command will print the list of all workspaces in the project. If both the `-v,--verbose` and `--json` options are set, Yarn will also return the cross-dependencies between each workspaces (useful when you wish to automatically generate Buck / Bazel rules).\n\n If the `--json` flag is set the output will follow a JSON-stream output also known as NDJSON (https://github.com/ndjson/ndjson-spec).\n "}),(0,a.gn)([C.Command.Boolean("-v,--verbose")],Ue.prototype,"verbose",void 0),(0,a.gn)([C.Command.Boolean("--json")],Ue.prototype,"json",void 0),(0,a.gn)([C.Command.Path("workspaces","list")],Ue.prototype,"execute",null);class Te extends C.Command{constructor(){super(...arguments),this.args=[]}async execute(){const e=await s.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await h.I.find(e,this.context.cwd);if(!r)throw new c.WorkspaceRequiredError(t.cwd,this.context.cwd);const n=t.workspaces,i=new Map(n.map(e=>{const t=p.structUtils.convertToIdent(e.locator);return[p.structUtils.stringifyIdent(t),e]})),A=i.get(this.workspaceName);if(void 0===A){const e=Array.from(i.keys()).sort();throw new C.UsageError(`Workspace '${this.workspaceName}' not found. Did you mean any of the following:\n - ${e.join("\n - ")}?`)}return this.cli.run([this.commandName,...this.args],{cwd:A.cwd})}}Te.usage=C.Command.Usage({category:"Workspace-related commands",description:"run a command within the specified workspace",details:"\n This command will run a given sub-command on a single workspace.\n ",examples:[["Add a package to a single workspace","yarn workspace components add -D react"],["Run build script on a single workspace","yarn workspace components run build"]]}),(0,a.gn)([C.Command.String()],Te.prototype,"workspaceName",void 0),(0,a.gn)([C.Command.String()],Te.prototype,"commandName",void 0),(0,a.gn)([C.Command.Proxy()],Te.prototype,"args",void 0),(0,a.gn)([C.Command.Path("workspace")],Te.prototype,"execute",null);const Oe={configuration:{enableImmutableInstalls:{description:"If true, prevents the install command from modifying the lockfile",type:s.a2.BOOLEAN,default:!1},defaultSemverRangePrefix:{description:"The default save prefix: '^', '~' or ''",type:s.a2.STRING,default:A.CARET}},commands:[K,U,_,Ke,Ie,fe,Ue,$,ee,te,ne,N,R,H,Z,ie,ae,ce,ge,De,ve,Se,Qe,ke,Me,Fe,Ne,Re,xe,Pe,Te]}},74802:(e,t,r)=>{"use strict";r.r(t),r.d(t,{fileUtils:()=>n,default:()=>C});var n={};r.r(n),r.d(n,{makeArchiveFromLocator:()=>u,makeBufferFromLocator:()=>h,makeLocator:()=>l,makeSpec:()=>g,parseSpec:()=>c});var i=r(5624),A=r(46009);const o=/^(?:[a-zA-Z]:[\\/]|\.{0,2}\/)/,s=/^[^?]*\.(?:tar\.gz|tgz)(?:::.*)?$/;var a=r(75448);function c(e){const{params:t,selector:r}=i.structUtils.parseRange(e),n=A.cS.toPortablePath(r);return{parentLocator:t&&"string"==typeof t.locator?i.structUtils.parseLocator(t.locator):null,path:n}}function g({parentLocator:e,path:t,folderHash:r,protocol:n}){const A=null!==e?{locator:i.structUtils.stringifyLocator(e)}:{},o=void 0!==r?{hash:r}:{};return i.structUtils.makeRange({protocol:n,source:t,selector:t,params:{...o,...A}})}function l(e,{parentLocator:t,path:r,folderHash:n,protocol:A}){return i.structUtils.makeLocator(e,g({parentLocator:t,path:r,folderHash:n,protocol:A}))}async function u(e,{protocol:t,fetchOptions:r,inMemory:n=!1}){const{parentLocator:o,path:s}=i.structUtils.parseFileStyleRange(e.reference,{protocol:t}),c=A.y1.isAbsolute(s)?{packageFs:new a.M(A.LZ.root),prefixPath:A.LZ.dot,localPath:A.LZ.root}:await r.fetcher.fetch(o,r),g=c.localPath?{packageFs:new a.M(A.LZ.root),prefixPath:A.y1.relative(A.LZ.root,c.localPath)}:c;c!==g&&c.releaseFs&&c.releaseFs();const l=g.packageFs,u=A.y1.join(g.prefixPath,s);return await i.miscUtils.releaseAfterUseAsync(async()=>await i.tgzUtils.makeArchiveFromDirectory(u,{baseFs:l,prefixPath:i.structUtils.getIdentVendorPath(e),compressionLevel:r.project.configuration.get("compressionLevel"),inMemory:n}),g.releaseFs)}async function h(e,{protocol:t,fetchOptions:r}){return(await u(e,{protocol:t,fetchOptions:r,inMemory:!0})).getBufferAndClose()}var f=r(32485),p=r(46611);const C={fetchers:[class{supports(e,t){return!!s.test(e.reference)&&!!e.reference.startsWith("file:")}getLocalPath(e,t){return null}async fetch(e,t){const r=t.checksums.get(e.locatorHash)||null,[n,A,o]=await t.cache.fetchPackageFromCache(e,r,{onHit:()=>t.report.reportCacheHit(e),onMiss:()=>t.report.reportCacheMiss(e,i.structUtils.prettyLocator(t.project.configuration,e)+" can't be found in the cache and will be fetched from the disk"),loader:()=>this.fetchFromDisk(e,t),skipIntegrityCheck:t.skipIntegrityCheck});return{packageFs:n,releaseFs:A,prefixPath:i.structUtils.getIdentVendorPath(e),checksum:o}}async fetchFromDisk(e,t){const{parentLocator:r,path:n}=i.structUtils.parseFileStyleRange(e.reference,{protocol:"file:"}),o=A.y1.isAbsolute(n)?{packageFs:new a.M(A.LZ.root),prefixPath:A.LZ.dot,localPath:A.LZ.root}:await t.fetcher.fetch(r,t),s=o.localPath?{packageFs:new a.M(A.LZ.root),prefixPath:A.y1.relative(A.LZ.root,o.localPath)}:o;o!==s&&o.releaseFs&&o.releaseFs();const c=s.packageFs,g=A.y1.join(s.prefixPath,n),l=await c.readFilePromise(g);return await i.miscUtils.releaseAfterUseAsync(async()=>await i.tgzUtils.convertToZip(l,{compressionLevel:t.project.configuration.get("compressionLevel"),prefixPath:i.structUtils.getIdentVendorPath(e),stripComponents:1}),s.releaseFs)}},class{supports(e,t){return!!e.reference.startsWith("file:")}getLocalPath(e,t){const{parentLocator:r,path:n}=i.structUtils.parseFileStyleRange(e.reference,{protocol:"file:"});if(A.y1.isAbsolute(n))return n;const o=t.fetcher.getLocalPath(r,t);return null===o?null:A.y1.resolve(o,n)}async fetch(e,t){const r=t.checksums.get(e.locatorHash)||null,[n,A,o]=await t.cache.fetchPackageFromCache(e,r,{onHit:()=>t.report.reportCacheHit(e),onMiss:()=>t.report.reportCacheMiss(e,i.structUtils.prettyLocator(t.project.configuration,e)+" can't be found in the cache and will be fetched from the disk"),loader:()=>this.fetchFromDisk(e,t),skipIntegrityCheck:t.skipIntegrityCheck});return{packageFs:n,releaseFs:A,prefixPath:i.structUtils.getIdentVendorPath(e),localPath:this.getLocalPath(e,t),checksum:o}}async fetchFromDisk(e,t){return u(e,{protocol:"file:",fetchOptions:t})}}],resolvers:[class{supportsDescriptor(e,t){return!!s.test(e.range)&&(!!e.range.startsWith("file:")||!!o.test(e.range))}supportsLocator(e,t){return!!s.test(e.reference)&&!!e.reference.startsWith("file:")}shouldPersistResolution(e,t){return!0}bindDescriptor(e,t,r){return o.test(e.range)&&(e=i.structUtils.makeDescriptor(e,"file:"+e.range)),i.structUtils.bindDescriptor(e,{locator:i.structUtils.stringifyLocator(t)})}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){let n=e.range;return n.startsWith("file:")&&(n=n.slice("file:".length)),[i.structUtils.makeLocator(e,"file:"+A.cS.toPortablePath(n))]}async getSatisfying(e,t,r){return null}async resolve(e,t){if(!t.fetchOptions)throw new Error("Assertion failed: This resolver cannot be used unless a fetcher is configured");const r=await t.fetchOptions.fetcher.fetch(e,t.fetchOptions),n=await i.miscUtils.releaseAfterUseAsync(async()=>await p.G.find(r.prefixPath,{baseFs:r.packageFs}),r.releaseFs);return{...e,version:n.version||"0.0.0",languageName:t.project.configuration.get("defaultLanguageName"),linkType:f.U.HARD,dependencies:n.dependencies,peerDependencies:n.peerDependencies,dependenciesMeta:n.dependenciesMeta,peerDependenciesMeta:n.peerDependenciesMeta,bin:n.bin}}},class{supportsDescriptor(e,t){return!!e.range.match(o)||!!e.range.startsWith("file:")}supportsLocator(e,t){return!!e.reference.startsWith("file:")}shouldPersistResolution(e,t){return!1}bindDescriptor(e,t,r){return o.test(e.range)&&(e=i.structUtils.makeDescriptor(e,"file:"+e.range)),i.structUtils.bindDescriptor(e,{locator:i.structUtils.stringifyLocator(t)})}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){if(!r.fetchOptions)throw new Error("Assertion failed: This resolver cannot be used unless a fetcher is configured");const{path:n,parentLocator:A}=c(e.range);if(null===A)throw new Error("Assertion failed: The descriptor should have been bound");const o=await h(i.structUtils.makeLocator(e,i.structUtils.makeRange({protocol:"file:",source:n,selector:n,params:{locator:i.structUtils.stringifyLocator(A)}})),{protocol:"file:",fetchOptions:r.fetchOptions});return[l(e,{parentLocator:A,path:n,folderHash:i.hashUtils.makeHash("1",o).slice(0,6),protocol:"file:"})]}async getSatisfying(e,t,r){return null}async resolve(e,t){if(!t.fetchOptions)throw new Error("Assertion failed: This resolver cannot be used unless a fetcher is configured");const r=await t.fetchOptions.fetcher.fetch(e,t.fetchOptions),n=await i.miscUtils.releaseAfterUseAsync(async()=>await p.G.find(r.prefixPath,{baseFs:r.packageFs}),r.releaseFs);return{...e,version:n.version||"0.0.0",languageName:t.project.configuration.get("defaultLanguageName"),linkType:f.U.HARD,dependencies:n.dependencies,peerDependencies:n.peerDependencies,dependenciesMeta:n.dependenciesMeta,peerDependenciesMeta:n.peerDependenciesMeta,bin:n.bin}}}]}},10284:(e,t,r)=>{"use strict";r.r(t),r.d(t,{gitUtils:()=>n,default:()=>Q});var n={};r.r(n),r.d(n,{TreeishProtocols:()=>f,clone:()=>B,isGitUrl:()=>p,lsRemote:()=>E,normalizeLocator:()=>I,normalizeRepoUrl:()=>d,resolveUrl:()=>m,splitRepoUrl:()=>C});var i=r(27122),A=r(5624),o=r(46009),s=r(56537),a=r(71191),c=r.n(a),g=r(53887),l=r.n(g);function u(){return{...process.env,GIT_SSH_COMMAND:"ssh -o BatchMode=yes"}}const h=[/^ssh:/,/^git(?:\+[^:]+)?:/,/^(?:git\+)?https?:[^#]+\/[^#]+(?:\.git)(?:#.*)?$/,/^git@[^#]+\/[^#]+\.git(?:#.*)?$/,/^(?:github:|https:\/\/github\.com\/)?(?!\.{1,2}\/)([a-zA-Z._0-9-]+)\/(?!\.{1,2}(?:#|$))([a-zA-Z._0-9-]+?)(?:\.git)?(?:#.*)?$/,/^https:\/\/github\.com\/(?!\.{1,2}\/)([a-zA-Z0-9._-]+)\/(?!\.{1,2}(?:#|$))([a-zA-Z0-9._-]+?)\/tarball\/(.+)?$/];var f;function p(e){return!!e&&h.some(t=>!!e.match(t))}function C(e){const t=(e=d(e)).indexOf("#");if(-1===t)return{repo:e,treeish:{protocol:f.Head,request:"master"},extra:{}};const r=e.slice(0,t),n=e.slice(t+1);if(n.match(/^[a-z]+=/)){const e=c().parse(n);for(const[t,r]of Object.entries(e))if("string"!=typeof r)throw new Error(`Assertion failed: The ${t} parameter must be a literal string`);const t=Object.values(f).find(t=>Object.prototype.hasOwnProperty.call(e,t));let i,A;void 0!==t?(i=t,A=e[t]):(i=f.Head,A="master");for(const t of Object.values(f))delete e[t];return{repo:r,treeish:{protocol:i,request:A},extra:e}}{const e=n.indexOf(":");let t,i;return-1===e?(t=null,i=n):(t=n.slice(0,e),i=n.slice(e+1)),{repo:r,treeish:{protocol:t,request:i},extra:{}}}}function d(e,{git:t=!1}={}){return e=(e=(e=e.replace(/^git\+https:/,"https:")).replace(/^(?:github:|https:\/\/github\.com\/)?(?!\.{1,2}\/)([a-zA-Z0-9._-]+)\/(?!\.{1,2}(?:#|$))([a-zA-Z0-9._-]+?)(?:\.git)?(#.*)?$/,"https://github.com/$1/$2.git$3")).replace(/^https:\/\/github\.com\/(?!\.{1,2}\/)([a-zA-Z0-9._-]+)\/(?!\.{1,2}(?:#|$))([a-zA-Z0-9._-]+?)\/tarball\/(.+)?$/,"https://github.com/$1/$2.git#$3"),t&&(e=e.replace(/^git\+([^:]+):/,"$1:")),e}function I(e){return A.structUtils.makeLocator(e,d(e.reference))}async function E(e,t){if(!t.get("enableNetwork"))throw new Error(`Network access has been disabled by configuration (${e})`);let r;try{r=await A.execUtils.execvp("git",["ls-remote","--refs",d(e,{git:!0})],{cwd:t.startingCwd,env:u(),strict:!0})}catch(t){throw t.message=`Listing the refs for ${e} failed`,t}const n=new Map,i=/^([a-f0-9]{40})\t(refs\/[^\n]+)/gm;let o;for(;null!==(o=i.exec(r.stdout));)n.set(o[2],o[1]);return n}async function m(e,t){const{repo:r,treeish:{protocol:n,request:i},extra:A}=C(e),o=await E(r,t),s=(e,t)=>{switch(e){case f.Commit:if(!t.match(/^[a-f0-9]{40}$/))throw new Error("Invalid commit hash");return c().stringify({...A,commit:t});case f.Head:{const e=o.get("refs/heads/"+t);if(void 0===e)throw new Error(`Unknown head ("${t}")`);return c().stringify({...A,commit:e})}case f.Tag:{const e=o.get("refs/tags/"+t);if(void 0===e)throw new Error(`Unknown tag ("${t}")`);return c().stringify({...A,commit:e})}case f.Semver:{if(!l().validRange(t))throw new Error(`Invalid range ("${t}")`);const e=new Map([...o.entries()].filter(([e])=>e.startsWith("refs/tags/")).map(([e,t])=>[l().parse(e.slice(10)),t]).filter(e=>null!==e[0])),r=l().maxSatisfying([...e.keys()],t);if(null===r)throw new Error(`No matching range ("${t}")`);return c().stringify({...A,commit:e.get(r)})}case null:{let e;if(null!==(e=a(f.Commit,t)))return e;if(null!==(e=a(f.Tag,t)))return e;if(null!==(e=a(f.Head,t)))return e;throw t.match(/^[a-f0-9]+$/)?new Error(`Couldn't resolve "${t}" as either a commit, a tag, or a head - if a commit, use the 40-characters commit hash`):new Error(`Couldn't resolve "${t}" as either a commit, a tag, or a head`)}default:throw new Error(`Invalid Git resolution protocol ("${e}")`)}},a=(e,t)=>{try{return s(e,t)}catch(e){return null}};return`${r}#${s(n,i)}`}async function B(e,t){if(!t.get("enableNetwork"))throw new Error(`Network access has been disabled by configuration (${e})`);return await t.getLimit("cloneConcurrency")(async()=>{const{repo:t,treeish:{protocol:r,request:n}}=C(e);if("commit"!==r)throw new Error("Invalid treeish protocol when cloning");const i=await s.xfs.mktempPromise(),a={cwd:i,env:u(),strict:!0};try{await A.execUtils.execvp("git",["clone","-c core.autocrlf=false",d(t,{git:!0}),o.cS.fromPortablePath(i)],a),await A.execUtils.execvp("git",["checkout",""+n],a)}catch(e){throw e.message="Repository clone failed: "+e.message,e}return i})}!function(e){e.Commit="commit",e.Head="head",e.Tag="tag",e.Semver="semver"}(f||(f={}));var w=r(32485),y=r(46611);const Q={configuration:{cloneConcurrency:{description:"Maximal number of concurrent clones",type:i.a2.NUMBER,default:2}},fetchers:[class{supports(e,t){return p(e.reference)}getLocalPath(e,t){return null}async fetch(e,t){const r=t.checksums.get(e.locatorHash)||null,n=I(e),i=new Map(t.checksums);i.set(n.locatorHash,r);const o={...t,checksums:i},s=await this.downloadHosted(n,o);if(null!==s)return s;const[a,c,g]=await t.cache.fetchPackageFromCache(e,r,{onHit:()=>t.report.reportCacheHit(e),onMiss:()=>t.report.reportCacheMiss(e,A.structUtils.prettyLocator(t.project.configuration,e)+" can't be found in the cache and will be fetched from the remote repository"),loader:()=>this.cloneFromRemote(n,o),skipIntegrityCheck:t.skipIntegrityCheck});return{packageFs:a,releaseFs:c,prefixPath:A.structUtils.getIdentVendorPath(e),checksum:g}}async downloadHosted(e,t){return t.project.configuration.reduceHook(e=>e.fetchHostedRepository,null,e,t)}async cloneFromRemote(e,t){const r=await B(e.reference,t.project.configuration),n=C(e.reference),i=o.y1.join(r,"package.tgz");await A.scriptUtils.prepareExternalProject(r,i,{configuration:t.project.configuration,report:t.report,workspace:n.extra.workspace});const a=await s.xfs.readFilePromise(i);return await A.miscUtils.releaseAfterUseAsync(async()=>await A.tgzUtils.convertToZip(a,{compressionLevel:t.project.configuration.get("compressionLevel"),prefixPath:A.structUtils.getIdentVendorPath(e),stripComponents:1}))}}],resolvers:[class{supportsDescriptor(e,t){return p(e.range)}supportsLocator(e,t){return p(e.reference)}shouldPersistResolution(e,t){return!0}bindDescriptor(e,t,r){return e}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){const n=await m(e.range,r.project.configuration);return[A.structUtils.makeLocator(e,n)]}async getSatisfying(e,t,r){return null}async resolve(e,t){if(!t.fetchOptions)throw new Error("Assertion failed: This resolver cannot be used unless a fetcher is configured");const r=await t.fetchOptions.fetcher.fetch(e,t.fetchOptions),n=await A.miscUtils.releaseAfterUseAsync(async()=>await y.G.find(r.prefixPath,{baseFs:r.packageFs}),r.releaseFs);return{...e,version:n.version||"0.0.0",languageName:t.project.configuration.get("defaultLanguageName"),linkType:w.U.HARD,dependencies:n.dependencies,peerDependencies:n.peerDependencies,dependenciesMeta:n.dependenciesMeta,peerDependenciesMeta:n.peerDependenciesMeta,bin:n.bin}}}]}},23599:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>u});var n=r(5624),i=r(56537),A=r(75448),o=r(46009),s=r(10284),a=r(71191),c=r.n(a);const g=[/^https?:\/\/(?:([^/]+?)@)?github.com\/([^/#]+)\/([^/#]+)\/tarball\/([^/#]+)(?:#(.*))?$/,/^https?:\/\/(?:([^/]+?)@)?github.com\/([^/#]+)\/([^/#]+?)(?:\.git)?(?:#(.*))?$/];class l{supports(e,t){return!(!(r=e.reference)||!g.some(e=>!!r.match(e)));var r}getLocalPath(e,t){return null}async fetch(e,t){const r=t.checksums.get(e.locatorHash)||null,[i,A,o]=await t.cache.fetchPackageFromCache(e,r,{onHit:()=>t.report.reportCacheHit(e),onMiss:()=>t.report.reportCacheMiss(e,n.structUtils.prettyLocator(t.project.configuration,e)+" can't be found in the cache and will be fetched from GitHub"),loader:()=>this.fetchFromNetwork(e,t),skipIntegrityCheck:t.skipIntegrityCheck});return{packageFs:i,releaseFs:A,prefixPath:n.structUtils.getIdentVendorPath(e),checksum:o}}async fetchFromNetwork(e,t){const r=await n.httpUtils.get(this.getLocatorUrl(e,t),{configuration:t.project.configuration});return await i.xfs.mktempPromise(async a=>{const c=new A.M(a);await n.tgzUtils.extractArchiveTo(r,c,{stripComponents:1});const g=s.gitUtils.splitRepoUrl(e.reference),l=o.y1.join(a,"package.tgz");await n.scriptUtils.prepareExternalProject(a,l,{configuration:t.project.configuration,report:t.report,workspace:g.extra.workspace});const u=await i.xfs.readFilePromise(l);return await n.tgzUtils.convertToZip(u,{compressionLevel:t.project.configuration.get("compressionLevel"),prefixPath:n.structUtils.getIdentVendorPath(e),stripComponents:1})})}getLocatorUrl(e,t){const{auth:r,username:n,reponame:i,treeish:A}=function(e){let t;for(const r of g)if(t=e.match(r),t)break;if(!t)throw new Error(`Input cannot be parsed as a valid GitHub URL ('${e}').`);let[,r,n,i,A="master"]=t;const{commit:o}=c().parse(A);return A=o||A.replace(/[^:]*:/,""),{auth:r,username:n,reponame:i,treeish:A}}(e.reference);return`https://${r?r+"@":""}github.com/${n}/${i}/archive/${A}.tar.gz`}}const u={hooks:{async fetchHostedRepository(e,t,r){if(null!==e)return e;const n=new l;if(!n.supports(t,r))return null;try{return await n.fetch(t,r)}catch(e){return null}}}}},21754:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>a});var n=r(5624);const i=/^[^?]*\.(?:tar\.gz|tgz)(?:\?.*)?$/,A=/^https?:/;var o=r(46611),s=r(32485);const a={fetchers:[class{supports(e,t){return!!i.test(e.reference)&&!!A.test(e.reference)}getLocalPath(e,t){return null}async fetch(e,t){const r=t.checksums.get(e.locatorHash)||null,[i,A,o]=await t.cache.fetchPackageFromCache(e,r,{onHit:()=>t.report.reportCacheHit(e),onMiss:()=>t.report.reportCacheMiss(e,n.structUtils.prettyLocator(t.project.configuration,e)+" can't be found in the cache and will be fetched from the remote server"),loader:()=>this.fetchFromNetwork(e,t),skipIntegrityCheck:t.skipIntegrityCheck});return{packageFs:i,releaseFs:A,prefixPath:n.structUtils.getIdentVendorPath(e),checksum:o}}async fetchFromNetwork(e,t){const r=await n.httpUtils.get(e.reference,{configuration:t.project.configuration});return await n.tgzUtils.convertToZip(r,{compressionLevel:t.project.configuration.get("compressionLevel"),prefixPath:n.structUtils.getIdentVendorPath(e),stripComponents:1})}}],resolvers:[class{supportsDescriptor(e,t){return!!i.test(e.range)&&!!A.test(e.range)}supportsLocator(e,t){return!!i.test(e.reference)&&!!A.test(e.reference)}shouldPersistResolution(e,t){return!0}bindDescriptor(e,t,r){return e}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){return[n.structUtils.convertDescriptorToLocator(e)]}async getSatisfying(e,t,r){return null}async resolve(e,t){if(!t.fetchOptions)throw new Error("Assertion failed: This resolver cannot be used unless a fetcher is configured");const r=await t.fetchOptions.fetcher.fetch(e,t.fetchOptions),i=await n.miscUtils.releaseAfterUseAsync(async()=>await o.G.find(r.prefixPath,{baseFs:r.packageFs}),r.releaseFs);return{...e,version:i.version||"0.0.0",languageName:t.project.configuration.get("defaultLanguageName"),linkType:s.U.HARD,dependencies:i.dependencies,peerDependencies:i.peerDependencies,dependenciesMeta:i.dependenciesMeta,peerDependenciesMeta:i.peerDependenciesMeta,bin:i.bin}}}]}},74230:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>C});var n=r(27122),i=r(36370),A=r(95397),o=r(46611),s=r(40376),a=r(5624),c=r(56537),g=r(46009),l=r(93103),u=r(80305),h=r.n(u),f=r(31669);class p extends A.BaseCommand{constructor(){super(...arguments),this.usev2=!1,this.assumeFreshProject=!1,this.yes=!1,this.private=!1,this.workspace=!1,this.install=!1}async execute(){if(c.xfs.existsSync(g.y1.join(this.context.cwd,o.G.fileName)))throw new l.UsageError("A package.json already exists in the specified directory");const e=await n.VK.find(this.context.cwd,this.context.plugins),t=this.install?!0===this.install?"latest":this.install:null;return null!==t?await this.executeProxy(e,t):await this.executeRegular(e)}async executeProxy(e,t){if(null!==e.get("yarnPath"))throw new l.UsageError(`Cannot use the --install flag when the current directory already uses yarnPath (from ${e.sources.get("yarnPath")})`);if(null!==e.projectCwd)throw new l.UsageError("Cannot use the --install flag when the current directory is already part of a project");c.xfs.existsSync(this.context.cwd)||await c.xfs.mkdirPromise(this.context.cwd,{recursive:!0});const r=g.y1.join(this.context.cwd,e.get("lockfileFilename"));c.xfs.existsSync(r)||await c.xfs.writeFilePromise(r,"");const n=await this.cli.run(["set","version",t]);if(0!==n)return n;this.context.stdout.write("\n");const i=["--assume-fresh-project"];return this.private&&i.push("-p"),this.workspace&&i.push("-w"),this.yes&&i.push("-y"),await c.xfs.mktempPromise(async e=>{const{code:t}=await a.execUtils.pipevp("yarn",["init",...i],{cwd:this.context.cwd,stdin:this.context.stdin,stdout:this.context.stdout,stderr:this.context.stderr,env:await a.scriptUtils.makeScriptEnv({binFolder:e})});return t})}async executeRegular(e){let t=null;if(!this.assumeFreshProject)try{t=await s.I.find(e,this.context.cwd)}catch(e){t=null}c.xfs.existsSync(this.context.cwd)||await c.xfs.mkdirPromise(this.context.cwd,{recursive:!0});const r=new o.G,n=Object.fromEntries(e.get("initFields").entries());r.load(n),r.name=a.structUtils.makeIdent(e.get("initScope"),g.y1.basename(this.context.cwd)),r.version=e.get("initVersion"),r.private=this.private||this.workspace,r.license=e.get("initLicense"),this.workspace&&(await c.xfs.mkdirPromise(g.y1.join(this.context.cwd,"packages"),{recursive:!0}),r.workspaceDefinitions=[{pattern:"packages/*"}]);const i={};r.exportTo(i),f.inspect.styles.name="cyan",this.context.stdout.write((0,f.inspect)(i,{depth:1/0,colors:!0,compact:!1})+"\n");const A=g.y1.join(this.context.cwd,o.G.fileName);await c.xfs.changeFilePromise(A,JSON.stringify(i,null,2)+"\n");const l=g.y1.join(this.context.cwd,"README.md");if(c.xfs.existsSync(l)||await c.xfs.writeFilePromise(l,`# ${a.structUtils.stringifyIdent(r.name)}\n`),!t){const t=g.y1.join(this.context.cwd,g.QS.lockfile);await c.xfs.writeFilePromise(t,"");const r=["/.yarn/** linguist-vendored"].map(e=>e+"\n").join(""),n=g.y1.join(this.context.cwd,".gitattributes");c.xfs.existsSync(n)||await c.xfs.writeFilePromise(n,r);const i=["/.yarn/*","!/.yarn/releases","!/.yarn/plugins","!/.yarn/sdks","","# Swap the comments on the following lines if you don't wish to use zero-installs","# Documentation here: https://yarnpkg.com/features/zero-installs","!/.yarn/cache","#/.pnp.*"].map(e=>e+"\n").join(""),A=g.y1.join(this.context.cwd,".gitignore");c.xfs.existsSync(A)||await c.xfs.writeFilePromise(A,i);const o={"*":{endOfLine:"lf",insertFinalNewline:!0},"*.{js,json,.yml}":{charset:"utf-8",indentStyle:"space",indentSize:2}};h()(o,e.get("initEditorConfig"));let s="root = true\n";for(const[e,t]of Object.entries(o)){s+=`\n[${e}]\n`;for(const[e,r]of Object.entries(t)){s+=`${e.replace(/[A-Z]/g,e=>"_"+e.toLowerCase())} = ${r}\n`}}const l=g.y1.join(this.context.cwd,".editorconfig");c.xfs.existsSync(l)||await c.xfs.writeFilePromise(l,s),await a.execUtils.execvp("git",["init"],{cwd:this.context.cwd})}}}p.usage=l.Command.Usage({description:"create a new package",details:"\n This command will setup a new package in your local directory.\n\n If the `-p,--private` or `-w,--workspace` options are set, the package will be private by default.\n\n If the `-w,--workspace` option is set, the package will be configured to accept a set of workspaces in the `packages/` directory.\n\n If the `-i,--install` option is given a value, Yarn will first download it using `yarn set version` and only then forward the init call to the newly downloaded bundle. Without arguments, the downloaded bundle will be `latest`.\n\n The initial settings of the manifest can be changed by using the `initScope` and `initFields` configuration values. Additionally, Yarn will generate an EditorConfig file whose rules can be altered via `initEditorConfig`, and will initialize a Git repository in the current directory.\n ",examples:[["Create a new package in the local directory","yarn init"],["Create a new private package in the local directory","yarn init -p"],["Create a new package and store the Yarn release inside","yarn init -i latest"],["Create a new private package and defines it as a workspace root","yarn init -w"]]}),(0,i.gn)([l.Command.Boolean("-2",{hidden:!0})],p.prototype,"usev2",void 0),(0,i.gn)([l.Command.Boolean("--assume-fresh-project",{hidden:!0})],p.prototype,"assumeFreshProject",void 0),(0,i.gn)([l.Command.Boolean("-y,--yes",{hidden:!0})],p.prototype,"yes",void 0),(0,i.gn)([l.Command.Boolean("-p,--private")],p.prototype,"private",void 0),(0,i.gn)([l.Command.Boolean("-w,--workspace")],p.prototype,"workspace",void 0),(0,i.gn)([l.Command.String("-i,--install",{tolerateBoolean:!0})],p.prototype,"install",void 0),(0,i.gn)([l.Command.Path("init")],p.prototype,"execute",null);const C={configuration:{initLicense:{description:"License used when creating packages via the init command",type:n.a2.STRING,default:null},initScope:{description:"Scope used when creating packages via the init command",type:n.a2.STRING,default:null},initVersion:{description:"Version used when creating packages via the init command",type:n.a2.STRING,default:null},initFields:{description:"Additional fields to set when creating packages via the init command",type:n.a2.MAP,valueDefinition:{description:"",type:n.a2.ANY}},initEditorConfig:{description:"Extra rules to define in the generator editorconfig",type:n.a2.MAP,valueDefinition:{description:"",type:n.a2.ANY}}},commands:[p]}},86161:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>c});var n=r(5624),i=r(46009),A=r(75448),o=r(10489);var s=r(46611),a=r(32485);const c={fetchers:[class{supports(e,t){return!!e.reference.startsWith("link:")}getLocalPath(e,t){const{parentLocator:r,path:A}=n.structUtils.parseFileStyleRange(e.reference,{protocol:"link:"});if(i.y1.isAbsolute(A))return A;const o=t.fetcher.getLocalPath(r,t);return null===o?null:i.y1.resolve(o,A)}async fetch(e,t){const{parentLocator:r,path:s}=n.structUtils.parseFileStyleRange(e.reference,{protocol:"link:"}),a=i.y1.isAbsolute(s)?{packageFs:new A.M(i.LZ.root),prefixPath:i.LZ.dot,localPath:i.LZ.root}:await t.fetcher.fetch(r,t),c=a.localPath?{packageFs:new A.M(i.LZ.root),prefixPath:i.y1.relative(i.LZ.root,a.localPath)}:a;a!==c&&a.releaseFs&&a.releaseFs();const g=c.packageFs,l=i.y1.join(c.prefixPath,s);return a.localPath?{packageFs:new A.M(l,{baseFs:g}),releaseFs:c.releaseFs,prefixPath:i.LZ.dot,discardFromLookup:!0,localPath:l}:{packageFs:new o.n(l,{baseFs:g}),releaseFs:c.releaseFs,prefixPath:i.LZ.dot,discardFromLookup:!0}}},class{supports(e,t){return!!e.reference.startsWith("portal:")}getLocalPath(e,t){const{parentLocator:r,path:A}=n.structUtils.parseFileStyleRange(e.reference,{protocol:"portal:"});if(i.y1.isAbsolute(A))return A;const o=t.fetcher.getLocalPath(r,t);return null===o?null:i.y1.resolve(o,A)}async fetch(e,t){const{parentLocator:r,path:s}=n.structUtils.parseFileStyleRange(e.reference,{protocol:"portal:"}),a=i.y1.isAbsolute(s)?{packageFs:new A.M(i.LZ.root),prefixPath:i.LZ.dot,localPath:i.LZ.root}:await t.fetcher.fetch(r,t),c=a.localPath?{packageFs:new A.M(i.LZ.root),prefixPath:i.y1.relative(i.LZ.root,a.localPath)}:a;a!==c&&a.releaseFs&&a.releaseFs();const g=c.packageFs,l=i.y1.join(c.prefixPath,s);return a.localPath?{packageFs:new A.M(l,{baseFs:g}),releaseFs:c.releaseFs,prefixPath:i.LZ.dot,localPath:l}:{packageFs:new o.n(l,{baseFs:g}),releaseFs:c.releaseFs,prefixPath:i.LZ.dot}}}],resolvers:[class{supportsDescriptor(e,t){return!!e.range.startsWith("link:")}supportsLocator(e,t){return!!e.reference.startsWith("link:")}shouldPersistResolution(e,t){return!1}bindDescriptor(e,t,r){return n.structUtils.bindDescriptor(e,{locator:n.structUtils.stringifyLocator(t)})}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){const A=e.range.slice("link:".length);return[n.structUtils.makeLocator(e,"link:"+i.cS.toPortablePath(A))]}async getSatisfying(e,t,r){return null}async resolve(e,t){return{...e,version:"0.0.0",languageName:t.project.configuration.get("defaultLanguageName"),linkType:a.U.SOFT,dependencies:new Map,peerDependencies:new Map,dependenciesMeta:new Map,peerDependenciesMeta:new Map,bin:new Map}}},class{supportsDescriptor(e,t){return!!e.range.startsWith("portal:")}supportsLocator(e,t){return!!e.reference.startsWith("portal:")}shouldPersistResolution(e,t){return!1}bindDescriptor(e,t,r){return n.structUtils.bindDescriptor(e,{locator:n.structUtils.stringifyLocator(t)})}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){const A=e.range.slice("portal:".length);return[n.structUtils.makeLocator(e,"portal:"+i.cS.toPortablePath(A))]}async getSatisfying(e,t,r){return null}async resolve(e,t){if(!t.fetchOptions)throw new Error("Assertion failed: This resolver cannot be used unless a fetcher is configured");const r=await t.fetchOptions.fetcher.fetch(e,t.fetchOptions),i=await n.miscUtils.releaseAfterUseAsync(async()=>await s.G.find(r.prefixPath,{baseFs:r.packageFs}),r.releaseFs);return{...e,version:i.version||"0.0.0",languageName:t.project.configuration.get("defaultLanguageName"),linkType:a.U.SOFT,dependencies:new Map([...i.dependencies,...i.devDependencies]),peerDependencies:i.peerDependencies,dependenciesMeta:i.dependenciesMeta,peerDependenciesMeta:i.peerDependenciesMeta,bin:i.bin}}}]}},8149:(e,t,r)=>{"use strict";r.r(t),r.d(t,{getPnpPath:()=>$,default:()=>ee});var n=r(46009),i=r(5624),A=r(46611),o=r(35691),s=r(92409),a=r(32485),c=r(92659),g=r(17674),l=r(53660),u=r(56537),h=r(29486),f=r(55125),p=r(57436);const C=(e,t)=>`${e}@${t}`,d=(e,t)=>{const r=t.indexOf("#"),n=r>=0?t.substring(r+1):t;return C(e,n)},I=(e,t={})=>{const r=t.debugLevel||Number(process.env.NM_DEBUG_LEVEL||-1),n={check:t.check||r>=9,debugLevel:r};n.debugLevel>=0&&console.time("hoist");const i=Q(e);if(m(i,i,new Set([i.locator]),n),n.debugLevel>=0&&console.timeEnd("hoist"),n.debugLevel>=1){const e=y(i);if(e)throw new Error(`${e}, after hoisting finished:\n${k(i)}`)}return n.debugLevel>=2&&console.log(k(i)),b(i)},E=(e,t)=>{if(t.decoupled)return t;const{name:r,references:n,ident:i,locator:A,dependencies:o,originalDependencies:s,hoistedDependencies:a,peerNames:c,reasons:g}=t,l={name:r,references:new Set(n),ident:i,locator:A,dependencies:new Map(o),originalDependencies:new Map(s),hoistedDependencies:new Map(a),peerNames:new Set(c),reasons:new Map(g),decoupled:!0},u=l.dependencies.get(r);return u&&u.ident==l.ident&&l.dependencies.set(r,l),e.dependencies.set(l.name,l),l},m=(e,t,r,n,i=new Set)=>{if(i.has(t))return;i.add(t);const A=((e,t)=>{const r=new Map([[e.name,[e.ident]]]);for(const t of e.dependencies.values())e.peerNames.has(t.name)||r.set(t.name,[t.ident]);const n=Array.from(t.keys());n.sort((e,r)=>t.get(r).size-t.get(e).size);for(const t of n){const n=t.substring(0,t.indexOf("@",1)),i=t.substring(n.length+1);if(!e.peerNames.has(n)){let e=r.get(n);e||(e=[],r.set(n,e)),e.indexOf(i)<0&&e.push(i)}}return r})(t,D(t)),o=new Map(Array.from(A.entries()).map(([e,t])=>[e,t[0]])),s=t===e?new Map:(e=>{const t=new Map,r=new Set,n=i=>{if(!r.has(i)){r.add(i);for(const r of i.hoistedDependencies.values())e.dependencies.has(r.name)||t.set(r.name,r);for(const e of i.dependencies.values())i.peerNames.has(e.name)||n(e)}};return n(e),t})(t);let a;do{w(e,t,r,s,o,A,n),a=!1;for(const[e,r]of A)r.length>1&&!t.dependencies.has(e)&&(o.delete(e),r.shift(),o.set(e,r[0]),a=!0)}while(a);for(const i of t.dependencies.values())t.peerNames.has(i.name)||r.has(i.locator)||(r.add(i.locator),m(e,i,r,n),r.delete(i.locator))},B=e=>{const t=new Set,r=(n,i=new Set)=>{if(!i.has(n)){i.add(n);for(const A of n.peerNames)if(!e.peerNames.has(A)){const n=e.dependencies.get(A);n&&!t.has(n)&&r(n,i)}t.add(n)}};for(const t of e.dependencies.values())e.peerNames.has(t.name)||r(t);return t},w=(e,t,r,n,i,A,o)=>{const s=new Set,a=(c,g,l,u)=>{if(s.has(l))return;let h,f;o.debugLevel>=2&&(h=""+Array.from(r).map(e=>S(e)).join("→"));const p=c[c.length-1],C=l.ident===p.ident;let d=i.get(l.name)===l.ident&&!C;if(o.debugLevel>=2&&!d&&(f=`- filled by: ${S(A.get(l.name)[0])} at ${h}`),d){let e=!0;const t=new Set(l.peerNames);for(let r=c.length-1;r>=1;r--){const n=c[r];for(const r of t){if(n.peerNames.has(r)&&n.originalDependencies.has(r))continue;const i=n.dependencies.get(r);if(i){o.debugLevel>=2&&(f=`- peer dependency ${S(i.locator)} from parent ${S(n.locator)} was not hoisted to ${h}`),e=!1;break}t.delete(r)}if(!e)break}d=e}if(d){let e=!1;const t=n.get(l.name);if(e=!t||t.ident===l.ident,o.debugLevel>=2&&!e&&(f=`- filled by: ${S(t.locator)} at ${h}`),e)for(let t=1;t=2&&(f=`- filled by: ${S(n.locator)} at ${S(r.locator)}`);break}}d=e}if(d){p.dependencies.delete(l.name),p.hoistedDependencies.set(l.name,l),p.reasons.delete(l.name);const r=t.dependencies.get(l.name);if(r)for(const e of l.references)r.references.add(e);else t.ident!==l.ident&&(t.dependencies.set(l.name,l),u.add(l));if(o.check){const r=y(e);if(r)throw new Error(`${r}, after hoisting ${[t,...c,l].map(e=>S(e.locator)).join("→")}:\n${k(e)}`)}}else if(o.debugLevel>=2){c[c.length-1].reasons.set(l.name,f)}if(!d&&g.indexOf(l.locator)<0){const e=E(c[c.length-1],l);s.add(e);for(const t of B(l))a([...c,e],[...g,l.locator],t,u);s.delete(e)}};let c,g=new Set(t.dependencies.values());do{c=g,g=new Set;for(const e of c){if(t.peerNames.has(e.name)||e.locator===t.locator)continue;const r=E(t,e);s.add(r);for(const n of B(e))n.locator!==e.locator&&a([t,r],[t.locator,e.locator],n,g);s.delete(r)}}while(g.size>0)},y=e=>{const t=[],r=new Set,n=new Set,i=(e,A)=>{if(r.has(e))return;if(r.add(e),n.has(e))return;const o=new Map(A);for(const t of e.dependencies.values())e.peerNames.has(t.name)||o.set(t.name,t);for(const r of e.originalDependencies.values()){const i=o.get(r.name),s=()=>""+Array.from(n).concat([e]).map(e=>S(e.locator)).join("→");if(e.peerNames.has(r.name)){const e=A.get(r.name);e!==i&&t.push(`${s()} - broken peer promise: expected ${i.locator} but found ${e?e.locator:e}`)}else i?i.ident!==r.ident&&t.push(`${s()} - broken require promise for ${r.name}: expected ${r.ident}, but found: ${i.ident}`):t.push(`${s()} - broken require promise: no required dependency ${r.locator} found`)}n.add(e);for(const t of e.dependencies.values())e.peerNames.has(t.name)||i(t,o);n.delete(e)};return i(e,e.dependencies),t.join("\n")},Q=e=>{const{identName:t,name:r,reference:n,peerNames:i}=e,A={name:r,references:new Set([n]),locator:C(t,n),ident:d(t,n),dependencies:new Map,originalDependencies:new Map,hoistedDependencies:new Map,peerNames:new Set(i),reasons:new Map,decoupled:!0},o=new Map([[e,A]]),s=(e,t)=>{let r=o.get(e);const n=!!r;if(!r){const{name:t,identName:n,reference:i,peerNames:A}=e;r={name:t,references:new Set([i]),locator:C(n,i),ident:d(n,i),dependencies:new Map,originalDependencies:new Map,hoistedDependencies:new Map,peerNames:new Set(A),reasons:new Map,decoupled:!0},o.set(e,r)}if(t.dependencies.set(e.name,r),t.originalDependencies.set(e.name,r),n){const e=new Set,t=r=>{if(!e.has(r)){e.add(r),r.decoupled=!1;for(const e of r.dependencies.values())r.peerNames.has(e.name)||t(e)}};t(r)}else for(const t of e.dependencies)s(t,r)};for(const t of e.dependencies)s(t,A);return A},v=e=>e.substring(0,e.indexOf("@",1)),b=e=>{const t={name:e.name,identName:v(e.locator),references:new Set(e.references),dependencies:new Set},r=new Set([e]),n=(e,t,i)=>{const A=r.has(e);let o;if(t===e)o=i;else{const{name:t,references:r,locator:n}=e;o={name:t,identName:v(n),references:r,dependencies:new Set}}if(i.dependencies.add(o),!A){r.add(e);for(const t of e.dependencies.values())e.peerNames.has(t.name)||n(t,e,o);r.delete(e)}};for(const r of e.dependencies.values())n(r,e,t);return t},D=e=>{const t=new Map,r=new Set([e]),n=(e,i)=>{const A=!!r.has(i),o=(e=>`${e.name}@${e.ident}`)(i);let s=t.get(o);if(s||(s=new Set,t.set(o,s)),s.add(e.ident),!A){r.add(i);for(const e of i.dependencies.values())i.peerNames.has(e.name)||n(i,e)}};for(const t of e.dependencies.values())e.peerNames.has(t.name)||n(e,t);return t},S=e=>{const t=e.indexOf("@",1),r=e.substring(0,t),n=e.substring(t+1);if("workspace:."===n)return".";if(n){const e=(n.indexOf("#")>0?n.split("#")[1]:n).replace("npm:","");return n.startsWith("virtual")?`v:${r}@${e}`:`${r}@${e}`}return""+r},k=e=>{let t=0;const r=(e,n,i="")=>{if(t>5e4||n.has(e))return"";t++;const A=Array.from(e.dependencies.values());let o="";n.add(e);for(let t=0;t":"")+(c!==s.name?`a:${s.name}:`:"")+S(s.locator)+(a?" "+a:"")}\n`,o+=r(s,n,`${i}${t5e4?"\nTree is too large, part of the tree has been dunped\n":"")};var M;!function(e){e.HARD="HARD",e.SOFT="SOFT"}(M||(M={}));const F=(e,t)=>{const r=R(e,t),n=I(r);return K(e,n,t)},N=e=>`${e.name}@${e.reference}`;const R=(e,t)=>{const r=e.getDependencyTreeRoots(),n=e.getPackageInformation(e.topLevel);if(null===n)throw new Error("Assertion failed: Expected the top-level package to have been registered");const A=e.findPackageLocator(n.packageLocation);if(null===A)throw new Error("Assertion failed: Expected the top-level package to have a physical locator");for(const e of r)e.name===A.name&&e.reference===A.reference||n.packageDependencies.set(e.name+"$wsroot$",e.reference);const o={name:A.name,identName:A.name,reference:A.reference,peerNames:n.packagePeers,dependencies:new Set},s=new Map,a=(r,n,c,g,l)=>{const u=((e,t)=>`${N(t)}:${e}`)(r,c);let h=s.get(u);const f=!!h;f||c.name!==A.name||c.reference!==A.reference||(h=o,s.set(u,o)),h||(h={name:r,identName:c.name,reference:c.reference,dependencies:new Set,peerNames:n.packagePeers},s.set(u,h)),g.dependencies.add(h);const p=t.pnpifyFs||!function(e){let t=i.structUtils.parseDescriptor(e);return i.structUtils.isVirtualDescriptor(t)&&(t=i.structUtils.devirtualizeDescriptor(t)),t.range.startsWith("portal:")}(u);if(!f&&p)for(const[t,r]of n.packageDependencies)if(null!==r&&!h.peerNames.has(t)){const i=e.getLocator(t,r),A=e.getLocator(t.replace("$wsroot$",""),r),o=e.getPackageInformation(A);if(null===o)throw new Error("Assertion failed: Expected the package to have been registered");a(t,o,i,h,n)}};return a(A.name,n,A,o,n),o};const K=(e,t,r)=>{const A=new Map,o=(t,i)=>{const{linkType:A,target:o}=function(e,t,r){const i=t.getLocator(e.name.replace("$wsroot$",""),e.reference),A=t.getPackageInformation(i);if(null===A)throw new Error("Assertion failed: Expected the package to be registered");let o,s;if(r.pnpifyFs)s=n.cS.toPortablePath(A.packageLocation),o=M.SOFT;else{const r=t.resolveVirtual&&e.reference&&e.reference.startsWith("virtual:")?t.resolveVirtual(A.packageLocation):A.packageLocation;s=n.cS.toPortablePath(r||A.packageLocation),o=A.linkType}return{linkType:o,target:s}}(t,e,r);return{locator:N(t),target:o,linkType:A,aliases:i}},s=e=>{const[t,r]=e.split("/");return r?{scope:(0,n.Zu)(t),name:(0,n.Zu)(r)}:{scope:null,name:(0,n.Zu)(t)}},a=new Set,c=(e,t)=>{if(!a.has(e)){a.add(e);for(const r of e.dependencies){if(r===e)continue;const a=Array.from(r.references).sort(),g={name:r.identName,reference:a[0]},{name:l,scope:u}=s(r.name),h=u?[u,l]:[l],f=n.y1.join(t,"node_modules"),p=n.y1.join(f,...h),C=o(g,a.slice(1));if(!r.name.endsWith("$wsroot$")){const e=A.get(p);if(e){if(e.dirList)throw new Error(`Assertion failed: ${p} cannot merge dir node with leaf node`);{const t=i.structUtils.parseLocator(e.locator),r=i.structUtils.parseLocator(C.locator);if(e.linkType!==C.linkType)throw new Error(`Assertion failed: ${p} cannot merge nodes with different link types`);if(t.identHash!==r.identHash)throw new Error(`Assertion failed: ${p} cannot merge nodes with different idents ${i.structUtils.stringifyLocator(t)} and ${i.structUtils.stringifyLocator(r)}`);C.aliases=[...C.aliases,...e.aliases,i.structUtils.parseLocator(e.locator).reference]}}A.set(p,C);const t=p.split("/"),r=t.indexOf("node_modules");let o=t.length-1;for(;r>=0&&o>r;){const e=n.cS.toPortablePath(t.slice(0,o).join(n.y1.sep)),r=(0,n.Zu)(t[o]),i=A.get(e);if(i){if(i.dirList){if(i.dirList.has(r))break;i.dirList.add(r)}}else A.set(e,{dirList:new Set([r])});o--}}c(r,C.linkType===M.SOFT?C.target:p)}}},g=o({name:t.name,reference:Array.from(t.references)[0]},[]),l=g.target;return A.set(l,g),c(t,l),A};var x=r(88563),L=r(58069),P=r.n(L),U=r(93103),T=r(35747),O=r.n(T);const j="node_modules";class Y extends p.AbstractPnpInstaller{constructor(){super(...arguments),this.manifestCache=new Map}async getBuildScripts(e,t,r){return[]}async transformPackage(e,t,r,n,i){return r.packageFs}async finalizeInstallWithPnp(e){if("node-modules"!==this.opts.project.configuration.get("nodeLinker"))return;const t=new g.p({baseFs:new l.A({libzip:await(0,h.getLibzipPromise)(),maxOpenFiles:80,readOnlyArchives:!0})});let r=await G(this.opts.project);if(null===r){const e=this.opts.project.configuration.get("bstatePath");await u.xfs.existsPromise(e)&&await u.xfs.unlinkPromise(e),r={locatorMap:new Map,binSymlinks:new Map,locationTree:new Map}}const A=(0,x.oC)(e,this.opts.project.cwd,t),s=(e=>{const t=new Map;for(const[r,n]of e.entries())if(!n.dirList){let e=t.get(n.locator);e||(e={target:n.target,linkType:n.linkType,locations:[],aliases:n.aliases},t.set(n.locator,e)),e.locations.push(r)}for(const e of t.values())e.locations=e.locations.sort((e,t)=>{const r=e.split(n.y1.delimiter).length,i=t.split(n.y1.delimiter).length;return r!==i?i-r:t.localeCompare(e)});return t})(F(A,{pnpifyFs:!1}));await async function(e,t,{baseFs:r,project:i,report:A,loadManifest:s}){const c=n.y1.join(i.cwd,j),{locationTree:g,binSymlinks:l}=function(e,t){const r=new Map([...e]),i=new Map([...t]);for(const[t,r]of e){const e=n.y1.join(t,j);if(!u.xfs.existsSync(e)){r.children.delete(j);for(const t of i.keys())null!==n.y1.contains(e,t)&&i.delete(t)}}return{locationTree:r,binSymlinks:i}}(e.locationTree,e.binSymlinks),h=J(t,{skipPrefix:i.cwd}),f=[],p=async({srcDir:e,dstDir:t,linkType:i})=>{const A=(async()=>{try{i===a.U.SOFT?(await u.xfs.mkdirPromise(n.y1.dirname(t),{recursive:!0}),await q(n.y1.resolve(e),t)):await z(t,e,{baseFs:r})}catch(r){throw r.message=`While persisting ${e} -> ${t} ${r.message}`,r}finally{m.tick()}})().then(()=>f.splice(f.indexOf(A),1));f.push(A),f.length>4&&await Promise.race(f)},C=async(e,t,r)=>{const i=(async()=>{const i=async(e,t,r)=>{try{r&&r.innerLoop||await u.xfs.mkdirPromise(t,{recursive:!0});const A=await u.xfs.readdirPromise(e,{withFileTypes:!0});for(const o of A){if(!(r&&r.innerLoop||".bin"!==o.name))continue;const A=n.y1.join(e,o.name),s=n.y1.join(t,o.name);o.isDirectory()?(o.name!==j||r&&r.innerLoop)&&(await u.xfs.mkdirPromise(s,{recursive:!0}),await i(A,s,{innerLoop:!0})):await u.xfs.copyFilePromise(A,s,O().constants.COPYFILE_FICLONE)}}catch(n){throw r&&r.innerLoop||(n.message=`While cloning ${e} -> ${t} ${n.message}`),n}finally{r&&r.innerLoop||m.tick()}};await i(e,t,r)})().then(()=>f.splice(f.indexOf(i),1));f.push(i),f.length>4&&await Promise.race(f)},d=async(e,t,r)=>{if(r)for(const[i,A]of t.children){const t=r.children.get(i);await d(n.y1.join(e,i),A,t)}else t.children.has(j)&&await _(n.y1.join(e,j),{contentsOnly:!1}),await _(e,{contentsOnly:e===c})};for(const[e,t]of g){const r=h.get(e);for(const[i,A]of t.children){if("."===i)continue;const t=r?r.children.get(i):r;await d(n.y1.join(e,i),A,t)}}const I=async(e,t,r)=>{if(r){V(t.locator,r.locator)||await _(e,{contentsOnly:t.linkType===a.U.HARD});for(const[i,A]of t.children){const t=r.children.get(i);await I(n.y1.join(e,i),A,t)}}else t.children.has(j)&&await _(n.y1.join(e,j),{contentsOnly:!0}),await _(e,{contentsOnly:t.linkType===a.U.HARD})};for(const[e,t]of h){const r=g.get(e);for(const[i,A]of t.children){if("."===i)continue;const t=r?r.children.get(i):r;await I(n.y1.join(e,i),A,t)}}const E=[];for(const[r,{locations:A}]of e.locatorMap.entries())for(const e of A){const{locationRoot:A,segments:o}=H(e,{skipPrefix:i.cwd});let s=h.get(A),a=A;if(s){for(const e of o)if(a=n.y1.join(a,e),s=s.children.get(e),!s)break;if(s&&!V(s.locator,r)){const e=t.get(s.locator),r=e.target,n=a,i=e.linkType;r!==n&&E.push({srcDir:r,dstDir:n,linkType:i})}}}for(const[e,{locations:r}]of t.entries())for(const A of r){const{locationRoot:r,segments:o}=H(A,{skipPrefix:i.cwd});let s=g.get(r),a=h.get(r),c=r;const l=t.get(e),u=l.target,f=A;if(u===f)continue;const p=l.linkType;for(const e of o)a=a.children.get(e);if(s){for(const e of o)if(c=n.y1.join(c,e),s=s.children.get(e),!s){E.push({srcDir:u,dstDir:f,linkType:p});break}}else E.push({srcDir:u,dstDir:f,linkType:p})}const m=o.yG.progressViaCounter(E.length),B=A.reportProgress(m);try{const e=new Map;for(const t of E)t.linkType!==a.U.SOFT&&e.has(t.srcDir)||(e.set(t.srcDir,t.dstDir),await p({...t}));await Promise.all(f),f.length=0;for(const t of E){const r=e.get(t.srcDir);t.linkType!==a.U.SOFT&&t.dstDir!==r&&await C(r,t.dstDir)}await Promise.all(f),await u.xfs.mkdirPromise(c,{recursive:!0});const r=await async function(e,t,r,{loadManifest:i}){const A=new Map;for(const[t,{locations:r}]of e){const e=W(t)?null:await i(r[0]),o=new Map;if(e)for(const[t,i]of e.bin){const e=n.y1.join(r[0],i);""!==i&&u.xfs.existsSync(e)&&o.set(t,i)}A.set(t,o)}const o=new Map,s=(e,t,i)=>{const a=new Map,c=n.y1.contains(r,e);if(i.locator&&null!==c){const t=A.get(i.locator);for(const[r,i]of t){const t=n.y1.join(e,n.cS.toPortablePath(i));a.set((0,n.Zu)(r),t)}for(const[t,r]of i.children){const i=n.y1.join(e,t),A=s(i,i,r);A.size>0&&o.set(e,new Map([...o.get(e)||new Map,...A]))}}else for(const[r,A]of i.children){const i=s(n.y1.join(e,r),t,A);for(const[e,t]of i)a.set(e,t)}return a};for(const[e,r]of t){const t=s(e,e,r);t.size>0&&o.set(e,new Map([...o.get(e)||new Map,...t]))}return o}(t,h,i.cwd,{loadManifest:s});await async function(e,t){for(const r of e.keys())if(!t.has(r)){const e=n.y1.join(r,j,".bin");await u.xfs.removePromise(e)}for(const[r,i]of t){const t=n.y1.join(r,j,".bin"),A=e.get(r)||new Map;await u.xfs.mkdirPromise(t,{recursive:!0});for(const e of A.keys())i.has(e)||(await u.xfs.removePromise(n.y1.join(t,e)),"win32"===process.platform&&await u.xfs.removePromise(n.y1.join(t,(0,n.Zu)(e+".cmd"))));for(const[e,r]of i){const i=A.get(e),o=n.y1.join(t,e);i!==r&&("win32"===process.platform?await P()(n.cS.fromPortablePath(r),n.cS.fromPortablePath(o),{createPwshFile:!1}):(await u.xfs.removePromise(o),await q(r,o),await u.xfs.chmodPromise(r,493)))}}}(l,r),await async function(e,t,r){let i="";i+="# Warning: This file is automatically generated. Removing it is fine, but will\n",i+="# cause your node_modules installation to become invalidated.\n",i+="\n",i+="__metadata:\n",i+=" version: 1\n";const A=Array.from(t.keys()).sort();for(const o of A){const A=t.get(o);i+="\n",i+=JSON.stringify(o)+":\n",i+=" locations:\n";let s=!1;for(const t of A.locations){const r=n.y1.contains(e.cwd,t);if(null===r)throw new Error(`Assertion failed: Expected the path to be within the project (${t})`);i+=` - ${JSON.stringify(r)}\n`,t===e.cwd&&(s=!0)}if(A.aliases.length>0){i+=" aliases:\n";for(const e of A.aliases)i+=` - ${JSON.stringify(e)}\n`}if(s&&r.size>0){i+=" bin:\n";for(const[t,A]of r){const r=n.y1.contains(e.cwd,t);if(null===r)throw new Error(`Assertion failed: Expected the path to be within the project (${t})`);i+=` ${JSON.stringify(r)}:\n`;for(const[e,r]of A){const A=n.y1.relative(n.y1.join(t,j),r);i+=` ${JSON.stringify(e)}: ${JSON.stringify(A)}\n`}}}}const o=e.cwd,s=n.y1.join(o,j,".yarn-state.yml");await u.xfs.changeFilePromise(s,i,{automaticNewlines:!0})}(i,t,r)}finally{B.stop()}}(r,s,{baseFs:t,project:this.opts.project,report:this.opts.report,loadManifest:this.cachedManifestLoad.bind(this)});const f=[];for(const[e,t]of s.entries()){if(W(e))continue;const r=i.structUtils.parseLocator(e),o={name:i.structUtils.stringifyIdent(r),reference:r.reference};if(null===A.getPackageInformation(o))throw new Error(`Assertion failed: Expected the package to be registered (${i.structUtils.prettyLocator(this.opts.project.configuration,r)})`);const s=n.cS.toPortablePath(t.locations[0]),g=await this.cachedManifestLoad(s),l=await this.getSourceBuildScripts(s,g);l.length>0&&!this.opts.project.configuration.get("enableScripts")&&(this.opts.report.reportWarningOnce(c.b.DISABLED_BUILD_SCRIPTS,i.structUtils.prettyLocator(this.opts.project.configuration,r)+" lists build scripts, but all build scripts have been disabled."),l.length=0),l.length>0&&t.linkType!==a.U.HARD&&!this.opts.project.tryWorkspaceByLocator(r)&&(this.opts.report.reportWarningOnce(c.b.SOFT_LINK_BUILD,i.structUtils.prettyLocator(this.opts.project.configuration,r)+" lists build scripts, but is referenced through a soft link. Soft links don't support build scripts, so they'll be ignored."),l.length=0);const u=this.opts.project.getDependencyMeta(r,g.version);l.length>0&&u&&!1===u.built&&(this.opts.report.reportInfoOnce(c.b.BUILD_DISABLED,i.structUtils.prettyLocator(this.opts.project.configuration,r)+" lists build scripts, but its build has been explicitly disabled through configuration."),l.length=0),l.length>0&&f.push({buildLocations:t.locations,locatorHash:r.locatorHash,buildDirective:l})}return f}async cachedManifestLoad(e){let t=this.manifestCache.get(e);if(t)return t;try{t=await A.G.find(e)}catch(t){throw t.message=`While loading ${e}: ${t.message}`,t}return this.manifestCache.set(e,t),t}async getSourceBuildScripts(e,t){const r=[],{scripts:i}=t;for(const e of["preinstall","install","postinstall"])i.has(e)&&r.push([s.k.SCRIPT,e]);const A=n.y1.resolve(e,"binding.gyp");return!i.has("install")&&u.xfs.existsSync(A)&&r.push([s.k.SHELLCODE,"node-gyp rebuild"]),r}}async function G(e,{unrollAliases:t=!1}={}){const r=e.cwd,A=n.y1.join(r,j,".yarn-state.yml");if(!u.xfs.existsSync(A))return null;const o=(0,f.parseSyml)(await u.xfs.readFilePromise(A,"utf8"));if(o.__metadata.version>1)return null;const s=new Map,c=new Map;delete o.__metadata;for(const[e,A]of Object.entries(o)){const o=A.locations.map(e=>n.y1.join(r,e)),g=A.bin;if(g)for(const[e,t]of Object.entries(g)){const A=n.y1.join(r,n.cS.toPortablePath(e)),o=i.miscUtils.getMapWithDefault(c,A);for(const[e,r]of Object.entries(t))o.set((0,n.Zu)(e),n.cS.toPortablePath([A,j,r].join(n.y1.delimiter)))}if(s.set(e,{target:n.LZ.dot,linkType:a.U.HARD,locations:o,aliases:A.aliases||[]}),t&&A.aliases)for(const t of A.aliases){const{scope:r,name:A}=i.structUtils.parseLocator(e),c=i.structUtils.makeLocator(i.structUtils.makeIdent(r,A),t),g=i.structUtils.stringifyLocator(c);s.set(g,{target:n.LZ.dot,linkType:a.U.HARD,locations:o,aliases:[]})}}return{locatorMap:s,binSymlinks:c,locationTree:J(s,{skipPrefix:e.cwd})}}const _=async(e,t)=>{if(e.split(n.y1.sep).indexOf(j)<0)throw new Error("Assertion failed: trying to remove dir that doesn't contain node_modules: "+e);try{if(!t.innerLoop){if((await u.xfs.lstatPromise(e)).isSymbolicLink())return void await u.xfs.unlinkPromise(e)}const r=await u.xfs.readdirPromise(e,{withFileTypes:!0});for(const i of r){const r=n.y1.join(e,(0,n.Zu)(i.name));i.isDirectory()?(i.name!==j||t&&t.innerLoop)&&await _(r,{innerLoop:!0,contentsOnly:!1}):await u.xfs.unlinkPromise(r)}t.contentsOnly||await u.xfs.rmdirPromise(e)}catch(e){if("ENOENT"!==e.code&&"ENOTEMPTY"!==e.code)throw e}},H=(e,{skipPrefix:t})=>{const r=n.y1.contains(t,e);if(null===r)throw new Error(`Assertion failed: Cannot process a path that isn't part of the requested prefix (${e} isn't within ${t})`);const i=r.split(n.y1.sep).filter(e=>""!==e),A=i.indexOf(j),o=i.slice(0,A).join(n.y1.sep);return{locationRoot:n.y1.join(t,o),segments:i.slice(A)}},J=(e,{skipPrefix:t})=>{const r=new Map;if(null===e)return r;const A=()=>({children:new Map,linkType:a.U.HARD});for(const[o,s]of e.entries()){if(s.linkType===a.U.SOFT){if(null!==n.y1.contains(t,s.target)){const e=i.miscUtils.getFactoryWithDefault(r,s.target,A);e.locator=o,e.linkType=s.linkType}}for(const e of s.locations){const{locationRoot:n,segments:a}=H(e,{skipPrefix:t});let c=i.miscUtils.getFactoryWithDefault(r,n,A);for(let e=0;e{let r;try{"win32"===process.platform&&(r=u.xfs.lstatSync(e))}catch(e){}"win32"!=process.platform||r&&!r.isDirectory()?u.xfs.symlinkPromise(n.y1.relative(n.y1.dirname(t),e),t):u.xfs.symlinkPromise(e,t,"junction")},z=async(e,t,{baseFs:r,innerLoop:i})=>{await u.xfs.mkdirPromise(e,{recursive:!0});const A=await r.readdirPromise(t,{withFileTypes:!0}),o=async(e,t,i)=>{if(i.isFile()){const n=await r.lstatPromise(t);await r.copyFilePromise(t,e);const i=511&n.mode;420!==i&&await u.xfs.chmodPromise(e,i)}else{if(!i.isSymbolicLink())throw new Error(`Unsupported file type (file: ${t}, mode: 0o${await u.xfs.statSync(t).mode.toString(8).padStart(6,"0")})`);{const i=await r.readlinkPromise(t);await q(n.y1.resolve(n.y1.dirname(e),i),e)}}};for(const s of A){const A=n.y1.join(t,(0,n.Zu)(s.name)),a=n.y1.join(e,(0,n.Zu)(s.name));s.isDirectory()?(s.name!==j||i)&&await z(a,A,{baseFs:r,innerLoop:!0}):await o(a,A,s)}};function W(e){let t=i.structUtils.parseDescriptor(e);return i.structUtils.isVirtualDescriptor(t)&&(t=i.structUtils.devirtualizeDescriptor(t)),t.range.startsWith("link:")}const V=(e,t)=>{if(!e||!t)return e===t;let r=i.structUtils.parseLocator(e);i.structUtils.isVirtualLocator(r)&&(r=i.structUtils.devirtualizeLocator(r));let n=i.structUtils.parseLocator(t);return i.structUtils.isVirtualLocator(n)&&(n=i.structUtils.devirtualizeLocator(n)),i.structUtils.areLocatorsEqual(r,n)};class X extends p.PnpLinker{constructor(){super(...arguments),this.mode="loose"}makeInstaller(e){return new Z(e)}}class Z extends p.PnpInstaller{constructor(){super(...arguments),this.mode="loose"}async finalizeInstallWithPnp(e){if(this.opts.project.configuration.get("pnpMode")!==this.mode)return;const t=new g.p({baseFs:new l.A({libzip:await(0,h.getLibzipPromise)(),maxOpenFiles:80,readOnlyArchives:!0})}),r=(0,x.oC)(e,this.opts.project.cwd,t),A=F(r,{pnpifyFs:!1}),o=new Map;e.fallbackPool=o;const s=(e,t)=>{const r=i.structUtils.parseLocator(t.locator),n=i.structUtils.stringifyIdent(r);n===e?o.set(e,r.reference):o.set(e,[n,r.reference])},a=n.y1.join(this.opts.project.cwd,n.QS.nodeModules),c=A.get(a);if(void 0===c)throw new Error("Assertion failed: Expected a root junction point");if("target"in c)throw new Error("Assertion failed: Expected the root junction point to be a directory");for(const e of c.dirList){const t=n.y1.join(a,e),r=A.get(t);if(void 0===r)throw new Error("Assertion failed: Expected the child to have been registered");if("target"in r)s(e,r);else for(const i of r.dirList){const r=n.y1.join(t,i),o=A.get(r);if(void 0===o)throw new Error("Assertion failed: Expected the subchild to have been registered");if(!("target"in o))throw new Error("Assertion failed: Expected the leaf junction to be a package");s(`${e}/${i}`,o)}}return super.finalizeInstallWithPnp(e)}}const $=e=>n.y1.join(e.cwd,".pnp.js"),ee={linkers:[class{supportsPackage(e,t){return"node-modules"===t.project.configuration.get("nodeLinker")}async findPackageLocation(e,t){const r=t.project.tryWorkspaceByLocator(e);if(r)return r.cwd;const n=await G(t.project,{unrollAliases:!0});if(null===n)throw new U.UsageError("Couldn't find the node_modules state file - running an install might help (findPackageLocation)");const A=n.locatorMap.get(i.structUtils.stringifyLocator(e));if(!A)throw new U.UsageError(`Couldn't find ${i.structUtils.prettyLocator(t.project.configuration,e)} in the currently installed node_modules map - running an install might help`);return A.locations[0]}async findPackageLocator(e,t){const r=await G(t.project,{unrollAliases:!0});if(null===r)return null;const{locationRoot:A,segments:o}=H(n.y1.resolve(e),{skipPrefix:t.project.cwd});let s=r.locationTree.get(A);if(!s)return null;let a=s.locator;for(const e of o){if(s=s.children.get(e),!s)break;a=s.locator||a}return i.structUtils.parseLocator(a)}makeInstaller(e){return new Y({...e,skipIncompatiblePackageLinking:!0})}},X]}},94573:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>R});var n=r(27122),i=r(36370),A=r(95397),o=r(40376),s=r(5624),a=r(35691),c=r(15815),g=r(92659),l=r(86717),u=r(93103),h=r(85622),f=r.n(h),p=r(53887),C=r.n(p),d=r(31669);class I extends A.BaseCommand{constructor(){super(...arguments),this.json=!1}async execute(){const e=await n.VK.find(this.context.cwd,this.context.plugins),{project:t}=await o.I.find(e,this.context.cwd),r=void 0!==this.fields?new Set(["name",...this.fields.split(/\s*,\s*/)]):null,i=[];let A=!1;const h=await c.Pk.start({configuration:e,includeFooter:!1,json:this.json,stdout:this.context.stdout},async n=>{for(const o of this.packages){let c;if("."===o){const e=t.topLevelWorkspace;if(!e.manifest.name)throw new u.UsageError("Missing 'name' field in "+f().join(e.cwd,"package.json"));c=s.structUtils.makeDescriptor(e.manifest.name,"unknown")}else c=s.structUtils.parseDescriptor(o);const h=l.npmHttpUtils.getIdentUrl(c);let p;try{p=E(await l.npmHttpUtils.get(h,{configuration:e,ident:c,json:!0}))}catch(e){throw"HTTPError"!==e.name?e:404===e.response.statusCode?new a.lk(g.b.EXCEPTION,"Package not found"):new a.lk(g.b.EXCEPTION,e.toString())}const d=Object.keys(p.versions).sort(C().compareLoose);let I=p["dist-tags"].latest||d[d.length-1];if(C().validRange(c.range)){const t=C().maxSatisfying(d,c.range);null!==t?I=t:(n.reportWarning(g.b.UNNAMED,`Unmet range ${s.structUtils.prettyRange(e,c.range)}; falling back to the latest version`),A=!0)}else"unknown"!==c.range&&(n.reportWarning(g.b.UNNAMED,`Invalid range ${s.structUtils.prettyRange(e,c.range)}; falling back to the latest version`),A=!0);const m=p.versions[I],B={...p,...m,version:I,versions:d};let w;if(null!==r){w={};for(const t of r){const r=B[t];void 0!==r?w[t]=r:(n.reportWarning(g.b.EXCEPTION,`The '${t}' field doesn't exist inside ${s.structUtils.prettyIdent(e,c)}'s informations`),A=!0)}}else this.json||(delete B.dist,delete B.readme,delete B.users),w=B;n.reportJson(w),this.json||i.push(w)}});d.inspect.styles.name="cyan";for(const e of i)(e!==i[0]||A)&&this.context.stdout.write("\n"),this.context.stdout.write((0,d.inspect)(e,{depth:1/0,colors:!0,compact:!1})+"\n");return h.exitCode()}}function E(e){if(Array.isArray(e)){const t=[];for(let r of e)r=E(r),r&&t.push(r);return t}if("object"==typeof e&&null!==e){const t={};for(const r of Object.keys(e)){if(r.startsWith("_"))continue;const n=E(e[r]);n&&(t[r]=n)}return t}return e||null}I.usage=u.Command.Usage({description:"show information about a package",details:"\n This command will fetch information about a package from the npm registry, and prints it in a tree format.\n\n The package does not have to be installed locally, but needs to have been published (in particular, local changes will be ignored even for workspaces).\n\n Append `@` to the package argument to provide information specific to the latest version that satisfies the range. If the range is invalid or if there is no version satisfying the range, the command will print a warning and fall back to the latest version.\n\n If the `-f,--fields` option is set, it's a comma-separated list of fields which will be used to only display part of the package informations.\n\n By default, this command won't return the `dist`, `readme`, and `users` fields, since they are often very long. To explicitly request those fields, explicitly list them with the `--fields` flag or request the output in JSON mode.\n\n If the `--json` flag is set the output will follow a JSON-stream output also known as NDJSON (https://github.com/ndjson/ndjson-spec).\n ",examples:[["Show all available information about react (except the `dist`, `readme`, and `users` fields)","yarn npm info react"],["Show all available information about react as valid JSON (including the `dist`, `readme`, and `users` fields)","yarn npm info react --json"],["Show all available information about react 16.12.0","yarn npm info react@16.12.0"],["Show the description of react","yarn npm info react --fields description"],["Show all available versions of react","yarn npm info react --fields versions"],["Show the readme of react","yarn npm info react --fields readme"],["Show a few fields of react","yarn npm info react --fields homepage,repository"]]}),(0,i.gn)([u.Command.Rest()],I.prototype,"packages",void 0),(0,i.gn)([u.Command.String("-f,--fields")],I.prototype,"fields",void 0),(0,i.gn)([u.Command.Boolean("--json")],I.prototype,"json",void 0),(0,i.gn)([u.Command.Path("npm","info")],I.prototype,"execute",null);var m=r(61899);class B extends A.BaseCommand{constructor(){super(...arguments),this.publish=!1}async execute(){const e=await n.VK.find(this.context.cwd,this.context.plugins),t=await w({configuration:e,cwd:this.context.cwd,publish:this.publish,scope:this.scope});return(await c.Pk.start({configuration:e,stdout:this.context.stdout},async r=>{const i=await async function({registry:e,report:t,stdin:r,stdout:n}){if(process.env.TEST_ENV)return{name:process.env.TEST_NPM_USER||"",password:process.env.TEST_NPM_PASSWORD||""};t.reportInfo(g.b.UNNAMED,"Logging in to "+e);let i=!1;e.match(/^https:\/\/npm\.pkg\.github\.com(\/|$)/)&&(t.reportInfo(g.b.UNNAMED,"You seem to be using the GitHub Package Registry. Tokens must be generated with the 'repo', 'write:packages', and 'read:packages' permissions."),i=!0);t.reportSeparator();const{username:A,password:o}=await(0,m.prompt)([{type:"input",name:"username",message:"Username:",required:!0,onCancel:()=>process.exit(130),stdin:r,stdout:n},{type:"password",name:"password",message:i?"Token:":"Password:",required:!0,onCancel:()=>process.exit(130),stdin:r,stdout:n}]);return t.reportSeparator(),{name:A,password:o}}({registry:t,report:r,stdin:this.context.stdin,stdout:this.context.stdout}),A="/-/user/org.couchdb.user:"+encodeURIComponent(i.name),o=await l.npmHttpUtils.put(A,i,{attemptedAs:i.name,configuration:e,registry:t,json:!0,authType:l.npmHttpUtils.AuthType.NO_AUTH});return await async function(e,t,{configuration:r,scope:i}){const A=e=>r=>{const n=s.miscUtils.isIndexableObject(r)?r:{},i=n[e],A=s.miscUtils.isIndexableObject(i)?i:{};return{...n,[e]:{...A,npmAuthToken:t}}},o=i?{npmScopes:A(i)}:{npmRegistries:A(e)};return await n.VK.updateHomeConfiguration(o)}(t,o.token,{configuration:e,scope:this.scope}),r.reportInfo(g.b.UNNAMED,"Successfully logged in")})).exitCode()}}async function w({scope:e,publish:t,configuration:r,cwd:n}){return e&&t?l.npmConfigUtils.getScopeRegistry(e,{configuration:r,type:l.npmConfigUtils.RegistryType.PUBLISH_REGISTRY}):e?l.npmConfigUtils.getScopeRegistry(e,{configuration:r}):t?l.npmConfigUtils.getPublishRegistry((await(0,A.openWorkspace)(r,n)).manifest,{configuration:r}):l.npmConfigUtils.getDefaultRegistry({configuration:r})}B.usage=u.Command.Usage({category:"Npm-related commands",description:"store new login info to access the npm registry",details:"\n This command will ask you for your username, password, and 2FA One-Time-Password (when it applies). It will then modify your local configuration (in your home folder, never in the project itself) to reference the new tokens thus generated.\n\n Adding the `-s,--scope` flag will cause the authentication to be done against whatever registry is configured for the associated scope (see also `npmScopes`).\n\n Adding the `--publish` flag will cause the authentication to be done against the registry used when publishing the package (see also `publishConfig.registry` and `npmPublishRegistry`).\n ",examples:[["Login to the default registry","yarn npm login"],["Login to the registry linked to the @my-scope registry","yarn npm login --scope my-scope"],["Login to the publish registry for the current package","yarn npm login --publish"]]}),(0,i.gn)([u.Command.String("-s,--scope")],B.prototype,"scope",void 0),(0,i.gn)([u.Command.Boolean("--publish")],B.prototype,"publish",void 0),(0,i.gn)([u.Command.Path("npm","login")],B.prototype,"execute",null);const y=new Set(["npmAuthIdent","npmAuthToken"]);class Q extends A.BaseCommand{constructor(){super(...arguments),this.publish=!1,this.all=!1}async execute(){const e=await n.VK.find(this.context.cwd,this.context.plugins),t=async()=>{var t;const r=await w({configuration:e,cwd:this.context.cwd,publish:this.publish,scope:this.scope}),i=await n.VK.find(this.context.cwd,this.context.plugins),A=s.structUtils.makeIdent(null!==(t=this.scope)&&void 0!==t?t:null,"pkg");return!l.npmConfigUtils.getAuthConfiguration(r,{configuration:i,ident:A}).get("npmAuthToken")};return(await c.Pk.start({configuration:e,stdout:this.context.stdout},async r=>{if(this.all&&(await async function(){const e=e=>{let t=!1;const r=s.miscUtils.isIndexableObject(e)?{...e}:{};r.npmAuthToken&&(delete r.npmAuthToken,t=!0);for(const e of Object.keys(r))v(r,e)&&(t=!0);if(0!==Object.keys(r).length)return t?r:e};return await n.VK.updateHomeConfiguration({npmRegistries:e,npmScopes:e})}(),r.reportInfo(g.b.UNNAMED,"Successfully logged out from everything")),this.scope)return await b("npmScopes",this.scope),void(await t()?r.reportInfo(g.b.UNNAMED,"Successfully logged out from "+this.scope):r.reportWarning(g.b.UNNAMED,"Scope authentication settings removed, but some other ones settings still apply to it"));const i=await w({configuration:e,cwd:this.context.cwd,publish:this.publish});await b("npmRegistries",i),await t()?r.reportInfo(g.b.UNNAMED,"Successfully logged out from "+i):r.reportWarning(g.b.UNNAMED,"Registry authentication settings removed, but some other ones settings still apply to it")})).exitCode()}}function v(e,t){const r=e[t];if(!s.miscUtils.isIndexableObject(r))return!1;const n=new Set(Object.keys(r));if([...y].every(e=>!n.has(e)))return!1;for(const e of y)n.delete(e);if(0===n.size)return e[t]=void 0,!0;const i={...r};for(const e of y)delete i[e];return e[t]=i,!0}async function b(e,t){return await n.VK.updateHomeConfiguration({[e]:e=>{const r=s.miscUtils.isIndexableObject(e)?e:{};if(!Object.prototype.hasOwnProperty.call(r,t))return e;const n=r[t],i=s.miscUtils.isIndexableObject(n)?n:{},A=new Set(Object.keys(i));if([...y].every(e=>!A.has(e)))return e;for(const e of y)A.delete(e);if(0===A.size){if(1===Object.keys(r).length)return;return{...r,[t]:void 0}}const o={};for(const e of y)o[e]=void 0;return{...r,[t]:{...i,...o}}}})}Q.usage=u.Command.Usage({category:"Npm-related commands",description:"logout of the npm registry",details:"\n This command will log you out by modifying your local configuration (in your home folder, never in the project itself) to delete all credentials linked to a registry.\n\n Adding the `-s,--scope` flag will cause the deletion to be done against whatever registry is configured for the associated scope (see also `npmScopes`).\n\n Adding the `--publish` flag will cause the deletion to be done against the registry used when publishing the package (see also `publishConfig.registry` and `npmPublishRegistry`).\n\n Adding the `-A,--all` flag will cause the deletion to be done against all registries and scopes.\n ",examples:[["Logout of the default registry","yarn npm logout"],["Logout of the @my-scope scope","yarn npm logout --scope my-scope"],["Logout of the publish registry for the current package","yarn npm logout --publish"],["Logout of all registries","yarn npm logout --all"]]}),(0,i.gn)([u.Command.String("-s,--scope")],Q.prototype,"scope",void 0),(0,i.gn)([u.Command.Boolean("--publish")],Q.prototype,"publish",void 0),(0,i.gn)([u.Command.Boolean("-A,--all")],Q.prototype,"all",void 0),(0,i.gn)([u.Command.Path("npm","logout")],Q.prototype,"execute",null);var D=r(5973),S=r(76417),k=r(10129),M=r(78835);class F extends A.BaseCommand{constructor(){super(...arguments),this.tag="latest",this.tolerateRepublish=!1}async execute(){const e=await n.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await o.I.find(e,this.context.cwd);if(!r)throw new A.WorkspaceRequiredError(t.cwd,this.context.cwd);if(r.manifest.private)throw new u.UsageError("Private workspaces cannot be published");if(null===r.manifest.name||null===r.manifest.version)throw new u.UsageError("Workspaces must have valid names and versions to be published on an external registry");await t.restoreInstallState();const i=r.manifest.name,h=r.manifest.version,f=l.npmConfigUtils.getPublishRegistry(r.manifest,{configuration:e});return(await c.Pk.start({configuration:e,stdout:this.context.stdout},async t=>{if(this.tolerateRepublish)try{const r=await l.npmHttpUtils.get(l.npmHttpUtils.getIdentUrl(i),{configuration:e,registry:f,ident:i,json:!0});if(!Object.prototype.hasOwnProperty.call(r,"versions"))throw new a.lk(g.b.REMOTE_INVALID,'Registry returned invalid data for - missing "versions" field');if(Object.prototype.hasOwnProperty.call(r.versions,h))return void t.reportWarning(g.b.UNNAMED,`Registry already knows about version ${h}; skipping.`)}catch(e){if("HTTPError"!==e.name)throw e;if(404!==e.response.statusCode)throw new a.lk(g.b.NETWORK_ERROR,`The remote server answered with HTTP ${e.response.statusCode} ${e.response.statusMessage}`)}await s.scriptUtils.maybeExecuteWorkspaceLifecycleScript(r,"prepublish",{report:t}),await D.packUtils.prepareForPack(r,{report:t},async()=>{const n=await D.packUtils.genPackList(r);for(const e of n)t.reportInfo(null,e);const A=await D.packUtils.genPackStream(r,n),o=await s.miscUtils.bufferStream(A),a=await async function(e,t,{access:r,tag:n,registry:i}){const A=e.project.configuration,o=e.manifest.name,a=e.manifest.version,c=s.structUtils.stringifyIdent(o),g=(0,S.createHash)("sha1").update(t).digest("hex"),l=k.Sd(t).toString();void 0===r&&(r=e.manifest.publishConfig&&"string"==typeof e.manifest.publishConfig.access?e.manifest.publishConfig.access:null!==A.get("npmPublishAccess")?A.get("npmPublishAccess"):o.scope?"restricted":"public");const u=await D.packUtils.genPackageManifest(e),h=`${c}-${a}.tgz`,f=new M.URL(`${c}/-/${h}`,i);return{_id:c,_attachments:{[h]:{content_type:"application/octet-stream",data:t.toString("base64"),length:t.length}},name:c,access:r,"dist-tags":{[n]:a},versions:{[a]:{...u,_id:`${c}@${a}`,name:c,version:a,dist:{shasum:g,integrity:l,tarball:f.toString()}}}}}(r,o,{access:this.access,tag:this.tag,registry:f});try{await l.npmHttpUtils.put(l.npmHttpUtils.getIdentUrl(i),a,{configuration:e,registry:f,ident:i,json:!0})}catch(e){if("HTTPError"!==e.name)throw e;{const r=e.response.body&&e.response.body.error?e.response.body.error:`The remote server answered with HTTP ${e.response.statusCode} ${e.response.statusMessage}`;t.reportError(g.b.NETWORK_ERROR,r)}}}),t.hasErrors()||t.reportInfo(g.b.UNNAMED,"Package archive published")})).exitCode()}}F.usage=u.Command.Usage({category:"Npm-related commands",description:"publish the active workspace to the npm registry",details:'\n This command will pack the active workspace into a fresh archive and upload it to the npm registry.\n\n The package will by default be attached to the `latest` tag on the registry, but this behavior can be overriden by using the `--tag` option.\n\n Note that for legacy reasons scoped packages are by default published with an access set to `restricted` (aka "private packages"). This requires you to register for a paid npm plan. In case you simply wish to publish a public scoped package to the registry (for free), just add the `--access public` flag. This behavior can be enabled by default through the `npmPublishAccess` settings.\n ',examples:[["Publish the active workspace","yarn npm publish"]]}),(0,i.gn)([u.Command.String("--access")],F.prototype,"access",void 0),(0,i.gn)([u.Command.String("--tag")],F.prototype,"tag",void 0),(0,i.gn)([u.Command.Boolean("--tolerate-republish")],F.prototype,"tolerateRepublish",void 0),(0,i.gn)([u.Command.Path("npm","publish")],F.prototype,"execute",null);class N extends A.BaseCommand{constructor(){super(...arguments),this.publish=!1}async execute(){const e=await n.VK.find(this.context.cwd,this.context.plugins);let t;t=this.scope&&this.publish?l.npmConfigUtils.getScopeRegistry(this.scope,{configuration:e,type:l.npmConfigUtils.RegistryType.PUBLISH_REGISTRY}):this.scope?l.npmConfigUtils.getScopeRegistry(this.scope,{configuration:e}):this.publish?l.npmConfigUtils.getPublishRegistry((await(0,A.openWorkspace)(e,this.context.cwd)).manifest,{configuration:e}):l.npmConfigUtils.getDefaultRegistry({configuration:e});return(await c.Pk.start({configuration:e,stdout:this.context.stdout},async r=>{try{const n=await l.npmHttpUtils.get("/-/whoami",{configuration:e,registry:t,authType:l.npmHttpUtils.AuthType.ALWAYS_AUTH,json:!0});r.reportInfo(g.b.UNNAMED,n.username)}catch(e){if("HTTPError"!==e.name)throw e;401===e.response.statusCode||403===e.response.statusCode?r.reportError(g.b.AUTHENTICATION_INVALID,"Authentication failed - your credentials may have expired"):r.reportError(g.b.AUTHENTICATION_INVALID,e.toString())}})).exitCode()}}N.usage=u.Command.Usage({category:"Npm-related commands",description:"display the name of the authenticated user",details:"\n Print the username associated with the current authentication settings to the standard output.\n\n When using `-s,--scope`, the username printed will be the one that matches the authentication settings of the registry associated with the given scope (those settings can be overriden using the `npmRegistries` map, and the registry associated with the scope is configured via the `npmScopes` map).\n\n When using `--publish`, the registry we'll select will by default be the one used when publishing packages (`publishConfig.registry` or `npmPublishRegistry` if available, otherwise we'll fallback to the regular `npmRegistryServer`).\n ",examples:[["Print username for the default registry","yarn npm whoami"],["Print username for the registry on a given scope","yarn npm whoami --scope company"]]}),(0,i.gn)([u.Command.String("-s,--scope")],N.prototype,"scope",void 0),(0,i.gn)([u.Command.Boolean("--publish")],N.prototype,"publish",void 0),(0,i.gn)([u.Command.Path("npm","whoami")],N.prototype,"execute",null);const R={configuration:{npmPublishAccess:{description:"Default access of the published packages",type:n.a2.STRING,default:null}},commands:[I,B,Q,F,N]}},86717:(e,t,r)=>{"use strict";r.r(t),r.d(t,{npmConfigUtils:()=>n,npmHttpUtils:()=>i,default:()=>L});var n={};r.r(n),r.d(n,{RegistryType:()=>c,getAuthConfiguration:()=>B,getDefaultRegistry:()=>I,getPublishRegistry:()=>C,getRegistryConfiguration:()=>E,getScopeConfiguration:()=>m,getScopeRegistry:()=>d,normalizeRegistry:()=>p});var i={};r.r(i),r.d(i,{AuthType:()=>g,get:()=>y,getIdentUrl:()=>w,put:()=>Q});var A=r(27122),o=r(5624),s=r(53887),a=r.n(s);var c,g,l=r(35691),u=r(92659),h=r(61899),f=r(78835);function p(e){return e.replace(/\/$/,"")}function C(e,{configuration:t}){return e.publishConfig&&e.publishConfig.registry?p(e.publishConfig.registry):e.name?d(e.name.scope,{configuration:t,type:c.PUBLISH_REGISTRY}):I({configuration:t,type:c.PUBLISH_REGISTRY})}function d(e,{configuration:t,type:r=c.FETCH_REGISTRY}){const n=m(e,{configuration:t});if(null===n)return I({configuration:t,type:r});const i=n.get(r);return null===i?I({configuration:t,type:r}):p(i)}function I({configuration:e,type:t=c.FETCH_REGISTRY}){const r=e.get(t);return p(null!==r?r:e.get(c.FETCH_REGISTRY))}function E(e,{configuration:t}){const r=t.get("npmRegistries"),n=r.get(e);if(void 0!==n)return n;const i=r.get(e.replace(/^[a-z]+:/,""));return void 0!==i?i:null}function m(e,{configuration:t}){if(null===e)return null;const r=t.get("npmScopes").get(e);return r||null}function B(e,{configuration:t,ident:r}){const n=r&&m(r.scope,{configuration:t});if((null==n?void 0:n.get("npmAuthIdent"))||(null==n?void 0:n.get("npmAuthToken")))return n;return E(e,{configuration:t})||t}function w(e){return e.scope?`/@${e.scope}%2f${e.name}`:"/"+e.name}async function y(e,{configuration:t,headers:r,ident:n,authType:i,registry:A,...s}){if(n&&void 0===A&&(A=d(n.scope,{configuration:t})),n&&n.scope&&void 0===i&&(i=g.BEST_EFFORT),"string"!=typeof A)throw new Error("Assertion failed: The registry should be a string");const a=v(A,{authType:i,configuration:t,ident:n});let c;a&&(r={...r,authorization:a});try{c=new f.URL(e)}catch(t){c=new f.URL(A+e)}try{return await o.httpUtils.get(c.href,{configuration:t,headers:r,...s})}catch(e){throw"HTTPError"!==e.name||401!==e.response.statusCode&&403!==e.response.statusCode?e:new l.lk(u.b.AUTHENTICATION_INVALID,`Invalid authentication (as ${await b(A,r,{configuration:t})})`)}}async function Q(e,t,{attemptedAs:r,configuration:n,headers:i,ident:A,authType:s=g.ALWAYS_AUTH,registry:a,...c}){if(A&&void 0===a&&(a=d(A.scope,{configuration:n})),"string"!=typeof a)throw new Error("Assertion failed: The registry should be a string");const f=v(a,{authType:s,configuration:n,ident:A});f&&(i={...i,authorization:f});try{return await o.httpUtils.put(a+e,t,{configuration:n,headers:i,...c})}catch(A){if(!function(e){if("HTTPError"!==e.name)return!1;try{return e.response.headers["www-authenticate"].split(/,\s*/).map(e=>e.toLowerCase()).includes("otp")}catch(e){return!1}}(A))throw"HTTPError"!==A.name||401!==A.response.statusCode&&403!==A.response.statusCode?A:new l.lk(u.b.AUTHENTICATION_INVALID,`Invalid authentication (${"string"!=typeof r?"as "+await b(a,i,{configuration:n}):"attempted as "+r})`);const s=await async function(){if(process.env.TEST_ENV)return process.env.TEST_NPM_2FA_TOKEN||"";const{otp:e}=await(0,h.prompt)({type:"password",name:"otp",message:"One-time password:",required:!0,onCancel:()=>process.exit(130)});return e}(),g={...i,...D(s)};try{return await o.httpUtils.put(`${a}${e}`,t,{configuration:n,headers:g,...c})}catch(e){throw"HTTPError"!==e.name||401!==e.response.statusCode&&403!==e.response.statusCode?e:new l.lk(u.b.AUTHENTICATION_INVALID,`Invalid authentication (${"string"!=typeof r?"as "+await b(a,g,{configuration:n}):"attempted as "+r})`)}}}function v(e,{authType:t=g.CONFIGURATION,configuration:r,ident:n}){const i=B(e,{configuration:r,ident:n}),A=function(e,t){switch(t){case g.CONFIGURATION:return e.get("npmAlwaysAuth");case g.BEST_EFFORT:case g.ALWAYS_AUTH:return!0;case g.NO_AUTH:return!1;default:throw new Error("Unreachable")}}(i,t);if(!A)return null;if(i.get("npmAuthToken"))return"Bearer "+i.get("npmAuthToken");if(i.get("npmAuthIdent"))return"Basic "+i.get("npmAuthIdent");if(A&&t!==g.BEST_EFFORT)throw new l.lk(u.b.AUTHENTICATION_NOT_FOUND,"No authentication configured for request");return null}async function b(e,t,{configuration:r}){if(void 0===t||void 0===t.authorization)return"an anonymous user";try{return(await o.httpUtils.get(new f.URL(e+"/-/whoami").href,{configuration:r,headers:t})).username}catch(e){return"an unknown user"}}function D(e){return{"npm-otp":e}}!function(e){e.FETCH_REGISTRY="npmRegistryServer",e.PUBLISH_REGISTRY="npmPublishRegistry"}(c||(c={})),function(e){e[e.NO_AUTH=0]="NO_AUTH",e[e.BEST_EFFORT=1]="BEST_EFFORT",e[e.CONFIGURATION=2]="CONFIGURATION",e[e.ALWAYS_AUTH=3]="ALWAYS_AUTH"}(g||(g={}));class S{supports(e,t){if(!e.reference.startsWith("npm:"))return!1;const r=new f.URL(e.reference);return!!a().valid(r.pathname)&&!r.searchParams.has("__archiveUrl")}getLocalPath(e,t){return null}async fetch(e,t){const r=t.checksums.get(e.locatorHash)||null,[n,i,A]=await t.cache.fetchPackageFromCache(e,r,{onHit:()=>t.report.reportCacheHit(e),onMiss:()=>t.report.reportCacheMiss(e,o.structUtils.prettyLocator(t.project.configuration,e)+" can't be found in the cache and will be fetched from the remote registry"),loader:()=>this.fetchFromNetwork(e,t),skipIntegrityCheck:t.skipIntegrityCheck});return{packageFs:n,releaseFs:i,prefixPath:o.structUtils.getIdentVendorPath(e),checksum:A}}async fetchFromNetwork(e,t){let r;try{r=await y(S.getLocatorUrl(e),{configuration:t.project.configuration,ident:e})}catch(n){r=await y(S.getLocatorUrl(e).replace(/%2f/g,"/"),{configuration:t.project.configuration,ident:e})}return await o.tgzUtils.convertToZip(r,{compressionLevel:t.project.configuration.get("compressionLevel"),prefixPath:o.structUtils.getIdentVendorPath(e),stripComponents:1})}static isConventionalTarballUrl(e,t,{configuration:r}){let n=d(e.scope,{configuration:r});const i=S.getLocatorUrl(e);return t=t.replace(/^https?:(\/\/(?:[^/]+\.)?npmjs.org(?:$|\/))/,"https:$1"),n=n.replace(/^https:\/\/registry\.npmjs\.org($|\/)/,"https://registry.yarnpkg.com$1"),(t=t.replace(/^https:\/\/registry\.npmjs\.org($|\/)/,"https://registry.yarnpkg.com$1"))===n+i||t===n+i.replace(/%2f/g,"/")}static getLocatorUrl(e){const t=a().clean(e.reference.slice("npm:".length));if(null===t)throw new l.lk(u.b.RESOLVER_NOT_FOUND,"The npm semver resolver got selected, but the version isn't semver");return`${w(e)}/-/${e.name}-${t}.tgz`}}var k=r(46611),M=r(32485);const F=o.structUtils.makeIdent(null,"node-gyp"),N=/\b(node-gyp|prebuild-install)\b/;var R=r(52779);const K={npmAlwaysAuth:{description:"URL of the selected npm registry (note: npm enterprise isn't supported)",type:A.a2.BOOLEAN,default:!1},npmAuthIdent:{description:"Authentication identity for the npm registry (_auth in npm and yarn v1)",type:A.a2.SECRET,default:null},npmAuthToken:{description:"Authentication token for the npm registry (_authToken in npm and yarn v1)",type:A.a2.SECRET,default:null}},x={npmPublishRegistry:{description:"Registry to push packages to",type:A.a2.STRING,default:null},npmRegistryServer:{description:"URL of the selected npm registry (note: npm enterprise isn't supported)",type:A.a2.STRING,default:"https://registry.yarnpkg.com"}},L={configuration:{...K,...x,npmScopes:{description:"Settings per package scope",type:A.a2.MAP,valueDefinition:{description:"",type:A.a2.SHAPE,properties:{...K,...x}}},npmRegistries:{description:"Settings per registry",type:A.a2.MAP,normalizeKeys:p,valueDefinition:{description:"",type:A.a2.SHAPE,properties:{...K}}}},fetchers:[class{supports(e,t){if(!e.reference.startsWith("npm:"))return!1;const{selector:r,params:n}=o.structUtils.parseRange(e.reference);return!!a().valid(r)&&(null!==n&&"string"==typeof n.__archiveUrl)}getLocalPath(e,t){return null}async fetch(e,t){const r=t.checksums.get(e.locatorHash)||null,[n,i,A]=await t.cache.fetchPackageFromCache(e,r,{onHit:()=>t.report.reportCacheHit(e),onMiss:()=>t.report.reportCacheMiss(e,o.structUtils.prettyLocator(t.project.configuration,e)+" can't be found in the cache and will be fetched from the remote server"),loader:()=>this.fetchFromNetwork(e,t),skipIntegrityCheck:t.skipIntegrityCheck});return{packageFs:n,releaseFs:i,prefixPath:o.structUtils.getIdentVendorPath(e),checksum:A}}async fetchFromNetwork(e,t){const{params:r}=o.structUtils.parseRange(e.reference);if(null===r||"string"!=typeof r.__archiveUrl)throw new Error("Assertion failed: The archiveUrl querystring parameter should have been available");const n=await y(r.__archiveUrl,{configuration:t.project.configuration,ident:e});return await o.tgzUtils.convertToZip(n,{compressionLevel:t.project.configuration.get("compressionLevel"),prefixPath:o.structUtils.getIdentVendorPath(e),stripComponents:1})}},S],resolvers:[class{supportsDescriptor(e,t){return!!e.range.startsWith("npm:")&&!!o.structUtils.tryParseDescriptor(e.range.slice("npm:".length),!0)}supportsLocator(e,t){return!1}shouldPersistResolution(e,t){throw new Error("Unreachable")}bindDescriptor(e,t,r){return e}getResolutionDependencies(e,t){const r=o.structUtils.parseDescriptor(e.range.slice("npm:".length),!0);return t.resolver.getResolutionDependencies(r,t)}async getCandidates(e,t,r){const n=o.structUtils.parseDescriptor(e.range.slice("npm:".length),!0);return await r.resolver.getCandidates(n,t,r)}async getSatisfying(e,t,r){const n=o.structUtils.parseDescriptor(e.range.slice("npm:".length),!0);return r.resolver.getSatisfying(n,t,r)}resolve(e,t){throw new Error("Unreachable")}},class{supportsDescriptor(e,t){return!!e.range.startsWith("npm:")&&!!o.semverUtils.F(e.range.slice("npm:".length))}supportsLocator(e,t){if(!e.reference.startsWith("npm:"))return!1;const{selector:r}=o.structUtils.parseRange(e.reference);return!!a().valid(r)}shouldPersistResolution(e,t){return!0}bindDescriptor(e,t,r){return e}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){const n=o.semverUtils.F(e.range.slice("npm:".length));if(null===n)throw new Error("Expected a valid range, got "+e.range.slice("npm:".length));const i=await y(w(e),{configuration:r.project.configuration,ident:e,json:!0}),A=Object.keys(i.versions).map(e=>new(a().SemVer)(e)).filter(e=>n.test(e)),s=A.filter(e=>!i.versions[e.raw].deprecated),c=s.length>0?s:A;return c.sort((e,t)=>-e.compare(t)),c.map(t=>{const n=o.structUtils.makeLocator(e,"npm:"+t.raw),A=i.versions[t.raw].dist.tarball;return S.isConventionalTarballUrl(n,A,{configuration:r.project.configuration})?n:o.structUtils.bindLocator(n,{__archiveUrl:A})})}async getSatisfying(e,t,r){const n=o.semverUtils.F(e.range.slice("npm:".length));if(null===n)throw new Error("Expected a valid range, got "+e.range.slice("npm:".length));return t.map(e=>{try{return new(a().SemVer)(e.slice("npm:".length))}catch(e){return null}}).filter(e=>null!==e).filter(e=>n.test(e)).sort((e,t)=>-e.compare(t)).map(t=>o.structUtils.makeLocator(e,"npm:"+t.raw))}async resolve(e,t){const{selector:r}=o.structUtils.parseRange(e.reference),n=a().clean(r);if(null===n)throw new l.lk(u.b.RESOLVER_NOT_FOUND,"The npm semver resolver got selected, but the version isn't semver");const i=await y(w(e),{configuration:t.project.configuration,ident:e,json:!0});if(!Object.prototype.hasOwnProperty.call(i,"versions"))throw new l.lk(u.b.REMOTE_INVALID,'Registry returned invalid data for - missing "versions" field');if(!Object.prototype.hasOwnProperty.call(i.versions,n))throw new l.lk(u.b.REMOTE_NOT_FOUND,`Registry failed to return reference "${n}"`);const A=new k.G;if(A.load(i.versions[n]),!A.dependencies.has(F.identHash)&&!A.peerDependencies.has(F.identHash))for(const r of A.scripts.values())if(r.match(N)){A.dependencies.set(F.identHash,o.structUtils.makeDescriptor(F,"latest")),t.report.reportWarning(u.b.NODE_GYP_INJECTED,o.structUtils.prettyLocator(t.project.configuration,e)+": Implicit dependencies on node-gyp are discouraged");break}return"string"==typeof A.raw.deprecated&&t.report.reportWarning(u.b.DEPRECATED_PACKAGE,`${o.structUtils.prettyLocator(t.project.configuration,e)} is deprecated: ${A.raw.deprecated}`),{...e,version:n,languageName:"node",linkType:M.U.HARD,dependencies:A.dependencies,peerDependencies:A.peerDependencies,dependenciesMeta:A.dependenciesMeta,peerDependenciesMeta:A.peerDependenciesMeta,bin:A.bin}}},class{supportsDescriptor(e,t){return!!e.range.startsWith("npm:")&&!!R.c.test(e.range.slice("npm:".length))}supportsLocator(e,t){return!1}shouldPersistResolution(e,t){throw new Error("Unreachable")}bindDescriptor(e,t,r){return e}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){const n=e.range.slice("npm:".length),i=await y(w(e),{configuration:r.project.configuration,ident:e,json:!0});if(!Object.prototype.hasOwnProperty.call(i,"dist-tags"))throw new l.lk(u.b.REMOTE_INVALID,'Registry returned invalid data - missing "dist-tags" field');const A=i["dist-tags"];if(!Object.prototype.hasOwnProperty.call(A,n))throw new l.lk(u.b.REMOTE_NOT_FOUND,`Registry failed to return tag "${n}"`);const s=A[n],a=o.structUtils.makeLocator(e,"npm:"+s),c=i.versions[s].dist.tarball;return S.isConventionalTarballUrl(a,c,{configuration:r.project.configuration})?[a]:[o.structUtils.bindLocator(a,{__archiveUrl:c})]}async getSatisfying(e,t,r){return null}async resolve(e,t){throw new Error("Unreachable")}}]}},5973:(e,t,r)=>{"use strict";r.r(t),r.d(t,{packUtils:()=>n,default:()=>L});var n={};r.r(n),r.d(n,{genPackList:()=>S,genPackStream:()=>b,genPackageManifest:()=>D,hasPackScripts:()=>Q,prepareForPack:()=>v});var i=r(5624),A=r(35691),o=r(92659),s=r(36370),a=r(95397),c=r(27122),g=r(40376),l=r(28148),u=r(33720),h=r(15815),f=r(46009),p=r(56537),C=r(93103),d=r(10489),I=r(2401),E=r.n(I),m=r(59938),B=r(78761);const w=["/package.json","/readme","/readme.*","/license","/license.*","/licence","/licence.*","/changelog","/changelog.*"],y=["/package.tgz",".github",".git",".hg","node_modules",".npmignore",".gitignore",".#*",".DS_Store"];async function Q(e){return!!i.scriptUtils.hasWorkspaceScript(e,"prepack")||!!i.scriptUtils.hasWorkspaceScript(e,"postpack")}async function v(e,{report:t},r){await i.scriptUtils.maybeExecuteWorkspaceLifecycleScript(e,"prepack",{report:t});try{await r()}finally{await i.scriptUtils.maybeExecuteWorkspaceLifecycleScript(e,"postpack",{report:t})}}async function b(e,t){var r,n;void 0===t&&(t=await S(e));const i=new Set;for(const t of null!==(n=null===(r=e.manifest.publishConfig)||void 0===r?void 0:r.executableFiles)&&void 0!==n?n:new Set)i.add(f.y1.normalize(t));for(const t of e.manifest.bin.values())i.add(f.y1.normalize(t));const A=m.P();process.nextTick(async()=>{for(const r of t){const t=f.y1.normalize(r),n=f.y1.resolve(e.cwd,t),o=f.y1.join("package",t),s=await p.xfs.lstatPromise(n),a={name:o,mtime:new Date(315532800)},c=i.has(t)?493:420;let g,l;const u=new Promise((e,t)=>{g=e,l=t}),h=e=>{e?l(e):g()};if(s.isFile()){let r;r="package.json"===t?Buffer.from(JSON.stringify(await D(e),null,2)):await p.xfs.readFilePromise(n),A.entry({...a,mode:c,type:"file"},r,h)}else s.isSymbolicLink()&&A.entry({...a,mode:c,type:"symlink",linkname:await p.xfs.readlinkPromise(n)},h);await u}A.finalize()});const o=(0,B.createGzip)();return A.pipe(o),o}async function D(e){const t=JSON.parse(JSON.stringify(e.manifest.raw));return await e.project.configuration.triggerHook(e=>e.beforeWorkspacePacking,e,t),t}async function S(e){var t,r,n,i,A,o,s,a;const c=e.project,g=c.configuration,l={accept:[],reject:[]};for(const e of y)l.reject.push(e);for(const e of w)l.accept.push(e);l.reject.push(g.get("rcFilename"));const u=t=>{if(null===t||!t.startsWith(e.cwd+"/"))return;const r=f.y1.relative(e.cwd,t),n=f.y1.resolve(f.LZ.root,r);l.reject.push(n)};u(f.y1.resolve(c.cwd,g.get("lockfileFilename"))),u(g.get("bstatePath")),u(g.get("cacheFolder")),u(g.get("globalFolder")),u(g.get("installStatePath")),u(g.get("virtualFolder")),u(g.get("yarnPath")),await g.triggerHook(e=>e.populateYarnPaths,c,e=>{u(e)});for(const t of c.workspaces){const r=f.y1.relative(e.cwd,t.cwd);""===r||r.match(/^(\.\.)?\//)||l.reject.push("/"+r)}const h={accept:[],reject:[]},p=null!==(r=null===(t=e.manifest.publishConfig)||void 0===t?void 0:t.main)&&void 0!==r?r:e.manifest.main,C=null!==(i=null===(n=e.manifest.publishConfig)||void 0===n?void 0:n.module)&&void 0!==i?i:e.manifest.module,I=null!==(o=null===(A=e.manifest.publishConfig)||void 0===A?void 0:A.browser)&&void 0!==o?o:e.manifest.browser,E=null!==(a=null===(s=e.manifest.publishConfig)||void 0===s?void 0:s.bin)&&void 0!==a?a:e.manifest.bin;null!=p&&h.accept.push(f.y1.resolve(f.LZ.root,p)),null!=C&&h.accept.push(f.y1.resolve(f.LZ.root,C)),null!=I&&h.accept.push(f.y1.resolve(f.LZ.root,I));for(const e of E.values())h.accept.push(f.y1.resolve(f.LZ.root,e));const m=null!==e.manifest.files;if(m){h.reject.push("/*");for(const t of e.manifest.files)M(h.accept,t,{cwd:f.LZ.root})}return await async function(e,{hasExplicitFileList:t,globalList:r,ignoreList:n}){const i=[],A=new d.n(e),o=[[f.LZ.root,[n]]];for(;o.length>0;){const[e,n]=o.pop(),s=await A.lstatPromise(e);if(!F(e,{globalList:r,ignoreLists:s.isDirectory()?null:n}))if(s.isDirectory()){const i=await A.readdirPromise(e);let s=!1,a=!1;if(!t||e!==f.LZ.root)for(const e of i)s=s||".gitignore"===e,a=a||".npmignore"===e;const c=a?await k(A,e,".npmignore"):s?await k(A,e,".gitignore"):null;let g=null!==c?[c].concat(n):n;F(e,{globalList:r,ignoreLists:n})&&(g=[...n,{accept:[],reject:["**/*"]}]);for(const t of i)o.push([f.y1.resolve(e,t),g])}else i.push(f.y1.relative(f.LZ.root,e))}return i.sort()}(e.cwd,{hasExplicitFileList:m,globalList:l,ignoreList:h})}async function k(e,t,r){const n={accept:[],reject:[]},i=await e.readFilePromise(f.y1.join(t,r),"utf8");for(const e of i.split(/\n/g))M(n.reject,e,{cwd:t});return n}function M(e,t,{cwd:r}){const n=t.trim();""!==n&&"#"!==n[0]&&e.push(function(e,{cwd:t}){const r="!"===e[0];return r&&(e=e.slice(1)),e.match(/\.{0,1}\//)&&(e=f.y1.resolve(t,e)),r&&(e="!"+e),e}(n,{cwd:r}))}function F(e,{globalList:t,ignoreLists:r}){if(N(e,t.accept))return!1;if(N(e,t.reject))return!0;if(null!==r)for(const t of r){if(N(e,t.accept))return!1;if(N(e,t.reject))return!0}return!1}function N(e,t){let r=t;const n=[];for(let e=0;e{await v(r,{report:t},async()=>{t.reportJson({base:r.cwd});const e=await S(r);for(const r of e)t.reportInfo(null,r),t.reportJson({location:r});if(!this.dryRun){const t=await b(r,e),i=p.xfs.createWriteStream(n);t.pipe(i),await new Promise(e=>{i.on("finish",e)})}}),this.dryRun||(t.reportInfo(o.b.UNNAMED,"Package archive generated in "+e.format(n,"magenta")),t.reportJson({output:n}))})).exitCode()}}K.usage=C.Command.Usage({description:"generate a tarball from the active workspace",details:"\n This command will turn the active workspace into a compressed archive suitable for publishing. The archive will by default be stored at the root of the workspace (`package.tgz`).\n\n If the `--install-if-needed` flag is set Yarn will run a preliminary `yarn install` if the package contains build scripts.\n\n If the `-n,--dry-run` flag is set the command will just print the file paths without actually generating the package archive.\n\n If the `--json` flag is set the output will follow a JSON-stream output also known as NDJSON (https://github.com/ndjson/ndjson-spec).\n\n If the `-o,---out` is set the archive will be created at the specified path. The `%s` and `%v` variables can be used within the path and will be respectively replaced by the package name and version.\n ",examples:[["Create an archive from the active workspace","yarn pack"],["List the files that would be made part of the workspace's archive","yarn pack --dry-run"],["Name and output the archive in a dedicated folder","yarn pack --out /artifacts/%s-%v.tgz"]]}),(0,s.gn)([C.Command.Boolean("--install-if-needed")],K.prototype,"installIfNeeded",void 0),(0,s.gn)([C.Command.Boolean("-n,--dry-run")],K.prototype,"dryRun",void 0),(0,s.gn)([C.Command.Boolean("--json")],K.prototype,"json",void 0),(0,s.gn)([C.Command.String("--filename",{hidden:!1}),C.Command.String("-o,--out")],K.prototype,"out",void 0),(0,s.gn)([C.Command.Path("pack")],K.prototype,"execute",null);const x=["dependencies","devDependencies","peerDependencies"],L={hooks:{beforeWorkspacePacking:(e,t)=>{t.publishConfig&&(t.publishConfig.main&&(t.main=t.publishConfig.main),t.publishConfig.browser&&(t.browser=t.publishConfig.browser),t.publishConfig.module&&(t.module=t.publishConfig.module),t.publishConfig.browser&&(t.browser=t.publishConfig.browser),t.publishConfig.bin&&(t.bin=t.publishConfig.bin));const r=e.project;for(const n of x)for(const s of e.manifest.getForScope(n).values()){const e=r.tryWorkspaceByDescriptor(s),a=i.structUtils.parseRange(s.range);if("workspace:"===a.protocol)if(null===e){if(null===r.tryWorkspaceByIdent(s))throw new A.lk(o.b.WORKSPACE_NOT_FOUND,i.structUtils.prettyDescriptor(r.configuration,s)+": No local workspace found for this range")}else{let r;r=i.structUtils.areDescriptorsEqual(s,e.anchoredDescriptor)||"*"===a.selector?e.manifest.version:a.selector,t[n][i.structUtils.stringifyIdent(s)]=r}}}},commands:[K]}},5698:(e,t,r)=>{"use strict";r.r(t),r.d(t,{patchUtils:()=>n,default:()=>z});var n={};r.r(n),r.d(n,{applyPatchFile:()=>p,diffFolders:()=>U,extractPackageToDisk:()=>P,isParentRequired:()=>x,loadPatchFiles:()=>L,makeDescriptor:()=>N,makeLocator:()=>R,parseDescriptor:()=>k,parseLocator:()=>M,parsePatchFile:()=>v});var i=r(5624),A=r(56537),o=r(46009),s=r(90739),a=r(75448),c=r(29486),g=r(33720),l=r(35691),u=r(92659),h=r(78420);async function f(e,t,r){const n=await e.lstatPromise(t),i=await r();if(void 0!==i&&(t=i),e.lutimesPromise)await e.lutimesPromise(t,n.atime,n.mtime);else{if(n.isSymbolicLink())throw new Error("Cannot preserve the time values of a symlink");await e.utimesPromise(t,n.atime,n.mtime)}}async function p(e,{baseFs:t=new h.S,dryRun:r=!1,version:n=null}={}){for(const A of e)if(null===A.semverExclusivity||null===n||i.semverUtils.v(n,A.semverExclusivity))switch(A.type){case"file deletion":if(r){if(!t.existsSync(A.path))throw new Error("Trying to delete a file that doesn't exist: "+A.path)}else await f(t,o.y1.dirname(A.path),async()=>{await t.unlinkPromise(A.path)});break;case"rename":if(r){if(!t.existsSync(A.fromPath))throw new Error("Trying to move a file that doesn't exist: "+A.fromPath)}else await f(t,o.y1.dirname(A.fromPath),async()=>{await f(t,o.y1.dirname(A.toPath),async()=>{await f(t,A.fromPath,async()=>(await t.movePromise(A.fromPath,A.toPath),A.toPath))})});break;case"file creation":if(r){if(t.existsSync(A.path))throw new Error("Trying to create a file that already exists: "+A.path)}else{const e=A.hunk?A.hunk.parts[0].lines.join("\n")+(A.hunk.parts[0].noNewlineAtEndOfFile?"":"\n"):"";await t.mkdirpPromise(o.y1.dirname(A.path),{chmod:493,utimes:[315532800,315532800]}),await t.writeFilePromise(A.path,e,{mode:A.mode}),await t.utimesPromise(A.path,315532800,315532800)}break;case"patch":await f(t,A.path,async()=>{await I(A,{baseFs:t,dryRun:r})});break;case"mode change":{const e=(await t.statPromise(A.path)).mode;if(C(A.newMode)!==C(e))continue;await f(t,A.path,async()=>{await t.chmodPromise(A.path,A.newMode)})}break;default:i.miscUtils.assertNever(A)}}function C(e){return(64&e)>0}function d(e){return e.replace(/\s+$/,"")}async function I({hunks:e,path:t},{baseFs:r,dryRun:n=!1}){const A=await r.statSync(t).mode,o=(await r.readFileSync(t,"utf8")).split(/\n/),s=[];let a=0,c=0;for(const t of e){const r=Math.max(c,t.header.patched.start+a),n=Math.max(0,r-c),i=Math.max(0,o.length-r-t.header.original.length),A=Math.max(n,i);let g=0,h=0,f=null;for(;g<=A;){if(g<=n&&(h=r-g,f=E(t,o,h),null!==f)){g=-g;break}if(g<=i&&(h=r+g,f=E(t,o,h),null!==f))break;g+=1}if(null===f)throw new l.lk(u.b.PATCH_HUNK_FAILED,"Cannot apply hunk #"+(e.indexOf(t)+1));s.push(f),a+=g,c=h+t.header.original.length}if(n)return;let g=0;for(const e of s)for(const t of e)switch(t.type){case"splice":{const e=t.index+g;o.splice(e,t.numToDelete,...t.linesToInsert),g+=t.linesToInsert.length-t.numToDelete}break;case"pop":o.pop();break;case"push":o.push(t.line);break;default:i.miscUtils.assertNever(t)}await r.writeFilePromise(t,o.join("\n"),{mode:A})}function E(e,t,r){const n=[];for(const o of e.parts)switch(o.type){case"deletion":case"context":for(const e of o.lines){const n=t[r];if(null==n||(A=e,d(n)!==d(A)))return null;r+=1}"deletion"===o.type&&(n.push({type:"splice",index:r-o.lines.length,numToDelete:o.lines.length,linesToInsert:[]}),o.noNewlineAtEndOfFile&&n.push({type:"push",line:""}));break;case"insertion":n.push({type:"splice",index:r,numToDelete:0,linesToInsert:o.lines}),o.noNewlineAtEndOfFile&&n.push({type:"pop"});break;default:i.miscUtils.assertNever(o.type)}var A;return n}const m=/^@@ -(\d+)(,(\d+))? \+(\d+)(,(\d+))? @@.*/;function B(e){return o.y1.relative(o.LZ.root,o.y1.resolve(o.LZ.root,o.cS.toPortablePath(e)))}function w(e){const t=e.trim().match(m);if(!t)throw new Error(`Bad header line: '${e}'`);return{original:{start:Math.max(Number(t[1]),1),length:Number(t[3]||1)},patched:{start:Math.max(Number(t[4]),1),length:Number(t[6]||1)}}}const y={"@":"header","-":"deletion","+":"insertion"," ":"context","\\":"pragma",undefined:"context"};function Q(e){const t=511&parseInt(e,8);if(420!==t&&493!==t)throw new Error("Unexpected file mode string: "+e);return t}function v(e){const t=e.split(/\n/g);return""===t[t.length-1]&&t.pop(),function(e){const t=[];for(const r of e){const{semverExclusivity:e,diffLineFromPath:n,diffLineToPath:A,oldMode:o,newMode:s,deletedFileMode:a,newFileMode:c,renameFrom:g,renameTo:l,beforeHash:u,afterHash:h,fromPath:f,toPath:p,hunks:C}=r,d=g?"rename":a?"file deletion":c?"file creation":C&&C.length>0?"patch":"mode change";let I=null;switch(d){case"rename":if(!g||!l)throw new Error("Bad parser state: rename from & to not given");t.push({type:"rename",semverExclusivity:e,fromPath:B(g),toPath:B(l)}),I=l;break;case"file deletion":{const r=n||f;if(!r)throw new Error("Bad parse state: no path given for file deletion");t.push({type:"file deletion",semverExclusivity:e,hunk:C&&C[0]||null,path:B(r),mode:Q(a),hash:u})}break;case"file creation":{const r=A||p;if(!r)throw new Error("Bad parse state: no path given for file creation");t.push({type:"file creation",semverExclusivity:e,hunk:C&&C[0]||null,path:B(r),mode:Q(c),hash:h})}break;case"patch":case"mode change":I=p||A;break;default:i.miscUtils.assertNever(d)}I&&o&&s&&o!==s&&t.push({type:"mode change",semverExclusivity:e,path:B(I),oldMode:Q(o),newMode:Q(s)}),I&&C&&C.length&&t.push({type:"patch",semverExclusivity:e,path:B(I),hunks:C,beforeHash:u,afterHash:h})}return t}(function(e){const t=[];let r={semverExclusivity:null,diffLineFromPath:null,diffLineToPath:null,oldMode:null,newMode:null,deletedFileMode:null,newFileMode:null,renameFrom:null,renameTo:null,beforeHash:null,afterHash:null,fromPath:null,toPath:null,hunks:null},n="parsing header",A=null,o=null;function s(){A&&(o&&(A.parts.push(o),o=null),r.hunks.push(A),A=null)}function a(){s(),t.push(r),r={semverExclusivity:null,diffLineFromPath:null,diffLineToPath:null,oldMode:null,newMode:null,deletedFileMode:null,newFileMode:null,renameFrom:null,renameTo:null,beforeHash:null,afterHash:null,fromPath:null,toPath:null,hunks:null}}for(let t=0;te<0?e:"+"+e;throw new Error(`hunk header integrity check failed (expected @@ ${n(e.header.original.length)} ${n(e.header.patched.length)} @@, got @@ ${n(t)} ${n(r)} @@)`)}}const D=/^builtin<([^>]+)>$/;function S(e,t){const{source:r,selector:n,params:A}=i.structUtils.parseRange(e);if(null===r)throw new Error("Patch locators must explicitly define their source");const s=n?n.split(/&/).map(e=>o.cS.toPortablePath(e)):[],a=A&&"string"==typeof A.locator?i.structUtils.parseLocator(A.locator):null,c=A&&"string"==typeof A.version?A.version:null;return{parentLocator:a,sourceItem:t(r),patchPaths:s,sourceVersion:c}}function k(e){const{sourceItem:t,...r}=S(e.range,i.structUtils.parseDescriptor);return{...r,sourceDescriptor:t}}function M(e){const{sourceItem:t,...r}=S(e.reference,i.structUtils.parseLocator);return{...r,sourceLocator:t}}function F({parentLocator:e,sourceItem:t,patchPaths:r,sourceVersion:n,patchHash:A},o){const s=null!==e?{locator:i.structUtils.stringifyLocator(e)}:{},a=void 0!==n?{version:n}:{},c=void 0!==A?{hash:A}:{};return i.structUtils.makeRange({protocol:"patch:",source:o(t),selector:r.join("&"),params:{...a,...c,...s}})}function N(e,{parentLocator:t,sourceDescriptor:r,patchPaths:n}){return i.structUtils.makeLocator(e,F({parentLocator:t,sourceItem:r,patchPaths:n},i.structUtils.stringifyDescriptor))}function R(e,{parentLocator:t,sourcePackage:r,patchPaths:n,patchHash:A}){return i.structUtils.makeLocator(e,F({parentLocator:t,sourceItem:r,sourceVersion:r.version,patchPaths:n,patchHash:A},i.structUtils.stringifyLocator))}function K({onAbsolute:e,onRelative:t,onBuiltin:r},n){const i=n.match(D);return null!==i?r(i[1]):o.y1.isAbsolute(n)?e(n):t(n)}function x(e){return K({onAbsolute:()=>!1,onRelative:()=>!0,onBuiltin:()=>!1},e)}async function L(e,t,r){const n=null!==e?await r.fetcher.fetch(e,r):null,s=n&&n.localPath?{packageFs:new a.M(o.LZ.root),prefixPath:o.y1.relative(o.LZ.root,n.localPath)}:n;n&&n!==s&&n.releaseFs&&n.releaseFs();return(await i.miscUtils.releaseAfterUseAsync(async()=>await Promise.all(t.map(async e=>K({onAbsolute:async()=>await A.xfs.readFilePromise(e,"utf8"),onRelative:async()=>{if(null===n)throw new Error("Assertion failed: The parent locator should have been fetched");return await n.packageFs.readFilePromise(e,"utf8")},onBuiltin:async e=>await r.project.configuration.firstHook(e=>e.getBuiltinPatch,r.project,e)},e))))).map(e=>"string"==typeof e?e.replace(/\r\n?/g,"\n"):e)}async function P(e,{cache:t,project:r}){const n=r.storedChecksums,s=new g.$,a=r.configuration.makeFetcher(),c=await a.fetch(e,{cache:t,project:r,fetcher:a,checksums:n,report:s}),l=await A.xfs.mktempPromise();return await A.xfs.copyPromise(l,c.prefixPath,{baseFs:c.packageFs}),await A.xfs.writeJsonPromise(o.y1.join(l,".yarn-patch.json"),{locator:i.structUtils.stringifyLocator(e)}),A.xfs.detachTemp(l),l}async function U(e,t){const r=o.cS.fromPortablePath(e).replace(/\\/g,"/"),n=o.cS.fromPortablePath(t).replace(/\\/g,"/"),{stdout:A}=await i.execUtils.execvp("git",["diff","--src-prefix=a/","--dst-prefix=b/","--ignore-cr-at-eol","--full-index","--no-index",r,n],{cwd:o.cS.toPortablePath(process.cwd())}),s=r.startsWith("/")?e=>e.slice(1):e=>e;return A.replace(new RegExp(`(a|b)(${i.miscUtils.escapeRegExp(`/${s(r)}/`)})`,"g"),"$1/").replace(new RegExp("(a|b)"+i.miscUtils.escapeRegExp(`/${s(n)}/`),"g"),"$1/").replace(new RegExp(i.miscUtils.escapeRegExp(r+"/"),"g"),"").replace(new RegExp(i.miscUtils.escapeRegExp(n+"/"),"g"),"")}var T=r(36370),O=r(95397),j=r(27122),Y=r(40376),G=r(28148),_=r(93103);class H extends O.BaseCommand{async execute(){const e=await j.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await Y.I.find(e,this.context.cwd),n=await G.C.find(e);if(!r)throw new O.WorkspaceRequiredError(t.cwd,this.context.cwd);await t.restoreInstallState();const s=o.y1.resolve(this.context.cwd,o.cS.toPortablePath(this.patchFolder)),a=o.y1.join(s,".yarn-patch.json");if(!A.xfs.existsSync(a))throw new _.UsageError("The argument folder didn't get created by 'yarn patch'");const c=await A.xfs.readJsonPromise(a),g=i.structUtils.parseLocator(c.locator,!0);if(!t.storedPackages.has(g.locatorHash))throw new _.UsageError("No package found in the project for the given locator");const l=await P(g,{cache:n,project:t});this.context.stdout.write(await U(l,s))}}H.usage=_.Command.Usage({description:"\n This will turn the folder passed in parameter into a patchfile suitable for consumption with the `patch:` protocol.\n\n Only folders generated through `yarn patch` are accepted as valid input for `yarn patch-commit`.\n "}),(0,T.gn)([_.Command.String()],H.prototype,"patchFolder",void 0),(0,T.gn)([_.Command.Path("patch-commit")],H.prototype,"execute",null);var J=r(15815);class q extends O.BaseCommand{async execute(){const e=await j.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await Y.I.find(e,this.context.cwd),n=await G.C.find(e);if(!r)throw new O.WorkspaceRequiredError(t.cwd,this.context.cwd);await t.restoreInstallState();let A=i.structUtils.parseLocator(this.package);if("unknown"===A.reference){const r=i.miscUtils.mapAndFilter([...t.storedPackages.values()],e=>e.identHash!==A.identHash||i.structUtils.isVirtualLocator(e)?i.miscUtils.mapAndFilter.skip:e);if(0===r.length)throw new _.UsageError("No package found in the project for the given locator");if(r.length>1)throw new _.UsageError("Multiple candidate packages found; explicitly choose one of them (use `yarn why ` to get more information as to who depends on them):\n"+r.map(t=>"\n- "+i.structUtils.prettyLocator(e,t)).join(""));A=r[0]}if(!t.storedPackages.has(A.locatorHash))throw new _.UsageError("No package found in the project for the given locator");await J.Pk.start({configuration:e,stdout:this.context.stdout},async r=>{const s=await P(A,{cache:n,project:t});r.reportInfo(u.b.UNNAMED,`Package ${i.structUtils.prettyLocator(e,A)} got extracted with success!`),r.reportInfo(u.b.UNNAMED,"You can now edit the following folder: "+e.format(o.cS.fromPortablePath(s),"magenta")),r.reportInfo(u.b.UNNAMED,`Once you are done run ${e.format("yarn patch-commit "+o.cS.fromPortablePath(s),"cyan")} and Yarn will store a patchfile based on your changes.`)})}}q.usage=_.Command.Usage({description:'\n This command will cause a package to be extracted in a temporary directory (under a folder named "patch-workdir"). This folder will be editable at will; running `yarn patch` inside it will then cause Yarn to generate a patchfile and register it into your top-level manifest (cf the `patch:` protocol).\n '}),(0,T.gn)([_.Command.String()],q.prototype,"package",void 0),(0,T.gn)([_.Command.Path("patch")],q.prototype,"execute",null);const z={commands:[H,q],fetchers:[class{supports(e,t){return!!e.reference.startsWith("patch:")}getLocalPath(e,t){return null}async fetch(e,t){const r=t.checksums.get(e.locatorHash)||null,[n,A,o]=await t.cache.fetchPackageFromCache(e,r,{onHit:()=>t.report.reportCacheHit(e),onMiss:()=>t.report.reportCacheMiss(e,i.structUtils.prettyLocator(t.project.configuration,e)+" can't be found in the cache and will be fetched from the disk"),loader:()=>this.patchPackage(e,t),skipIntegrityCheck:t.skipIntegrityCheck});return{packageFs:n,releaseFs:A,prefixPath:i.structUtils.getIdentVendorPath(e),localPath:this.getLocalPath(e,t),checksum:o}}async patchPackage(e,t){const{parentLocator:r,sourceLocator:n,sourceVersion:g,patchPaths:l}=M(e),u=await L(r,l,t),h=await A.xfs.mktempPromise(),f=o.y1.join(h,"patched.zip"),C=await t.fetcher.fetch(n,t),d=i.structUtils.getIdentVendorPath(e),I=await(0,c.getLibzipPromise)(),E=new s.d(f,{libzip:I,create:!0,level:t.project.configuration.get("compressionLevel")});await E.mkdirpPromise(d),await i.miscUtils.releaseAfterUseAsync(async()=>{await E.copyPromise(d,C.prefixPath,{baseFs:C.packageFs,stableSort:!0})},C.releaseFs);const m=new a.M(o.y1.resolve(o.LZ.root,d),{baseFs:E});for(const e of u)null!==e&&await p(v(e),{baseFs:m,version:g});return E}}],resolvers:[class{supportsDescriptor(e,t){return!!e.range.startsWith("patch:")}supportsLocator(e,t){return!!e.reference.startsWith("patch:")}shouldPersistResolution(e,t){return!1}bindDescriptor(e,t,r){const{patchPaths:n}=k(e);return n.every(e=>!x(e))?e:i.structUtils.bindDescriptor(e,{locator:i.structUtils.stringifyLocator(t)})}getResolutionDependencies(e,t){const{sourceDescriptor:r}=k(e);return[r]}async getCandidates(e,t,r){if(!r.fetchOptions)throw new Error("Assertion failed: This resolver cannot be used unless a fetcher is configured");const{parentLocator:n,sourceDescriptor:A,patchPaths:o}=k(e),s=await L(n,o,r.fetchOptions),a=t.get(A.descriptorHash);if(void 0===a)throw new Error("Assertion failed: The dependency should have been resolved");return[R(e,{parentLocator:n,sourcePackage:a,patchPaths:o,patchHash:i.hashUtils.makeHash("2",...s).slice(0,6)})]}async getSatisfying(e,t,r){return null}async resolve(e,t){const{sourceLocator:r}=M(e);return{...await t.resolver.resolve(r,t),...e}}}]}},57436:(e,t,r)=>{"use strict";r.r(t),r.d(t,{pnpUtils:()=>n,getPnpPath:()=>F,quotePathIfNeeded:()=>N,AbstractPnpInstaller:()=>d,PnpInstaller:()=>w,PnpLinker:()=>B,default:()=>R});var n={};r.r(n),r.d(n,{getUnpluggedPath:()=>I});var i=r(27122),A=r(46009),o=r(56537),s=r(53887),a=r.n(s),c=r(92659),g=r(92409),l=r(5624),u=r(75448),h=r(88563),f=r(93103),p=r(46611),C=r(32485);class d{constructor(e){this.opts=e,this.packageRegistry=new Map,this.blacklistedPaths=new Set,this.opts=e}checkAndReportManifestIncompatibility(e,t){return e&&!e.isCompatibleWithOS(process.platform)?(this.opts.report.reportWarningOnce(c.b.INCOMPATIBLE_OS,`${l.structUtils.prettyLocator(this.opts.project.configuration,t)} The platform ${process.platform} is incompatible with this module, ${this.opts.skipIncompatiblePackageLinking?"linking":"building"} skipped.`),!1):!(e&&!e.isCompatibleWithCPU(process.arch))||(this.opts.report.reportWarningOnce(c.b.INCOMPATIBLE_CPU,`${l.structUtils.prettyLocator(this.opts.project.configuration,t)} The CPU architecture ${process.arch} is incompatible with this module, ${this.opts.skipIncompatiblePackageLinking?"linking":"building"} skipped.`),!1)}async installPackage(e,t){const r=l.structUtils.requirableIdent(e),n=e.reference,i=e.peerDependencies.size>0&&!l.structUtils.isVirtualLocator(e)&&!this.opts.project.tryWorkspaceByLocator(e),o=!i||this.opts.skipIncompatiblePackageLinking?await p.G.tryFind(t.prefixPath,{baseFs:t.packageFs}):null,s=this.checkAndReportManifestIncompatibility(o,e);if(this.opts.skipIncompatiblePackageLinking&&!s)return{packageLocation:null,buildDirective:null};const a=i?[]:await this.getBuildScripts(e,o,t),g=this.opts.project.getDependencyMeta(e,e.version);a.length>0&&!this.opts.project.configuration.get("enableScripts")&&!g.built&&(this.opts.report.reportWarningOnce(c.b.DISABLED_BUILD_SCRIPTS,l.structUtils.prettyLocator(this.opts.project.configuration,e)+" lists build scripts, but all build scripts have been disabled."),a.length=0),a.length>0&&e.linkType!==C.U.HARD&&!this.opts.project.tryWorkspaceByLocator(e)&&(this.opts.report.reportWarningOnce(c.b.SOFT_LINK_BUILD,l.structUtils.prettyLocator(this.opts.project.configuration,e)+" lists build scripts, but is referenced through a soft link. Soft links don't support build scripts, so they'll be ignored."),a.length=0),a.length>0&&g&&!1===g.built&&(this.opts.report.reportInfoOnce(c.b.BUILD_DISABLED,l.structUtils.prettyLocator(this.opts.project.configuration,e)+" lists build scripts, but its build has been explicitly disabled through configuration."),a.length=0);const u=i||e.linkType===C.U.SOFT?t.packageFs:await this.transformPackage(e,o,t,g,{hasBuildScripts:a.length>0});if(A.y1.isAbsolute(t.prefixPath))throw new Error(`Assertion failed: Expected the prefix path (${t.prefixPath}) to be relative to the parent`);const h=A.y1.resolve(u.getRealPath(),t.prefixPath),f=this.normalizeDirectoryPath(h),d=new Map,I=new Set;if(l.structUtils.isVirtualLocator(e))for(const t of e.peerDependencies.values())d.set(l.structUtils.requirableIdent(t),null),I.add(l.structUtils.stringifyIdent(t));return l.miscUtils.getMapWithDefault(this.packageRegistry,r).set(n,{packageLocation:f,packageDependencies:d,packagePeers:I,linkType:e.linkType,discardFromLookup:t.discardFromLookup||!1}),i&&this.blacklistedPaths.add(f),{packageLocation:h,buildDirective:a.length>0&&s?a:null}}async attachInternalDependencies(e,t){const r=this.getPackageInformation(e);for(const[e,n]of t){const t=l.structUtils.areIdentsEqual(e,n)?n.reference:[l.structUtils.requirableIdent(n),n.reference];r.packageDependencies.set(l.structUtils.requirableIdent(e),t)}}async attachExternalDependents(e,t){for(const r of t){this.getDiskInformation(r).packageDependencies.set(l.structUtils.requirableIdent(e),e.reference)}}async finalizeInstall(){this.trimBlacklistedPackages(),this.packageRegistry.set(null,new Map([[null,this.getPackageInformation(this.opts.project.topLevelWorkspace.anchoredLocator)]]));const e=this.opts.project.configuration.get("pnpFallbackMode"),t=this.blacklistedPaths,r=this.opts.project.workspaces.map(({anchoredLocator:e})=>({name:l.structUtils.requirableIdent(e),reference:e.reference})),n="none"!==e,i=[],A=new Map,o=l.miscUtils.buildIgnorePattern([".yarn/sdks/**",...this.opts.project.configuration.get("pnpIgnorePatterns")]),s=this.packageRegistry,a=this.opts.project.configuration.get("pnpShebang");if("dependencies-only"===e)for(const e of this.opts.project.storedPackages.values())this.opts.project.tryWorkspaceByLocator(e)&&i.push({name:l.structUtils.requirableIdent(e),reference:e.reference});return await this.finalizeInstallWithPnp({blacklistedLocations:t,dependencyTreeRoots:r,enableTopLevelFallback:n,fallbackExclusionList:i,fallbackPool:A,ignorePattern:o,packageRegistry:s,shebang:a})}getPackageInformation(e){const t=l.structUtils.requirableIdent(e),r=e.reference,n=this.packageRegistry.get(t);if(!n)throw new Error(`Assertion failed: The package information store should have been available (for ${l.structUtils.prettyIdent(this.opts.project.configuration,e)})`);const i=n.get(r);if(!i)throw new Error(`Assertion failed: The package information should have been available (for ${l.structUtils.prettyLocator(this.opts.project.configuration,e)})`);return i}getDiskInformation(e){const t=l.miscUtils.getMapWithDefault(this.packageRegistry,"@@disk"),r=this.normalizeDirectoryPath(e);return l.miscUtils.getFactoryWithDefault(t,r,()=>({packageLocation:r,packageDependencies:new Map,packagePeers:new Set,linkType:C.U.SOFT,discardFromLookup:!1}))}trimBlacklistedPackages(){for(const e of this.packageRegistry.values())for(const[t,r]of e)r.packageLocation&&this.blacklistedPaths.has(r.packageLocation)&&e.delete(t)}normalizeDirectoryPath(e){let t=A.y1.relative(this.opts.project.cwd,e);return t.match(/^\.{0,2}\//)||(t="./"+t),t.replace(/\/?$/,"/")}}function I(e,{configuration:t}){return A.y1.resolve(t.get("pnpUnpluggedFolder"),l.structUtils.slugifyLocator(e))}const E=new Set([l.structUtils.makeIdent(null,"nan").identHash,l.structUtils.makeIdent(null,"node-gyp").identHash,l.structUtils.makeIdent(null,"node-pre-gyp").identHash,l.structUtils.makeIdent(null,"node-addon-api").identHash,l.structUtils.makeIdent(null,"fsevents").identHash]),m=new Set([".exe",".h",".hh",".hpp",".c",".cc",".cpp",".java",".jar",".node"]);class B{constructor(){this.mode="strict"}supportsPackage(e,t){return"pnp"===t.project.configuration.get("nodeLinker")&&t.project.configuration.get("pnpMode")===this.mode}async findPackageLocation(e,t){const r=F(t.project).main;if(!o.xfs.existsSync(r))throw new f.UsageError(`The project in ${t.project.cwd}/package.json doesn't seem to have been installed - running an install there might help`);const n=l.miscUtils.dynamicRequireNoCache(r),i={name:l.structUtils.requirableIdent(e),reference:e.reference},s=n.getPackageInformation(i);if(!s)throw new f.UsageError(`Couldn't find ${l.structUtils.prettyLocator(t.project.configuration,e)} in the currently installed PnP map - running an install might help`);return A.cS.toPortablePath(s.packageLocation)}async findPackageLocator(e,t){const n=F(t.project).main;if(!o.xfs.existsSync(n))return null;const i=A.cS.fromPortablePath(n),s=l.miscUtils.dynamicRequire(i);delete r.c[i];const a=s.findPackageLocator(A.cS.fromPortablePath(e));return a?l.structUtils.makeLocator(l.structUtils.parseIdent(a.name),a.reference):null}makeInstaller(e){return new w(e)}}class w extends d{constructor(){super(...arguments),this.mode="strict",this.unpluggedPaths=new Set}async getBuildScripts(e,t,r){if(null===t)return[];const n=[];for(const e of["preinstall","install","postinstall"])t.scripts.has(e)&&n.push([g.k.SCRIPT,e]);const i=A.y1.join(r.prefixPath,"binding.gyp");return!t.scripts.has("install")&&r.packageFs.existsSync(i)&&n.push([g.k.SHELLCODE,"node-gyp rebuild"]),n}async transformPackage(e,t,r,n,{hasBuildScripts:i}){return this.isUnplugged(e,t,r,n,{hasBuildScripts:i})?this.unplugPackage(e,r.packageFs):r.packageFs}async finalizeInstallWithPnp(e){if(this.opts.project.configuration.get("pnpMode")!==this.mode)return;const t=F(this.opts.project),r=this.opts.project.configuration.get("pnpDataPath");if(await o.xfs.removePromise(t.other),"pnp"!==this.opts.project.configuration.get("nodeLinker"))return await o.xfs.removePromise(t.main),void await o.xfs.removePromise(r);const n=await this.locateNodeModules(e.ignorePattern);if(n.length>0){this.opts.report.reportWarning(c.b.DANGEROUS_NODE_MODULES,"One or more node_modules have been detected and will be removed. This operation may take some time.");for(const e of n)await o.xfs.removePromise(e)}if(this.opts.project.configuration.get("pnpEnableInlining")){const n=(0,h.gY)(e);await o.xfs.changeFilePromise(t.main,n,{automaticNewlines:!0}),await o.xfs.chmodPromise(t.main,493),await o.xfs.removePromise(r)}else{const n=A.y1.relative(A.y1.dirname(t.main),r),{dataFile:i,loaderFile:s}=(0,h.Q$)({...e,dataLocation:n});await o.xfs.changeFilePromise(t.main,s,{automaticNewlines:!0}),await o.xfs.chmodPromise(t.main,493),await o.xfs.changeFilePromise(r,i,{automaticNewlines:!0}),await o.xfs.chmodPromise(r,420)}const i=this.opts.project.configuration.get("pnpUnpluggedFolder");if(0===this.unpluggedPaths.size)await o.xfs.removePromise(i);else for(const e of await o.xfs.readdirPromise(i)){const t=A.y1.resolve(i,e);this.unpluggedPaths.has(t)||await o.xfs.removePromise(t)}}async locateNodeModules(e){const t=[],r=e?new RegExp(e):null;for(const e of this.opts.project.workspaces){const n=A.y1.join(e.cwd,"node_modules");if(r&&r.test(A.y1.relative(this.opts.project.cwd,e.cwd))||!o.xfs.existsSync(n))continue;const i=await o.xfs.readdirPromise(n,{withFileTypes:!0}),s=i.filter(e=>!e.isDirectory()||".bin"===e.name||!e.name.startsWith("."));if(s.length===i.length)t.push(n);else for(const e of s)t.push(A.y1.join(n,e.name))}return t}async unplugPackage(e,t){const r=I(e,{configuration:this.opts.project.configuration});return this.unpluggedPaths.add(r),await o.xfs.mkdirPromise(r,{recursive:!0}),await o.xfs.copyPromise(r,A.LZ.dot,{baseFs:t,overwrite:!1}),new u.M(r)}isUnplugged(e,t,r,n,{hasBuildScripts:i}){return void 0!==n.unplugged?n.unplugged:!!E.has(e.identHash)||(null!==t&&null!==t.preferUnplugged?t.preferUnplugged:!(!i&&!r.packageFs.getExtractHint({relevantExtensions:m})))}}var y=r(36370),Q=r(95397),v=r(40376),b=r(28148),D=r(15815),S=r(2401),k=r.n(S);class M extends Q.BaseCommand{constructor(){super(...arguments),this.patterns=[],this.all=!1,this.recursive=!1,this.json=!1}async execute(){const e=await i.VK.find(this.context.cwd,this.context.plugins),{project:t,workspace:r}=await v.I.find(e,this.context.cwd),n=await b.C.find(e);if(!r)throw new Q.WorkspaceRequiredError(t.cwd,this.context.cwd);if("pnp"!==e.get("nodeLinker"))throw new f.UsageError("This command can only be used if the `nodeLinker` option is set to `pnp`");await t.restoreInstallState();const A=new Set(this.patterns),o=this.patterns.map(t=>{const r=l.structUtils.parseDescriptor(t),n="unknown"!==r.range?r:l.structUtils.makeDescriptor(r,"*");if(!a().validRange(n.range))throw new f.UsageError(`The range of the descriptor patterns must be a valid semver range (${l.structUtils.prettyDescriptor(e,n)})`);return e=>{const r=l.structUtils.stringifyIdent(e);return!!k().isMatch(r,l.structUtils.stringifyIdent(n))&&(!(e.version&&!l.semverUtils.v(e.version,n.range))&&(A.delete(t),!0))}}),s=e=>{const r=new Set,n=[],i=(e,A)=>{if(!r.has(e.locatorHash)&&(r.add(e.locatorHash),t.tryWorkspaceByLocator(e)||l.structUtils.isVirtualLocator(e)||!o.some(t=>t(e))||n.push(e),!(A>0)||this.recursive))for(const r of e.dependencies.values()){const e=t.storedResolutions.get(r.descriptorHash);if(!e)throw new Error("Assertion failed: The resolution should have been registered");const n=t.storedPackages.get(e);if(!n)throw new Error("Assertion failed: The package should have been registered");i(n,A+1)}};for(const r of e){const e=t.storedPackages.get(r.anchoredLocator.locatorHash);if(!e)throw new Error("Assertion failed: The package should have been registered");i(e,0)}return n};let g;g=this.all&&this.recursive?(()=>{const e=[];for(const r of t.storedPackages.values())t.tryWorkspaceByLocator(r)||l.structUtils.isVirtualLocator(r)||!o.some(e=>e(r))||e.push(r);return e})():this.all?s(t.workspaces):s([r]);const u=this.recursive?"the project":"any workspace";if(A.size>1)throw new f.UsageError(`Patterns ${[...A].join(", ")} don't match any packages referenced by ${u}`);if(A.size>0)throw new f.UsageError(`Pattern ${[...A][0]} doesn't match any packages referenced by ${u}`);g=l.miscUtils.sortMap(g,e=>l.structUtils.stringifyLocator(e));return(await D.Pk.start({configuration:e,stdout:this.context.stdout,json:this.json},async r=>{var A;for(const n of g){const o=null!==(A=n.version)&&void 0!==A?A:"unknown";t.topLevelWorkspace.manifest.ensureDependencyMeta(l.structUtils.makeDescriptor(n,o)).unplugged=!0,r.reportInfo(c.b.UNNAMED,`Will unpack ${l.structUtils.prettyLocator(e,n)} to ${e.format(I(n,{configuration:e}),i.a5.PATH)}`),r.reportJson({locator:l.structUtils.stringifyLocator(n),version:o})}await t.topLevelWorkspace.persistManifest(),r.reportSeparator(),await t.install({cache:n,report:r})})).exitCode()}}M.usage=f.Command.Usage({description:"force the unpacking of a list of packages",details:"\n This command will add the selectors matching the specified patterns to the list of packages that must be unplugged when installed.\n\n A package being unplugged means that instead of being referenced directly through its archive, it will be unpacked at install time in the directory configured via `pnpUnpluggedFolder`. Note that unpacking packages this way is generally not recommended because it'll make it harder to store your packages within the repository. However, it's a good approach to quickly and safely debug some packages, and can even sometimes be required depending on the context (for example when the package contains shellscripts).\n\n Running the command will set a persistent flag inside your top-level `package.json`, in the `dependenciesMeta` field. As such, to undo its effects, you'll need to revert the changes made to the manifest and run `yarn install` to apply the modification.\n\n By default, only direct dependencies from the current workspace are affected. If `-A,--all` is set, direct dependencies from the entire project are affected. Using the `-R,--recursive` flag will affect transitive dependencies as well as direct ones.\n\n This command accepts glob patterns inside the scope and name components (not the range). Make sure to escape the patterns to prevent your own shell from trying to expand them.\n ",examples:[["Unplug the lodash dependency from the active workspace","yarn unplug lodash"],["Unplug all instances of lodash referenced by any workspace","yarn unplug lodash -A"],["Unplug all instances of lodash referenced by the active workspace and its dependencies","yarn unplug lodash -R"],["Unplug all instances of lodash, anywhere","yarn unplug lodash -AR"],["Unplug one specific version of lodash","yarn unplug lodash@1.2.3"],["Unplug all packages with the `@babel` scope","yarn unplug '@babel/*'"],["Unplug all packages (only for testing, not recommended)","yarn unplug -R '*'"]]}),(0,y.gn)([f.Command.Rest()],M.prototype,"patterns",void 0),(0,y.gn)([f.Command.Boolean("-A,--all")],M.prototype,"all",void 0),(0,y.gn)([f.Command.Boolean("-R,--recursive")],M.prototype,"recursive",void 0),(0,y.gn)([f.Command.Boolean("--json")],M.prototype,"json",void 0),(0,y.gn)([f.Command.Path("unplug")],M.prototype,"execute",null);const F=e=>{let t,r;return"module"===e.topLevelWorkspace.manifest.type?(t=".pnp.cjs",r=".pnp.js"):(t=".pnp.js",r=".pnp.cjs"),{main:A.y1.join(e.cwd,t),other:A.y1.join(e.cwd,r)}},N=e=>/\s/.test(e)?JSON.stringify(e):e;const R={hooks:{populateYarnPaths:async function(e,t){t(F(e).main),t(F(e).other),t(e.configuration.get("pnpDataPath")),t(e.configuration.get("pnpUnpluggedFolder"))},setupScriptEnvironment:async function(e,t,r){const n=F(e).main,i="--require "+N(A.cS.fromPortablePath(n));if(n.includes(" ")&&a().lt(process.versions.node,"12.0.0"))throw new Error(`Expected the build location to not include spaces when using Node < 12.0.0 (${process.versions.node})`);if(o.xfs.existsSync(n)){let e=t.NODE_OPTIONS||"";const r=/\s*--require\s+\S*\.pnp\.c?js\s*/g;e=e.replace(r," ").trim(),e=e?`${i} ${e}`:i,t.NODE_OPTIONS=e}}},configuration:{nodeLinker:{description:'The linker used for installing Node packages, one of: "pnp", "node-modules"',type:i.a2.STRING,default:"pnp"},pnpMode:{description:"If 'strict', generates standard PnP maps. If 'loose', merges them with the n_m resolution.",type:i.a2.STRING,default:"strict"},pnpShebang:{description:"String to prepend to the generated PnP script",type:i.a2.STRING,default:"#!/usr/bin/env node"},pnpIgnorePatterns:{description:"Array of glob patterns; files matching them will use the classic resolution",type:i.a2.STRING,default:[],isArray:!0},pnpEnableInlining:{description:"If true, the PnP data will be inlined along with the generated loader",type:i.a2.BOOLEAN,default:!0},pnpFallbackMode:{description:"If true, the generated PnP loader will follow the top-level fallback rule",type:i.a2.STRING,default:"dependencies-only"},pnpUnpluggedFolder:{description:"Folder where the unplugged packages must be stored",type:i.a2.ABSOLUTE_PATH,default:"./.yarn/unplugged"},pnpDataPath:{description:"Path of the file where the PnP data (used by the loader) must be written",type:i.a2.ABSOLUTE_PATH,default:"./.pnp.data.json"}},linkers:[B],commands:[M]}},28638:(e,t,r)=>{"use strict";r.r(t);var n=r(50683),i=r.n(n);Object.fromEntries||(Object.fromEntries=i());var A=r(59355),o=r(91058),s=r(45330);(0,o.D)({binaryVersion:A.o||"",pluginConfiguration:(0,s.e)()})},95397:(e,t,r)=>{"use strict";r.r(t),r.d(t,{BaseCommand:()=>n.F,WorkspaceRequiredError:()=>s,getDynamicLibs:()=>c,getPluginConfiguration:()=>g.e,openWorkspace:()=>u,main:()=>h.D,pluginCommands:()=>f.f});var n=r(56087),i=r(46611),A=r(46009),o=r(93103);class s extends o.UsageError{constructor(e,t){super(`This command can only be run from within a workspace of your project (${A.y1.relative(e,t)} isn't a workspace of ${A.y1.join(e,i.G.fileName)}).`)}}const a=["@yarnpkg/cli","@yarnpkg/core","@yarnpkg/fslib","@yarnpkg/libzip","@yarnpkg/parsers","@yarnpkg/shell","clipanion","semver","yup"],c=()=>new Map(a.map(e=>[e,r(98497)(e)]));var g=r(45330),l=r(40376);async function u(e,t){const{project:r,workspace:n}=await l.I.find(e,t);if(!n)throw new s(r.cwd,t);return n}var h=r(91058),f=r(15683)},91058:(e,t,r)=>{"use strict";r.d(t,{D:()=>p});var n=r(5624),i=r(27122),A=r(81832),o=r(46009),s=r(56537),a=r(63129),c=r(93103),g=r(35747),l=r(15683),u=r(36370),h=r(56087);class f extends h.F{async execute(){const e=await i.VK.find(this.context.cwd,this.context.plugins);this.context.stdout.write((e=>`\n${e.format("Welcome on Yarn 2!","bold")} 🎉 Thanks for helping us shape our vision of how projects\nshould be managed going forward.\n\nBeing still in RC, Yarn 2 isn't completely stable yet. Some features might be\nmissing, and some behaviors may have received major overhaul. In case of doubt,\nuse the following URLs to get some insight:\n\n - The changelog:\n ${e.format("https://github.com/yarnpkg/berry/tree/CHANGELOG.md","cyan")}\n\n - Our issue tracker:\n ${e.format("https://github.com/yarnpkg/berry","cyan")}\n\n - Our Discord server:\n ${e.format("https://discord.gg/yarnpkg","cyan")}\n\nWe're hoping you will enjoy the experience. For now, a good start is to run\nthe two following commands:\n\n ${e.format("find . -name node_modules -prune -exec rm -r {} \\;","magenta")}\n ${e.format("yarn install","magenta")}\n\nOne last trick! If you need at some point to upgrade Yarn to a nightly build,\nthe following command will install the CLI straight from master:\n\n ${e.format("yarn set version from sources","magenta")}\n\nSee you later 👋\n`)(e).trim()+"\n")}}async function p({binaryVersion:e,pluginConfiguration:t}){async function r(){const u=new c.Cli({binaryLabel:"Yarn Package Manager",binaryName:"yarn",binaryVersion:e});u.register(f);try{await async function(u){var h,f,p,C,d;const I=process.versions.node;if(!n.semverUtils.v(I,">=10.17")&&"1"!==process.env.YARN_IGNORE_NODE)throw new c.UsageError(`This tool requires a Node version compatible with >=10.17 (got ${I}). Upgrade Node, or set \`YARN_IGNORE_NODE=1\` in your environment.`);const E=await i.VK.find(o.cS.toPortablePath(process.cwd()),t,{usePath:!0,strict:!1}),m=E.get("yarnPath"),B=E.get("ignorePath"),w=E.get("ignoreCwd");if(null===m||B){B&&delete process.env.YARN_IGNORE_PATH;E.get("enableTelemetry")&&(i.VK.telemetry=new A.E(E,"puba9cdc10ec5790a2cf4969dd413a47270")),null===(h=i.VK.telemetry)||void 0===h||h.reportVersion(e);for(const[e,t]of E.plugins.entries()){l.f.has(null!==(p=null===(f=e.match(/^@yarnpkg\/plugin-(.*)$/))||void 0===f?void 0:f[1])&&void 0!==p?p:"")&&(null===(C=i.VK.telemetry)||void 0===C||C.reportPluginName(e));for(const e of t.commands||[])u.register(e)}const n=u.process(process.argv.slice(2));n.help||null===(d=i.VK.telemetry)||void 0===d||d.reportCommandName(n.path.join(" "));const s=n.cwd;if(void 0!==s&&!w){const e=(0,g.realpathSync)(process.cwd()),t=(0,g.realpathSync)(s);if(e!==t)return process.chdir(s),void await r()}await u.runExit(n,{cwd:o.cS.toPortablePath(process.cwd()),plugins:t,quiet:!1,stdin:process.stdin,stdout:process.stdout,stderr:process.stderr})}else if(s.xfs.existsSync(m))try{!function(e){const t=o.cS.fromPortablePath(e);process.on("SIGINT",()=>{}),t?(0,a.execFileSync)(process.execPath,[t,...process.argv.slice(2)],{stdio:"inherit",env:{...process.env,YARN_IGNORE_PATH:"1",YARN_IGNORE_CWD:"1"}}):(0,a.execFileSync)(t,process.argv.slice(2),{stdio:"inherit",env:{...process.env,YARN_IGNORE_PATH:"1",YARN_IGNORE_CWD:"1"}})}(m)}catch(e){process.exitCode=e.code||1}else process.stdout.write(u.error(new Error(`The "yarn-path" option has been set (in ${E.sources.get("yarnPath")}), but the specified location doesn't exist (${m}).`))),process.exitCode=1}(u)}catch(e){process.stdout.write(u.error(e)),process.exitCode=1}}return r().catch(e=>{process.stdout.write(e.stack||e.message),process.exitCode=1}).finally(()=>s.xfs.rmtempPromise())}(0,u.gn)([c.Command.Path("--welcome")],f.prototype,"execute",null)},15683:(e,t,r)=>{"use strict";r.d(t,{f:()=>n});const n=new Map([["constraints",[["constraints","query"],["constraints","source"],["constraints"]]],["exec",[]],["interactive-tools",[["search"],["upgrade-interactive"]]],["stage",[["stage"]]],["typescript",[]],["version",[["version","apply"],["version","check"],["version"]]],["workspace-tools",[["workspaces","focus"],["workspaces","foreach"]]]])},56087:(e,t,r)=>{"use strict";r.d(t,{F:()=>A});var n=r(36370),i=r(93103);class A extends i.Command{}(0,n.gn)([i.Command.String("--cwd",{hidden:!0})],A.prototype,"cwd",void 0)},28148:(e,t,r)=>{"use strict";r.d(t,{C:()=>I});var n=r(78420),i=r(15037),A=r(90739),o=r(14626),s=r(46009),a=r(56537),c=r(29486),g=r(35747),l=r.n(g),u=r(92659),h=r(35691),f=r(20624),p=r(73632),C=r(54143);const d=6;class I{constructor(e,{configuration:t,immutable:r=t.get("enableImmutableCache"),check:n=!1}){this.markedFiles=new Set,this.mutexes=new Map,this.configuration=t,this.cwd=e,this.immutable=r,this.check=n;const i=t.get("cacheKeyOverride");if(null!==i)this.cacheKey=""+i;else{const e=t.get("compressionLevel"),r=e!==A.k?"c"+e:"";this.cacheKey=[d,r].join("")}}static async find(e,{immutable:t,check:r}={}){const n=new I(e.get("cacheFolder"),{configuration:e,immutable:t,check:r});return await n.setup(),n}get mirrorCwd(){if(!this.configuration.get("enableMirror"))return null;const e=this.configuration.get("globalFolder")+"/cache";return e!==this.cwd?e:null}getVersionFilename(e){return`${C.slugifyLocator(e)}-${this.cacheKey}.zip`}getChecksumFilename(e,t){const r=function(e){const t=e.indexOf("/");return-1!==t?e.slice(t+1):e}(t).slice(0,10);return`${C.slugifyLocator(e)}-${r}.zip`}getLocatorPath(e,t){if(null===this.mirrorCwd)return s.y1.resolve(this.cwd,this.getVersionFilename(e));if(null===t)return null;return E(t)!==this.cacheKey?null:s.y1.resolve(this.cwd,this.getChecksumFilename(e,t))}getLocatorMirrorPath(e){const t=this.mirrorCwd;return null!==t?s.y1.resolve(t,this.getVersionFilename(e)):null}async setup(){if(!this.configuration.get("enableGlobalCache")){await a.xfs.mkdirPromise(this.cwd,{recursive:!0});const e=s.y1.resolve(this.cwd,".gitignore");await a.xfs.existsPromise(e)||await a.xfs.writeFilePromise(e,"/.gitignore\n*.lock\n")}}async fetchPackageFromCache(e,t,{onHit:r,onMiss:g,loader:d,skipIntegrityCheck:I}){const m=this.getLocatorMirrorPath(e),B=new n.S,w=async(e,r=null)=>{const n=I&&t?t:`${this.cacheKey}/${await f.checksumFile(e)}`;if(null!==r){if(n!==(I&&t?t:`${this.cacheKey}/${await f.checksumFile(r)}`))throw new h.lk(u.b.CACHE_CHECKSUM_MISMATCH,"The remote archive doesn't match the local checksum - has the local cache been corrupted?")}if(null!==t&&n!==t){let e;switch(e=this.check?"throw":E(t)!==E(n)?"update":this.configuration.get("checksumBehavior"),e){case"ignore":return t;case"update":return n;default:case"throw":throw new h.lk(u.b.CACHE_CHECKSUM_MISMATCH,"The remote archive doesn't match the expected checksum")}}return n},y=async t=>{if(!d)throw new Error("Cache check required but no loader configured for "+C.prettyLocator(this.configuration,e));const r=await d(),n=r.getRealPath();return r.saveAndClose(),await a.xfs.chmodPromise(n,420),await w(t,n)},Q=async()=>{if(null===m||!await a.xfs.existsPromise(m)){const e=await d(),t=e.getRealPath();return e.saveAndClose(),t}const t=await a.xfs.mktempPromise(),r=s.y1.join(t,this.getVersionFilename(e));return await a.xfs.copyFilePromise(m,r,l().constants.COPYFILE_FICLONE),r},v=async()=>{if(!d)throw new Error("Cache entry required but missing for "+C.prettyLocator(this.configuration,e));if(this.immutable)throw new h.lk(u.b.IMMUTABLE_CACHE,"Cache entry required but missing for "+C.prettyLocator(this.configuration,e));const t=await Q();await a.xfs.chmodPromise(t,420);const r=await w(t),n=this.getLocatorPath(e,r);if(!n)throw new Error("Assertion failed: Expected the cache path to be available");return await this.writeFileWithLock(n,async()=>await this.writeFileWithLock(m,async()=>(await a.xfs.movePromise(t,n),null!==m&&await a.xfs.copyFilePromise(n,m,l().constants.COPYFILE_FICLONE),[n,r])))};for(let t;t=this.mutexes.get(e.locatorHash);)await t;const[b,D]=await(async()=>{const n=(async()=>{const n=this.getLocatorPath(e,t),i=null!==n&&await B.existsPromise(n),A=i?r:g;if(A&&A(),i){let e=null;const t=n;return e=this.check?await y(t):await w(t),[t,e]}return v()})();this.mutexes.set(e.locatorHash,n);try{return await n}finally{this.mutexes.delete(e.locatorHash)}})();this.markedFiles.add(b);let S=null;const k=await(0,c.getLibzipPromise)(),M=new i.v(()=>p.prettifySyncErrors(()=>S=new A.d(b,{baseFs:B,libzip:k,readOnly:!0}),t=>`Failed to open the cache entry for ${C.prettyLocator(this.configuration,e)}: ${t}`),s.y1);return[new o.K(b,{baseFs:M,pathUtils:s.y1}),()=>{null!==S&&S.discardAndClose()},D]}async writeFileWithLock(e,t){return null===e?await t():(await a.xfs.mkdirPromise(s.y1.dirname(e),{recursive:!0}),await a.xfs.lockPromise(e,async()=>await t()))}}function E(e){const t=e.indexOf("/");return-1!==t?e.slice(0,t):null}},27122:(e,t,r)=>{"use strict";r.d(t,{tr:()=>Y,nh:()=>G,a2:()=>_,a5:()=>H,EW:()=>Z,VK:()=>$});var n=r(90739),i=r(46009),A=r(56537),o=r(55125),s=r(54738),a=r.n(s),c=r(95882),g=r.n(c),l=r(5864),u=r(93103),h=r(61578),f=r.n(h),p=r(53887),C=r.n(p),d=r(92413),I=r(92659),E=r(54143);const m={hooks:{reduceDependency:(e,t,r,n,{resolver:i,resolveOptions:A})=>{for(const{pattern:n,reference:o}of t.topLevelWorkspace.manifest.resolutions){if(n.from&&n.from.fullName!==E.requirableIdent(r))continue;if(n.from&&n.from.description&&n.from.description!==r.reference)continue;if(n.descriptor.fullName!==E.requirableIdent(e))continue;if(n.descriptor.description&&n.descriptor.description!==e.range)continue;return i.bindDescriptor(E.makeDescriptor(e,o),t.topLevelWorkspace.anchoredLocator,A)}return e},validateProject:async(e,t)=>{for(const r of e.workspaces){const n=E.prettyWorkspace(e.configuration,r);await e.configuration.triggerHook(e=>e.validateWorkspace,r,{reportWarning:(e,r)=>t.reportWarning(e,`${n}: ${r}`),reportError:(e,r)=>t.reportError(e,`${n}: ${r}`)})}},validateWorkspace:async(e,t)=>{const{manifest:r}=e;r.resolutions.length&&e.cwd!==e.project.cwd&&r.errors.push(new Error("Resolutions field will be ignored"));for(const e of r.errors)t.reportWarning(I.b.INVALID_MANIFEST,e.message)}}};var B=r(46611),w=r(35691);class y{constructor(e){this.fetchers=e}supports(e,t){return!!this.tryFetcher(e,t)}getLocalPath(e,t){return this.getFetcher(e,t).getLocalPath(e,t)}async fetch(e,t){const r=this.getFetcher(e,t);return await r.fetch(e,t)}tryFetcher(e,t){const r=this.fetchers.find(r=>r.supports(e,t));return r||null}getFetcher(e,t){const r=this.fetchers.find(r=>r.supports(e,t));if(!r)throw new w.lk(I.b.FETCHER_NOT_FOUND,E.prettyLocator(t.project.configuration,e)+" isn't supported by any available fetcher");return r}}var Q=r(27092),v=r(52779),b=r(60895);class D{static isVirtualDescriptor(e){return!!e.range.startsWith(D.protocol)}static isVirtualLocator(e){return!!e.reference.startsWith(D.protocol)}supportsDescriptor(e,t){return D.isVirtualDescriptor(e)}supportsLocator(e,t){return D.isVirtualLocator(e)}shouldPersistResolution(e,t){return!1}bindDescriptor(e,t,r){throw new Error('Assertion failed: calling "bindDescriptor" on a virtual descriptor is unsupported')}getResolutionDependencies(e,t){throw new Error('Assertion failed: calling "getResolutionDependencies" on a virtual descriptor is unsupported')}async getCandidates(e,t,r){throw new Error('Assertion failed: calling "getCandidates" on a virtual descriptor is unsupported')}async getSatisfying(e,t,r){throw new Error('Assertion failed: calling "getSatisfying" on a virtual descriptor is unsupported')}async resolve(e,t){throw new Error('Assertion failed: calling "resolve" on a virtual locator is unsupported')}}D.protocol="virtual:";var S=r(75448),k=r(94538);class M{supports(e){return!!e.reference.startsWith(k.d.protocol)}getLocalPath(e,t){return this.getWorkspace(e,t).cwd}async fetch(e,t){const r=this.getWorkspace(e,t).cwd;return{packageFs:new S.M(r),prefixPath:i.LZ.dot,localPath:r}}getWorkspace(e,t){return t.project.getWorkspaceByCwd(e.reference.slice(k.d.protocol.length))}}var F=r(81111),N=r(73632),R=r(32282),K=r.n(R);function x(e){return("undefined"!=typeof require?require:r(32178))(e)}var L=r(36545);const P=process.env.GITHUB_ACTIONS?{level:2}:g().supportsColor?{level:g().supportsColor.level}:{level:0},U=0!==P.level,T=U&&!process.env.GITHUB_ACTIONS,O=new(g().Instance)(P),j=new Set(["binFolder","version","flags","profile","gpg","ignoreNode","wrapOutput"]),Y=".yarnrc.yml",G="yarn.lock";var _,H;!function(e){e.ANY="ANY",e.BOOLEAN="BOOLEAN",e.ABSOLUTE_PATH="ABSOLUTE_PATH",e.LOCATOR="LOCATOR",e.LOCATOR_LOOSE="LOCATOR_LOOSE",e.NUMBER="NUMBER",e.STRING="STRING",e.SECRET="SECRET",e.SHAPE="SHAPE",e.MAP="MAP"}(_||(_={})),function(e){e.NAME="NAME",e.NUMBER="NUMBER",e.PATH="PATH",e.RANGE="RANGE",e.REFERENCE="REFERENCE",e.SCOPE="SCOPE",e.ADDED="ADDED",e.REMOVED="REMOVED",e.CODE="CODE"}(H||(H={}));const J=P.level>=3?new Map([[H.NAME,"#d7875f"],[H.RANGE,"#00afaf"],[H.REFERENCE,"#87afff"],[H.NUMBER,"#ffd700"],[H.PATH,"#d75fd7"],[H.SCOPE,"#d75f00"],[H.ADDED,"#5faf00"],[H.REMOVED,"#d70000"],[H.CODE,"#87afff"]]):new Map([[H.NAME,173],[H.RANGE,37],[H.REFERENCE,111],[H.NUMBER,220],[H.PATH,170],[H.SCOPE,166],[H.ADDED,70],[H.REMOVED,160],[H.CODE,111]]),q={lastUpdateCheck:{description:"Last timestamp we checked whether new Yarn versions were available",type:_.STRING,default:null},yarnPath:{description:"Path to the local executable that must be used over the global one",type:_.ABSOLUTE_PATH,default:null},ignorePath:{description:"If true, the local executable will be ignored when using the global one",type:_.BOOLEAN,default:!1},ignoreCwd:{description:"If true, the `--cwd` flag will be ignored",type:_.BOOLEAN,default:!1},cacheKeyOverride:{description:"A global cache key override; used only for test purposes",type:_.STRING,default:null},globalFolder:{description:"Folder where are stored the system-wide settings",type:_.ABSOLUTE_PATH,default:F.getDefaultGlobalFolder()},cacheFolder:{description:"Folder where the cache files must be written",type:_.ABSOLUTE_PATH,default:"./.yarn/cache"},compressionLevel:{description:"Zip files compression level, from 0 to 9 or mixed (a variant of 9, which stores some files uncompressed, when compression doesn't yield good results)",type:_.NUMBER,values:["mixed",0,1,2,3,4,5,6,7,8,9],default:n.k},virtualFolder:{description:"Folder where the virtual packages (cf doc) will be mapped on the disk (must be named $$virtual)",type:_.ABSOLUTE_PATH,default:"./.yarn/$$virtual"},bstatePath:{description:"Path of the file where the current state of the built packages must be stored",type:_.ABSOLUTE_PATH,default:"./.yarn/build-state.yml"},lockfileFilename:{description:"Name of the files where the Yarn dependency tree entries must be stored",type:_.STRING,default:G},installStatePath:{description:"Path of the file where the install state will be persisted",type:_.ABSOLUTE_PATH,default:"./.yarn/install-state.gz"},immutablePatterns:{description:"Array of glob patterns; files matching them won't be allowed to change during immutable installs",type:_.STRING,default:[],isArray:!0},rcFilename:{description:"Name of the files where the configuration can be found",type:_.STRING,default:X()},enableGlobalCache:{description:"If true, the system-wide cache folder will be used regardless of `cache-folder`",type:_.BOOLEAN,default:!1},enableAbsoluteVirtuals:{description:"If true, the virtual symlinks will use absolute paths if required [non portable!!]",type:_.BOOLEAN,default:!1},enableColors:{description:"If true, the CLI is allowed to use colors in its output",type:_.BOOLEAN,default:U,defaultText:""},enableHyperlinks:{description:"If true, the CLI is allowed to use hyperlinks in its output",type:_.BOOLEAN,default:T,defaultText:""},enableInlineBuilds:{description:"If true, the CLI will print the build output on the command line",type:_.BOOLEAN,default:l.isCI,defaultText:""},enableProgressBars:{description:"If true, the CLI is allowed to show a progress bar for long-running events",type:_.BOOLEAN,default:!l.isCI&&process.stdout.isTTY&&process.stdout.columns>22,defaultText:""},enableTimers:{description:"If true, the CLI is allowed to print the time spent executing commands",type:_.BOOLEAN,default:!0},preferAggregateCacheInfo:{description:"If true, the CLI will only print a one-line report of any cache changes",type:_.BOOLEAN,default:l.isCI},preferInteractive:{description:"If true, the CLI will automatically use the interactive mode when called from a TTY",type:_.BOOLEAN,default:!1},preferTruncatedLines:{description:"If true, the CLI will truncate lines that would go beyond the size of the terminal",type:_.BOOLEAN,default:!1},progressBarStyle:{description:"Which style of progress bar should be used (only when progress bars are enabled)",type:_.STRING,default:void 0,defaultText:""},defaultLanguageName:{description:"Default language mode that should be used when a package doesn't offer any insight",type:_.STRING,default:"node"},defaultProtocol:{description:"Default resolution protocol used when resolving pure semver and tag ranges",type:_.STRING,default:"npm:"},enableTransparentWorkspaces:{description:"If false, Yarn won't automatically resolve workspace dependencies unless they use the `workspace:` protocol",type:_.BOOLEAN,default:!0},enableMirror:{description:"If true, the downloaded packages will be retrieved and stored in both the local and global folders",type:_.BOOLEAN,default:!0},enableNetwork:{description:"If false, the package manager will refuse to use the network if required to",type:_.BOOLEAN,default:!0},httpProxy:{description:"URL of the http proxy that must be used for outgoing http requests",type:_.STRING,default:null},httpsProxy:{description:"URL of the http proxy that must be used for outgoing https requests",type:_.STRING,default:null},unsafeHttpWhitelist:{description:"List of the hostnames for which http queries are allowed (glob patterns are supported)",type:_.STRING,default:[],isArray:!0},httpTimeout:{description:"Timeout of each http request in milliseconds",type:_.NUMBER,default:6e4},httpRetry:{description:"Retry times on http failure",type:_.NUMBER,default:3},networkConcurrency:{description:"Maximal number of concurrent requests",type:_.NUMBER,default:1/0},enableTelemetry:{description:"If true, telemetry will be periodically sent, following the rules in https://yarnpkg.com/advanced/telemetry",type:_.BOOLEAN,default:!l.isCI},telemetryInterval:{description:"Minimal amount of time between two telemetry uploads, in days",type:_.NUMBER,default:7},telemetryUserId:{description:"If you desire to tell us which project you are, you can set this field. Completely optional and opt-in.",type:_.STRING,default:null},enableScripts:{description:"If true, packages are allowed to have install scripts by default",type:_.BOOLEAN,default:!0},enableImmutableCache:{description:"If true, the cache is reputed immutable and actions that would modify it will throw",type:_.BOOLEAN,default:!1},checksumBehavior:{description:"Enumeration defining what to do when a checksum doesn't match expectations",type:_.STRING,default:"throw"},packageExtensions:{description:"Map of package corrections to apply on the dependency tree",type:_.MAP,valueDefinition:{description:"",type:_.ANY}}};function z(e,t,r,n,i){if(n.isArray)return Array.isArray(r)?r.map((r,A)=>W(e,`${t}[${A}]`,r,n,i)):String(r).split(/,/).map(r=>W(e,t,r,n,i));if(Array.isArray(r))throw new Error(`Non-array configuration settings "${t}" cannot be an array`);return W(e,t,r,n,i)}function W(e,t,r,n,A){var o;switch(n.type){case _.ANY:return r;case _.SHAPE:return function(e,t,r,n,i){if("object"!=typeof r||Array.isArray(r))throw new u.UsageError(`Object configuration settings "${t}" must be an object`);const A=V(e,n);if(null===r)return A;for(const[o,s]of Object.entries(r)){const r=`${t}.${o}`;if(!n.properties[o])throw new u.UsageError(`Unrecognized configuration settings found: ${t}.${o} - run "yarn config -v" to see the list of settings supported in Yarn`);A.set(o,z(e,r,s,n.properties[o],i))}return A}(e,t,r,n,A);case _.MAP:return function(e,t,r,n,i){const A=new Map;if("object"!=typeof r||Array.isArray(r))throw new u.UsageError(`Map configuration settings "${t}" must be an object`);if(null===r)return A;for(const[o,s]of Object.entries(r)){const r=n.normalizeKeys?n.normalizeKeys(o):o,a=`${t}['${r}']`,c=n.valueDefinition;A.set(r,z(e,a,s,c,i))}return A}(e,t,r,n,A)}if(null===r&&!n.isNullable&&null!==n.default)throw new Error(`Non-nullable configuration settings "${t}" cannot be set to null`);if(null===(o=n.values)||void 0===o?void 0:o.includes(r))return r;const s=(()=>{if(n.type===_.BOOLEAN)return function(e){switch(e){case"true":case"1":case 1:case!0:return!0;case"false":case"0":case 0:case!1:return!1;default:throw new Error(`Couldn't parse "${e}" as a boolean`)}}(r);if("string"!=typeof r)throw new Error(`Expected value (${r}) to be a string`);const e=N.replaceEnvVariables(r,{env:process.env});switch(n.type){case _.ABSOLUTE_PATH:return i.y1.resolve(A,i.cS.toPortablePath(e));case _.LOCATOR_LOOSE:return E.parseLocator(e,!1);case _.NUMBER:return parseInt(e);case _.LOCATOR:return E.parseLocator(e);default:return e}})();if(n.values&&!n.values.includes(s))throw new Error("Invalid value, expected one of "+n.values.join(", "));return s}function V(e,t){switch(t.type){case _.SHAPE:{const r=new Map;for(const[n,i]of Object.entries(t.properties))r.set(n,V(e,i));return r}case _.MAP:return new Map;case _.ABSOLUTE_PATH:return null===t.default?null:null===e.projectCwd?i.y1.isAbsolute(t.default)?i.y1.normalize(t.default):t.isNullable?null:void 0:Array.isArray(t.default)?t.default.map(t=>i.y1.resolve(e.projectCwd,t)):i.y1.resolve(e.projectCwd,t.default);default:return t.default}}function X(){for(const[e,t]of Object.entries(process.env))if("yarn_rc_filename"===e.toLowerCase()&&"string"==typeof t)return t;return Y}var Z;!function(e){e[e.LOCKFILE=0]="LOCKFILE",e[e.MANIFEST=1]="MANIFEST",e[e.NONE=2]="NONE"}(Z||(Z={}));class ${constructor(e){this.projectCwd=null,this.plugins=new Map,this.settings=new Map,this.values=new Map,this.sources=new Map,this.invalid=new Map,this.packageExtensions=new Map,this.limits=new Map,this.startingCwd=e}static create(e,t,r){const n=new $(e);void 0===t||t instanceof Map||(n.projectCwd=t),n.importSettings(q);const i=void 0!==r?r:t instanceof Map?t:new Map;for(const[e,t]of i)n.activatePlugin(e,t);return n}static async find(e,t,{lookup:r=Z.LOCKFILE,strict:n=!0,usePath:o=!1,useRc:s=!0}={}){const c=function(){const e={};for(let[t,r]of Object.entries(process.env))t=t.toLowerCase(),t.startsWith("yarn_")&&(t=a()(t.slice("yarn_".length)),e[t]=r);return e}();delete c.rcFilename;const g=await $.findRcFiles(e),l=await $.findHomeRcFile(),h=({ignoreCwd:e,yarnPath:t,ignorePath:r,lockfileFilename:n})=>({ignoreCwd:e,yarnPath:t,ignorePath:r,lockfileFilename:n}),f=({ignoreCwd:e,yarnPath:t,ignorePath:r,lockfileFilename:n,...i})=>i,p=new $(e);p.importSettings(h(q)),p.useWithSource("",h(c),e,{strict:!1});for(const{path:e,cwd:t,data:r}of g)p.useWithSource(e,h(r),t,{strict:!1});if(l&&p.useWithSource(l.path,h(l.data),l.cwd,{strict:!1}),o){const e=p.get("yarnPath"),t=p.get("ignorePath");if(null!==e&&!t)return p}const C=p.get("lockfileFilename");let d;switch(r){case Z.LOCKFILE:d=await $.findProjectCwd(e,C);break;case Z.MANIFEST:d=await $.findProjectCwd(e,null);break;case Z.NONE:d=A.xfs.existsSync(i.y1.join(e,"package.json"))?i.y1.resolve(e):null}p.startingCwd=e,p.projectCwd=d,p.importSettings(f(q));const I=new Map([["@@core",m]]);if(null!==t){for(const e of t.plugins.keys())I.set(e,(E=t.modules.get(e)).__esModule?E.default:E);const r=new Map;for(const e of new Set(K().builtinModules||Object.keys(process.binding("natives"))))r.set(e,()=>x(e));for(const[e,n]of t.modules)r.set(e,()=>n);const n=new Set,A=e=>e.default||e,o=(e,t)=>{const{factory:o,name:s}=x(i.cS.fromPortablePath(e));if(n.has(s))return;const a=new Map(r),c=e=>{if(a.has(e))return a.get(e)();throw new u.UsageError(`This plugin cannot access the package referenced via ${e} which is neither a builtin, nor an exposed entry`)},g=N.prettifySyncErrors(()=>A(o(c)),e=>`${e} (when initializing ${s}, defined in ${t})`);r.set(s,()=>g),n.add(s),I.set(s,g)};if(c.plugins)for(const t of c.plugins.split(";")){o(i.y1.resolve(e,i.cS.toPortablePath(t)),"")}for(const{path:e,cwd:t,data:r}of g)if(s&&Array.isArray(r.plugins))for(const n of r.plugins){const r="string"!=typeof n?n.path:n;o(i.y1.resolve(t,i.cS.toPortablePath(r)),e)}}var E;for(const[e,t]of I)p.activatePlugin(e,t);p.useWithSource("",f(c),e,{strict:n});for(const{path:e,cwd:t,data:r}of g)p.useWithSource(e,f(r),t,{strict:n});return l&&p.useWithSource(l.path,f(l.data),l.cwd,{strict:!1}),p.get("enableGlobalCache")&&(p.values.set("cacheFolder",p.get("globalFolder")+"/cache"),p.sources.set("cacheFolder","")),await p.refreshPackageExtensions(),p}static async findRcFiles(e){const t=X(),r=[];let n=e,s=null;for(;n!==s;){s=n;const e=i.y1.join(s,t);if(A.xfs.existsSync(e)){const t=await A.xfs.readFilePromise(e,"utf8");let n;try{n=(0,o.parseSyml)(t)}catch(r){let n="";throw t.match(/^\s+(?!-)[^:]+\s+\S+/m)&&(n=" (in particular, make sure you list the colons after each key name)"),new u.UsageError(`Parse error when loading ${e}; please check it's proper Yaml${n}`)}r.push({path:e,cwd:s,data:n})}n=i.y1.dirname(s)}return r}static async findHomeRcFile(){const e=X(),t=F.getHomeFolder(),r=i.y1.join(t,e);if(A.xfs.existsSync(r)){const e=await A.xfs.readFilePromise(r,"utf8");return{path:r,cwd:t,data:(0,o.parseSyml)(e)}}return null}static async findProjectCwd(e,t){let r=null,n=e,o=null;for(;n!==o;){if(o=n,A.xfs.existsSync(i.y1.join(o,"package.json"))&&(r=o),null!==t){if(A.xfs.existsSync(i.y1.join(o,t))){r=o;break}}else if(null!==r)break;n=i.y1.dirname(o)}return r}static async updateConfiguration(e,t){const r=X(),n=i.y1.join(e,r),s=A.xfs.existsSync(n)?(0,o.parseSyml)(await A.xfs.readFilePromise(n,"utf8")):{};let a,c=!1;if("function"==typeof t){try{a=t(s)}catch(e){a=t({})}if(a===s)return}else{a=s;for(const e of Object.keys(t)){const r=s[e],n=t[e];let i;if("function"==typeof n)try{i=n(r)}catch(e){i=n(void 0)}else i=n;r!==i&&(a[e]=i,c=!0)}if(!c)return}await A.xfs.changeFilePromise(n,(0,o.stringifySyml)(a),{automaticNewlines:!0})}static async updateHomeConfiguration(e){const t=F.getHomeFolder();return await $.updateConfiguration(t,e)}activatePlugin(e,t){this.plugins.set(e,t),void 0!==t.configuration&&this.importSettings(t.configuration)}importSettings(e){for(const[t,r]of Object.entries(e)){if(this.settings.has(t))throw new Error(`Cannot redefine settings "${t}"`);this.settings.set(t,r),this.values.set(t,V(this,r))}}useWithSource(e,t,r,{strict:n=!0,overwrite:i=!1}){try{this.use(e,t,r,{strict:n,overwrite:i})}catch(t){throw t.message+=` (in ${e})`,t}}use(e,t,r,{strict:n=!0,overwrite:i=!1}){for(const A of Object.keys(t)){if(void 0===t[A])continue;if("plugins"===A)continue;if(""===e&&j.has(A))continue;if("rcFilename"===A)throw new u.UsageError(`The rcFilename settings can only be set via ${"yarn_RC_FILENAME".toUpperCase()}, not via a rc file`);const o=this.settings.get(A);if(!o){if(n)throw new u.UsageError(`Unrecognized or legacy configuration settings found: ${A} - run "yarn config -v" to see the list of settings supported in Yarn`);this.invalid.set(A,e);continue}if(this.sources.has(A)&&!i)continue;let s;try{s=z(this,A,t[A],o,r)}catch(t){throw t.message+=" in "+e,t}this.values.set(A,s),this.sources.set(A,e)}}get(e){if(!this.values.has(e))throw new Error(`Invalid configuration key "${e}"`);return this.values.get(e)}getSpecial(e,{hideSecrets:t=!1,getNativePaths:r=!1}){const n=this.get(e),A=this.settings.get(e);if(void 0===A)throw new u.UsageError(`Couldn't find a configuration settings named "${e}"`);return function e(t,r,n){if(r.type===_.SECRET&&"string"==typeof t&&n.hideSecrets)return"********";if(r.type===_.ABSOLUTE_PATH&&"string"==typeof t&&n.getNativePaths)return i.cS.fromPortablePath(t);if(r.isArray&&Array.isArray(t)){const i=[];for(const A of t)i.push(e(A,r,n));return i}if(r.type===_.MAP&&t instanceof Map){const i=new Map;for(const[A,o]of t.entries())i.set(A,e(o,r.valueDefinition,n));return i}if(r.type===_.SHAPE&&t instanceof Map){const i=new Map;for(const[A,o]of t.entries()){const t=r.properties[A];i.set(A,e(o,t,n))}return i}return t}(n,A,{hideSecrets:t,getNativePaths:r})}getSubprocessStreams(e,{header:t,prefix:r,report:n}){let i,o;const s=A.xfs.createWriteStream(e);if(this.get("enableInlineBuilds")){const e=n.createStreamReporter(`${r} ${this.format("STDOUT","green")}`),t=n.createStreamReporter(`${r} ${this.format("STDERR","red")}`);i=new d.PassThrough,i.pipe(e),i.pipe(s),o=new d.PassThrough,o.pipe(t),o.pipe(s)}else i=s,o=s,void 0!==t&&i.write(t+"\n");return{stdout:i,stderr:o}}makeResolver(){const e=[];for(const t of this.plugins.values())for(const r of t.resolvers||[])e.push(new r);return new Q.B([new D,new k.d,new v.O,...e])}makeFetcher(){const e=[];for(const t of this.plugins.values())for(const r of t.fetchers||[])e.push(new r);return new y([new b.N,new M,...e])}getLinkers(){const e=[];for(const t of this.plugins.values())for(const r of t.linkers||[])e.push(new r);return e}async refreshPackageExtensions(){this.packageExtensions=new Map;const e=this.packageExtensions,t=(t,r)=>{if(!C().validRange(t.range))throw new Error("Only semver ranges are allowed as keys for the lockfileExtensions setting");const n=new B.G;n.load(r),N.getArrayWithDefault(e,t.identHash).push({descriptor:t,changes:new Set([...[...n.dependencies.values(),...n.peerDependencies.values()].map(e=>E.stringifyIdent(e)),...n.dependenciesMeta.keys(),...n.peerDependenciesMeta.keys()]),patch:e=>{e.dependencies=new Map([...e.dependencies,...n.dependencies]),e.peerDependencies=new Map([...e.peerDependencies,...n.peerDependencies]),e.dependenciesMeta=new Map([...e.dependenciesMeta,...n.dependenciesMeta]),e.peerDependenciesMeta=new Map([...e.peerDependenciesMeta,...n.peerDependenciesMeta])}})};for(const[e,r]of this.get("packageExtensions"))t(E.parseDescriptor(e,!0),r);await this.triggerHook(e=>e.registerPackageExtensions,this,t)}normalizePackage(e){const t=E.copyPackage(e);if(null==this.packageExtensions)throw new Error("refreshPackageExtensions has to be called before normalizing packages");const r=this.packageExtensions.get(e.identHash);if(void 0!==r){const n=e.version;if(null!==n){const e=r.find(({descriptor:e})=>L.v(n,e.range));void 0!==e&&e.patch(t)}}const n=e=>e.scope?`${e.scope}__${e.name}`:""+e.name;for(const e of t.peerDependencies.values()){if("@types"===e.scope)continue;const r=n(e),i=E.makeIdent("types",r);t.peerDependencies.has(i.identHash)||t.peerDependenciesMeta.has(i.identHash)||t.peerDependenciesMeta.set(E.stringifyIdent(i),{optional:!0})}for(const e of t.peerDependenciesMeta.keys()){const r=E.parseIdent(e);t.peerDependencies.has(r.identHash)||t.peerDependencies.set(r.identHash,E.makeDescriptor(r,"*"))}return t.dependencies=new Map(N.sortMap(t.dependencies,([,e])=>E.stringifyDescriptor(e))),t.peerDependencies=new Map(N.sortMap(t.peerDependencies,([,e])=>E.stringifyDescriptor(e))),t}getLimit(e){return N.getFactoryWithDefault(this.limits,e,()=>f()(this.get(e)))}async triggerHook(e,...t){for(const r of this.plugins.values()){const n=r.hooks;if(!n)continue;const i=e(n);i&&await i(...t)}}async triggerMultipleHooks(e,t){for(const r of t)await this.triggerHook(e,...r)}async reduceHook(e,t,...r){let n=t;for(const t of this.plugins.values()){const i=t.hooks;if(!i)continue;const A=e(i);A&&(n=await A(n,...r))}return n}async firstHook(e,...t){for(const r of this.plugins.values()){const n=r.hooks;if(!n)continue;const i=e(n);if(!i)continue;const A=await i(...t);if(void 0!==A)return A}return null}format(e,t){if(t===H.PATH&&(e=i.cS.fromPortablePath(e)),!this.get("enableColors"))return e;let r=J.get(t);void 0===r&&(r=t);return("number"==typeof r?O.ansi256(r):r.startsWith("#")?O.hex(r):O[r])(e)}}$.telemetry=null},92409:(e,t,r)=>{"use strict";var n;r.d(t,{k:()=>n}),function(e){e[e.SCRIPT=0]="SCRIPT",e[e.SHELLCODE=1]="SHELLCODE"}(n||(n={}))},62152:(e,t,r)=>{"use strict";r.d(t,{h:()=>A});var n=r(35691),i=r(15815);class A extends n.yG{constructor({configuration:e,stdout:t,suggestInstall:r=!0}){super(),this.errorCount=0,this.configuration=e,this.stdout=t,this.suggestInstall=r}static async start(e,t){const r=new this(e);try{await t(r)}catch(e){r.reportExceptionOnce(e)}finally{await r.finalize()}return r}hasErrors(){return this.errorCount>0}exitCode(){return this.hasErrors()?1:0}reportCacheHit(e){}reportCacheMiss(e){}startTimerSync(e,t){return t()}async startTimerPromise(e,t){return await t()}async startCacheReport(e){return await e()}reportSeparator(){}reportInfo(e,t){}reportWarning(e,t){}reportError(e,t){this.errorCount+=1,this.stdout.write(`${this.configuration.format("➤","redBright")} ${this.formatNameWithHyperlink(e)}: ${t}\n`)}reportProgress(e){return{...Promise.resolve().then(async()=>{for await(const{}of e);}),stop:()=>{}}}reportJson(e){}async finalize(){this.errorCount>0&&(this.stdout.write(this.configuration.format("➤","redBright")+" Errors happened when preparing the environment required to run this command.\n"),this.suggestInstall&&this.stdout.write(this.configuration.format("➤","redBright")+' This might be caused by packages being missing from the lockfile, in which case running "yarn install" might help.\n'))}formatNameWithHyperlink(e){return(0,i.Qw)(e,{configuration:this.configuration,json:!1})}}},46611:(e,t,r)=>{"use strict";r.d(t,{G:()=>l});var n=r(78420),i=r(46009),A=r(55125),o=r(53887),s=r.n(o),a=r(73632),c=r(36545),g=r(54143);class l{constructor(){this.indent=" ",this.name=null,this.version=null,this.os=null,this.cpu=null,this.type=null,this.private=!1,this.license=null,this.main=null,this.module=null,this.browser=null,this.languageName=null,this.bin=new Map,this.scripts=new Map,this.dependencies=new Map,this.devDependencies=new Map,this.peerDependencies=new Map,this.workspaceDefinitions=[],this.dependenciesMeta=new Map,this.peerDependenciesMeta=new Map,this.resolutions=[],this.files=null,this.publishConfig=null,this.preferUnplugged=null,this.raw={},this.errors=[]}static async tryFind(e,{baseFs:t=new n.S}={}){const r=i.y1.join(e,"package.json");return await t.existsPromise(r)?await l.fromFile(r,{baseFs:t}):null}static async find(e,{baseFs:t}={}){const r=await l.tryFind(e,{baseFs:t});if(null===r)throw new Error("Manifest not found");return r}static async fromFile(e,{baseFs:t=new n.S}={}){const r=new l;return await r.loadFile(e,{baseFs:t}),r}static fromText(e){const t=new l;return t.loadFromText(e),t}loadFromText(e){let t;try{t=JSON.parse(h(e)||"{}")}catch(t){throw t.message+=` (when parsing ${e})`,t}this.load(t),this.indent=u(e)}async loadFile(e,{baseFs:t=new n.S}){const r=await t.readFilePromise(e,"utf8");let i;try{i=JSON.parse(h(r)||"{}")}catch(t){throw t.message+=` (when parsing ${e})`,t}this.load(i),this.indent=u(r)}load(e){if("object"!=typeof e||null===e)throw new Error(`Utterly invalid manifest data (${e})`);this.raw=e;const t=[];if("string"==typeof e.name)try{this.name=g.parseIdent(e.name)}catch(e){t.push(new Error("Parsing failed for the 'name' field"))}if("string"==typeof e.version&&(this.version=e.version),Array.isArray(e.os)){const r=[];this.os=r;for(const n of e.os)"string"!=typeof n?t.push(new Error("Parsing failed for the 'os' field")):r.push(n)}if(Array.isArray(e.cpu)){const r=[];this.cpu=r;for(const n of e.cpu)"string"!=typeof n?t.push(new Error("Parsing failed for the 'cpu' field")):r.push(n)}if("string"==typeof e.type&&(this.type=e.type),"boolean"==typeof e.private&&(this.private=e.private),"string"==typeof e.license&&(this.license=e.license),"string"==typeof e.languageName&&(this.languageName=e.languageName),"string"==typeof e.main&&(this.main=e.main),"string"==typeof e.module&&(this.module=e.module),null!=e.browser&&(this.browser=e.browser),"string"==typeof e.bin)null!==this.name?this.bin=new Map([[this.name.name,e.bin]]):t.push(new Error("String bin field, but no attached package name"));else if("object"==typeof e.bin&&null!==e.bin)for(const[r,n]of Object.entries(e.bin))"string"==typeof n?this.bin.set(r,n):t.push(new Error(`Invalid bin definition for '${r}'`));if("object"==typeof e.scripts&&null!==e.scripts)for(const[r,n]of Object.entries(e.scripts))"string"==typeof n?this.scripts.set(r,n):t.push(new Error(`Invalid script definition for '${r}'`));if("object"==typeof e.dependencies&&null!==e.dependencies)for(const[r,n]of Object.entries(e.dependencies)){if("string"!=typeof n){t.push(new Error(`Invalid dependency range for '${r}'`));continue}let e;try{e=g.parseIdent(r)}catch(e){t.push(new Error(`Parsing failed for the dependency name '${r}'`));continue}const i=g.makeDescriptor(e,n);this.dependencies.set(i.identHash,i)}if("object"==typeof e.devDependencies&&null!==e.devDependencies)for(const[r,n]of Object.entries(e.devDependencies)){if("string"!=typeof n){t.push(new Error(`Invalid dependency range for '${r}'`));continue}let e;try{e=g.parseIdent(r)}catch(e){t.push(new Error(`Parsing failed for the dependency name '${r}'`));continue}const i=g.makeDescriptor(e,n);this.devDependencies.set(i.identHash,i)}if("object"==typeof e.peerDependencies&&null!==e.peerDependencies)for(let[r,n]of Object.entries(e.peerDependencies)){let e;try{e=g.parseIdent(r)}catch(e){t.push(new Error(`Parsing failed for the dependency name '${r}'`));continue}"string"==typeof n&&c.F(n)||(t.push(new Error(`Invalid dependency range for '${r}'`)),n="*");const i=g.makeDescriptor(e,n);this.peerDependencies.set(i.identHash,i)}const r=Array.isArray(e.workspaces)?e.workspaces:"object"==typeof e.workspaces&&null!==e.workspaces&&Array.isArray(e.workspaces.packages)?e.workspaces.packages:[];for(const e of r)"string"==typeof e?this.workspaceDefinitions.push({pattern:e}):t.push(new Error(`Invalid workspace definition for '${e}'`));if("object"==typeof e.dependenciesMeta&&null!==e.dependenciesMeta)for(const[r,n]of Object.entries(e.dependenciesMeta)){if("object"!=typeof n||null===n){t.push(new Error("Invalid meta field for '"+r));continue}const e=g.parseDescriptor(r),i=this.ensureDependencyMeta(e);Object.assign(i,n)}if("object"==typeof e.peerDependenciesMeta&&null!==e.peerDependenciesMeta)for(const[r,n]of Object.entries(e.peerDependenciesMeta)){if("object"!=typeof n||null===n){t.push(new Error("Invalid meta field for '"+r));continue}const e=g.parseDescriptor(r),i=this.ensurePeerDependencyMeta(e);Object.assign(i,n)}if("object"==typeof e.resolutions&&null!==e.resolutions)for(const[r,n]of Object.entries(e.resolutions))if("string"==typeof n)try{this.resolutions.push({pattern:(0,A.parseResolution)(r),reference:n})}catch(e){t.push(e);continue}else t.push(new Error(`Invalid resolution entry for '${r}'`));if(Array.isArray(e.files)&&0!==e.files.length){this.files=new Set;for(const r of e.files)"string"==typeof r?this.files.add(r):t.push(new Error(`Invalid files entry for '${r}'`))}if("object"==typeof e.publishConfig&&null!==e.publishConfig){if(this.publishConfig={},"string"==typeof e.publishConfig.access&&(this.publishConfig.access=e.publishConfig.access),"string"==typeof e.publishConfig.main&&(this.publishConfig.main=e.publishConfig.main),"string"==typeof e.publishConfig.module&&(this.publishConfig.module=e.publishConfig.module),"string"==typeof e.publishConfig.browser&&(this.publishConfig.browser=e.publishConfig.browser),"string"==typeof e.publishConfig.registry&&(this.publishConfig.registry=e.publishConfig.registry),"string"==typeof e.publishConfig.bin)null!==this.name?this.publishConfig.bin=new Map([[this.name.name,e.publishConfig.bin]]):t.push(new Error("String bin field, but no attached package name"));else if("object"==typeof e.publishConfig.bin&&null!==e.publishConfig.bin){this.publishConfig.bin=new Map;for(const[r,n]of Object.entries(e.publishConfig.bin))"string"==typeof n?this.publishConfig.bin.set(r,n):t.push(new Error(`Invalid bin definition for '${r}'`))}if(Array.isArray(e.publishConfig.executableFiles)){this.publishConfig.executableFiles=new Set;for(const r of e.publishConfig.executableFiles)"string"==typeof r?this.publishConfig.executableFiles.add(i.cS.toPortablePath(r)):t.push(new Error("Invalid executable file definition"))}}if("object"==typeof e.optionalDependencies&&null!==e.optionalDependencies)for(const[r,n]of Object.entries(e.optionalDependencies)){if("string"!=typeof n){t.push(new Error(`Invalid dependency range for '${r}'`));continue}let e;try{e=g.parseIdent(r)}catch(e){t.push(new Error(`Parsing failed for the dependency name '${r}'`));continue}const i=g.makeDescriptor(e,n);this.dependencies.set(i.identHash,i);const A=g.makeDescriptor(e,"unknown"),o=this.ensureDependencyMeta(A);Object.assign(o,{optional:!0})}"boolean"==typeof e.preferUnplugged&&(this.preferUnplugged=e.preferUnplugged),this.errors=t}getForScope(e){switch(e){case"dependencies":return this.dependencies;case"devDependencies":return this.devDependencies;case"peerDependencies":return this.peerDependencies;default:throw new Error(`Unsupported value ("${e}")`)}}hasConsumerDependency(e){return!!this.dependencies.has(e.identHash)||!!this.peerDependencies.has(e.identHash)}hasHardDependency(e){return!!this.dependencies.has(e.identHash)||!!this.devDependencies.has(e.identHash)}hasSoftDependency(e){return!!this.peerDependencies.has(e.identHash)}hasDependency(e){return!!this.hasHardDependency(e)||!!this.hasSoftDependency(e)}isCompatibleWithOS(e){return null===this.os||f(this.os,e)}isCompatibleWithCPU(e){return null===this.cpu||f(this.cpu,e)}ensureDependencyMeta(e){if("unknown"!==e.range&&!s().valid(e.range))throw new Error(`Invalid meta field range for '${g.stringifyDescriptor(e)}'`);const t=g.stringifyIdent(e),r="unknown"!==e.range?e.range:null;let n=this.dependenciesMeta.get(t);n||this.dependenciesMeta.set(t,n=new Map);let i=n.get(r);return i||n.set(r,i={}),i}ensurePeerDependencyMeta(e){if("unknown"!==e.range)throw new Error(`Invalid meta field range for '${g.stringifyDescriptor(e)}'`);const t=g.stringifyIdent(e);let r=this.peerDependenciesMeta.get(t);return r||this.peerDependenciesMeta.set(t,r={}),r}setRawField(e,t,{after:r=[]}={}){const n=new Set(r.filter(e=>Object.prototype.hasOwnProperty.call(this.raw,e)));if(0===n.size||Object.prototype.hasOwnProperty.call(this.raw,e))this.raw[e]=t;else{const r=this.raw,i=this.raw={};let A=!1;for(const o of Object.keys(r))i[o]=r[o],A||(n.delete(o),0===n.size&&(i[e]=t,A=!0))}}exportTo(e,{compatibilityMode:t=!0}={}){Object.assign(e,this.raw),null!==this.name?e.name=g.stringifyIdent(this.name):delete e.name,null!==this.version?e.version=this.version:delete e.version,null!==this.os?e.os=this.os:delete e.os,null!==this.cpu?e.cpu=this.cpu:delete e.cpu,null!==this.type?e.type=this.type:delete e.type,this.private?e.private=!0:delete e.private,null!==this.license?e.license=this.license:delete e.license,null!==this.languageName?e.languageName=this.languageName:delete e.languageName,null!==this.main?e.main=this.main:delete e.main,null!==this.module?e.module=this.module:delete e.module,null!==this.browser?e.browser=this.browser:delete e.browser,1===this.bin.size&&null!==this.name&&this.bin.has(this.name.name)?e.bin=this.bin.get(this.name.name):this.bin.size>0?e.bin=Object.assign({},...Array.from(this.bin.keys()).sort().map(e=>({[e]:this.bin.get(e)}))):delete e.bin,this.workspaceDefinitions.length>0?e.workspaces=this.workspaceDefinitions.map(({pattern:e})=>e):delete e.workspaces;const r=[],n=[];for(const e of this.dependencies.values()){const i=this.dependenciesMeta.get(g.stringifyIdent(e));let A=!1;if(t&&i){const e=i.get(null);e&&e.optional&&(A=!0)}A?n.push(e):r.push(e)}r.length>0?e.dependencies=Object.assign({},...g.sortDescriptors(r).map(e=>({[g.stringifyIdent(e)]:e.range}))):delete e.dependencies,n.length>0?e.optionalDependencies=Object.assign({},...g.sortDescriptors(n).map(e=>({[g.stringifyIdent(e)]:e.range}))):delete e.optionalDependencies,this.devDependencies.size>0?e.devDependencies=Object.assign({},...g.sortDescriptors(this.devDependencies.values()).map(e=>({[g.stringifyIdent(e)]:e.range}))):delete e.devDependencies,this.peerDependencies.size>0?e.peerDependencies=Object.assign({},...g.sortDescriptors(this.peerDependencies.values()).map(e=>({[g.stringifyIdent(e)]:e.range}))):delete e.peerDependencies,e.dependenciesMeta={};for(const[r,n]of a.sortMap(this.dependenciesMeta.entries(),([e,t])=>e))for(const[i,A]of a.sortMap(n.entries(),([e,t])=>null!==e?"0"+e:"1")){const n=null!==i?g.stringifyDescriptor(g.makeDescriptor(g.parseIdent(r),i)):r,o={...A};t&&null===i&&delete o.optional,0!==Object.keys(o).length&&(e.dependenciesMeta[n]=o)}return 0===Object.keys(e.dependenciesMeta).length&&delete e.dependenciesMeta,this.peerDependenciesMeta.size>0?e.peerDependenciesMeta=Object.assign({},...a.sortMap(this.peerDependenciesMeta.entries(),([e,t])=>e).map(([e,t])=>({[e]:t}))):delete e.peerDependenciesMeta,this.resolutions.length>0?e.resolutions=Object.assign({},...this.resolutions.map(({pattern:e,reference:t})=>({[(0,A.stringifyResolution)(e)]:t}))):delete e.resolutions,null!==this.files?e.files=Array.from(this.files):delete e.files,null!==this.preferUnplugged?e.preferUnplugged=this.preferUnplugged:delete e.preferUnplugged,e}}function u(e){const t=e.match(/^[ \t]+/m);return t?t[0]:" "}function h(e){return 65279===e.charCodeAt(0)?e.slice(1):e}function f(e,t){let r=!0,n=!1;for(const i of e)if("!"===i[0]){if(n=!0,t===i.slice(1))return!1}else if(r=!1,i===t)return!0;return n&&r}l.fileName="package.json",l.allDependencies=["dependencies","devDependencies","peerDependencies"],l.hardDependencies=["dependencies","devDependencies"]},92659:(e,t,r)=>{"use strict";var n;r.d(t,{b:()=>n}),function(e){e[e.UNNAMED=0]="UNNAMED",e[e.EXCEPTION=1]="EXCEPTION",e[e.MISSING_PEER_DEPENDENCY=2]="MISSING_PEER_DEPENDENCY",e[e.CYCLIC_DEPENDENCIES=3]="CYCLIC_DEPENDENCIES",e[e.DISABLED_BUILD_SCRIPTS=4]="DISABLED_BUILD_SCRIPTS",e[e.BUILD_DISABLED=5]="BUILD_DISABLED",e[e.SOFT_LINK_BUILD=6]="SOFT_LINK_BUILD",e[e.MUST_BUILD=7]="MUST_BUILD",e[e.MUST_REBUILD=8]="MUST_REBUILD",e[e.BUILD_FAILED=9]="BUILD_FAILED",e[e.RESOLVER_NOT_FOUND=10]="RESOLVER_NOT_FOUND",e[e.FETCHER_NOT_FOUND=11]="FETCHER_NOT_FOUND",e[e.LINKER_NOT_FOUND=12]="LINKER_NOT_FOUND",e[e.FETCH_NOT_CACHED=13]="FETCH_NOT_CACHED",e[e.YARN_IMPORT_FAILED=14]="YARN_IMPORT_FAILED",e[e.REMOTE_INVALID=15]="REMOTE_INVALID",e[e.REMOTE_NOT_FOUND=16]="REMOTE_NOT_FOUND",e[e.RESOLUTION_PACK=17]="RESOLUTION_PACK",e[e.CACHE_CHECKSUM_MISMATCH=18]="CACHE_CHECKSUM_MISMATCH",e[e.UNUSED_CACHE_ENTRY=19]="UNUSED_CACHE_ENTRY",e[e.MISSING_LOCKFILE_ENTRY=20]="MISSING_LOCKFILE_ENTRY",e[e.WORKSPACE_NOT_FOUND=21]="WORKSPACE_NOT_FOUND",e[e.TOO_MANY_MATCHING_WORKSPACES=22]="TOO_MANY_MATCHING_WORKSPACES",e[e.CONSTRAINTS_MISSING_DEPENDENCY=23]="CONSTRAINTS_MISSING_DEPENDENCY",e[e.CONSTRAINTS_INCOMPATIBLE_DEPENDENCY=24]="CONSTRAINTS_INCOMPATIBLE_DEPENDENCY",e[e.CONSTRAINTS_EXTRANEOUS_DEPENDENCY=25]="CONSTRAINTS_EXTRANEOUS_DEPENDENCY",e[e.CONSTRAINTS_INVALID_DEPENDENCY=26]="CONSTRAINTS_INVALID_DEPENDENCY",e[e.CANT_SUGGEST_RESOLUTIONS=27]="CANT_SUGGEST_RESOLUTIONS",e[e.FROZEN_LOCKFILE_EXCEPTION=28]="FROZEN_LOCKFILE_EXCEPTION",e[e.CROSS_DRIVE_VIRTUAL_LOCAL=29]="CROSS_DRIVE_VIRTUAL_LOCAL",e[e.FETCH_FAILED=30]="FETCH_FAILED",e[e.DANGEROUS_NODE_MODULES=31]="DANGEROUS_NODE_MODULES",e[e.NODE_GYP_INJECTED=32]="NODE_GYP_INJECTED",e[e.AUTHENTICATION_NOT_FOUND=33]="AUTHENTICATION_NOT_FOUND",e[e.INVALID_CONFIGURATION_KEY=34]="INVALID_CONFIGURATION_KEY",e[e.NETWORK_ERROR=35]="NETWORK_ERROR",e[e.LIFECYCLE_SCRIPT=36]="LIFECYCLE_SCRIPT",e[e.CONSTRAINTS_MISSING_FIELD=37]="CONSTRAINTS_MISSING_FIELD",e[e.CONSTRAINTS_INCOMPATIBLE_FIELD=38]="CONSTRAINTS_INCOMPATIBLE_FIELD",e[e.CONSTRAINTS_EXTRANEOUS_FIELD=39]="CONSTRAINTS_EXTRANEOUS_FIELD",e[e.CONSTRAINTS_INVALID_FIELD=40]="CONSTRAINTS_INVALID_FIELD",e[e.AUTHENTICATION_INVALID=41]="AUTHENTICATION_INVALID",e[e.PROLOG_UNKNOWN_ERROR=42]="PROLOG_UNKNOWN_ERROR",e[e.PROLOG_SYNTAX_ERROR=43]="PROLOG_SYNTAX_ERROR",e[e.PROLOG_EXISTENCE_ERROR=44]="PROLOG_EXISTENCE_ERROR",e[e.STACK_OVERFLOW_RESOLUTION=45]="STACK_OVERFLOW_RESOLUTION",e[e.AUTOMERGE_FAILED_TO_PARSE=46]="AUTOMERGE_FAILED_TO_PARSE",e[e.AUTOMERGE_IMMUTABLE=47]="AUTOMERGE_IMMUTABLE",e[e.AUTOMERGE_SUCCESS=48]="AUTOMERGE_SUCCESS",e[e.AUTOMERGE_REQUIRED=49]="AUTOMERGE_REQUIRED",e[e.DEPRECATED_CLI_SETTINGS=50]="DEPRECATED_CLI_SETTINGS",e[e.PLUGIN_NAME_NOT_FOUND=51]="PLUGIN_NAME_NOT_FOUND",e[e.INVALID_PLUGIN_REFERENCE=52]="INVALID_PLUGIN_REFERENCE",e[e.CONSTRAINTS_AMBIGUITY=53]="CONSTRAINTS_AMBIGUITY",e[e.CACHE_OUTSIDE_PROJECT=54]="CACHE_OUTSIDE_PROJECT",e[e.IMMUTABLE_INSTALL=55]="IMMUTABLE_INSTALL",e[e.IMMUTABLE_CACHE=56]="IMMUTABLE_CACHE",e[e.INVALID_MANIFEST=57]="INVALID_MANIFEST",e[e.PACKAGE_PREPARATION_FAILED=58]="PACKAGE_PREPARATION_FAILED",e[e.INVALID_RANGE_PEER_DEPENDENCY=59]="INVALID_RANGE_PEER_DEPENDENCY",e[e.INCOMPATIBLE_PEER_DEPENDENCY=60]="INCOMPATIBLE_PEER_DEPENDENCY",e[e.DEPRECATED_PACKAGE=61]="DEPRECATED_PACKAGE",e[e.INCOMPATIBLE_OS=62]="INCOMPATIBLE_OS",e[e.INCOMPATIBLE_CPU=63]="INCOMPATIBLE_CPU",e[e.FROZEN_ARTIFACT_EXCEPTION=64]="FROZEN_ARTIFACT_EXCEPTION",e[e.TELEMETRY_NOTICE=65]="TELEMETRY_NOTICE",e[e.PATCH_HUNK_FAILED=66]="PATCH_HUNK_FAILED"}(n||(n={}))},27092:(e,t,r)=>{"use strict";r.d(t,{B:()=>i});var n=r(54143);class i{constructor(e){this.resolvers=e.filter(e=>e)}supportsDescriptor(e,t){return!!this.tryResolverByDescriptor(e,t)}supportsLocator(e,t){return!!this.tryResolverByLocator(e,t)}shouldPersistResolution(e,t){return this.getResolverByLocator(e,t).shouldPersistResolution(e,t)}bindDescriptor(e,t,r){return this.getResolverByDescriptor(e,r).bindDescriptor(e,t,r)}getResolutionDependencies(e,t){return this.getResolverByDescriptor(e,t).getResolutionDependencies(e,t)}async getCandidates(e,t,r){const n=this.getResolverByDescriptor(e,r);return await n.getCandidates(e,t,r)}async getSatisfying(e,t,r){return this.getResolverByDescriptor(e,r).getSatisfying(e,t,r)}async resolve(e,t){const r=this.getResolverByLocator(e,t);return await r.resolve(e,t)}tryResolverByDescriptor(e,t){const r=this.resolvers.find(r=>r.supportsDescriptor(e,t));return r||null}getResolverByDescriptor(e,t){const r=this.resolvers.find(r=>r.supportsDescriptor(e,t));if(!r)throw new Error(n.prettyDescriptor(t.project.configuration,e)+" isn't supported by any available resolver");return r}tryResolverByLocator(e,t){const r=this.resolvers.find(r=>r.supportsLocator(e,t));return r||null}getResolverByLocator(e,t){const r=this.resolvers.find(r=>r.supportsLocator(e,t));if(!r)throw new Error(n.prettyLocator(t.project.configuration,e)+" isn't supported by any available resolver");return r}}},40376:(e,t,r)=>{"use strict";r.d(t,{I:()=>ie});var n=r(56537),i=r(46009),A=r(35398),o=r(55125),s=r(93103),a=r(76417);function c(){}function g(e,t,r,n,i){for(var A=0,o=t.length,s=0,a=0;Ae.length?r:e})),c.value=e.join(l)}else c.value=e.join(r.slice(s,s+c.count));s+=c.count,c.added||(a+=c.count)}}var u=t[o-1];return o>1&&"string"==typeof u.value&&(u.added||u.removed)&&e.equals("",u.value)&&(t[o-2].value+=u.value,t.pop()),t}function l(e){return{newPos:e.newPos,components:e.components.slice(0)}}c.prototype={diff:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=r.callback;"function"==typeof r&&(n=r,r={}),this.options=r;var i=this;function A(e){return n?(setTimeout((function(){n(void 0,e)}),0),!0):e}e=this.castInput(e),t=this.castInput(t),e=this.removeEmpty(this.tokenize(e));var o=(t=this.removeEmpty(this.tokenize(t))).length,s=e.length,a=1,c=o+s,u=[{newPos:-1,components:[]}],h=this.extractCommon(u[0],t,e,0);if(u[0].newPos+1>=o&&h+1>=s)return A([{value:this.join(t),count:t.length}]);function f(){for(var r=-1*a;r<=a;r+=2){var n=void 0,c=u[r-1],h=u[r+1],f=(h?h.newPos:0)-r;c&&(u[r-1]=void 0);var p=c&&c.newPos+1=o&&f+1>=s)return A(g(i,n.components,t,e,i.useLongestToken));u[r]=n}else u[r]=void 0}a++}if(n)!function e(){setTimeout((function(){if(a>c)return n();f()||e()}),0)}();else for(;a<=c;){var p=f();if(p)return p}},pushComponent:function(e,t,r){var n=e[e.length-1];n&&n.added===t&&n.removed===r?e[e.length-1]={count:n.count+1,added:t,removed:r}:e.push({count:1,added:t,removed:r})},extractCommon:function(e,t,r,n){for(var i=t.length,A=r.length,o=e.newPos,s=o-n,a=0;o+10?a(p.lines.slice(-o.context)):[],g-=u.length,l-=u.length)}(A=u).push.apply(A,E(i.map((function(e){return(t.added?"+":"-")+e})))),t.added?f+=i.length:h+=i.length}else{if(g)if(i.length<=2*o.context&&e=s.length-2&&i.length<=o.context){var B=/\n$/.test(r),w=/\n$/.test(n),y=0==i.length&&u.length>m.oldLines;!B&&y&&u.splice(m.oldLines,0,"\\ No newline at end of file"),(B||y)&&w||u.push("\\ No newline at end of file")}c.push(m),g=0,l=0,u=[]}h+=i.length,f+=i.length}},d=0;d`${r}#commit=${n}`],[/^https:\/\/((?:[^/]+?)@)?codeload\.github\.com\/([^/]+\/[^/]+)\/tar\.gz\/([0-9a-f]+)$/,(e,t,r="",n,i)=>`https://${r}github.com/${n}.git#commit=${i}`],[/^https:\/\/((?:[^/]+?)@)?github\.com\/([^/]+\/[^/]+?)(?:\.git)?#([0-9a-f]+)$/,(e,t,r="",n,i)=>`https://${r}github.com/${n}.git#commit=${i}`],[/^https?:\/\/[^/]+\/(?:@[^/]+\/)?([^/]+)\/-\/\1-[^/]+\.tgz(?:#|$)/,e=>"npm:"+e],[/^[^/]+\.tgz#[0-9a-f]+$/,e=>"npm:"+e]];class O{constructor(){this.resolutions=null}async setup(e,{report:t}){const r=i.y1.join(e.cwd,e.configuration.get("lockfileFilename"));if(!n.xfs.existsSync(r))return;const A=await n.xfs.readFilePromise(r,"utf8"),s=(0,o.parseSyml)(A);if(Object.prototype.hasOwnProperty.call(s,"__metadata"))return;const a=this.resolutions=new Map;for(const r of Object.keys(s)){let n=U.tryParseDescriptor(r);if(!n){t.reportWarning(P.b.YARN_IMPORT_FAILED,`Failed to parse the string "${r}" into a proper descriptor`);continue}k().validRange(n.range)&&(n=U.makeDescriptor(n,"npm:"+n.range));const{version:i,resolved:A}=s[r];if(!A)continue;let o;for(const[e,t]of T){const r=A.match(e);if(r){o=t(i,...r);break}}if(!o){t.reportWarning(P.b.YARN_IMPORT_FAILED,`${U.prettyDescriptor(e.configuration,n)}: Only some patterns can be imported from legacy lockfiles (not "${A}")`);continue}const c=U.makeLocator(n,o);a.set(n.descriptorHash,c)}}supportsDescriptor(e,t){return!!this.resolutions&&this.resolutions.has(e.descriptorHash)}supportsLocator(e,t){return!1}shouldPersistResolution(e,t){throw new Error("Assertion failed: This resolver doesn't support resolving locators to packages")}bindDescriptor(e,t,r){return e}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){if(!this.resolutions)throw new Error("Assertion failed: The resolution store should have been setup");const n=this.resolutions.get(e.descriptorHash);if(!n)throw new Error("Assertion failed: The resolution should have been registered");return[n]}async getSatisfying(e,t,r){return null}async resolve(e,t){throw new Error("Assertion failed: This resolver doesn't support resolving locators to packages")}}class j{supportsDescriptor(e,t){return!!t.project.storedResolutions.get(e.descriptorHash)||!!t.project.originalPackages.has(U.convertDescriptorToLocator(e).locatorHash)}supportsLocator(e,t){return!!t.project.originalPackages.has(e.locatorHash)}shouldPersistResolution(e,t){throw new Error("The shouldPersistResolution method shouldn't be called on the lockfile resolver, which would always answer yes")}bindDescriptor(e,t,r){return e}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){let n=r.project.originalPackages.get(U.convertDescriptorToLocator(e).locatorHash);if(n)return[n];const i=r.project.storedResolutions.get(e.descriptorHash);if(!i)throw new Error("Expected the resolution to have been successful - resolution not found");if(n=r.project.originalPackages.get(i),!n)throw new Error("Expected the resolution to have been successful - package not found");return[n]}async getSatisfying(e,t,r){return null}async resolve(e,t){const r=t.project.originalPackages.get(e.locatorHash);if(!r)throw new Error("The lockfile resolver isn't meant to resolve packages - they should already have been stored into a cache");return r}}var Y=r(46611),G=r(27092),_=r(35691);class H{constructor(e){this.resolver=e}supportsDescriptor(e,t){return this.resolver.supportsDescriptor(e,t)}supportsLocator(e,t){return this.resolver.supportsLocator(e,t)}shouldPersistResolution(e,t){return this.resolver.shouldPersistResolution(e,t)}bindDescriptor(e,t,r){return this.resolver.bindDescriptor(e,t,r)}getResolutionDependencies(e,t){return this.resolver.getResolutionDependencies(e,t)}async getCandidates(e,t,r){throw new _.lk(P.b.MISSING_LOCKFILE_ENTRY,"This package doesn't seem to be present in your lockfile; try to make an install to update your resolutions")}async getSatisfying(e,t,r){throw new _.lk(P.b.MISSING_LOCKFILE_ENTRY,"This package doesn't seem to be present in your lockfile; try to make an install to update your resolutions")}async resolve(e,t){throw new _.lk(P.b.MISSING_LOCKFILE_ENTRY,"This package doesn't seem to be present in your lockfile; try to make an install to update your resolutions")}}var J=r(33720),q=r(17722),z=r(81111),W=r(20624),V=r(73632),X=r(63088),Z=r(36545),$=r(32485);const ee=/ *, */g,te=/\/$/,re=(0,M.promisify)(K().gzip),ne=(0,M.promisify)(K().gunzip);class ie{constructor(e,{configuration:t}){this.resolutionAliases=new Map,this.workspaces=[],this.workspacesByCwd=new Map,this.workspacesByIdent=new Map,this.storedResolutions=new Map,this.storedDescriptors=new Map,this.storedPackages=new Map,this.storedChecksums=new Map,this.accessibleLocators=new Set,this.originalPackages=new Map,this.optionalBuilds=new Set,this.lockFileChecksum=null,this.configuration=t,this.cwd=e}static async find(e,t){var r,A,o;if(!e.projectCwd)throw new s.UsageError("No project found in "+t);let a=e.projectCwd,c=t,g=null;for(;g!==e.projectCwd;){if(g=c,n.xfs.existsSync(i.y1.join(g,i.QS.manifest))){a=g;break}c=i.y1.dirname(g)}const l=new ie(e.projectCwd,{configuration:e});null===(r=x.VK.telemetry)||void 0===r||r.reportProject(l.cwd),await l.setupResolutions(),await l.setupWorkspaces(),null===(A=x.VK.telemetry)||void 0===A||A.reportWorkspaceCount(l.workspaces.length),null===(o=x.VK.telemetry)||void 0===o||o.reportDependencyCount(l.workspaces.reduce((e,t)=>e+t.manifest.dependencies.size+t.manifest.devDependencies.size,0));const u=l.tryWorkspaceByCwd(a);if(u)return{project:l,workspace:u,locator:u.anchoredLocator};const h=await l.findLocatorForLocation(a+"/",{strict:!0});if(h)return{project:l,locator:h,workspace:null};throw new s.UsageError(`The nearest package directory (${e.format(a,x.a5.PATH)}) doesn't seem to be part of the project declared in ${e.format(l.cwd,x.a5.PATH)}.\n\n- If the project directory is right, it might be that you forgot to list ${e.format(i.y1.relative(l.cwd,a),x.a5.PATH)} as a workspace.\n- If it isn't, it's likely because you have a yarn.lock or package.json file there, confusing the project root detection.`)}static generateBuildStateFile(e,t){let r="# Warning: This file is automatically generated. Removing it is fine, but will\n# cause all your builds to become invalidated.\n";const n=[...e].map(([e,r])=>{const n=t.get(e);if(void 0===n)throw new Error("Assertion failed: The locator should have been registered");return[U.stringifyLocator(n),n.locatorHash,r]});for(const[e,t,i]of V.sortMap(n,[e=>e[0],e=>e[1]]))r+="\n",r+=`# ${e}\n`,r+=JSON.stringify(t)+":\n",r+=` ${i}\n`;return r}async setupResolutions(){this.storedResolutions=new Map,this.storedDescriptors=new Map,this.storedPackages=new Map,this.lockFileChecksum=null;const e=i.y1.join(this.cwd,this.configuration.get("lockfileFilename")),t=this.configuration.get("defaultLanguageName");if(n.xfs.existsSync(e)){const r=await n.xfs.readFilePromise(e,"utf8");this.lockFileChecksum=W.makeHash("1",r);const i=(0,o.parseSyml)(r);if(i.__metadata){const e=i.__metadata.version,r=i.__metadata.cacheKey;for(const n of Object.keys(i)){if("__metadata"===n)continue;const A=i[n];if(void 0===A.resolution)throw new Error(`Assertion failed: Expected the lockfile entry to have a resolution field (${n})`);const o=U.parseLocator(A.resolution,!0),s=new Y.G;s.load(A);const a=s.version,c=s.languageName||t,g=A.linkType.toUpperCase(),l=s.dependencies,u=s.peerDependencies,h=s.dependenciesMeta,f=s.peerDependenciesMeta,p=s.bin;if(null!=A.checksum){const e=void 0===r||A.checksum.includes("/")?A.checksum:`${r}/${A.checksum}`;this.storedChecksums.set(o.locatorHash,e)}if(e>=4){const e={...o,version:a,languageName:c,linkType:g,dependencies:l,peerDependencies:u,dependenciesMeta:h,peerDependenciesMeta:f,bin:p};this.originalPackages.set(e.locatorHash,e)}for(const t of n.split(ee)){const r=U.parseDescriptor(t);if(this.storedDescriptors.set(r.descriptorHash,r),e>=4)this.storedResolutions.set(r.descriptorHash,o.locatorHash);else{const e=U.convertLocatorToDescriptor(o);e.descriptorHash!==r.descriptorHash&&(this.storedDescriptors.set(e.descriptorHash,e),this.resolutionAliases.set(r.descriptorHash,e.descriptorHash))}}}}}}async setupWorkspaces(){this.workspaces=[],this.workspacesByCwd=new Map,this.workspacesByIdent=new Map;let e=[this.cwd];for(;e.length>0;){const t=e;e=[];for(const r of t){if(this.workspacesByCwd.has(r))continue;const t=await this.addWorkspace(r),n=this.storedPackages.get(t.anchoredLocator.locatorHash);n&&(t.dependencies=n.dependencies);for(const r of t.workspacesCwds)e.push(r)}}}async addWorkspace(e){const t=new q.j(e,{project:this});await t.setup();const r=this.workspacesByIdent.get(t.locator.identHash);if(void 0!==r)throw new Error(`Duplicate workspace name ${U.prettyIdent(this.configuration,t.locator)}: ${e} conflicts with ${r.cwd}`);return this.workspaces.push(t),this.workspacesByCwd.set(e,t),this.workspacesByIdent.set(t.locator.identHash,t),t}get topLevelWorkspace(){return this.getWorkspaceByCwd(this.cwd)}tryWorkspaceByCwd(e){i.y1.isAbsolute(e)||(e=i.y1.resolve(this.cwd,e));const t=this.workspacesByCwd.get(e);return t||null}getWorkspaceByCwd(e){const t=this.tryWorkspaceByCwd(e);if(!t)throw new Error(`Workspace not found (${e})`);return t}tryWorkspaceByFilePath(e){let t=null;for(const r of this.workspaces){i.y1.relative(r.cwd,e).startsWith("../")||(t&&t.cwd.length>=r.cwd.length||(t=r))}return t||null}getWorkspaceByFilePath(e){const t=this.tryWorkspaceByFilePath(e);if(!t)throw new Error(`Workspace not found (${e})`);return t}tryWorkspaceByIdent(e){const t=this.workspacesByIdent.get(e.identHash);return void 0===t?null:t}getWorkspaceByIdent(e){const t=this.tryWorkspaceByIdent(e);if(!t)throw new Error(`Workspace not found (${U.prettyIdent(this.configuration,e)})`);return t}tryWorkspaceByDescriptor(e){const t=this.tryWorkspaceByIdent(e);return null!==t&&t.accepts(e.range)?t:null}getWorkspaceByDescriptor(e){const t=this.tryWorkspaceByDescriptor(e);if(null===t)throw new Error(`Workspace not found (${U.prettyDescriptor(this.configuration,e)})`);return t}tryWorkspaceByLocator(e){U.isVirtualLocator(e)&&(e=U.devirtualizeLocator(e));const t=this.tryWorkspaceByIdent(e);return null===t||t.locator.locatorHash!==e.locatorHash&&t.anchoredLocator.locatorHash!==e.locatorHash?null:t}getWorkspaceByLocator(e){const t=this.tryWorkspaceByLocator(e);if(!t)throw new Error(`Workspace not found (${U.prettyLocator(this.configuration,e)})`);return t}refreshWorkspaceDependencies(){for(const e of this.workspaces){const t=this.storedPackages.get(e.anchoredLocator.locatorHash);if(!t)throw new Error("Assertion failed: Expected workspace to have been resolved");e.dependencies=new Map(t.dependencies)}}forgetResolution(e){const t=e=>{this.storedResolutions.delete(e),this.storedDescriptors.delete(e)},r=e=>{this.originalPackages.delete(e),this.storedPackages.delete(e),this.accessibleLocators.delete(e)};if("descriptorHash"in e){const n=this.storedResolutions.get(e.descriptorHash);t(e.descriptorHash);const i=new Set(this.storedResolutions.values());void 0===n||i.has(n)||r(n)}if("locatorHash"in e){r(e.locatorHash);for(const[r,n]of this.storedResolutions)n===e.locatorHash&&t(r)}}forgetTransientResolutions(){const e=this.configuration.makeResolver();for(const t of this.originalPackages.values()){let r;try{r=e.shouldPersistResolution(t,{project:this,resolver:e})}catch(e){r=!1}r||this.forgetResolution(t)}}forgetVirtualResolutions(){for(const e of this.storedPackages.values())for(const[t,r]of e.dependencies)U.isVirtualDescriptor(r)&&e.dependencies.set(t,U.devirtualizeDescriptor(r))}getDependencyMeta(e,t){const r={},n=this.topLevelWorkspace.manifest.dependenciesMeta.get(U.stringifyIdent(e));if(!n)return r;const i=n.get(null);if(i&&Object.assign(r,i),null===t||!k().valid(t))return r;for(const[e,i]of n)null!==e&&e===t&&Object.assign(r,i);return r}async findLocatorForLocation(e,{strict:t=!1}={}){const r=new J.$,n=this.configuration.getLinkers(),i={project:this,report:r};for(const r of n){const n=await r.findPackageLocator(e,i);if(n){if(t){if((await r.findPackageLocation(n,i)).replace(te,"")!==e.replace(te,""))continue}return n}}return null}async validateEverything(e){for(const t of e.validationWarnings)e.report.reportWarning(t.name,t.text);for(const t of e.validationErrors)e.report.reportError(t.name,t.text)}async resolveEverything(e){if(!this.workspacesByCwd||!this.workspacesByIdent)throw new Error("Workspaces must have been setup before calling this function");this.forgetVirtualResolutions(),e.lockfileOnly||this.forgetTransientResolutions();const t=e.resolver||this.configuration.makeResolver(),r=new O;await r.setup(this,{report:e.report});const A=e.lockfileOnly?new G.B([new j,new H(t)]):new G.B([new j,r,t]),o=this.configuration.makeFetcher(),s=e.lockfileOnly?{project:this,report:e.report,resolver:A}:{project:this,report:e.report,resolver:A,fetchOptions:{project:this,cache:e.cache,checksums:this.storedChecksums,report:e.report,fetcher:o}},a=new Map,c=new Map,g=new Map,l=new Map,u=new Map,h=new Set;let f=new Set;for(const e of this.workspaces){const t=e.anchoredDescriptor;a.set(t.descriptorHash,t),f.add(t.descriptorHash)}for(;0!==f.size;){const e=f;f=new Set;for(const t of e)g.has(t)&&e.delete(t);if(0===e.size)break;const t=new Set,r=new Map;for(const n of e){const i=a.get(n);if(!i)throw new Error("Assertion failed: The descriptor should have been registered");let o=u.get(n);if(void 0===o){u.set(n,o=new Set);for(const e of A.getResolutionDependencies(i,s))a.set(e.descriptorHash,e),o.add(e.descriptorHash)}const l=V.getMapWithDefault(r,n);for(const r of o){const i=g.get(r);if(void 0!==i){const e=c.get(i);if(void 0===e)throw new Error("Assertion failed: The package should have been registered");l.set(r,e)}else t.add(n),e.add(r)}}for(const r of t)e.delete(r),f.add(r);if(0===e.size)throw new Error("Assertion failed: Descriptors should not have cyclic dependencies");const n=new Map(await Promise.all(Array.from(e).map(async e=>{const t=a.get(e);if(void 0===t)throw new Error("Assertion failed: The descriptor should have been registered");const n=r.get(t.descriptorHash);if(void 0===n)throw new Error("Assertion failed: The descriptor dependencies should have been registered");let i;try{i=await A.getCandidates(t,n,s)}catch(e){throw e.message=`${U.prettyDescriptor(this.configuration,t)}: ${e.message}`,e}if(0===i.length)throw new Error("No candidate found for "+U.prettyDescriptor(this.configuration,t));return[t.descriptorHash,i]}))),i=new Map;for(const[e,t]of n)1===t.length&&(i.set(e,t[0]),n.delete(e));for(const[e,t]of n){const r=t.find(e=>c.has(e.locatorHash));r&&(i.set(e,r),n.delete(e))}if(n.size>0){const e=new(v().Solver);for(const t of n.values())e.require(v().or(...t.map(e=>e.locatorHash)));let t,r=100,A=null,o=1/0;for(;r>0&&null!==(t=e.solve());){const n=t.getTrueVars();e.forbid(t.getFormula()),n.lengths.has(e.locatorHash));if(!r)throw new Error("Assertion failed: The descriptor should have been solved during the previous step");i.set(e,r),n.delete(e)}}const o=Array.from(i.values()).filter(e=>!c.has(e.locatorHash)),p=new Map(await Promise.all(o.map(async e=>{const t=await V.prettifyAsyncErrors(async()=>await A.resolve(e,s),t=>`${U.prettyLocator(this.configuration,e)}: ${t}`);if(!U.areLocatorsEqual(e,t))throw new Error(`Assertion failed: The locator cannot be changed by the resolver (went from ${U.prettyLocator(this.configuration,e)} to ${U.prettyLocator(this.configuration,t)})`);const r=this.configuration.normalizePackage(t);for(const[t,n]of r.dependencies){const i=await this.configuration.reduceHook(e=>e.reduceDependency,n,this,r,n,{resolver:A,resolveOptions:s});if(!U.areIdentsEqual(n,i))throw new Error("Assertion failed: The descriptor ident cannot be changed through aliases");const o=A.bindDescriptor(i,e,s);r.dependencies.set(t,o)}return[r.locatorHash,{original:t,pkg:r}]})));for(const t of e){const e=i.get(t);if(!e)throw new Error("Assertion failed: The locator should have been registered");g.set(t,e.locatorHash);const r=p.get(e.locatorHash);if(void 0===r)continue;const{original:n,pkg:A}=r;l.set(n.locatorHash,n),c.set(A.locatorHash,A);for(const e of A.dependencies.values()){a.set(e.descriptorHash,e),f.add(e.descriptorHash);const t=this.resolutionAliases.get(e.descriptorHash);if(void 0===t)continue;if(e.descriptorHash===t)continue;const r=this.storedDescriptors.get(t);if(!r)throw new Error("Assertion failed: The alias should have been registered");g.has(e.descriptorHash)||(g.set(e.descriptorHash,"temporary"),f.delete(e.descriptorHash),f.add(t),a.set(t,r),h.add(e.descriptorHash))}}}for(;h.size>0;){let e=!1;for(const t of h){if(!a.get(t))throw new Error("Assertion failed: The descriptor should have been registered");const r=this.resolutionAliases.get(t);if(void 0===r)throw new Error("Assertion failed: The descriptor should have an alias");const n=g.get(r);if(void 0===n)throw new Error("Assertion failed: The resolution should have been registered");"temporary"!==n&&(h.delete(t),g.set(t,n),e=!0)}if(!e)throw new Error("Alias loop detected")}const p=new Set(this.resolutionAliases.values()),C=new Set(c.keys()),d=new Set;!function({project:e,allDescriptors:t,allResolutions:r,allPackages:A,accessibleLocators:o=new Set,optionalBuilds:s=new Set,volatileDescriptors:a=new Set,report:c,tolerateMissingPackages:g=!1}){const l=new Map,u=[],h=new Map,f=new Map,p=new Map(e.workspaces.map(e=>{const t=e.anchoredLocator.locatorHash,r=A.get(t);if(void 0===r){if(g)return[t,null];throw new Error("Assertion failed: The workspace should have an associated package")}return[t,U.copyPackage(r)]})),C=()=>{const e=n.xfs.mktempSync(),t=i.y1.join(e,"stacktrace.log"),r=String(u.length+1).length,A=u.map((e,t)=>`${(t+1+".").padStart(r," ")} ${U.stringifyLocator(e)}\n`).join("");throw n.xfs.writeFileSync(t,A),new _.lk(P.b.STACK_OVERFLOW_RESOLUTION,"Encountered a stack overflow when resolving peer dependencies; cf "+t)},d=e=>{const t=r.get(e.descriptorHash);if(void 0===t)throw new Error("Assertion failed: The resolution should have been registered");const n=A.get(t);if(!n)throw new Error("Assertion failed: The package could not be found");return n},I=(e,t,r)=>{u.length>1e3&&C(),u.push(e);const n=E(e,t,r);return u.pop(),n},E=(n,i,u)=>{if(o.has(n.locatorHash))return;o.add(n.locatorHash),u||s.delete(n.locatorHash);const E=A.get(n.locatorHash);if(!E){if(g)return;throw new Error(`Assertion failed: The package (${U.prettyLocator(e.configuration,n)}) should have been registered`)}const m=[],B=[],w=[],y=[],Q=[];for(const o of Array.from(E.dependencies.values())){if(E.peerDependencies.has(o.identHash)&&!i)continue;if(U.isVirtualDescriptor(o))throw new Error("Assertion failed: Virtual packages shouldn't be encountered when virtualizing a branch");a.delete(o.descriptorHash);let s=u;if(!s){const e=E.dependenciesMeta.get(U.stringifyIdent(o));if(void 0!==e){const t=e.get(null);void 0!==t&&t.optional&&(s=!0)}}const h=r.get(o.descriptorHash);if(!h){if(g)continue;throw new Error(`Assertion failed: The resolution (${U.prettyDescriptor(e.configuration,o)}) should have been registered`)}const v=p.get(h)||A.get(h);if(!v)throw new Error(`Assertion failed: The package (${h}, resolved from ${U.prettyDescriptor(e.configuration,o)}) should have been registered`);if(0===v.peerDependencies.size){I(v,!1,s);continue}const b=l.get(v.locatorHash);let D,S;"number"==typeof b&&b>=2&&C();const k=new Set;B.push(()=>{D=U.virtualizeDescriptor(o,n.locatorHash),S=U.virtualizePackage(v,n.locatorHash),E.dependencies.delete(o.identHash),E.dependencies.set(D.identHash,D),r.set(D.descriptorHash,S.locatorHash),t.set(D.descriptorHash,D),A.set(S.locatorHash,S),m.push([v,D,S])}),w.push(()=>{for(const i of S.peerDependencies.values()){let A=E.dependencies.get(i.identHash);if(!A&&U.areIdentsEqual(n,i)&&(A=U.convertLocatorToDescriptor(n),t.set(A.descriptorHash,A),r.set(A.descriptorHash,n.locatorHash),a.delete(A.descriptorHash)),A||!S.dependencies.has(i.identHash)){if(!A){if(!E.peerDependencies.has(i.identHash)){const t=S.peerDependenciesMeta.get(U.stringifyIdent(i));null===c||t&&t.optional||c.reportWarning(P.b.MISSING_PEER_DEPENDENCY,`${U.prettyLocator(e.configuration,n)} doesn't provide ${U.prettyDescriptor(e.configuration,i)} requested by ${U.prettyLocator(e.configuration,v)}`)}A=U.makeDescriptor(i,"missing:")}if(S.dependencies.set(A.identHash,A),U.isVirtualDescriptor(A)){V.getSetWithDefault(f,A.descriptorHash).add(S.locatorHash)}if("missing:"===A.range)k.add(A.identHash);else if(null!==c){const t=d(A);Z.v(t.version,i.range)||c.reportWarning(P.b.INCOMPATIBLE_PEER_DEPENDENCY,`${U.prettyLocator(e.configuration,n)} provides ${U.prettyLocator(e.configuration,t)} with version ${t.version} which doesn't satisfy ${U.prettyRange(e.configuration,i.range)} requested by ${U.prettyLocator(e.configuration,v)}`)}}else S.peerDependencies.delete(i.identHash)}S.dependencies=new Map(V.sortMap(S.dependencies,([e,t])=>U.stringifyIdent(t)))}),y.push(()=>{if(!A.has(S.locatorHash))return;const e=l.get(v.locatorHash),t=void 0!==e?e+1:1;l.set(v.locatorHash,t),I(S,!1,s),l.set(v.locatorHash,t-1)}),Q.push(()=>{if(A.has(S.locatorHash))for(const e of k)S.dependencies.delete(e)})}for(const e of[...B,...w])e();let v;do{v=!0;for(const[n,i,s]of m){if(!A.has(s.locatorHash))continue;const a=V.getMapWithDefault(h,n.locatorHash),c=W.makeHash(...[...s.dependencies.values()].map(t=>{const n="missing:"!==t.range?r.get(t.descriptorHash):"missing:";if(void 0===n)throw new Error(`Assertion failed: Expected the resolution for ${U.prettyDescriptor(e.configuration,t)} to have been registered`);return n}),i.identHash),g=a.get(c);if(void 0===g){a.set(c,i);continue}if(g===i)continue;v=!1,A.delete(s.locatorHash),t.delete(i.descriptorHash),r.delete(i.descriptorHash),o.delete(s.locatorHash);const l=f.get(i.descriptorHash)||[],u=[E.locatorHash,...l];for(const e of u){const t=A.get(e);void 0!==t&&t.dependencies.set(i.identHash,g)}}}while(!v);for(const e of[...y,...Q])e()};for(const t of e.workspaces)a.delete(t.anchoredDescriptor.descriptorHash),I(t.anchoredLocator,!0,!1)}({project:this,report:e.report,accessibleLocators:d,volatileDescriptors:p,optionalBuilds:C,allDescriptors:a,allResolutions:g,allPackages:c});for(const e of p)a.delete(e),g.delete(e);this.storedResolutions=g,this.storedDescriptors=a,this.storedPackages=c,this.accessibleLocators=d,this.originalPackages=l,this.optionalBuilds=C,this.refreshWorkspaceDependencies()}async fetchEverything({cache:e,report:t,fetcher:r}){const n=r||this.configuration.makeFetcher(),i={checksums:this.storedChecksums,project:this,cache:e,fetcher:n,report:t},A=Array.from(new Set(V.sortMap(this.storedResolutions.values(),[e=>{const t=this.storedPackages.get(e);if(!t)throw new Error("Assertion failed: The locator should have been registered");return U.stringifyLocator(t)}])));let o=!1;const s=_.yG.progressViaCounter(A.length);t.reportProgress(s);const a=D()(32);if(await t.startCacheReport(async()=>{await Promise.all(A.map(e=>a(async()=>{const r=this.storedPackages.get(e);if(!r)throw new Error("Assertion failed: The locator should have been registered");if(U.isVirtualLocator(r))return;let A;try{A=await n.fetch(r,i)}catch(e){return e.message=`${U.prettyLocator(this.configuration,r)}: ${e.message}`,t.reportExceptionOnce(e),void(o=e)}A.checksum?this.storedChecksums.set(r.locatorHash,A.checksum):this.storedChecksums.delete(r.locatorHash),A.releaseFs&&A.releaseFs()}).finally(()=>{s.tick()})))}),o)throw o}async linkEverything({cache:e,report:t,fetcher:r}){const A=r||this.configuration.makeFetcher(),s={checksums:this.storedChecksums,project:this,cache:e,fetcher:A,report:t,skipIntegrityCheck:!0},c=this.configuration.getLinkers(),g={project:this,report:t},l=new Map(c.map(e=>[e,e.makeInstaller(g)])),u=new Map,h=new Map,f=new Map;for(const e of this.accessibleLocators){const t=this.storedPackages.get(e);if(!t)throw new Error("Assertion failed: The locator should have been registered");const r=await A.fetch(t,s);if(null!==this.tryWorkspaceByLocator(t)){const e=[],{scripts:n}=await Y.G.find(r.prefixPath,{baseFs:r.packageFs});for(const t of["preinstall","install","postinstall"])n.has(t)&&e.push([L.k.SCRIPT,t]);try{for(const e of l.values())await e.installPackage(t,r)}finally{r.releaseFs&&r.releaseFs()}const A=i.y1.join(r.packageFs.getRealPath(),r.prefixPath);h.set(t.locatorHash,A),e.length>0&&f.set(t.locatorHash,{directives:e,buildLocations:[A]})}else{const e=c.find(e=>e.supportsPackage(t,g));if(!e)throw new _.lk(P.b.LINKER_NOT_FOUND,U.prettyLocator(this.configuration,t)+" isn't supported by any available linker");const n=l.get(e);if(!n)throw new Error("Assertion failed: The installer should have been registered");let i;try{i=await n.installPackage(t,r)}finally{r.releaseFs&&r.releaseFs()}u.set(t.locatorHash,e),h.set(t.locatorHash,i.packageLocation),i.buildDirective&&i.packageLocation&&f.set(t.locatorHash,{directives:i.buildDirective,buildLocations:[i.packageLocation]})}}const p=new Map;for(const e of this.accessibleLocators){const t=this.storedPackages.get(e);if(!t)throw new Error("Assertion failed: The locator should have been registered");const r=null!==this.tryWorkspaceByLocator(t),n=async(e,n)=>{const i=h.get(t.locatorHash);if(void 0===i)throw new Error(`Assertion failed: The package (${U.prettyLocator(this.configuration,t)}) should have been registered`);const A=[];for(const n of t.dependencies.values()){const o=this.storedResolutions.get(n.descriptorHash);if(void 0===o)throw new Error(`Assertion failed: The resolution (${U.prettyDescriptor(this.configuration,n)}, from ${U.prettyLocator(this.configuration,t)})should have been registered`);const s=this.storedPackages.get(o);if(void 0===s)throw new Error(`Assertion failed: The package (${o}, resolved from ${U.prettyDescriptor(this.configuration,n)}) should have been registered`);const a=null===this.tryWorkspaceByLocator(s)?u.get(o):null;if(void 0===a)throw new Error(`Assertion failed: The package (${o}, resolved from ${U.prettyDescriptor(this.configuration,n)}) should have been registered`);const c=null===a;if(a===e||r||c)null!==h.get(s.locatorHash)&&A.push([n,s]);else if(null!==i){V.getArrayWithDefault(p,o).push(i)}}null!==i&&await n.attachInternalDependencies(t,A)};if(r)for(const[e,t]of l)await n(e,t);else{const e=u.get(t.locatorHash);if(!e)throw new Error("Assertion failed: The linker should have been found");const r=l.get(e);if(!r)throw new Error("Assertion failed: The installer should have been registered");await n(e,r)}}for(const[e,t]of p){const r=this.storedPackages.get(e);if(!r)throw new Error("Assertion failed: The package should have been registered");const n=u.get(r.locatorHash);if(!n)throw new Error("Assertion failed: The linker should have been found");const i=l.get(n);if(!i)throw new Error("Assertion failed: The installer should have been registered");await i.attachExternalDependents(r,t)}for(const e of l.values()){const t=await e.finalizeInstall();if(t)for(const e of t)e.buildDirective&&f.set(e.locatorHash,{directives:e.buildDirective,buildLocations:e.buildLocations})}const C=new Set(this.storedPackages.keys()),d=new Set(f.keys());for(const e of d)C.delete(e);const I=(0,a.createHash)("sha512");I.update(process.versions.node),this.configuration.triggerHook(e=>e.globalHashGeneration,this,e=>{I.update("\0"),I.update(e)});const E=I.digest("hex"),m=new Map,B=e=>{let t=m.get(e.locatorHash);if(void 0!==t)return t;const r=this.storedPackages.get(e.locatorHash);if(void 0===r)throw new Error("Assertion failed: The package should have been registered");const n=(0,a.createHash)("sha512");n.update(e.locatorHash),m.set(e.locatorHash,"");for(const e of r.dependencies.values()){const t=this.storedResolutions.get(e.descriptorHash);if(void 0===t)throw new Error(`Assertion failed: The resolution (${U.prettyDescriptor(this.configuration,e)}) should have been registered`);const r=this.storedPackages.get(t);if(void 0===r)throw new Error("Assertion failed: The package should have been registered");n.update(B(r))}return t=n.digest("hex"),m.set(e.locatorHash,t),t},w=(e,t)=>{const r=(0,a.createHash)("sha512");r.update(E),r.update(B(e));for(const e of t)r.update(e);return r.digest("hex")},y=this.configuration.get("bstatePath"),Q=n.xfs.existsSync(y)?(0,o.parseSyml)(await n.xfs.readFilePromise(y,"utf8")):{},v=new Map;for(;d.size>0;){const e=d.size,r=[];for(const e of d){const A=this.storedPackages.get(e);if(!A)throw new Error("Assertion failed: The package should have been registered");let o=!0;for(const e of A.dependencies.values()){const t=this.storedResolutions.get(e.descriptorHash);if(!t)throw new Error(`Assertion failed: The resolution (${U.prettyDescriptor(this.configuration,e)}) should have been registered`);if(d.has(t)){o=!1;break}}if(!o)continue;d.delete(e);const s=f.get(A.locatorHash);if(!s)throw new Error("Assertion failed: The build directive should have been registered");const a=w(A,s.buildLocations);if(Object.prototype.hasOwnProperty.call(Q,A.locatorHash)&&Q[A.locatorHash]===a)v.set(A.locatorHash,a);else{Object.prototype.hasOwnProperty.call(Q,A.locatorHash)?t.reportInfo(P.b.MUST_REBUILD,U.prettyLocator(this.configuration,A)+" must be rebuilt because its dependency tree changed"):t.reportInfo(P.b.MUST_BUILD,U.prettyLocator(this.configuration,A)+" must be built because it never did before or the last one failed");for(const e of s.buildLocations){if(!i.y1.isAbsolute(e))throw new Error(`Assertion failed: Expected the build location to be absolute (not ${e})`);r.push((async()=>{for(const[r,o]of s.directives){let s=`# This file contains the result of Yarn building a package (${U.stringifyLocator(A)})\n`;switch(r){case L.k.SCRIPT:s+=`# Script name: ${o}\n`;break;case L.k.SHELLCODE:s+=`# Script code: ${o}\n`}const c=null;await n.xfs.mktempPromise(async g=>{const l=i.y1.join(g,"build.log"),{stdout:u,stderr:h}=this.configuration.getSubprocessStreams(l,{header:s,prefix:U.prettyLocator(this.configuration,A),report:t});let f;try{switch(r){case L.k.SCRIPT:f=await X.executePackageScript(A,o,[],{cwd:e,project:this,stdin:c,stdout:u,stderr:h});break;case L.k.SHELLCODE:f=await X.executePackageShellcode(A,o,[],{cwd:e,project:this,stdin:c,stdout:u,stderr:h})}}catch(e){h.write(e.stack),f=1}if(u.end(),h.end(),0===f)return v.set(A.locatorHash,a),!0;n.xfs.detachTemp(g);const p=`${U.prettyLocator(this.configuration,A)} couldn't be built successfully (exit code ${this.configuration.format(String(f),x.a5.NUMBER)}, logs can be found here: ${this.configuration.format(l,x.a5.PATH)})`;return t.reportInfo(P.b.BUILD_FAILED,p),this.optionalBuilds.has(A.locatorHash)?(v.set(A.locatorHash,a),!0):(t.reportError(P.b.BUILD_FAILED,p),!1)})}})())}}}if(await Promise.all(r),e===d.size){const e=Array.from(d).map(e=>{const t=this.storedPackages.get(e);if(!t)throw new Error("Assertion failed: The package should have been registered");return U.prettyLocator(this.configuration,t)}).join(", ");t.reportError(P.b.CYCLIC_DEPENDENCIES,`Some packages have circular dependencies that make their build order unsatisfiable - as a result they won't be built (affected packages are: ${e})`);break}}if(v.size>0){const e=this.configuration.get("bstatePath"),t=ie.generateBuildStateFile(v,this.storedPackages);await n.xfs.mkdirPromise(i.y1.dirname(e),{recursive:!0}),await n.xfs.changeFilePromise(e,t,{automaticNewlines:!0})}else await n.xfs.removePromise(y)}async install(e){var t,r;const o=this.configuration.get("nodeLinker");null===(t=x.VK.telemetry)||void 0===t||t.reportInstall(o);for(const e of this.configuration.packageExtensions.values())for(const{descriptor:t,changes:n}of e)for(const e of n)null===(r=x.VK.telemetry)||void 0===r||r.reportPackageExtension(`${U.stringifyIdent(t)}:${e}`);const s=[],a=[];await this.configuration.triggerHook(e=>e.validateProject,this,{reportWarning:(e,t)=>s.push({name:e,text:t}),reportError:(e,t)=>a.push({name:e,text:t})});s.length+a.length>0&&await e.report.startTimerPromise("Validation step",async()=>{await this.validateEverything({validationWarnings:s,validationErrors:a,report:e.report})}),await e.report.startTimerPromise("Resolution step",async()=>{const t=i.y1.join(this.cwd,this.configuration.get("lockfileFilename"));let r=null;if(e.immutable)try{r=await n.xfs.readFilePromise(t,"utf8")}catch(e){throw"ENOENT"===e.code?new _.lk(P.b.FROZEN_LOCKFILE_EXCEPTION,"The lockfile would have been created by this install, which is explicitly forbidden."):e}if(await this.resolveEverything(e),null!==r){const n=(0,A.qH)(r,this.generateLockfile());if(n!==r){const i=y(t,t,r,n);e.report.reportSeparator();for(const t of i.hunks){e.report.reportInfo(null,`@@ -${t.oldStart},${t.oldLines} +${t.newStart},${t.newLines} @@`);for(const r of t.lines)r.startsWith("+")?e.report.reportError(P.b.FROZEN_LOCKFILE_EXCEPTION,this.configuration.format(r,x.a5.ADDED)):r.startsWith("-")?e.report.reportError(P.b.FROZEN_LOCKFILE_EXCEPTION,this.configuration.format(r,x.a5.REMOVED)):e.report.reportInfo(null,this.configuration.format(r,"grey"))}throw e.report.reportSeparator(),new _.lk(P.b.FROZEN_LOCKFILE_EXCEPTION,"The lockfile would have been modified by this install, which is explicitly forbidden.")}}}),await e.report.startTimerPromise("Fetch step",async()=>{await this.fetchEverything(e),(void 0===e.persistProject||e.persistProject)&&await this.cacheCleanup(e)}),(void 0===e.persistProject||e.persistProject)&&await this.persist(),await e.report.startTimerPromise("Link step",async()=>{const t=e.immutable?[...new Set(this.configuration.get("immutablePatterns"))].sort():[],r=await Promise.all(t.map(async e=>W.checksumPattern(e,{cwd:this.cwd})));await this.linkEverything(e);const n=await Promise.all(t.map(async e=>W.checksumPattern(e,{cwd:this.cwd})));for(let i=0;ie.afterAllInstalled,this,e)}generateLockfile(){const e=new Map;for(const[t,r]of this.storedResolutions.entries()){let n=e.get(r);n||e.set(r,n=new Set),n.add(t)}const t={__metadata:{version:4}};for(const[r,n]of e.entries()){const e=this.originalPackages.get(r);if(!e)continue;const i=[];for(const e of n){const t=this.storedDescriptors.get(e);if(!t)throw new Error("Assertion failed: The descriptor should have been registered");i.push(t)}const A=i.map(e=>U.stringifyDescriptor(e)).sort().join(", "),o=new Y.G;let s;o.version=e.linkType===$.U.HARD?e.version:"0.0.0-use.local",o.languageName=e.languageName,o.dependencies=new Map(e.dependencies),o.peerDependencies=new Map(e.peerDependencies),o.dependenciesMeta=new Map(e.dependenciesMeta),o.peerDependenciesMeta=new Map(e.peerDependenciesMeta),o.bin=new Map(e.bin);const a=this.storedChecksums.get(e.locatorHash);if(void 0!==a){const e=a.indexOf("/");if(-1===e)throw new Error("Assertion failed: Expecte the checksum to reference its cache key");const r=a.slice(0,e),n=a.slice(e+1);void 0===t.__metadata.cacheKey&&(t.__metadata.cacheKey=r),s=r===t.__metadata.cacheKey?n:a}t[A]={...o.exportTo({},{compatibilityMode:!1}),linkType:e.linkType.toLowerCase(),resolution:U.stringifyLocator(e),checksum:s}}return['# This file is generated by running "yarn install" inside your project.\n',"# Manual changes might be lost - proceed with caution!\n"].join("")+"\n"+(0,o.stringifySyml)(t)}async persistLockfile(){const e=i.y1.join(this.cwd,this.configuration.get("lockfileFilename")),t=this.generateLockfile();await n.xfs.changeFilePromise(e,t,{automaticNewlines:!0})}async persistInstallStateFile(){const{accessibleLocators:e,optionalBuilds:t,storedDescriptors:r,storedResolutions:A,storedPackages:o,lockFileChecksum:s}=this,a={accessibleLocators:e,optionalBuilds:t,storedDescriptors:r,storedResolutions:A,storedPackages:o,lockFileChecksum:s},c=await re(N().serialize(a)),g=this.configuration.get("installStatePath");await n.xfs.mkdirPromise(i.y1.dirname(g),{recursive:!0}),await n.xfs.writeFilePromise(g,c)}async restoreInstallState(){const e=this.configuration.get("installStatePath");if(!n.xfs.existsSync(e))return void await this.applyLightResolution();const t=await n.xfs.readFilePromise(e),r=N().deserialize(await ne(t));r.lockFileChecksum===this.lockFileChecksum?(Object.assign(this,r),this.refreshWorkspaceDependencies()):await this.applyLightResolution()}async applyLightResolution(){await this.resolveEverything({lockfileOnly:!0,report:new J.$}),await this.persistInstallStateFile()}async persist(){await this.persistLockfile(),await this.persistInstallStateFile();for(const e of this.workspacesByCwd.values())await e.persistManifest()}async cacheCleanup({cache:e,report:t}){const r=new Set([".gitignore"]);if(n.xfs.existsSync(e.cwd)&&(0,z.isFolderInside)(e.cwd,this.cwd)){for(const A of await n.xfs.readdirPromise(e.cwd)){if(r.has(A))continue;const o=i.y1.resolve(e.cwd,A);e.markedFiles.has(o)||(e.immutable?t.reportError(P.b.IMMUTABLE_CACHE,this.configuration.format(i.y1.basename(o),"magenta")+" appears to be unused and would marked for deletion, but the cache is immutable"):(t.reportInfo(P.b.UNUSED_CACHE_ENTRY,this.configuration.format(i.y1.basename(o),"magenta")+" appears to be unused - removing"),await n.xfs.removePromise(o)))}e.markedFiles.clear()}}}},52779:(e,t,r)=>{"use strict";r.d(t,{c:()=>s,O:()=>a});var n=r(53887),i=r.n(n),A=r(36545),o=r(54143);const s=/^(?!v)[a-z0-9-.]+$/i;class a{supportsDescriptor(e,t){return!!A.F(e.range)||!!s.test(e.range)}supportsLocator(e,t){return!!i().valid(e.reference)||!!s.test(e.reference)}shouldPersistResolution(e,t){return t.resolver.shouldPersistResolution(this.forwardLocator(e,t),t)}bindDescriptor(e,t,r){return r.resolver.bindDescriptor(this.forwardDescriptor(e,r),t,r)}getResolutionDependencies(e,t){return t.resolver.getResolutionDependencies(this.forwardDescriptor(e,t),t)}async getCandidates(e,t,r){return await r.resolver.getCandidates(this.forwardDescriptor(e,r),t,r)}async getSatisfying(e,t,r){return await r.resolver.getSatisfying(this.forwardDescriptor(e,r),t,r)}async resolve(e,t){const r=await t.resolver.resolve(this.forwardLocator(e,t),t);return o.renamePackage(r,e)}forwardDescriptor(e,t){return o.makeDescriptor(e,`${t.project.configuration.get("defaultProtocol")}${e.range}`)}forwardLocator(e,t){return o.makeLocator(e,`${t.project.configuration.get("defaultProtocol")}${e.reference}`)}}},35691:(e,t,r)=>{"use strict";r.d(t,{lk:()=>o,yG:()=>s});var n=r(92413),i=r(24304),A=r(92659);class o extends Error{constructor(e,t){super(t),this.reportCode=e}}class s{constructor(){this.reportedInfos=new Set,this.reportedWarnings=new Set,this.reportedErrors=new Set}static progressViaCounter(e){let t,r=0,n=new Promise(e=>{t=e});const i=e=>{const i=t;n=new Promise(e=>{t=e}),r=e,i()},A=async function*(){for(;rA,set:i,tick:(e=0)=>{i(r+1)}}}reportInfoOnce(e,t,r){const n=r&&r.key?r.key:t;this.reportedInfos.has(n)||(this.reportedInfos.add(n),this.reportInfo(e,t))}reportWarningOnce(e,t,r){const n=r&&r.key?r.key:t;this.reportedWarnings.has(n)||(this.reportedWarnings.add(n),this.reportWarning(e,t))}reportErrorOnce(e,t,r){const n=r&&r.key?r.key:t;this.reportedErrors.has(n)||(this.reportedErrors.add(n),this.reportError(e,t))}reportExceptionOnce(e){!function(e){return void 0!==e.reportCode}(e)?this.reportErrorOnce(A.b.EXCEPTION,e.stack||e.message,{key:e}):this.reportErrorOnce(e.reportCode,e.message,{key:e})}createStreamReporter(e=null){const t=new n.PassThrough,r=new i.StringDecoder;let A="";return t.on("data",t=>{let n,i=r.write(t);do{if(n=i.indexOf("\n"),-1!==n){const t=A+i.substr(0,n);i=i.substr(n+1),A="",null!==e?this.reportInfo(null,`${e} ${t}`):this.reportInfo(null,t)}}while(-1!==n);A+=i}),t.on("end",()=>{const t=r.end();""!==t&&(null!==e?this.reportInfo(null,`${e} ${t}`):this.reportInfo(null,t))}),t}}},15815:(e,t,r)=>{"use strict";r.d(t,{Qw:()=>p,Pk:()=>C});var n=r(29148),i=r.n(n),A=r(92659),o=r(35691);const s=["⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"],a=new Set([A.b.FETCH_NOT_CACHED,A.b.UNUSED_CACHE_ENTRY]),c=process.env.GITHUB_ACTIONS?{start:e=>`::group::${e}\n`,end:e=>"::endgroup::\n"}:process.env.TRAVIS?{start:e=>`travis_fold:start:${e}\n`,end:e=>`travis_fold:end:${e}\n`}:process.env.GITLAB_CI?{start:e=>`section_start:${Math.floor(Date.now()/1e3)}:${e.toLowerCase().replace(/\W+/g,"_")}\r${e}\n`,end:e=>`section_end:${Math.floor(Date.now()/1e3)}:${e.toLowerCase().replace(/\W+/g,"_")}\r`}:null,g=new Date,l=["iTerm.app","Apple_Terminal"].includes(process.env.TERM_PROGRAM)||!!process.env.WT_SESSION,u={patrick:{date:[17,3],chars:["🍀","🌱"],size:40},simba:{date:[19,7],chars:["🦁","🌴"],size:40},jack:{date:[31,10],chars:["🎃","🦇"],size:40},hogsfather:{date:[31,12],chars:["🎉","🎄"],size:40},default:{chars:["=","-"],size:80}},h=l&&Object.keys(u).find(e=>{const t=u[e];return!t.date||t.date[0]===g.getDate()&&t.date[1]===g.getMonth()+1})||"default";function f(e,{configuration:t,json:r}){const n="YN"+(null===e?0:e).toString(10).padStart(4,"0");return r||null!==e?n:t.format(n,"grey")}function p(e,{configuration:t,json:r}){const n=f(e,{configuration:t,json:r});if(!t.get("enableHyperlinks"))return n;if(null===e||e===A.b.UNNAMED)return n;return`]8;;${`https://yarnpkg.com/advanced/error-codes#${n}---${A.b[e]}`.toLowerCase()}${n}]8;;`}class C extends o.yG{constructor({configuration:e,stdout:t,json:r=!1,includeFooter:n=!0,includeLogs:i=!r,includeInfos:A=i,includeWarnings:o=i,forgettableBufferSize:s=5,forgettableNames:c=new Set}){super(),this.cacheHitCount=0,this.cacheMissCount=0,this.warningCount=0,this.errorCount=0,this.startTime=Date.now(),this.indent=0,this.progress=new Map,this.progressTime=0,this.progressFrame=0,this.progressTimeout=null,this.forgettableLines=[],this.configuration=e,this.forgettableBufferSize=s,this.forgettableNames=new Set([...c,...a]),this.includeFooter=n,this.includeInfos=A,this.includeWarnings=o,this.json=r,this.stdout=t}static async start(e,t){const r=new this(e),n=process.emitWarning;process.emitWarning=(e,t)=>{if("string"!=typeof e){const r=e;e=r.message,t=null!=t?t:r.name}const n=void 0!==t?`${t}: ${e}`:e;r.reportWarning(A.b.UNNAMED,n)};try{await t(r)}catch(e){r.reportExceptionOnce(e)}finally{await r.finalize(),process.emitWarning=n}return r}hasErrors(){return this.errorCount>0}exitCode(){return this.hasErrors()?1:0}reportCacheHit(e){this.cacheHitCount+=1}reportCacheMiss(e,t){this.cacheMissCount+=1,void 0===t||this.configuration.get("preferAggregateCacheInfo")||this.reportInfo(A.b.FETCH_NOT_CACHED,t)}startTimerSync(e,t){this.reportInfo(null,"┌ "+e);const r=Date.now();this.indent+=1;try{return t()}catch(e){throw this.reportExceptionOnce(e),e}finally{const e=Date.now();this.indent-=1,this.configuration.get("enableTimers")&&e-r>200?this.reportInfo(null,"└ Completed in "+this.formatTiming(e-r)):this.reportInfo(null,"└ Completed")}}async startTimerPromise(e,t){this.reportInfo(null,"┌ "+e),null!==c&&this.stdout.write(c.start(e));const r=Date.now();this.indent+=1;try{return await t()}catch(e){throw this.reportExceptionOnce(e),e}finally{const t=Date.now();this.indent-=1,null!==c&&this.stdout.write(c.end(e)),this.configuration.get("enableTimers")&&t-r>200?this.reportInfo(null,"└ Completed in "+this.formatTiming(t-r)):this.reportInfo(null,"└ Completed")}}async startCacheReport(e){const t=this.configuration.get("preferAggregateCacheInfo")?{cacheHitCount:this.cacheHitCount,cacheMissCount:this.cacheMissCount}:null;try{return await e()}catch(e){throw this.reportExceptionOnce(e),e}finally{null!==t&&this.reportCacheChanges(t)}}reportSeparator(){0===this.indent?this.writeLineWithForgettableReset(""):this.reportInfo(null,"")}reportInfo(e,t){if(!this.includeInfos)return;const r=`${this.configuration.format("➤","blueBright")} ${this.formatNameWithHyperlink(e)}: ${this.formatIndent()}${t}`;if(this.json)this.reportJson({type:"info",name:e,displayName:this.formatName(e),indent:this.formatIndent(),data:t});else if(this.forgettableNames.has(e))if(this.forgettableLines.push(r),this.forgettableLines.length>this.forgettableBufferSize){for(;this.forgettableLines.length>this.forgettableBufferSize;)this.forgettableLines.shift();this.writeLines(this.forgettableLines,{truncate:!0})}else this.writeLine(r,{truncate:!0});else this.writeLineWithForgettableReset(r)}reportWarning(e,t){this.warningCount+=1,this.includeWarnings&&(this.json?this.reportJson({type:"warning",name:e,displayName:this.formatName(e),indent:this.formatIndent(),data:t}):this.writeLineWithForgettableReset(`${this.configuration.format("➤","yellowBright")} ${this.formatNameWithHyperlink(e)}: ${this.formatIndent()}${t}`))}reportError(e,t){this.errorCount+=1,this.json?this.reportJson({type:"error",name:e,displayName:this.formatName(e),indent:this.formatIndent(),data:t}):this.writeLineWithForgettableReset(`${this.configuration.format("➤","redBright")} ${this.formatNameWithHyperlink(e)}: ${this.formatIndent()}${t}`,{truncate:!1})}reportProgress(e){let t=!1;const r=Promise.resolve().then(async()=>{const r={progress:0,title:void 0};this.progress.set(e,r),this.refreshProgress(-1);for await(const{progress:n,title:i}of e)t||r.progress===n&&r.title===i||(r.progress=n,r.title=i,this.refreshProgress());n()}),n=()=>{t||(t=!0,this.progress.delete(e),this.refreshProgress(1))};return{...r,stop:n}}reportJson(e){this.json&&this.writeLineWithForgettableReset(""+JSON.stringify(e))}async finalize(){if(!this.includeFooter)return;let e="";e=this.errorCount>0?"Failed with errors":this.warningCount>0?"Done with warnings":"Done";const t=this.formatTiming(Date.now()-this.startTime),r=this.configuration.get("enableTimers")?`${e} in ${t}`:e;this.errorCount>0?this.reportError(A.b.UNNAMED,r):this.warningCount>0?this.reportWarning(A.b.UNNAMED,r):this.reportInfo(A.b.UNNAMED,r)}writeLine(e,{truncate:t}={}){this.clearProgress({clear:!0}),this.stdout.write(this.truncate(e,{truncate:t})+"\n"),this.writeProgress()}writeLineWithForgettableReset(e,{truncate:t}={}){this.forgettableLines=[],this.writeLine(e,{truncate:t})}writeLines(e,{truncate:t}={}){this.clearProgress({delta:e.length});for(const r of e)this.stdout.write(this.truncate(r,{truncate:t})+"\n");this.writeProgress()}reportCacheChanges({cacheHitCount:e,cacheMissCount:t}){const r=this.cacheHitCount-e,n=this.cacheMissCount-t;if(0===r&&0===n)return;let i="";this.cacheHitCount>1?i+=this.cacheHitCount+" packages were already cached":1===this.cacheHitCount?i+=" - one package was already cached":i+="No packages were cached",this.cacheHitCount>0?this.cacheMissCount>1?i+=`, ${this.cacheMissCount} had to be fetched`:1===this.cacheMissCount&&(i+=", one had to be fetched"):this.cacheMissCount>1?i+=` - ${this.cacheMissCount} packages had to be fetched`:1===this.cacheMissCount&&(i+=" - one package had to be fetched"),this.reportInfo(A.b.FETCH_NOT_CACHED,i)}clearProgress({delta:e=0,clear:t=!1}){this.configuration.get("enableProgressBars")&&!this.json&&this.progress.size+e>0&&(this.stdout.write(`[${this.progress.size+e}A`),(e>0||t)&&this.stdout.write(""))}writeProgress(){if(!this.configuration.get("enableProgressBars")||this.json)return;if(null!==this.progressTimeout&&clearTimeout(this.progressTimeout),this.progressTimeout=null,0===this.progress.size)return;const e=Date.now();e-this.progressTime>80&&(this.progressFrame=(this.progressFrame+1)%s.length,this.progressTime=e);const t=s[this.progressFrame],r=this.configuration.get("progressBarStyle")||h;if(!Object.prototype.hasOwnProperty.call(u,r))throw new Error("Assertion failed: Invalid progress bar style");const n=u[r],i="➤ YN0000: ┌ ".length,A=Math.max(0,Math.min(process.stdout.columns-i,80)),o=Math.floor(n.size*A/80);for(const{progress:e}of this.progress.values()){const r=o*e,i=n.chars[0].repeat(r),A=n.chars[1].repeat(o-r);this.stdout.write(`${this.configuration.format("➤","blueBright")} ${this.formatName(null)}: ${t} ${i}${A}\n`)}this.progressTimeout=setTimeout(()=>{this.refreshProgress()},1e3/60)}refreshProgress(e=0){this.clearProgress({delta:e}),this.writeProgress()}formatTiming(e){return e<6e4?Math.round(e/10)/100+"s":Math.round(e/600)/100+"m"}truncate(e,{truncate:t}={}){return this.configuration.get("enableProgressBars")||(t=!1),void 0===t&&(t=this.configuration.get("preferTruncatedLines")),t&&(e=i()(e,0,process.stdout.columns-1)),e}formatName(e){return f(e,{configuration:this.configuration,json:this.json})}formatNameWithHyperlink(e){return p(e,{configuration:this.configuration,json:this.json})}formatIndent(){return"│ ".repeat(this.indent)}}},81832:(e,t,r)=>{"use strict";r.d(t,{E:()=>a});var n,i=r(56537),A=r(46009),o=r(79669),s=r(73632);!function(e){e.VERSION="version",e.COMMAND_NAME="commandName",e.PLUGIN_NAME="pluginName",e.INSTALL_COUNT="installCount",e.PROJECT_COUNT="projectCount",e.WORKSPACE_COUNT="workspaceCount",e.DEPENDENCY_COUNT="dependencyCount",e.EXTENSION="packageExtension"}(n||(n={}));class a{constructor(e,t){this.values=new Map,this.hits=new Map,this.enumerators=new Map,this.configuration=e;const r=this.getRegistryPath();this.isNew=!i.xfs.existsSync(r),this.sendReport(t),this.startBuffer()}reportVersion(e){this.reportValue(n.VERSION,e)}reportCommandName(e){this.reportValue(n.COMMAND_NAME,e||"")}reportPluginName(e){this.reportValue(n.PLUGIN_NAME,e)}reportProject(e){this.reportEnumerator(n.PROJECT_COUNT,e)}reportInstall(e){this.reportHit(n.INSTALL_COUNT,e)}reportPackageExtension(e){this.reportValue(n.EXTENSION,e)}reportWorkspaceCount(e){this.reportValue(n.WORKSPACE_COUNT,String(e))}reportDependencyCount(e){this.reportValue(n.DEPENDENCY_COUNT,String(e))}reportValue(e,t){s.getSetWithDefault(this.values,e).add(t)}reportEnumerator(e,t){s.getSetWithDefault(this.enumerators,e).add(t)}reportHit(e,t="*"){const r=s.getMapWithDefault(this.hits,e),n=s.getFactoryWithDefault(r,t,()=>0);r.set(t,n+1)}getRegistryPath(){const e=this.configuration.get("globalFolder");return A.y1.join(e,"telemetry.json")}sendReport(e){var t,r,n;const s=this.getRegistryPath();let a;try{a=i.xfs.readJsonSync(s)}catch(e){a={}}const c=Date.now(),g=24*this.configuration.get("telemetryInterval")*60*60*1e3,l=(null!==(t=a.lastUpdate)&&void 0!==t?t:c-Math.floor(g*Math.random()))+g;if(!(l>c&&null!=a.lastUpdate)){try{i.xfs.mkdirSync(A.y1.dirname(s),{recursive:!0}),i.xfs.writeJsonSync(s,{lastUpdate:c})}catch(e){return}if(!(l>c)&&a.blocks)for(const[t,i]of Object.entries(null!==(r=a.blocks)&&void 0!==r?r:{})){if(0===Object.keys(i).length)continue;const r=i;r.userId=t;for(const e of Object.keys(null!==(n=r.enumerators)&&void 0!==n?n:{}))r.enumerators=r.enumerators[e].length;const A=`https://browser-http-intake.logs.datadoghq.eu/v1/input/${e}?ddsource=yarn`;o.post(A,r,{configuration:this.configuration}).catch(()=>{})}}}applyChanges(){var e,t,r,n,o,s,a,c,g;const l=this.getRegistryPath();let u;try{u=i.xfs.readJsonSync(l)}catch(e){u={}}const h=null!==(e=this.configuration.get("telemetryUserId"))&&void 0!==e?e:"*",f=u.blocks=null!==(t=u.blocks)&&void 0!==t?t:{},p=f[h]=null!==(r=f[h])&&void 0!==r?r:{};for(const e of this.hits.keys()){const t=p.hits=null!==(n=p.hits)&&void 0!==n?n:{},r=t[e]=null!==(o=t[e])&&void 0!==o?o:{};for(const[t,n]of this.hits.get(e))r[t]=(null!==(s=r[t])&&void 0!==s?s:0)+n}for(const e of["values","enumerators"])for(const t of this[e].keys()){const r=p[e]=null!==(a=p[e])&&void 0!==a?a:{};r[t]=[...new Set([...null!==(c=r[t])&&void 0!==c?c:[],...null!==(g=this[e].get(t))&&void 0!==g?g:[]])]}i.xfs.mkdirSync(A.y1.dirname(l),{recursive:!0}),i.xfs.writeJsonSync(l,u)}startBuffer(){process.on("exit",()=>{try{this.applyChanges()}catch(e){}})}}},33720:(e,t,r)=>{"use strict";r.d(t,{$:()=>i});var n=r(35691);class i extends n.yG{reportCacheHit(e){}reportCacheMiss(e){}startTimerSync(e,t){return t()}async startTimerPromise(e,t){return await t()}async startCacheReport(e){return await e()}reportSeparator(){}reportInfo(e,t){}reportWarning(e,t){}reportError(e,t){}reportProgress(e){return{...Promise.resolve().then(async()=>{for await(const{}of e);}),stop:()=>{}}}reportJson(e){}async finalize(){}}},60895:(e,t,r)=>{"use strict";r.d(t,{N:()=>s});var n=r(17674),i=r(14626),A=r(46009),o=r(54143);class s{supports(e){return!!e.reference.startsWith("virtual:")}getLocalPath(e,t){const r=e.reference.indexOf("#");if(-1===r)throw new Error("Invalid virtual package reference");const n=e.reference.slice(r+1),i=o.makeLocator(e,n);return t.fetcher.getLocalPath(i,t)}async fetch(e,t){const r=e.reference.indexOf("#");if(-1===r)throw new Error("Invalid virtual package reference");const n=e.reference.slice(r+1),i=o.makeLocator(e,n),A=await t.fetcher.fetch(i,t);return await this.ensureVirtualLink(e,A,t)}getLocatorFilename(e){return o.slugifyLocator(e)}async ensureVirtualLink(e,t,r){const o=t.packageFs.getRealPath(),s=r.project.configuration.get("virtualFolder"),a=this.getLocatorFilename(e),c=n.p.makeVirtualPath(s,a,o),g=new i.K(c,{baseFs:t.packageFs,pathUtils:A.y1});return{...t,packageFs:g}}}},17722:(e,t,r)=>{"use strict";r.d(t,{j:()=>h});var n=r(56537),i=r(46009),A=r(58592),o=r.n(A),s=r(53887),a=r.n(s),c=r(46611),g=r(94538),l=r(20624),u=r(54143);class h{constructor(e,{project:t}){this.workspacesCwds=new Set,this.dependencies=new Map,this.project=t,this.cwd=e}async setup(){this.manifest=n.xfs.existsSync(i.y1.join(this.cwd,c.G.fileName))?await c.G.find(this.cwd):new c.G,this.relativeCwd=i.y1.relative(this.project.cwd,this.cwd)||i.LZ.dot;const e=this.manifest.name?this.manifest.name:u.makeIdent(null,`${this.computeCandidateName()}-${l.makeHash(this.relativeCwd).substr(0,6)}`),t=this.manifest.version?this.manifest.version:"0.0.0";this.locator=u.makeLocator(e,t),this.anchoredDescriptor=u.makeDescriptor(this.locator,`${g.d.protocol}${this.relativeCwd}`),this.anchoredLocator=u.makeLocator(this.locator,`${g.d.protocol}${this.relativeCwd}`);const r=this.manifest.workspaceDefinitions.map(({pattern:e})=>e),A=await o()(r,{absolute:!0,cwd:i.cS.fromPortablePath(this.cwd),expandDirectories:!1,onlyDirectories:!0,onlyFiles:!1,ignore:["**/node_modules","**/.git","**/.yarn"]});A.sort();for(const e of A){const t=i.y1.resolve(this.cwd,i.cS.toPortablePath(e));n.xfs.existsSync(i.y1.join(t,"package.json"))&&this.workspacesCwds.add(t)}}accepts(e){const t=e.indexOf(":"),r=-1!==t?e.slice(0,t+1):null,n=-1!==t?e.slice(t+1):e;return r===g.d.protocol&&i.y1.normalize(n)===this.relativeCwd||(r===g.d.protocol&&"*"===n||!!a().validRange(n)&&(r===g.d.protocol?a().satisfies(null!==this.manifest.version?this.manifest.version:"0.0.0",n):!!this.project.configuration.get("enableTransparentWorkspaces")&&(null!==this.manifest.version&&a().satisfies(this.manifest.version,n))))}computeCandidateName(){return this.cwd===this.project.cwd?"root-workspace":""+i.y1.basename(this.cwd)||"unnamed-workspace"}async persistManifest(){const e={};this.manifest.exportTo(e);const t=i.y1.join(this.cwd,c.G.fileName),r=JSON.stringify(e,null,this.manifest.indent)+"\n";await n.xfs.changeFilePromise(t,r,{automaticNewlines:!0})}}},94538:(e,t,r)=>{"use strict";r.d(t,{d:()=>i});var n=r(32485);class i{supportsDescriptor(e,t){if(e.range.startsWith(i.protocol))return!0;return null!==t.project.tryWorkspaceByDescriptor(e)}supportsLocator(e,t){return!!e.reference.startsWith(i.protocol)}shouldPersistResolution(e,t){return!1}bindDescriptor(e,t,r){return e}getResolutionDependencies(e,t){return[]}async getCandidates(e,t,r){return[r.project.getWorkspaceByDescriptor(e).anchoredLocator]}async getSatisfying(e,t,r){return null}async resolve(e,t){const r=t.project.getWorkspaceByCwd(e.reference.slice(i.protocol.length));return{...e,version:r.manifest.version||"0.0.0",languageName:"unknown",linkType:n.U.SOFT,dependencies:new Map([...r.manifest.dependencies,...r.manifest.devDependencies]),peerDependencies:new Map([...r.manifest.peerDependencies]),dependenciesMeta:r.manifest.dependenciesMeta,peerDependenciesMeta:r.manifest.peerDependenciesMeta,bin:r.manifest.bin}}}i.protocol="workspace:"},59355:(e,t,r)=>{"use strict";r.d(t,{o:()=>n});const n="2.2.2"},6220:(e,t,r)=>{"use strict";r.r(t),r.d(t,{EndStrategy:()=>n,pipevp:()=>g,execvp:()=>l});var n,i=r(46009),A=r(67566),o=r.n(A);function s(e){return null!==e&&"number"==typeof e.fd}function a(){}!function(e){e[e.Never=0]="Never",e[e.ErrorCode=1]="ErrorCode",e[e.Always=2]="Always"}(n||(n={}));let c=0;async function g(e,t,{cwd:r,env:A=process.env,strict:g=!1,stdin:l=null,stdout:u,stderr:f,end:p=n.Always}){const C=["pipe","pipe","pipe"];null===l?C[0]="ignore":s(l)&&(C[0]=l),s(u)&&(C[1]=u),s(f)&&(C[2]=f),0==c++&&process.on("SIGINT",a);const d=o()(e,t,{cwd:i.cS.fromPortablePath(r),env:{...A,PWD:i.cS.fromPortablePath(r)},stdio:C});s(l)||null===l||l.pipe(d.stdin),s(u)||d.stdout.pipe(u,{end:!1}),s(f)||d.stderr.pipe(f,{end:!1});const I=()=>{for(const e of new Set([u,f]))s(e)||e.end()};return new Promise((t,r)=>{d.on("error",e=>{0==--c&&process.off("SIGINT",a),p!==n.Always&&p!==n.ErrorCode||I(),r(e)}),d.on("close",(i,A)=>{0==--c&&process.off("SIGINT",a),(p===n.Always||p===n.ErrorCode&&i>0)&&I(),0!==i&&g?r(null!==i?new Error(`Child "${e}" exited with exit code ${i}`):new Error(`Child "${e}" exited with signal ${A}`)):t({code:h(i,A)})})})}async function l(e,t,{cwd:r,env:n=process.env,encoding:A="utf8",strict:s=!1}){const a=["ignore","pipe","pipe"],c=[],g=[],l=i.cS.fromPortablePath(r);void 0!==n.PWD&&(n={...n,PWD:l});const u=o()(e,t,{cwd:l,env:n,stdio:a});return u.stdout.on("data",e=>{c.push(e)}),u.stderr.on("data",e=>{g.push(e)}),await new Promise((t,r)=>{u.on("error",r),u.on("close",(n,i)=>{const o="buffer"===A?Buffer.concat(c):Buffer.concat(c).toString(A),a="buffer"===A?Buffer.concat(g):Buffer.concat(g).toString(A);0!==n&&s?r(Object.assign(new Error(`Child "${e}" exited with exit code ${n}\n\n${a}`),{code:h(n,i),stdout:o,stderr:a})):t({code:h(n,i),stdout:o,stderr:a})})})}const u=new Map([["SIGINT",2],["SIGQUIT",3],["SIGKILL",9],["SIGTERM",15]]);function h(e,t){const r=u.get(t);return void 0!==r?128+r:null!=e?e:1}},81111:(e,t,r)=>{"use strict";r.r(t),r.d(t,{getDefaultGlobalFolder:()=>A,getHomeFolder:()=>o,isFolderInside:()=>s});var n=r(46009),i=r(12087);function A(){if("win32"===process.platform){const e=n.cS.toPortablePath(process.env.LOCALAPPDATA||n.cS.join((0,i.homedir)(),"AppData","Local"));return n.y1.resolve(e,"Yarn/Berry")}if(process.env.XDG_DATA_HOME){const e=n.cS.toPortablePath(process.env.XDG_DATA_HOME);return n.y1.resolve(e,"yarn/berry")}return n.y1.resolve(o(),".yarn/berry")}function o(){return n.cS.toPortablePath((0,i.homedir)()||"/usr/local/share")}function s(e,t){const r=n.y1.relative(t,e);return r&&!r.startsWith("..")&&!n.y1.isAbsolute(r)}},20624:(e,t,r)=>{"use strict";r.r(t),r.d(t,{makeHash:()=>a,checksumFile:()=>c,checksumPattern:()=>g});var n=r(56537),i=r(46009),A=r(76417),o=r(58592),s=r.n(o);function a(...e){const t=(0,A.createHash)("sha512");for(const r of e)t.update(r||"");return t.digest("hex")}function c(e){return new Promise((t,r)=>{const i=(0,A.createHash)("sha512"),o=n.xfs.createReadStream(e);o.on("data",e=>{i.update(e)}),o.on("error",e=>{r(e)}),o.on("end",()=>{t(i.digest("hex"))})})}async function g(e,{cwd:t}){const r=(await s()(e,{cwd:i.cS.fromPortablePath(t),expandDirectories:!1,onlyDirectories:!0,unique:!0})).map(e=>e+"/**/*"),o=await s()([e,...r],{cwd:i.cS.fromPortablePath(t),expandDirectories:!1,onlyFiles:!1,unique:!0});o.sort();const a=await Promise.all(o.map(async e=>{const t=[Buffer.from(e)],r=i.cS.toPortablePath(e),A=await n.xfs.lstatPromise(r);return A.isSymbolicLink()?t.push(Buffer.from(await n.xfs.readlinkPromise(r))):A.isFile()&&t.push(await n.xfs.readFilePromise(r)),t.join("\0")})),c=(0,A.createHash)("sha512");for(const e of a)c.update(e);return c.digest("hex")}},79669:(e,t,r)=>{"use strict";r.r(t),r.d(t,{Method:()=>f,request:()=>p,get:()=>C,put:()=>d,post:()=>I});var n=r(57211),i=r(98605),A=r(2401),o=r.n(A),s=r(98161),a=r.n(s),c=r(78835);const g=new Map,l=new i.Agent({keepAlive:!0}),u=new n.Agent({keepAlive:!0});function h(e){const t=new c.URL(e),r={host:t.hostname,headers:{}};return t.port&&(r.port=Number(t.port)),{proxy:r}}var f;async function p(e,t,{configuration:n,headers:i,json:A,method:s=f.GET}){if(!n.get("enableNetwork"))throw new Error(`Network access have been disabled by configuration (${s} ${e})`);const g=new c.URL(e);if("http:"===g.protocol&&!o().isMatch(g.hostname,n.get("unsafeHttpWhitelist")))throw new Error(`Unsafe http requests must be explicitly whitelisted in your configuration (${g.hostname})`);const p=n.get("httpProxy"),C=n.get("httpsProxy"),d={agent:{http:p?a().httpOverHttp(h(p)):l,https:C?a().httpsOverHttp(h(C)):u},headers:i,method:s};d.responseType=A?"json":"buffer",null!==t&&("string"==typeof t||Buffer.isBuffer(t)?d.body=t:d.json=t);const I=n.get("httpTimeout"),E=n.get("httpRetry"),{default:m}=await Promise.resolve().then(r.t.bind(r,22395,7)),B=m.extend({timeout:{socket:I},retry:E,...d});return n.getLimit("networkConcurrency")(()=>B(e))}async function C(e,{configuration:t,json:r,...n}){let i=g.get(e);return i||(i=p(e,null,{configuration:t,...n}).then(t=>(g.set(e,t.body),t.body)),g.set(e,i)),!1===Buffer.isBuffer(i)&&(i=await i),r?JSON.parse(i.toString()):i}async function d(e,t,r){return(await p(e,t,{...r,method:f.PUT})).body}async function I(e,t,r){return(await p(e,t,{...r,method:f.POST})).body}!function(e){e.GET="GET",e.PUT="PUT",e.POST="POST"}(f||(f={}))},5624:(e,t,r)=>{"use strict";r.r(t),r.d(t,{Cache:()=>v.C,DEFAULT_RC_FILENAME:()=>b.tr,DEFAULT_LOCK_FILENAME:()=>b.nh,Configuration:()=>b.VK,FormatType:()=>b.a5,ProjectLookup:()=>b.EW,SettingsType:()=>b.a2,BuildType:()=>D.k,LightReport:()=>S.h,Manifest:()=>k.G,MessageName:()=>M.b,Project:()=>F.I,TAG_REGEXP:()=>N.c,ReportError:()=>R.lk,Report:()=>R.yG,StreamReport:()=>K.Pk,TelemetryManager:()=>x.E,ThrowReport:()=>L.$,VirtualFetcher:()=>P.N,WorkspaceResolver:()=>U.d,Workspace:()=>T.j,YarnVersion:()=>O.o,LinkType:()=>j.U,hashUtils:()=>o,httpUtils:()=>s,execUtils:()=>i,folderUtils:()=>A,miscUtils:()=>a,scriptUtils:()=>c,semverUtils:()=>g,structUtils:()=>l,tgzUtils:()=>n});var n={};r.r(n),r.d(n,{convertToZip:()=>y,extractArchiveTo:()=>Q,makeArchiveFromDirectory:()=>w});var i=r(6220),A=r(81111),o=r(20624),s=r(79669),a=r(73632),c=r(63088),g=r(36545),l=r(54143),u=r(78420),h=r(46009),f=r(90739),p=r(56537),C=r(29486),d=r(59938),I=r(31669),E=r(78761),m=r.n(E);const B=(0,I.promisify)(m().gunzip);async function w(e,{baseFs:t=new u.S,prefixPath:r=h.LZ.root,compressionLevel:n,inMemory:i=!1}={}){const A=await(0,C.getLibzipPromise)();let o;if(i)o=new f.d(null,{libzip:A,level:n});else{const e=await p.xfs.mktempPromise(),t=h.y1.join(e,"archive.zip");o=new f.d(t,{create:!0,libzip:A,level:n})}const s=h.y1.resolve(h.LZ.root,r);return await o.copyPromise(s,e,{baseFs:t,stableTime:!0,stableSort:!0}),o}async function y(e,t){const r=await p.xfs.mktempPromise(),n=h.y1.join(r,"archive.zip"),{compressionLevel:i,...A}=t;return await Q(e,new f.d(n,{create:!0,libzip:await(0,C.getLibzipPromise)(),level:i}),A)}async function Q(e,t,{stripComponents:r=0,prefixPath:n=h.LZ.dot}={}){const i=d.K();i.on("entry",(e,i,A)=>{var o,s;if(function(e){if("/"===e.name[0])return!0;const t=e.name.split(/\//g);return!!t.some(e=>".."===e)||t.length<=r}(e))return void A();const a=h.y1.normalize(h.cS.toPortablePath(e.name)).replace(/\/$/,"").split(/\//g);if(a.length<=r)return i.resume(),void A();const c=a.slice(r).join("/"),g=h.y1.join(n,c);let l=420;switch("directory"!==e.type&&0==(73&(null!==(o=e.mode)&&void 0!==o?o:0))||(l|=73),e.type){case"directory":t.mkdirpSync(h.y1.dirname(g),{chmod:493,utimes:[315532800,315532800]}),t.mkdirSync(g),t.chmodSync(g,l),t.utimesSync(g,315532800,315532800),A();break;case"file":{t.mkdirpSync(h.y1.dirname(g),{chmod:493,utimes:[315532800,315532800]});const e=[];i.on("data",t=>e.push(t)),i.on("end",()=>{t.writeFileSync(g,Buffer.concat(e)),t.chmodSync(g,l),t.utimesSync(g,315532800,315532800),A()})}break;case"symlink":t.mkdirpSync(h.y1.dirname(g),{chmod:493,utimes:[315532800,315532800]}),t.symlinkSync(e.linkname,g),null===(s=t.lutimesSync)||void 0===s||s.call(t,g,315532800,315532800),A();break;default:i.resume(),A()}});const A=await B(e);return await new Promise((e,r)=>{i.on("error",e=>{r(e)}),i.on("finish",()=>{e(t)}),i.end(A)})}var v=r(28148),b=r(27122),D=r(92409),S=r(62152),k=r(46611),M=r(92659),F=r(40376),N=r(52779),R=r(35691),K=r(15815),x=r(81832),L=r(33720),P=r(60895),U=r(94538),T=r(17722),O=r(59355),j=r(32485)},73632:(e,t,r)=>{"use strict";r.r(t),r.d(t,{escapeRegExp:()=>a,assertNever:()=>c,mapAndFilter:()=>g,mapAndFind:()=>u,isIndexableObject:()=>f,getFactoryWithDefault:()=>p,getArrayWithDefault:()=>C,getSetWithDefault:()=>d,getMapWithDefault:()=>I,releaseAfterUseAsync:()=>E,prettifyAsyncErrors:()=>m,prettifySyncErrors:()=>B,bufferStream:()=>w,BufferStream:()=>y,DefaultStream:()=>Q,dynamicRequire:()=>v,dynamicRequireNoCache:()=>b,sortMap:()=>D,buildIgnorePattern:()=>S,replaceEnvVariables:()=>k});var n=r(46009),i=r(93103),A=r(2401),o=r.n(A),s=r(92413);function a(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function c(e){throw new Error(`Assertion failed: Unexpected object '${e}'`)}function g(e,t){const r=[];for(const n of e){const e=t(n);e!==l&&r.push(e)}return r}e=r.hmd(e);const l=Symbol();function u(e,t){for(const r of e){const e=t(r);if(e!==h)return e}}g.skip=l;const h=Symbol();function f(e){return"object"==typeof e&&null!==e}function p(e,t,r){let n=e.get(t);return void 0===n&&e.set(t,n=r()),n}function C(e,t){let r=e.get(t);return void 0===r&&e.set(t,r=[]),r}function d(e,t){let r=e.get(t);return void 0===r&&e.set(t,r=new Set),r}function I(e,t){let r=e.get(t);return void 0===r&&e.set(t,r=new Map),r}async function E(e,t){if(null==t)return await e();try{return await e()}finally{await t()}}async function m(e,t){try{return await e()}catch(e){throw e.message=t(e.message),e}}function B(e,t){try{return e()}catch(e){throw e.message=t(e.message),e}}async function w(e){return await new Promise((t,r)=>{const n=[];e.on("error",e=>{r(e)}),e.on("data",e=>{n.push(e)}),e.on("end",()=>{t(Buffer.concat(n))})})}u.skip=h;class y extends s.Transform{constructor(){super(...arguments),this.chunks=[]}_transform(e,t,r){if("buffer"!==t||!Buffer.isBuffer(e))throw new Error("Assertion failed: BufferStream only accept buffers");this.chunks.push(e),r(null,null)}_flush(e){e(null,Buffer.concat(this.chunks))}}class Q extends s.Transform{constructor(e=Buffer.alloc(0)){super(),this.active=!0,this.ifEmpty=e}_transform(e,t,r){if("buffer"!==t||!Buffer.isBuffer(e))throw new Error("Assertion failed: DefaultStream only accept buffers");this.active=!1,r(null,e)}_flush(e){this.active&&this.ifEmpty.length>0&&e(null,this.ifEmpty)}}function v(e){return"undefined"!=typeof require?require(e):r(32178)(e)}function b(t){const i=n.cS.fromPortablePath(t),A=r.c[i];let o;delete r.c[i];try{o=v(i);const t=r.c[i],n=e.children.indexOf(t);-1!==n&&e.children.splice(n,1)}finally{r.c[i]=A}return o}function D(e,t){const r=Array.from(e);Array.isArray(t)||(t=[t]);const n=[];for(const e of t)n.push(r.map(t=>e(t)));const i=r.map((e,t)=>t);return i.sort((e,t)=>{for(const r of n){const n=r[e]r[t]?1:0;if(0!==n)return n}return 0}),i.map(e=>r[e])}function S(e){return 0===e.length?null:e.map(e=>`(${o().makeRe(e,{windows:!1}).source})`).join("|")}function k(e,{env:t}){return e.replace(/\${(?[\d\w_]+)(?:)?-?(?[^}]+)?}/g,(...e)=>{const{variableName:r,colon:n,fallback:A}=e[e.length-1],o=Object.prototype.hasOwnProperty.call(t,r),s=process.env[r];if(s)return s;if(o&&!s&&n)return A;if(o)return s;if(A)return A;throw new i.UsageError(`Environment variable not found (${r})`)})}},63088:(e,t,r)=>{"use strict";r.r(t),r.d(t,{makeScriptEnv:()=>v,prepareExternalProject:()=>D,hasPackageScript:()=>S,executePackageScript:()=>k,executePackageShellcode:()=>M,executeWorkspaceScript:()=>N,hasWorkspaceScript:()=>R,executeWorkspaceLifecycleScript:()=>K,maybeExecuteWorkspaceLifecycleScript:()=>x,getPackageAccessibleBinaries:()=>L,getWorkspaceAccessibleBinaries:()=>P,executePackageAccessibleBinary:()=>U,executeWorkspaceAccessibleBinary:()=>T});var n,i=r(46009),A=r(53660),o=r(75448),s=r(56537),a=r(29486),c=r(43982),g=r(61814),l=r.n(g),u=r(61578),h=r.n(u),f=r(92413),p=r(27122),C=r(46611),d=r(92659),I=r(35691),E=r(15815),m=r(59355),B=r(6220),w=r(73632),y=r(54143);async function Q(e,t,r,n=[]){"win32"===process.platform&&await s.xfs.writeFilePromise(i.y1.format({dir:e,name:t,ext:".cmd"}),`@"${r}" ${n.map(e=>`"${e.replace('"','""')}"`).join(" ")} %*\n`),await s.xfs.writeFilePromise(i.y1.join(e,t),`#!/bin/sh\nexec "${r}" ${n.map(e=>`'${e.replace(/'/g,"'\"'\"'")}'`).join(" ")} "$@"\n`),await s.xfs.chmodPromise(i.y1.join(e,t),493)}async function v({project:e,binFolder:t,lifecycleScript:r}){const n={};for(const[e,t]of Object.entries(process.env))void 0!==t&&(n["path"!==e.toLowerCase()?e:"PATH"]=t);const A=i.cS.fromPortablePath(t);n.BERRY_BIN_FOLDER=i.cS.fromPortablePath(A),await Q(t,"node",process.execPath),null!==m.o&&(await Q(t,"run",process.execPath,[process.argv[1],"run"]),await Q(t,"yarn",process.execPath,[process.argv[1]]),await Q(t,"yarnpkg",process.execPath,[process.argv[1]]),await Q(t,"node-gyp",process.execPath,[process.argv[1],"run","--top-level","node-gyp"])),e&&(n.INIT_CWD=i.cS.fromPortablePath(e.configuration.startingCwd)),n.PATH=n.PATH?`${A}${i.cS.delimiter}${n.PATH}`:""+A,n.npm_execpath=`${A}${i.cS.sep}yarn`,n.npm_node_execpath=`${A}${i.cS.sep}node`;const o=null!==m.o?"yarn/"+m.o:`yarn/${w.dynamicRequire("@yarnpkg/core").version}-core`;return n.npm_config_user_agent=`${o} npm/? node/${process.versions.node} ${process.platform} ${process.arch}`,r&&(n.npm_lifecycle_event=r),e&&await e.configuration.triggerHook(e=>e.setupScriptEnvironment,e,n,async(e,r,n)=>await Q(t,(0,i.Zu)(e),r,n)),n}!function(e){e.Yarn1="Yarn Classic",e.Yarn2="Yarn",e.Npm="npm",e.Pnpm="pnpm"}(n||(n={}));const b=h()(2);async function D(e,t,{configuration:r,report:A,workspace:o=null}){await b(async()=>{await s.xfs.mktempPromise(async a=>{const c=i.y1.join(a,"pack.log"),{stdout:g,stderr:l}=r.getSubprocessStreams(c,{prefix:e,report:A}),u=await async function(e){let t=null;try{t=await s.xfs.readFilePromise(i.y1.join(e,i.QS.lockfile),"utf8")}catch(e){}return null!==t?t.match(/^__metadata:$/m)?n.Yarn2:n.Yarn1:s.xfs.existsSync(i.y1.join(e,"package-lock.json"))?n.Npm:s.xfs.existsSync(i.y1.join(e,"pnpm-lock.yaml"))?n.Pnpm:null}(e);let h;null!==u?(g.write(`Installing the project using ${u}\n\n`),h=u):(g.write("No package manager detected; defaulting to Yarn\n\n"),h=n.Yarn2),await s.xfs.mktempPromise(async r=>{const A=await v({binFolder:r}),u=new Map([[n.Yarn1,async()=>{const r=null!==o?["workspace",o]:[],n=await B.pipevp("yarn",["set","version","classic","--only-if-needed"],{cwd:e,env:A,stdin:null,stdout:g,stderr:l,end:B.EndStrategy.ErrorCode});if(0!==n.code)return n.code;await s.xfs.appendFilePromise(i.y1.join(e,".npmignore"),"/.yarn\n"),g.write("\n");const a=await B.pipevp("yarn",["install"],{cwd:e,env:A,stdin:null,stdout:g,stderr:l,end:B.EndStrategy.ErrorCode});if(0!==a.code)return a.code;g.write("\n");const c=await B.pipevp("yarn",[...r,"pack","--filename",i.cS.fromPortablePath(t)],{cwd:e,env:A,stdin:null,stdout:g,stderr:l});return 0!==c.code?c.code:0}],[n.Yarn2,async()=>{const r=null!==o?["workspace",o]:[];A.YARN_ENABLE_INLINE_BUILDS="1";const n=await B.pipevp("yarn",[...r,"pack","--install-if-needed","--filename",i.cS.fromPortablePath(t)],{cwd:e,env:A,stdin:null,stdout:g,stderr:l});return 0!==n.code?n.code:0}],[n.Npm,async()=>{if(null!==o)throw new Error("Workspaces aren't supported by npm, which has been detected as the primary package manager for "+e);delete A.npm_config_user_agent;const r=await B.pipevp("npm",["install"],{cwd:e,env:A,stdin:null,stdout:g,stderr:l,end:B.EndStrategy.ErrorCode});if(0!==r.code)return r.code;const n=new f.PassThrough,a=w.bufferStream(n);n.pipe(g);const c=await B.pipevp("npm",["pack","--silent"],{cwd:e,env:A,stdin:null,stdout:n,stderr:l});if(0!==c.code)return c.code;const u=(await a).toString().trim(),h=i.y1.resolve(e,i.cS.toPortablePath(u));return await s.xfs.renamePromise(h,t),0}]]).get(h);if(void 0===u)throw new Error("Assertion failed: Unsupported workflow");const p=await u();if(0!==p&&void 0!==p)throw s.xfs.detachTemp(a),new I.lk(d.b.PACKAGE_PREPARATION_FAILED,`Packing the package failed (exit code ${p}, logs can be found here: ${c})`)})})})}async function S(e,t,{project:r}){const n=r.storedPackages.get(e.locatorHash);if(!n)throw new Error(`Package for ${y.prettyLocator(r.configuration,e)} not found in the project`);return await A.A.openPromise(async e=>{const A=r.configuration,s=r.configuration.getLinkers(),a={project:r,report:new E.Pk({stdout:new f.PassThrough,configuration:A})},c=s.find(e=>e.supportsPackage(n,a));if(!c)throw new Error(`The package ${y.prettyLocator(r.configuration,n)} isn't supported by any of the available linkers`);const g=await c.findPackageLocation(n,a),l=new o.M(g,{baseFs:e});return(await C.G.find(i.LZ.dot,{baseFs:l})).scripts.has(t)},{libzip:await(0,a.getLibzipPromise)()})}async function k(e,t,r,{cwd:n,project:i,stdin:A,stdout:o,stderr:a}){return await s.xfs.mktempPromise(async s=>{const{manifest:g,env:l,cwd:u}=await F(e,{project:i,binFolder:s,cwd:n,lifecycleScript:t}),h=g.scripts.get(t);if(void 0===h)return 1;const f=await i.configuration.reduceHook(e=>e.wrapScriptExecution,async()=>await(0,c.execute)(h,r,{cwd:u,env:l,stdin:A,stdout:o,stderr:a}),i,e,t,{script:h,args:r,cwd:u,env:l,stdin:A,stdout:o,stderr:a});return await f()})}async function M(e,t,r,{cwd:n,project:i,stdin:A,stdout:o,stderr:a}){return await s.xfs.mktempPromise(async s=>{const{env:g,cwd:l}=await F(e,{project:i,binFolder:s,cwd:n});return await(0,c.execute)(t,r,{cwd:l,env:g,stdin:A,stdout:o,stderr:a})})}async function F(e,{project:t,binFolder:r,cwd:n,lifecycleScript:s}){const c=t.storedPackages.get(e.locatorHash);if(!c)throw new Error(`Package for ${y.prettyLocator(t.configuration,e)} not found in the project`);return await A.A.openPromise(async A=>{const a=t.configuration,g=t.configuration.getLinkers(),l={project:t,report:new E.Pk({stdout:new f.PassThrough,configuration:a})},u=g.find(e=>e.supportsPackage(c,l));if(!u)throw new Error(`The package ${y.prettyLocator(t.configuration,c)} isn't supported by any of the available linkers`);const h=await v({project:t,binFolder:r,lifecycleScript:s});for(const[n,[,A]]of await L(e,{project:t}))await Q(r,(0,i.Zu)(n),process.execPath,[A]);const p=await u.findPackageLocation(c,l),d=new o.M(p,{baseFs:A}),I=await C.G.find(i.LZ.dot,{baseFs:d});return void 0===n&&(n=p),{manifest:I,binFolder:r,env:h,cwd:n}},{libzip:await(0,a.getLibzipPromise)()})}async function N(e,t,r,{cwd:n,stdin:i,stdout:A,stderr:o}){return await k(e.anchoredLocator,t,r,{cwd:n,project:e.project,stdin:i,stdout:A,stderr:o})}function R(e,t){return e.manifest.scripts.has(t)}async function K(e,t,{cwd:r,report:n}){const{configuration:A}=e.project;await s.xfs.mktempPromise(async o=>{const a=i.y1.join(o,t+".log"),c=`# This file contains the result of Yarn calling the "${t}" lifecycle script inside a workspace ("${e.cwd}")\n`,{stdout:g,stderr:u}=A.getSubprocessStreams(a,{report:n,prefix:y.prettyLocator(A,e.anchoredLocator),header:c});n.reportInfo(d.b.LIFECYCLE_SCRIPT,`Calling the "${t}" lifecycle script`);const h=await N(e,t,[],{cwd:r,stdin:null,stdout:g,stderr:u});if(g.end(),u.end(),0!==h)throw s.xfs.detachTemp(o),new I.lk(d.b.LIFECYCLE_SCRIPT,`${l()(t)} script failed (exit code ${A.format(String(h),p.a5.NUMBER)}, logs can be found here: ${A.format(a,p.a5.PATH)}); run ${A.format("yarn "+t,p.a5.CODE)} to investigate`)})}async function x(e,t,r){R(e,t)&&await K(e,t,r)}async function L(e,{project:t}){const r=t.configuration,n=new Map,A=t.storedPackages.get(e.locatorHash);if(!A)throw new Error(`Package for ${y.prettyLocator(r,e)} not found in the project`);const o=new f.Writable,s=r.getLinkers(),a={project:t,report:new E.Pk({configuration:r,stdout:o})},c=new Set([e.locatorHash]);for(const e of A.dependencies.values()){const n=t.storedResolutions.get(e.descriptorHash);if(!n)throw new Error(`Assertion failed: The resolution (${y.prettyDescriptor(r,e)}) should have been registered`);c.add(n)}for(const e of c){const r=t.storedPackages.get(e);if(!r)throw new Error(`Assertion failed: The package (${e}) should have been registered`);if(0===r.bin.size)continue;const A=s.find(e=>e.supportsPackage(r,a));if(!A)continue;const o=await A.findPackageLocation(r,a);for(const[e,t]of r.bin)n.set(e,[r,i.cS.fromPortablePath(i.y1.resolve(o,t))])}return n}async function P(e){return await L(e.anchoredLocator,{project:e.project})}async function U(e,t,r,{cwd:n,project:A,stdin:o,stdout:a,stderr:c,nodeArgs:g=[]}){const l=await L(e,{project:A}),u=l.get(t);if(!u)throw new Error(`Binary not found (${t}) for ${y.prettyLocator(A.configuration,e)}`);return await s.xfs.mktempPromise(async e=>{const[,t]=u,h=await v({project:A,binFolder:e});for(const[e,[,t]]of l)await Q(h.BERRY_BIN_FOLDER,(0,i.Zu)(e),process.execPath,[t]);let f;try{f=await B.pipevp(process.execPath,[...g,t,...r],{cwd:n,env:h,stdin:o,stdout:a,stderr:c})}finally{await s.xfs.removePromise(h.BERRY_BIN_FOLDER)}return f.code})}async function T(e,t,r,{cwd:n,stdin:i,stdout:A,stderr:o}){return await U(e.anchoredLocator,t,r,{project:e.project,cwd:n,stdin:i,stdout:A,stderr:o})}},36545:(e,t,r)=>{"use strict";r.d(t,{v:()=>A,F:()=>s});var n=r(53887),i=r.n(n);function A(e,t,r=!1){let n,A;try{n=new(i().Range)(t,{includePrerelease:!0,loose:r})}catch(e){return!1}if(!e)return!1;try{A=new(i().SemVer)(e,n),A.prerelease&&(A.prerelease=[])}catch(e){return!1}return n.set.some(e=>{for(const t of e)t.semver.prerelease&&(t.semver.prerelease=[]);return e.every(e=>e.test(A))})}const o=new Map;function s(e){if(-1!==e.indexOf(":"))return null;let t=o.get(e);if(void 0!==t)return t;try{t=new(i().Range)(e)}catch(e){t=null}return o.set(e,t),t}},54143:(e,t,r)=>{"use strict";r.r(t),r.d(t,{makeIdent:()=>l,makeDescriptor:()=>u,makeLocator:()=>h,convertToIdent:()=>f,convertDescriptorToLocator:()=>p,convertLocatorToDescriptor:()=>C,convertPackageToLocator:()=>d,renamePackage:()=>I,copyPackage:()=>E,virtualizeDescriptor:()=>m,virtualizePackage:()=>B,isVirtualDescriptor:()=>w,isVirtualLocator:()=>y,devirtualizeDescriptor:()=>Q,devirtualizeLocator:()=>v,bindDescriptor:()=>b,bindLocator:()=>D,areIdentsEqual:()=>S,areDescriptorsEqual:()=>k,areLocatorsEqual:()=>M,areVirtualPackagesEquivalent:()=>F,parseIdent:()=>N,tryParseIdent:()=>R,parseDescriptor:()=>K,tryParseDescriptor:()=>x,parseLocator:()=>L,tryParseLocator:()=>P,parseRange:()=>U,parseFileStyleRange:()=>T,makeRange:()=>j,convertToManifestRange:()=>Y,requirableIdent:()=>G,stringifyIdent:()=>_,stringifyDescriptor:()=>H,stringifyLocator:()=>J,slugifyIdent:()=>q,slugifyLocator:()=>z,prettyIdent:()=>W,prettyRange:()=>X,prettyDescriptor:()=>Z,prettyReference:()=>$,prettyLocator:()=>ee,prettyLocatorNoColors:()=>te,sortDescriptors:()=>re,prettyWorkspace:()=>ne,getIdentVendorPath:()=>ie});var n=r(46009),i=r(71191),A=r.n(i),o=r(53887),s=r.n(o),a=r(27122),c=r(20624),g=r(73632);function l(e,t){if(null==e?void 0:e.startsWith("@"))throw new Error("Invalid scope: don't prefix it with '@'");return{identHash:c.makeHash(e,t),scope:e,name:t}}function u(e,t){return{identHash:e.identHash,scope:e.scope,name:e.name,descriptorHash:c.makeHash(e.identHash,t),range:t}}function h(e,t){return{identHash:e.identHash,scope:e.scope,name:e.name,locatorHash:c.makeHash(e.identHash,t),reference:t}}function f(e){return{identHash:e.identHash,scope:e.scope,name:e.name}}function p(e){return{identHash:e.identHash,scope:e.scope,name:e.name,locatorHash:e.descriptorHash,reference:e.range}}function C(e){return{identHash:e.identHash,scope:e.scope,name:e.name,descriptorHash:e.locatorHash,range:e.reference}}function d(e){return{identHash:e.identHash,scope:e.scope,name:e.name,locatorHash:e.locatorHash,reference:e.reference}}function I(e,t){return{identHash:t.identHash,scope:t.scope,name:t.name,locatorHash:t.locatorHash,reference:t.reference,version:e.version,languageName:e.languageName,linkType:e.linkType,dependencies:new Map(e.dependencies),peerDependencies:new Map(e.peerDependencies),dependenciesMeta:new Map(e.dependenciesMeta),peerDependenciesMeta:new Map(e.peerDependenciesMeta),bin:new Map(e.bin)}}function E(e){return I(e,e)}function m(e,t){if(t.includes("#"))throw new Error("Invalid entropy");return u(e,`virtual:${t}#${e.range}`)}function B(e,t){if(t.includes("#"))throw new Error("Invalid entropy");return I(e,h(e,`virtual:${t}#${e.reference}`))}function w(e){return e.range.startsWith("virtual:")}function y(e){return e.reference.startsWith("virtual:")}function Q(e){if(!w(e))throw new Error("Not a virtual descriptor");return u(e,e.range.replace(/^[^#]*#/,""))}function v(e){if(!y(e))throw new Error("Not a virtual descriptor");return h(e,e.reference.replace(/^[^#]*#/,""))}function b(e,t){return e.range.includes("::")?e:u(e,`${e.range}::${A().stringify(t)}`)}function D(e,t){return e.reference.includes("::")?e:h(e,`${e.reference}::${A().stringify(t)}`)}function S(e,t){return e.identHash===t.identHash}function k(e,t){return e.descriptorHash===t.descriptorHash}function M(e,t){return e.locatorHash===t.locatorHash}function F(e,t){if(!y(e))throw new Error("Invalid package type");if(!y(t))throw new Error("Invalid package type");if(!S(e,t))return!1;if(e.dependencies.size!==t.dependencies.size)return!1;for(const r of e.dependencies.values()){const e=t.dependencies.get(r.identHash);if(!e)return!1;if(!k(r,e))return!1}return!0}function N(e){const t=R(e);if(!t)throw new Error(`Invalid ident (${e})`);return t}function R(e){const t=e.match(/^(?:@([^/]+?)\/)?([^/]+)$/);if(!t)return null;const[,r,n]=t;return l(void 0!==r?r:null,n)}function K(e,t=!1){const r=x(e,t);if(!r)throw new Error(`Invalid descriptor (${e})`);return r}function x(e,t=!1){const r=t?e.match(/^(?:@([^/]+?)\/)?([^/]+?)(?:@(.+))$/):e.match(/^(?:@([^/]+?)\/)?([^/]+?)(?:@(.+))?$/);if(!r)return null;const[,n,i,A]=r;if("unknown"===A)throw new Error(`Invalid range (${e})`);const o=void 0!==A?A:"unknown";return u(l(void 0!==n?n:null,i),o)}function L(e,t=!1){const r=P(e,t);if(!r)throw new Error(`Invalid locator (${e})`);return r}function P(e,t=!1){const r=t?e.match(/^(?:@([^/]+?)\/)?([^/]+?)(?:@(.+))$/):e.match(/^(?:@([^/]+?)\/)?([^/]+?)(?:@(.+))?$/);if(!r)return null;const[,n,i,A]=r;if("unknown"===A)throw new Error(`Invalid reference (${e})`);const o=void 0!==A?A:"unknown";return h(l(void 0!==n?n:null,i),o)}function U(e,t){const r=e.match(/^([^#:]*:)?((?:(?!::)[^#])*)(?:#((?:(?!::).)*))?(?:::(.*))?$/);if(null===r)throw new Error(`Invalid range (${e})`);const n=void 0!==r[1]?r[1]:null;if("string"==typeof(null==t?void 0:t.requireProtocol)&&n!==t.requireProtocol)throw new Error(`Invalid protocol (${n})`);if((null==t?void 0:t.requireProtocol)&&null===n)throw new Error(`Missing protocol (${n})`);const i=void 0!==r[3]?decodeURIComponent(r[2]):null;if((null==t?void 0:t.requireSource)&&null===i)throw new Error(`Missing source (${e})`);const o=void 0!==r[3]?decodeURIComponent(r[3]):decodeURIComponent(r[2]);return{protocol:n,source:i,selector:(null==t?void 0:t.parseSelector)?A().parse(o):o,params:void 0!==r[4]?A().parse(r[4]):null}}function T(e,{protocol:t}){const{selector:r,params:n}=U(e,{requireProtocol:t,requireBindings:!0});if("string"!=typeof n.locator)throw new Error("Assertion failed: Invalid bindings for "+e);return{parentLocator:L(n.locator,!0),path:r}}function O(e){return e=(e=(e=e.replace(/%/g,"%25")).replace(/:/g,"%3A")).replace(/#/g,"%23")}function j({protocol:e,source:t,selector:r,params:n}){let i="";return null!==e&&(i+=""+e),null!==t&&(i+=O(t)+"#"),i+=O(r),function(e){return null!==e&&Object.entries(e).length>0}(n)&&(i+="::"+A().stringify(n)),i}function Y(e){const{params:t,protocol:r,source:n,selector:i}=U(e);for(const e in t)e.startsWith("__")&&delete t[e];return j({protocol:r,source:n,params:t,selector:i})}function G(e){return e.scope?`@${e.scope}/${e.name}`:""+e.name}function _(e){return e.scope?`@${e.scope}/${e.name}`:""+e.name}function H(e){return e.scope?`@${e.scope}/${e.name}@${e.range}`:`${e.name}@${e.range}`}function J(e){return e.scope?`@${e.scope}/${e.name}@${e.reference}`:`${e.name}@${e.reference}`}function q(e){return null!==e.scope?`@${e.scope}-${e.name}`:e.name}function z(e){const{protocol:t,selector:r}=U(e.reference),i=null!==t?t.replace(/:$/,""):"exotic",A=s().valid(r),o=null!==A?`${i}-${A}`:""+i,a=(e.scope,`${q(e)}-${o}-${e.locatorHash.slice(0,10)}`);return(0,n.Zu)(a)}function W(e,t){return t.scope?`${e.format(`@${t.scope}/`,a.a5.SCOPE)}${e.format(t.name,a.a5.NAME)}`:""+e.format(t.name,a.a5.NAME)}function V(e){if(e.startsWith("virtual:")){return`${V(e.substr(e.indexOf("#")+1))} [${e.substr("virtual:".length,5)}]`}return e.replace(/\?.*/,"?[...]")}function X(e,t){return""+e.format(V(t),a.a5.RANGE)}function Z(e,t){return`${W(e,t)}${e.format("@",a.a5.RANGE)}${X(e,t.range)}`}function $(e,t){return""+e.format(V(t),a.a5.REFERENCE)}function ee(e,t){return`${W(e,t)}${e.format("@",a.a5.REFERENCE)}${$(e,t.reference)}`}function te(e){return`${_(e)}@${V(e.reference)}`}function re(e){return g.sortMap(e,[e=>_(e),e=>e.range])}function ne(e,t){return W(e,t.locator)}function ie(e){return"node_modules/"+G(e)}},32485:(e,t,r)=>{"use strict";var n;r.d(t,{U:()=>n}),function(e){e.HARD="HARD",e.SOFT="SOFT"}(n||(n={}))},14626:(e,t,r)=>{"use strict";r.d(t,{K:()=>i});var n=r(42096);class i extends n.p{constructor(e,{baseFs:t,pathUtils:r}){super(r),this.target=e,this.baseFs=t}getRealPath(){return this.target}getBaseFs(){return this.baseFs}mapFromBase(e){return e}mapToBase(e){return e}}},75448:(e,t,r)=>{"use strict";r.d(t,{M:()=>o});var n=r(78420),i=r(42096),A=r(46009);class o extends i.p{constructor(e,{baseFs:t=new n.S}={}){super(A.y1),this.target=this.pathUtils.normalize(e),this.baseFs=t}getRealPath(){return this.pathUtils.resolve(this.baseFs.getRealPath(),this.target)}resolve(e){return this.pathUtils.isAbsolute(e)?A.y1.normalize(e):this.baseFs.resolve(A.y1.join(this.target,e))}mapFromBase(e){return e}mapToBase(e){return this.pathUtils.isAbsolute(e)?e:this.pathUtils.join(this.target,e)}}},35398:(e,t,r)=>{"use strict";r.d(t,{uY:()=>a,fS:()=>c,qH:()=>g});var n=r(12087),i=r(35747),A=r.n(i),o=r(46009);async function s(e,t,r,n,i,a,c,g){const l=await async function(e,t){try{return await e.lstatPromise(t)}catch(e){return null}}(n,i),u=await a.lstatPromise(c);switch(g.stableTime?t.push(()=>r(i,315532800,315532800)):t.push(()=>r(i,u.atime,u.mtime)),!0){case u.isDirectory():await async function(e,t,r,n,i,A,o,a,c,g){if(null!==A&&!A.isDirectory()){if(!g.overwrite)return;e.push(async()=>n.removePromise(i)),A=null}null===A&&e.push(async()=>n.mkdirPromise(i,{mode:c.mode}));const l=await o.readdirPromise(a);if(g.stableSort)for(const A of l.sort())await s(e,t,r,n,n.pathUtils.join(i,A),o,o.pathUtils.join(a,A),g);else await Promise.all(l.map(async A=>{await s(e,t,r,n,n.pathUtils.join(i,A),o,o.pathUtils.join(a,A),g)}))}(e,t,r,n,i,l,a,c,u,g);break;case u.isFile():await async function(e,t,r,n,i,o,s,a,c,g){if(null!==o){if(!g.overwrite)return;e.push(async()=>n.removePromise(i)),o=null}n===s?e.push(async()=>n.copyFilePromise(a,i,A().constants.COPYFILE_FICLONE)):e.push(async()=>n.writeFilePromise(i,await s.readFilePromise(a)))}(e,0,0,n,i,l,a,c,0,g);break;case u.isSymbolicLink():await async function(e,t,r,n,i,A,s,a,c,g){if(null!==A){if(!g.overwrite)return;e.push(async()=>n.removePromise(i)),A=null}const l=await s.readlinkPromise(a);e.push(async()=>n.symlinkPromise((0,o.CI)(n.pathUtils,l),i))}(e,0,0,n,i,l,a,c,0,g);break;default:throw new Error(`Unsupported file type (${u.mode})`)}t.push(()=>n.chmodPromise(i,511&u.mode))}class a{constructor(e){this.pathUtils=e}async*genTraversePromise(e,{stableSort:t=!1}={}){const r=[e];for(;r.length>0;){const e=r.shift();if((await this.lstatPromise(e)).isDirectory()){const n=await this.readdirPromise(e);if(!t)throw new Error("Not supported");for(const t of n.sort())r.push(this.pathUtils.join(e,t))}else yield e}}async removePromise(e,{recursive:t=!0,maxRetries:r=5}={}){let n;try{n=await this.lstatPromise(e)}catch(e){if("ENOENT"===e.code)return;throw e}if(n.isDirectory()){if(t)for(const t of await this.readdirPromise(e))await this.removePromise(this.pathUtils.resolve(e,t));let n=0;do{try{await this.rmdirPromise(e);break}catch(e){if("EBUSY"===e.code||"ENOTEMPTY"===e.code){if(0===r)break;await new Promise(e=>setTimeout(e,100*n));continue}throw e}}while(n++e()))}(this,e,r,t,{overwrite:n,stableSort:i,stableTime:A})}copySync(e,t,{baseFs:r=this,overwrite:n=!0}={}){const i=r.lstatSync(t),A=this.existsSync(e);if(i.isDirectory()){this.mkdirpSync(e);const i=r.readdirSync(t);for(const A of i)this.copySync(this.pathUtils.join(e,A),r.pathUtils.join(t,A),{baseFs:r,overwrite:n})}else if(i.isFile()){if(!A||n){A&&this.removeSync(e);const n=r.readFileSync(t);this.writeFileSync(e,n)}}else{if(!i.isSymbolicLink())throw new Error(`Unsupported file type (file: ${t}, mode: 0o${i.mode.toString(8).padStart(6,"0")})`);if(!A||n){A&&this.removeSync(e);const n=r.readlinkSync(t);this.symlinkSync((0,o.CI)(this.pathUtils,n),e)}}const s=511&i.mode;this.chmodSync(e,s)}async changeFilePromise(e,t,{automaticNewlines:r}={}){let n="";try{n=await this.readFilePromise(e,"utf8")}catch(e){}const i=r?g(n,t):t;n!==i&&await this.writeFilePromise(e,i)}changeFileSync(e,t,{automaticNewlines:r=!1}={}){let n="";try{n=this.readFileSync(e,"utf8")}catch(e){}const i=r?g(n,t):t;n!==i&&this.writeFileSync(e,i)}async movePromise(e,t){try{await this.renamePromise(e,t)}catch(r){if("EXDEV"!==r.code)throw r;await this.copyPromise(t,e),await this.removePromise(e)}}moveSync(e,t){try{this.renameSync(e,t)}catch(r){if("EXDEV"!==r.code)throw r;this.copySync(t,e),this.removeSync(e)}}async lockPromise(e,t){const r=e+".flock",n=Date.now();let i=null;const A=async()=>{let e;try{[e]=await this.readJsonPromise(r)}catch(e){return Date.now()-n<500}try{return process.kill(e,0),!0}catch(e){return!1}};for(;null===i;)try{i=await this.openPromise(r,"wx")}catch(e){if("EEXIST"!==e.code)throw e;if(!await A())try{await this.unlinkPromise(r);continue}catch(e){}if(!(Date.now()-n<6e4))throw new Error(`Couldn't acquire a lock in a reasonable time (via ${r})`);await new Promise(e=>setTimeout(e,1e3/60))}await this.writePromise(i,JSON.stringify([process.pid]));try{return await t()}finally{try{await this.closePromise(i),await this.unlinkPromise(r)}catch(e){}}}async readJsonPromise(e){const t=await this.readFilePromise(e,"utf8");try{return JSON.parse(t)}catch(t){throw t.message+=` (in ${e})`,t}}readJsonSync(e){const t=this.readFileSync(e,"utf8");try{return JSON.parse(t)}catch(t){throw t.message+=` (in ${e})`,t}}async writeJsonPromise(e,t){return await this.writeFilePromise(e,JSON.stringify(t,null,2)+"\n")}writeJsonSync(e,t){return this.writeFileSync(e,JSON.stringify(t,null,2)+"\n")}async preserveTimePromise(e,t){const r=await this.lstatPromise(e),n=await t();void 0!==n&&(e=n),this.lutimesPromise?await this.lutimesPromise(e,r.atime,r.mtime):r.isSymbolicLink()||await this.utimesPromise(e,r.atime,r.mtime)}async preserveTimeSync(e,t){const r=this.lstatSync(e),n=t();void 0!==n&&(e=n),this.lutimesSync?this.lutimesSync(e,r.atime,r.mtime):r.isSymbolicLink()||this.utimesSync(e,r.atime,r.mtime)}}a.DEFAULT_TIME=315532800;class c extends a{constructor(){super(o.y1)}}function g(e,t){return t.replace(/\r?\n/g,function(e){const t=e.match(/\r?\n/g);if(null===t)return n.EOL;const r=t.filter(e=>"\r\n"===e).length;return r>t.length-r?"\r\n":"\n"}(e))}},10489:(e,t,r)=>{"use strict";r.d(t,{n:()=>s});var n=r(78420),i=r(42096),A=r(46009);const o=A.LZ.root;class s extends i.p{constructor(e,{baseFs:t=new n.S}={}){super(A.y1),this.target=this.pathUtils.resolve(A.LZ.root,e),this.baseFs=t}getRealPath(){return this.pathUtils.resolve(this.baseFs.getRealPath(),this.pathUtils.relative(A.LZ.root,this.target))}getTarget(){return this.target}getBaseFs(){return this.baseFs}mapToBase(e){const t=this.pathUtils.normalize(e);if(this.pathUtils.isAbsolute(e))return this.pathUtils.resolve(this.target,this.pathUtils.relative(o,e));if(t.match(/^\.\.\/?/))throw new Error(`Resolving this path (${e}) would escape the jail`);return this.pathUtils.resolve(this.target,e)}mapFromBase(e){return this.pathUtils.resolve(o,this.pathUtils.relative(this.target,e))}}},15037:(e,t,r)=>{"use strict";r.d(t,{v:()=>i});var n=r(42096);class i extends n.p{constructor(e,t){super(t),this.instance=null,this.factory=e}get baseFs(){return this.instance||(this.instance=this.factory()),this.instance}set baseFs(e){this.instance=e}mapFromBase(e){return e}mapToBase(e){return e}}},78420:(e,t,r)=>{"use strict";r.d(t,{S:()=>a});var n=r(35747),i=r.n(n),A=r(35398),o=r(26984),s=r(46009);class a extends A.fS{constructor(e=i()){super(),this.realFs=e,void 0!==this.realFs.lutimes&&(this.lutimesPromise=this.lutimesPromiseImpl,this.lutimesSync=this.lutimesSyncImpl)}getExtractHint(){return!1}getRealPath(){return s.LZ.root}resolve(e){return s.y1.resolve(e)}async openPromise(e,t,r){return await new Promise((n,i)=>{this.realFs.open(s.cS.fromPortablePath(e),t,r,this.makeCallback(n,i))})}openSync(e,t,r){return this.realFs.openSync(s.cS.fromPortablePath(e),t,r)}async readPromise(e,t,r=0,n=0,i=-1){return await new Promise((A,o)=>{this.realFs.read(e,t,r,n,i,(e,t)=>{e?o(e):A(t)})})}readSync(e,t,r,n,i){return this.realFs.readSync(e,t,r,n,i)}async writePromise(e,t,r,n,i){return await new Promise((A,o)=>"string"==typeof t?this.realFs.write(e,t,r,this.makeCallback(A,o)):this.realFs.write(e,t,r,n,i,this.makeCallback(A,o)))}writeSync(e,t,r,n,i){return"string"==typeof t?this.realFs.writeSync(e,t,r):this.realFs.writeSync(e,t,r,n,i)}async closePromise(e){await new Promise((t,r)=>{this.realFs.close(e,this.makeCallback(t,r))})}closeSync(e){this.realFs.closeSync(e)}createReadStream(e,t){const r=null!==e?s.cS.fromPortablePath(e):e;return this.realFs.createReadStream(r,t)}createWriteStream(e,t){const r=null!==e?s.cS.fromPortablePath(e):e;return this.realFs.createWriteStream(r,t)}async realpathPromise(e){return await new Promise((t,r)=>{this.realFs.realpath(s.cS.fromPortablePath(e),{},this.makeCallback(t,r))}).then(e=>s.cS.toPortablePath(e))}realpathSync(e){return s.cS.toPortablePath(this.realFs.realpathSync(s.cS.fromPortablePath(e),{}))}async existsPromise(e){return await new Promise(t=>{this.realFs.exists(s.cS.fromPortablePath(e),t)})}accessSync(e,t){return this.realFs.accessSync(s.cS.fromPortablePath(e),t)}async accessPromise(e,t){return await new Promise((r,n)=>{this.realFs.access(s.cS.fromPortablePath(e),t,this.makeCallback(r,n))})}existsSync(e){return this.realFs.existsSync(s.cS.fromPortablePath(e))}async statPromise(e){return await new Promise((t,r)=>{this.realFs.stat(s.cS.fromPortablePath(e),this.makeCallback(t,r))})}statSync(e){return this.realFs.statSync(s.cS.fromPortablePath(e))}async lstatPromise(e){return await new Promise((t,r)=>{this.realFs.lstat(s.cS.fromPortablePath(e),this.makeCallback(t,r))})}lstatSync(e){return this.realFs.lstatSync(s.cS.fromPortablePath(e))}async chmodPromise(e,t){return await new Promise((r,n)=>{this.realFs.chmod(s.cS.fromPortablePath(e),t,this.makeCallback(r,n))})}chmodSync(e,t){return this.realFs.chmodSync(s.cS.fromPortablePath(e),t)}async chownPromise(e,t,r){return await new Promise((n,i)=>{this.realFs.chown(s.cS.fromPortablePath(e),t,r,this.makeCallback(n,i))})}chownSync(e,t,r){return this.realFs.chownSync(s.cS.fromPortablePath(e),t,r)}async renamePromise(e,t){return await new Promise((r,n)=>{this.realFs.rename(s.cS.fromPortablePath(e),s.cS.fromPortablePath(t),this.makeCallback(r,n))})}renameSync(e,t){return this.realFs.renameSync(s.cS.fromPortablePath(e),s.cS.fromPortablePath(t))}async copyFilePromise(e,t,r=0){return await new Promise((n,i)=>{this.realFs.copyFile(s.cS.fromPortablePath(e),s.cS.fromPortablePath(t),r,this.makeCallback(n,i))})}copyFileSync(e,t,r=0){return this.realFs.copyFileSync(s.cS.fromPortablePath(e),s.cS.fromPortablePath(t),r)}async appendFilePromise(e,t,r){return await new Promise((n,i)=>{const A="string"==typeof e?s.cS.fromPortablePath(e):e;r?this.realFs.appendFile(A,t,r,this.makeCallback(n,i)):this.realFs.appendFile(A,t,this.makeCallback(n,i))})}appendFileSync(e,t,r){const n="string"==typeof e?s.cS.fromPortablePath(e):e;r?this.realFs.appendFileSync(n,t,r):this.realFs.appendFileSync(n,t)}async writeFilePromise(e,t,r){return await new Promise((n,i)=>{const A="string"==typeof e?s.cS.fromPortablePath(e):e;r?this.realFs.writeFile(A,t,r,this.makeCallback(n,i)):this.realFs.writeFile(A,t,this.makeCallback(n,i))})}writeFileSync(e,t,r){const n="string"==typeof e?s.cS.fromPortablePath(e):e;r?this.realFs.writeFileSync(n,t,r):this.realFs.writeFileSync(n,t)}async unlinkPromise(e){return await new Promise((t,r)=>{this.realFs.unlink(s.cS.fromPortablePath(e),this.makeCallback(t,r))})}unlinkSync(e){return this.realFs.unlinkSync(s.cS.fromPortablePath(e))}async utimesPromise(e,t,r){return await new Promise((n,i)=>{this.realFs.utimes(s.cS.fromPortablePath(e),t,r,this.makeCallback(n,i))})}utimesSync(e,t,r){this.realFs.utimesSync(s.cS.fromPortablePath(e),t,r)}async lutimesPromiseImpl(e,t,r){const n=this.realFs.lutimes;if(void 0===n)throw(0,o.bk)("unavailable Node binding",`lutimes '${e}'`);return await new Promise((i,A)=>{n.call(this.realFs,s.cS.fromPortablePath(e),t,r,this.makeCallback(i,A))})}lutimesSyncImpl(e,t,r){const n=this.realFs.lutimesSync;if(void 0===n)throw(0,o.bk)("unavailable Node binding",`lutimes '${e}'`);n.call(this.realFs,s.cS.fromPortablePath(e),t,r)}async mkdirPromise(e,t){return await new Promise((r,n)=>{this.realFs.mkdir(s.cS.fromPortablePath(e),t,this.makeCallback(r,n))})}mkdirSync(e,t){return this.realFs.mkdirSync(s.cS.fromPortablePath(e),t)}async rmdirPromise(e){return await new Promise((t,r)=>{this.realFs.rmdir(s.cS.fromPortablePath(e),this.makeCallback(t,r))})}rmdirSync(e){return this.realFs.rmdirSync(s.cS.fromPortablePath(e))}async linkPromise(e,t){return await new Promise((r,n)=>{this.realFs.link(s.cS.fromPortablePath(e),s.cS.fromPortablePath(t),this.makeCallback(r,n))})}linkSync(e,t){return this.realFs.linkSync(s.cS.fromPortablePath(e),s.cS.fromPortablePath(t))}async symlinkPromise(e,t,r){const n=r||(e.endsWith("/")?"dir":"file");return await new Promise((r,i)=>{this.realFs.symlink(s.cS.fromPortablePath(e.replace(/\/+$/,"")),s.cS.fromPortablePath(t),n,this.makeCallback(r,i))})}symlinkSync(e,t,r){const n=r||(e.endsWith("/")?"dir":"file");return this.realFs.symlinkSync(s.cS.fromPortablePath(e.replace(/\/+$/,"")),s.cS.fromPortablePath(t),n)}async readFilePromise(e,t){return await new Promise((r,n)=>{const i="string"==typeof e?s.cS.fromPortablePath(e):e;this.realFs.readFile(i,t,this.makeCallback(r,n))})}readFileSync(e,t){const r="string"==typeof e?s.cS.fromPortablePath(e):e;return this.realFs.readFileSync(r,t)}async readdirPromise(e,{withFileTypes:t}={}){return await new Promise((r,n)=>{t?this.realFs.readdir(s.cS.fromPortablePath(e),{withFileTypes:!0},this.makeCallback(r,n)):this.realFs.readdir(s.cS.fromPortablePath(e),this.makeCallback(e=>r(e),n))})}readdirSync(e,{withFileTypes:t}={}){return t?this.realFs.readdirSync(s.cS.fromPortablePath(e),{withFileTypes:!0}):this.realFs.readdirSync(s.cS.fromPortablePath(e))}async readlinkPromise(e){return await new Promise((t,r)=>{this.realFs.readlink(s.cS.fromPortablePath(e),this.makeCallback(t,r))}).then(e=>s.cS.toPortablePath(e))}readlinkSync(e){return s.cS.toPortablePath(this.realFs.readlinkSync(s.cS.fromPortablePath(e)))}async truncatePromise(e,t){return await new Promise((r,n)=>{this.realFs.truncate(s.cS.fromPortablePath(e),t,this.makeCallback(r,n))})}truncateSync(e,t){return this.realFs.truncateSync(s.cS.fromPortablePath(e),t)}watch(e,t,r){return this.realFs.watch(s.cS.fromPortablePath(e),t,r)}watchFile(e,t,r){return this.realFs.watchFile(s.cS.fromPortablePath(e),t,r)}unwatchFile(e,t){return this.realFs.unwatchFile(s.cS.fromPortablePath(e),t)}makeCallback(e,t){return(r,n)=>{r?t(r):e(n)}}}},39725:(e,t,r)=>{"use strict";r.d(t,{i:()=>A});var n=r(42096),i=r(46009);class A extends n.p{constructor(e){super(i.cS),this.baseFs=e}mapFromBase(e){return i.cS.fromPortablePath(e)}mapToBase(e){return i.cS.toPortablePath(e)}}},42096:(e,t,r)=>{"use strict";r.d(t,{p:()=>i});var n=r(35398);class i extends n.uY{getExtractHint(e){return this.baseFs.getExtractHint(e)}resolve(e){return this.mapFromBase(this.baseFs.resolve(this.mapToBase(e)))}getRealPath(){return this.mapFromBase(this.baseFs.getRealPath())}openPromise(e,t,r){return this.baseFs.openPromise(this.mapToBase(e),t,r)}openSync(e,t,r){return this.baseFs.openSync(this.mapToBase(e),t,r)}async readPromise(e,t,r,n,i){return await this.baseFs.readPromise(e,t,r,n,i)}readSync(e,t,r,n,i){return this.baseFs.readSync(e,t,r,n,i)}async writePromise(e,t,r,n,i){return"string"==typeof t?await this.baseFs.writePromise(e,t,r):await this.baseFs.writePromise(e,t,r,n,i)}writeSync(e,t,r,n,i){return"string"==typeof t?this.baseFs.writeSync(e,t,r):this.baseFs.writeSync(e,t,r,n,i)}closePromise(e){return this.baseFs.closePromise(e)}closeSync(e){this.baseFs.closeSync(e)}createReadStream(e,t){return this.baseFs.createReadStream(null!==e?this.mapToBase(e):e,t)}createWriteStream(e,t){return this.baseFs.createWriteStream(null!==e?this.mapToBase(e):e,t)}async realpathPromise(e){return this.mapFromBase(await this.baseFs.realpathPromise(this.mapToBase(e)))}realpathSync(e){return this.mapFromBase(this.baseFs.realpathSync(this.mapToBase(e)))}existsPromise(e){return this.baseFs.existsPromise(this.mapToBase(e))}existsSync(e){return this.baseFs.existsSync(this.mapToBase(e))}accessSync(e,t){return this.baseFs.accessSync(this.mapToBase(e),t)}accessPromise(e,t){return this.baseFs.accessPromise(this.mapToBase(e),t)}statPromise(e){return this.baseFs.statPromise(this.mapToBase(e))}statSync(e){return this.baseFs.statSync(this.mapToBase(e))}lstatPromise(e){return this.baseFs.lstatPromise(this.mapToBase(e))}lstatSync(e){return this.baseFs.lstatSync(this.mapToBase(e))}chmodPromise(e,t){return this.baseFs.chmodPromise(this.mapToBase(e),t)}chmodSync(e,t){return this.baseFs.chmodSync(this.mapToBase(e),t)}chownPromise(e,t,r){return this.baseFs.chownPromise(this.mapToBase(e),t,r)}chownSync(e,t,r){return this.baseFs.chownSync(this.mapToBase(e),t,r)}renamePromise(e,t){return this.baseFs.renamePromise(this.mapToBase(e),this.mapToBase(t))}renameSync(e,t){return this.baseFs.renameSync(this.mapToBase(e),this.mapToBase(t))}copyFilePromise(e,t,r=0){return this.baseFs.copyFilePromise(this.mapToBase(e),this.mapToBase(t),r)}copyFileSync(e,t,r=0){return this.baseFs.copyFileSync(this.mapToBase(e),this.mapToBase(t),r)}appendFilePromise(e,t,r){return this.baseFs.appendFilePromise(this.fsMapToBase(e),t,r)}appendFileSync(e,t,r){return this.baseFs.appendFileSync(this.fsMapToBase(e),t,r)}writeFilePromise(e,t,r){return this.baseFs.writeFilePromise(this.fsMapToBase(e),t,r)}writeFileSync(e,t,r){return this.baseFs.writeFileSync(this.fsMapToBase(e),t,r)}unlinkPromise(e){return this.baseFs.unlinkPromise(this.mapToBase(e))}unlinkSync(e){return this.baseFs.unlinkSync(this.mapToBase(e))}utimesPromise(e,t,r){return this.baseFs.utimesPromise(this.mapToBase(e),t,r)}utimesSync(e,t,r){return this.baseFs.utimesSync(this.mapToBase(e),t,r)}mkdirPromise(e,t){return this.baseFs.mkdirPromise(this.mapToBase(e),t)}mkdirSync(e,t){return this.baseFs.mkdirSync(this.mapToBase(e),t)}rmdirPromise(e){return this.baseFs.rmdirPromise(this.mapToBase(e))}rmdirSync(e){return this.baseFs.rmdirSync(this.mapToBase(e))}linkPromise(e,t){return this.baseFs.linkPromise(this.mapToBase(e),this.mapToBase(t))}linkSync(e,t){return this.baseFs.linkSync(this.mapToBase(e),this.mapToBase(t))}symlinkPromise(e,t,r){return this.baseFs.symlinkPromise(this.mapToBase(e),this.mapToBase(t),r)}symlinkSync(e,t,r){return this.baseFs.symlinkSync(this.mapToBase(e),this.mapToBase(t),r)}readFilePromise(e,t){return this.baseFs.readFilePromise(this.fsMapToBase(e),t)}readFileSync(e,t){return this.baseFs.readFileSync(this.fsMapToBase(e),t)}async readdirPromise(e,{withFileTypes:t}={}){return this.baseFs.readdirPromise(this.mapToBase(e),{withFileTypes:t})}readdirSync(e,{withFileTypes:t}={}){return this.baseFs.readdirSync(this.mapToBase(e),{withFileTypes:t})}async readlinkPromise(e){return this.mapFromBase(await this.baseFs.readlinkPromise(this.mapToBase(e)))}readlinkSync(e){return this.mapFromBase(this.baseFs.readlinkSync(this.mapToBase(e)))}async truncatePromise(e,t){return this.baseFs.truncatePromise(this.mapToBase(e),t)}truncateSync(e,t){return this.baseFs.truncateSync(this.mapToBase(e),t)}watch(e,t,r){return this.baseFs.watch(this.mapToBase(e),t,r)}watchFile(e,t,r){return this.baseFs.watchFile(this.mapToBase(e),t,r)}unwatchFile(e,t){return this.baseFs.unwatchFile(this.mapToBase(e),t)}fsMapToBase(e){return"number"==typeof e?e:this.mapToBase(e)}}},17674:(e,t,r)=>{"use strict";r.d(t,{p:()=>c});var n=r(78420),i=r(42096),A=r(46009);const o=/^[0-9]+$/,s=/^(\/(?:[^/]+\/)*?\$\$virtual)((?:\/((?:[^/]+-)?[a-f0-9]+)(?:\/([^/]+))?)?((?:\/.*)?))$/,a=/^([^/]+-)?[a-f0-9]+$/;class c extends i.p{constructor({baseFs:e=new n.S}={}){super(A.y1),this.baseFs=e}static makeVirtualPath(e,t,r){if("$$virtual"!==A.y1.basename(e))throw new Error('Assertion failed: Virtual folders must be named "$$virtual"');if(!A.y1.basename(t).match(a))throw new Error("Assertion failed: Virtual components must be ended by an hexadecimal hash");const n=A.y1.relative(A.y1.dirname(e),r).split("/");let i=0;for(;i{"use strict";r.d(t,{k:()=>p,d:()=>C});var n=r(35747),i=r(92413),A=r(31669),o=r(78761),s=r.n(o),a=r(35398),c=r(78420),g=r(91438),l=r(22004),u=r(26984),h=r(46009),f=r(65760);const p="mixed";class C extends a.fS{constructor(e,t){super(),this.lzSource=null,this.listings=new Map,this.entries=new Map,this.fileSources=new Map,this.fds=new Map,this.nextFd=0,this.ready=!1,this.readOnly=!1,this.libzip=t.libzip;const r=t;if(this.level=void 0!==r.level?r.level:p,null===e&&(e=Buffer.from([80,75,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0])),"string"==typeof e){const{baseFs:t=new c.S}=r;this.baseFs=t,this.path=e}else this.path=null,this.baseFs=null;if(t.stats)this.stats=t.stats;else if("string"==typeof e)try{this.stats=this.baseFs.statSync(e)}catch(e){if("ENOENT"!==e.code||!r.create)throw e;this.stats=f.makeDefaultStats()}else this.stats=f.makeDefaultStats();const n=this.libzip.malloc(4);try{let i=0;if("string"==typeof e&&r.create&&(i|=this.libzip.ZIP_CREATE|this.libzip.ZIP_TRUNCATE),t.readOnly&&(i|=this.libzip.ZIP_RDONLY,this.readOnly=!0),"string"==typeof e)this.zip=this.libzip.open(h.cS.fromPortablePath(e),i,n);else{const t=this.allocateUnattachedSource(e);try{this.zip=this.libzip.openFromSource(t,i,n),this.lzSource=t}catch(e){throw this.libzip.source.free(t),e}}if(0===this.zip){const e=this.libzip.struct.errorS();throw this.libzip.error.initWithCode(e,this.libzip.getValue(n,"i32")),this.makeLibzipError(e)}}finally{this.libzip.free(n)}this.listings.set(h.LZ.root,new Set);const i=this.libzip.getNumEntries(this.zip,0);for(let e=0;ee)throw new Error("Overread");const n=this.libzip.HEAPU8.subarray(t,t+e);return Buffer.from(n)}finally{this.libzip.free(t)}}finally{this.libzip.source.close(this.lzSource),this.libzip.source.free(this.lzSource),this.ready=!1}}prepareClose(){if(!this.ready)throw u.Vw("archive closed, close");(0,g.L)(this)}saveAndClose(){if(!this.path||!this.baseFs)throw new Error("ZipFS cannot be saved and must be discarded when loaded from a buffer");if(this.prepareClose(),this.readOnly)return void this.discardAndClose();const e=this.baseFs.existsSync(this.path)?511&this.baseFs.statSync(this.path).mode:null;if(-1===this.libzip.close(this.zip))throw this.makeLibzipError(this.libzip.getError(this.zip));null===e?this.baseFs.chmodSync(this.path,this.stats.mode):e!==(511&this.baseFs.statSync(this.path).mode)&&this.baseFs.chmodSync(this.path,e),this.ready=!1}discardAndClose(){this.prepareClose(),this.libzip.discard(this.zip),this.ready=!1}resolve(e){return h.y1.resolve(h.LZ.root,e)}async openPromise(e,t,r){return this.openSync(e,t,r)}openSync(e,t,r){const n=this.nextFd++;return this.fds.set(n,{cursor:0,p:e}),n}hasOpenFileHandles(){return!!this.fds.size}async readPromise(e,t,r,n,i){return this.readSync(e,t,r,n,i)}readSync(e,t,r=0,n=0,i=-1){const A=this.fds.get(e);if(void 0===A)throw u.Ch("read");let o;o=-1===i||null===i?A.cursor:i;const s=this.readFileSync(A.p);s.copy(t,r,o,o+n);const a=Math.max(0,Math.min(s.length-o,n));return-1!==i&&null!==i||(A.cursor+=a),a}async writePromise(e,t,r,n,i){return"string"==typeof t?this.writeSync(e,t,i):this.writeSync(e,t,r,n,i)}writeSync(e,t,r,n,i){if(void 0===this.fds.get(e))throw u.Ch("read");throw new Error("Unimplemented")}async closePromise(e){return this.closeSync(e)}closeSync(e){if(void 0===this.fds.get(e))throw u.Ch("read");this.fds.delete(e)}createReadStream(e,{encoding:t}={}){if(null===e)throw new Error("Unimplemented");let r=this.openSync(e,"r");const n=()=>{-1!==r&&(this.closeSync(r),r=-1)},A=Object.assign(new i.PassThrough,{bytesRead:0,path:e,close:()=>{clearImmediate(o),n()},_destroy:(e,t)=>{clearImmediate(o),n(),t(e)}}),o=setImmediate(()=>{try{const r=this.readFileSync(e,t);A.bytesRead=r.length,A.end(r),A.destroy()}catch(e){A.emit("error",e),A.end(),A.destroy()}finally{n()}});return A}createWriteStream(e,{encoding:t}={}){if(this.readOnly)throw u.YW(`open '${e}'`);if(null===e)throw new Error("Unimplemented");const r=[];let n=this.openSync(e,"w");const A=()=>{if(-1!==n)try{this.writeFileSync(e,Buffer.concat(r),t)}finally{this.closeSync(n),n=-1}},o=Object.assign(new i.PassThrough,{bytesWritten:0,path:e,close:()=>{o.end(),A()},_destroy:(e,t)=>{A(),t(e)}});return o.on("data",e=>{const t=Buffer.from(e);o.bytesWritten+=t.length,r.push(t)}),o.on("end",()=>{A()}),o}async realpathPromise(e){return this.realpathSync(e)}realpathSync(e){const t=this.resolveFilename(`lstat '${e}'`,e);if(!this.entries.has(t)&&!this.listings.has(t))throw u.z6(`lstat '${e}'`);return t}async existsPromise(e){return this.existsSync(e)}existsSync(e){if(!this.ready)throw u.Vw(`archive closed, existsSync '${e}'`);if(0===this.symlinkCount){const t=h.y1.resolve(h.LZ.root,e);return this.entries.has(t)||this.listings.has(t)}let t;try{t=this.resolveFilename(`stat '${e}'`,e)}catch(e){return!1}return this.entries.has(t)||this.listings.has(t)}async accessPromise(e,t){return this.accessSync(e,t)}accessSync(e,t=n.constants.F_OK){const r=this.resolveFilename(`access '${e}'`,e);if(!this.entries.has(r)&&!this.listings.has(r))throw u.z6(`access '${e}'`);if(this.readOnly&&t&n.constants.W_OK)throw u.YW(`access '${e}'`)}async statPromise(e){return this.statSync(e)}statSync(e){const t=this.resolveFilename(`stat '${e}'`,e);if(!this.entries.has(t)&&!this.listings.has(t))throw u.z6(`stat '${e}'`);if("/"===e[e.length-1]&&!this.listings.has(t))throw u.Ab(`stat '${e}'`);return this.statImpl(`stat '${e}'`,t)}async lstatPromise(e){return this.lstatSync(e)}lstatSync(e){const t=this.resolveFilename(`lstat '${e}'`,e,!1);if(!this.entries.has(t)&&!this.listings.has(t))throw u.z6(`lstat '${e}'`);if("/"===e[e.length-1]&&!this.listings.has(t))throw u.Ab(`lstat '${e}'`);return this.statImpl(`lstat '${e}'`,t)}statImpl(e,t){const r=this.entries.get(t);if(void 0!==r){const e=this.libzip.struct.statS();if(-1===this.libzip.statIndex(this.zip,r,0,0,e))throw this.makeLibzipError(this.libzip.getError(this.zip));const n=this.stats.uid,i=this.stats.gid,A=this.libzip.struct.statSize(e)>>>0,o=512,s=Math.ceil(A/o),a=1e3*(this.libzip.struct.statMtime(e)>>>0),c=a,g=a,u=a,h=new Date(c),p=new Date(g),C=new Date(u),d=new Date(a),I=this.listings.has(t)?l.QB:this.isSymbolicLink(r)?l.Zv:l.Pe,E=I===l.QB?493:420,m=I|511&this.getUnixMode(r,E);return Object.assign(new f.StatEntry,{uid:n,gid:i,size:A,blksize:o,blocks:s,atime:h,birthtime:p,ctime:C,mtime:d,atimeMs:c,birthtimeMs:g,ctimeMs:u,mtimeMs:a,mode:m})}if(this.listings.has(t)){const e=this.stats.uid,t=this.stats.gid,r=0,n=512,i=0,A=this.stats.mtimeMs,o=this.stats.mtimeMs,s=this.stats.mtimeMs,a=this.stats.mtimeMs,c=new Date(A),g=new Date(o),u=new Date(s),h=new Date(a),p=493|l.QB;return Object.assign(new f.StatEntry,{uid:e,gid:t,size:r,blksize:n,blocks:i,atime:c,birthtime:g,ctime:u,mtime:h,atimeMs:A,birthtimeMs:o,ctimeMs:s,mtimeMs:a,mode:p})}throw new Error("Unreachable")}getUnixMode(e,t){if(-1===this.libzip.file.getExternalAttributes(this.zip,e,0,0,this.libzip.uint08S,this.libzip.uint32S))throw this.makeLibzipError(this.libzip.getError(this.zip));return this.libzip.getValue(this.libzip.uint08S,"i8")>>>0!==this.libzip.ZIP_OPSYS_UNIX?t:this.libzip.getValue(this.libzip.uint32S,"i32")>>>16}registerListing(e){let t=this.listings.get(e);if(t)return t;const r=this.registerListing(h.y1.dirname(e));return t=new Set,r.add(h.y1.basename(e)),this.listings.set(e,t),t}registerEntry(e,t){this.registerListing(h.y1.dirname(e)).add(h.y1.basename(e)),this.entries.set(e,t)}unregisterListing(e){this.listings.delete(e);const t=this.listings.get(h.y1.dirname(e));null==t||t.delete(h.y1.basename(e))}unregisterEntry(e){this.unregisterListing(e);const t=this.entries.get(e);this.entries.delete(e),void 0!==t&&(this.fileSources.delete(t),this.isSymbolicLink(t)&&this.symlinkCount--)}deleteEntry(e,t){this.unregisterEntry(e);if(-1===this.libzip.delete(this.zip,t))throw this.makeLibzipError(this.libzip.getError(this.zip))}resolveFilename(e,t,r=!0){if(!this.ready)throw u.Vw("archive closed, "+e);let n=h.y1.resolve(h.LZ.root,t);if("/"===n)return h.LZ.root;const i=this.entries.get(n);if(r&&void 0!==i){if(0!==this.symlinkCount&&this.isSymbolicLink(i)){const t=this.getFileSource(i).toString();return this.resolveFilename(e,h.y1.resolve(h.y1.dirname(n),t),!0)}return n}for(;;){const t=this.resolveFilename(e,h.y1.dirname(n),!0),i=this.listings.has(t),A=this.entries.has(t);if(!i&&!A)throw u.z6(e);if(!i)throw u.Ab(e);if(n=h.y1.resolve(t,h.y1.basename(n)),!r||0===this.symlinkCount)break;const o=this.libzip.name.locate(this.zip,n.slice(1));if(-1===o)break;if(!this.isSymbolicLink(o))break;{const e=this.getFileSource(o).toString();n=h.y1.resolve(h.y1.dirname(n),e)}}return n}allocateBuffer(e){Buffer.isBuffer(e)||(e=Buffer.from(e));const t=this.libzip.malloc(e.byteLength);if(!t)throw new Error("Couldn't allocate enough memory");return new Uint8Array(this.libzip.HEAPU8.buffer,t,e.byteLength).set(e),{buffer:t,byteLength:e.byteLength}}allocateUnattachedSource(e){const t=this.libzip.struct.errorS(),{buffer:r,byteLength:n}=this.allocateBuffer(e),i=this.libzip.source.fromUnattachedBuffer(r,n,0,!0,t);if(0===i)throw this.libzip.free(t),this.makeLibzipError(t);return i}allocateSource(e){const{buffer:t,byteLength:r}=this.allocateBuffer(e),n=this.libzip.source.fromBuffer(this.zip,t,r,0,!0);if(0===n)throw this.libzip.free(t),this.makeLibzipError(this.libzip.getError(this.zip));return n}setFileSource(e,t){const r=Buffer.isBuffer(t)?t:Buffer.from(t),n=h.y1.relative(h.LZ.root,e),i=this.allocateSource(t);try{const e=this.libzip.file.add(this.zip,n,i,this.libzip.ZIP_FL_OVERWRITE);if(-1===e)throw this.makeLibzipError(this.libzip.getError(this.zip));if("mixed"!==this.level){let t;t=0===this.level?this.libzip.ZIP_CM_STORE:this.libzip.ZIP_CM_DEFLATE;if(-1===this.libzip.file.setCompression(this.zip,e,0,t,this.level))throw this.makeLibzipError(this.libzip.getError(this.zip))}return this.fileSources.set(e,r),e}catch(e){throw this.libzip.source.free(i),e}}isSymbolicLink(e){if(0===this.symlinkCount)return!1;if(-1===this.libzip.file.getExternalAttributes(this.zip,e,0,0,this.libzip.uint08S,this.libzip.uint32S))throw this.makeLibzipError(this.libzip.getError(this.zip));if(this.libzip.getValue(this.libzip.uint08S,"i8")>>>0!==this.libzip.ZIP_OPSYS_UNIX)return!1;return(this.libzip.getValue(this.libzip.uint32S,"i32")>>>16&l.wK)===l.Zv}getFileSource(e,t={asyncDecompress:!1}){const r=this.fileSources.get(e);if(void 0!==r)return r;const n=this.libzip.struct.statS();if(-1===this.libzip.statIndex(this.zip,e,0,0,n))throw this.makeLibzipError(this.libzip.getError(this.zip));const i=this.libzip.struct.statCompSize(n),A=this.libzip.struct.statCompMethod(n),o=this.libzip.malloc(i);try{const r=this.libzip.fopenIndex(this.zip,e,0,this.libzip.ZIP_FL_COMPRESSED);if(0===r)throw this.makeLibzipError(this.libzip.getError(this.zip));try{const n=this.libzip.fread(r,o,i,0);if(-1===n)throw this.makeLibzipError(this.libzip.file.getError(r));if(ni)throw new Error("Overread");const a=this.libzip.HEAPU8.subarray(o,o+i),c=Buffer.from(a);if(0===A)return this.fileSources.set(e,c),c;if(t.asyncDecompress)return new Promise((t,r)=>{s().inflateRaw(c,(n,i)=>{n?r(n):(this.fileSources.set(e,i),t(i))})});{const t=s().inflateRawSync(c);return this.fileSources.set(e,t),t}}finally{this.libzip.fclose(r)}}finally{this.libzip.free(o)}}async chmodPromise(e,t){return this.chmodSync(e,t)}chmodSync(e,t){if(this.readOnly)throw u.YW(`chmod '${e}'`);t&=493;const r=this.resolveFilename(`chmod '${e}'`,e,!1),n=this.entries.get(r);if(void 0===n)throw new Error(`Assertion failed: The entry should have been registered (${r})`);const i=-512&this.getUnixMode(n,0|l.Pe)|t;if(-1===this.libzip.file.setExternalAttributes(this.zip,n,0,0,this.libzip.ZIP_OPSYS_UNIX,i<<16))throw this.makeLibzipError(this.libzip.getError(this.zip))}async chownPromise(e,t,r){return this.chownSync(e,t,r)}chownSync(e,t,r){throw new Error("Unimplemented")}async renamePromise(e,t){return this.renameSync(e,t)}renameSync(e,t){throw new Error("Unimplemented")}async copyFilePromise(e,t,r){const{indexSource:n,indexDest:i,resolvedDestP:A}=this.prepareCopyFile(e,t,r),o=await this.getFileSource(n,{asyncDecompress:!0}),s=this.setFileSource(A,o);s!==i&&this.registerEntry(A,s)}copyFileSync(e,t,r=0){const{indexSource:n,indexDest:i,resolvedDestP:A}=this.prepareCopyFile(e,t,r),o=this.getFileSource(n),s=this.setFileSource(A,o);s!==i&&this.registerEntry(A,s)}prepareCopyFile(e,t,r=0){if(this.readOnly)throw u.YW(`copyfile '${e} -> '${t}'`);if(0!=(r&n.constants.COPYFILE_FICLONE_FORCE))throw u.bk("unsupported clone operation",`copyfile '${e}' -> ${t}'`);const i=this.resolveFilename(`copyfile '${e} -> ${t}'`,e),A=this.entries.get(i);if(void 0===A)throw u.hq(`copyfile '${e}' -> '${t}'`);const o=this.resolveFilename(`copyfile '${e}' -> ${t}'`,t),s=this.entries.get(o);if(0!=(r&(n.constants.COPYFILE_EXCL|n.constants.COPYFILE_FICLONE_FORCE))&&void 0!==s)throw u.cT(`copyfile '${e}' -> '${t}'`);return{indexSource:A,resolvedDestP:o,indexDest:s}}async appendFilePromise(e,t,r){if(this.readOnly)throw u.YW(`open '${e}'`);return void 0===r?r={flag:"a"}:"string"==typeof r?r={flag:"a",encoding:r}:void 0===r.flag&&(r={flag:"a",...r}),this.writeFilePromise(e,t,r)}appendFileSync(e,t,r={}){if(this.readOnly)throw u.YW(`open '${e}'`);return void 0===r?r={flag:"a"}:"string"==typeof r?r={flag:"a",encoding:r}:void 0===r.flag&&(r={flag:"a",...r}),this.writeFileSync(e,t,r)}async writeFilePromise(e,t,r){const{encoding:n,index:i,resolvedP:A}=this.prepareWriteFile(e,r);void 0!==i&&"object"==typeof r&&r.flag&&r.flag.includes("a")&&(t=Buffer.concat([await this.getFileSource(i,{asyncDecompress:!0}),Buffer.from(t)])),null!==n&&(t=t.toString(n));const o=this.setFileSource(A,t);o!==i&&this.registerEntry(A,o)}writeFileSync(e,t,r){const{encoding:n,index:i,resolvedP:A}=this.prepareWriteFile(e,r);void 0!==i&&"object"==typeof r&&r.flag&&r.flag.includes("a")&&(t=Buffer.concat([this.getFileSource(i),Buffer.from(t)])),null!==n&&(t=t.toString(n));const o=this.setFileSource(A,t);o!==i&&this.registerEntry(A,o)}prepareWriteFile(e,t){if("string"!=typeof e)throw u.Ch("read");if(this.readOnly)throw u.YW(`open '${e}'`);const r=this.resolveFilename(`open '${e}'`,e);if(this.listings.has(r))throw u.GA(`open '${e}'`);let n=null;"string"==typeof t?n=t:"object"==typeof t&&t.encoding&&(n=t.encoding);return{encoding:n,resolvedP:r,index:this.entries.get(r)}}async unlinkPromise(e){return this.unlinkSync(e)}unlinkSync(e){if(this.readOnly)throw u.YW(`unlink '${e}'`);const t=this.resolveFilename(`unlink '${e}'`,e);if(this.listings.has(t))throw u.GA(`unlink '${e}'`);const r=this.entries.get(t);if(void 0===r)throw u.hq(`unlink '${e}'`);this.deleteEntry(t,r)}async utimesPromise(e,t,r){return this.utimesSync(e,t,r)}utimesSync(e,t,r){if(this.readOnly)throw u.YW(`utimes '${e}'`);const n=this.resolveFilename(`utimes '${e}'`,e);this.utimesImpl(n,r)}async lutimesPromise(e,t,r){return this.lutimesSync(e,t,r)}lutimesSync(e,t,r){if(this.readOnly)throw u.YW(`lutimes '${e}'`);const n=this.resolveFilename(`utimes '${e}'`,e,!1);this.utimesImpl(n,r)}utimesImpl(e,t){this.listings.has(e)&&(this.entries.has(e)||this.hydrateDirectory(e));const r=this.entries.get(e);if(void 0===r)throw new Error("Unreachable");if(-1===this.libzip.file.setMtime(this.zip,r,0,function(e){if("string"==typeof e&&String(+e)===e)return+e;if(Number.isFinite(e))return e<0?Date.now()/1e3:e;if((0,A.isDate)(e))return e.getTime()/1e3;throw new Error("Invalid time")}(t),0))throw this.makeLibzipError(this.libzip.getError(this.zip))}async mkdirPromise(e,t){return this.mkdirSync(e,t)}mkdirSync(e,{mode:t=493,recursive:r=!1}={}){if(r)return void this.mkdirpSync(e,{chmod:t});if(this.readOnly)throw u.YW(`mkdir '${e}'`);const n=this.resolveFilename(`mkdir '${e}'`,e);if(this.entries.has(n)||this.listings.has(n))throw u.cT(`mkdir '${e}'`);this.hydrateDirectory(n),this.chmodSync(n,t)}async rmdirPromise(e){return this.rmdirSync(e)}rmdirSync(e){if(this.readOnly)throw u.YW(`rmdir '${e}'`);const t=this.resolveFilename(`rmdir '${e}'`,e),r=this.listings.get(t);if(!r)throw u.Ab(`rmdir '${e}'`);if(r.size>0)throw u.re(`rmdir '${e}'`);const n=this.entries.get(t);if(void 0===n)throw u.hq(`rmdir '${e}'`);this.deleteEntry(e,n)}hydrateDirectory(e){const t=this.libzip.dir.add(this.zip,h.y1.relative(h.LZ.root,e));if(-1===t)throw this.makeLibzipError(this.libzip.getError(this.zip));return this.registerListing(e),this.registerEntry(e,t),t}async linkPromise(e,t){return this.linkSync(e,t)}linkSync(e,t){throw u.Hs(`link '${e}' -> '${t}'`)}async symlinkPromise(e,t){return this.symlinkSync(e,t)}symlinkSync(e,t){if(this.readOnly)throw u.YW(`symlink '${e}' -> '${t}'`);const r=this.resolveFilename(`symlink '${e}' -> '${t}'`,t);if(this.listings.has(r))throw u.GA(`symlink '${e}' -> '${t}'`);if(this.entries.has(r))throw u.cT(`symlink '${e}' -> '${t}'`);const n=this.setFileSource(r,e);this.registerEntry(r,n);if(-1===this.libzip.file.setExternalAttributes(this.zip,n,0,0,this.libzip.ZIP_OPSYS_UNIX,(511|l.Zv)<<16))throw this.makeLibzipError(this.libzip.getError(this.zip));this.symlinkCount+=1}async readFilePromise(e,t){"object"==typeof t&&(t=t?t.encoding:void 0);const r=await this.readFileBuffer(e,{asyncDecompress:!0});return t?r.toString(t):r}readFileSync(e,t){"object"==typeof t&&(t=t?t.encoding:void 0);const r=this.readFileBuffer(e);return t?r.toString(t):r}readFileBuffer(e,t={asyncDecompress:!1}){if("string"!=typeof e)throw u.Ch("read");const r=this.resolveFilename(`open '${e}'`,e);if(!this.entries.has(r)&&!this.listings.has(r))throw u.z6(`open '${e}'`);if("/"===e[e.length-1]&&!this.listings.has(r))throw u.Ab(`open '${e}'`);if(this.listings.has(r))throw u.GA("read");const n=this.entries.get(r);if(void 0===n)throw new Error("Unreachable");return this.getFileSource(n,t)}async readdirPromise(e,{withFileTypes:t}={}){return this.readdirSync(e,{withFileTypes:t})}readdirSync(e,{withFileTypes:t}={}){const r=this.resolveFilename(`scandir '${e}'`,e);if(!this.entries.has(r)&&!this.listings.has(r))throw u.z6(`scandir '${e}'`);const n=this.listings.get(r);if(!n)throw u.Ab(`scandir '${e}'`);const i=[...n];return t?i.map(t=>Object.assign(this.statImpl("lstat",h.y1.join(e,t)),{name:t})):i}async readlinkPromise(e){const t=this.prepareReadlink(e);return(await this.getFileSource(t,{asyncDecompress:!0})).toString()}readlinkSync(e){const t=this.prepareReadlink(e);return this.getFileSource(t).toString()}prepareReadlink(e){const t=this.resolveFilename(`readlink '${e}'`,e,!1);if(!this.entries.has(t)&&!this.listings.has(t))throw u.z6(`readlink '${e}'`);if("/"===e[e.length-1]&&!this.listings.has(t))throw u.Ab(`open '${e}'`);if(this.listings.has(t))throw u.hq(`readlink '${e}'`);const r=this.entries.get(t);if(void 0===r)throw new Error("Unreachable");if(!this.isSymbolicLink(r))throw u.hq(`readlink '${e}'`);return r}async truncatePromise(e,t=0){const r=this.resolveFilename(`open '${e}'`,e),n=this.entries.get(r);if(void 0===n)throw u.hq(`open '${e}'`);const i=await this.getFileSource(n,{asyncDecompress:!0}),A=Buffer.alloc(t,0);return i.copy(A),await this.writeFilePromise(e,A)}truncateSync(e,t=0){const r=this.resolveFilename(`open '${e}'`,e),n=this.entries.get(r);if(void 0===n)throw u.hq(`open '${e}'`);const i=this.getFileSource(n),A=Buffer.alloc(t,0);return i.copy(A),this.writeFileSync(e,A)}watch(e,t,r){let n;switch(typeof t){case"function":case"string":case"undefined":n=!0;break;default:({persistent:n=!0}=t)}if(!n)return{on:()=>{},close:()=>{}};const i=setInterval(()=>{},864e5);return{on:()=>{},close:()=>{clearInterval(i)}}}watchFile(e,t,r){const n=this.resolveFilename(`open '${e}'`,e);return(0,g._x)(this,n,t,r)}unwatchFile(e,t){const r=this.resolveFilename(`open '${e}'`,e);return(0,g.nd)(this,r,t)}}},53660:(e,t,r)=>{"use strict";r.d(t,{A:()=>l});var n=r(35747),i=r(35398),A=r(78420),o=r(90739),s=r(91438),a=r(46009);const c=2147483648,g=/.*?(?await this.baseFs.openPromise(e,t,r),async(e,{subPath:n})=>this.remapFd(e,await e.openPromise(n,t,r)))}openSync(e,t,r){return this.makeCallSync(e,()=>this.baseFs.openSync(e,t,r),(e,{subPath:n})=>this.remapFd(e,e.openSync(n,t,r)))}async readPromise(e,t,r,n,i){if(0==(e&c))return await this.baseFs.readPromise(e,t,r,n,i);const A=this.fdMap.get(e);if(void 0===A)throw Object.assign(new Error("EBADF: bad file descriptor, read"),{code:"EBADF"});const[o,s]=A;return await o.readPromise(s,t,r,n,i)}readSync(e,t,r,n,i){if(0==(e&c))return this.baseFs.readSync(e,t,r,n,i);const A=this.fdMap.get(e);if(void 0===A)throw Object.assign(new Error("EBADF: bad file descriptor, read"),{code:"EBADF"});const[o,s]=A;return o.readSync(s,t,r,n,i)}async writePromise(e,t,r,n,i){if(0==(e&c))return"string"==typeof t?await this.baseFs.writePromise(e,t,r):await this.baseFs.writePromise(e,t,r,n,i);const A=this.fdMap.get(e);if(void 0===A)throw Object.assign(new Error("EBADF: bad file descriptor, write"),{code:"EBADF"});const[o,s]=A;return"string"==typeof t?await o.writePromise(s,t,r):await o.writePromise(s,t,r,n,i)}writeSync(e,t,r,n,i){if(0==(e&c))return"string"==typeof t?this.baseFs.writeSync(e,t,r):this.baseFs.writeSync(e,t,r,n,i);const A=this.fdMap.get(e);if(void 0===A)throw Object.assign(new Error("EBADF: bad file descriptor, write"),{code:"EBADF"});const[o,s]=A;return"string"==typeof t?o.writeSync(s,t,r):o.writeSync(s,t,r,n,i)}async closePromise(e){if(0==(e&c))return await this.baseFs.closePromise(e);const t=this.fdMap.get(e);if(void 0===t)throw Object.assign(new Error("EBADF: bad file descriptor, close"),{code:"EBADF"});this.fdMap.delete(e);const[r,n]=t;return await r.closePromise(n)}closeSync(e){if(0==(e&c))return this.baseFs.closeSync(e);const t=this.fdMap.get(e);if(void 0===t)throw Object.assign(new Error("EBADF: bad file descriptor, close"),{code:"EBADF"});this.fdMap.delete(e);const[r,n]=t;return r.closeSync(n)}createReadStream(e,t){return null===e?this.baseFs.createReadStream(e,t):this.makeCallSync(e,()=>this.baseFs.createReadStream(e,t),(e,{subPath:r})=>e.createReadStream(r,t))}createWriteStream(e,t){return null===e?this.baseFs.createWriteStream(e,t):this.makeCallSync(e,()=>this.baseFs.createWriteStream(e,t),(e,{subPath:r})=>e.createWriteStream(r,t))}async realpathPromise(e){return await this.makeCallPromise(e,async()=>await this.baseFs.realpathPromise(e),async(e,{archivePath:t,subPath:r})=>{let n=this.realPaths.get(t);return void 0===n&&(n=await this.baseFs.realpathPromise(t),this.realPaths.set(t,n)),this.pathUtils.join(n,this.pathUtils.relative(a.LZ.root,await e.realpathPromise(r)))})}realpathSync(e){return this.makeCallSync(e,()=>this.baseFs.realpathSync(e),(e,{archivePath:t,subPath:r})=>{let n=this.realPaths.get(t);return void 0===n&&(n=this.baseFs.realpathSync(t),this.realPaths.set(t,n)),this.pathUtils.join(n,this.pathUtils.relative(a.LZ.root,e.realpathSync(r)))})}async existsPromise(e){return await this.makeCallPromise(e,async()=>await this.baseFs.existsPromise(e),async(e,{subPath:t})=>await e.existsPromise(t))}existsSync(e){return this.makeCallSync(e,()=>this.baseFs.existsSync(e),(e,{subPath:t})=>e.existsSync(t))}async accessPromise(e,t){return await this.makeCallPromise(e,async()=>await this.baseFs.accessPromise(e,t),async(e,{subPath:r})=>await e.accessPromise(r,t))}accessSync(e,t){return this.makeCallSync(e,()=>this.baseFs.accessSync(e,t),(e,{subPath:r})=>e.accessSync(r,t))}async statPromise(e){return await this.makeCallPromise(e,async()=>await this.baseFs.statPromise(e),async(e,{subPath:t})=>await e.statPromise(t))}statSync(e){return this.makeCallSync(e,()=>this.baseFs.statSync(e),(e,{subPath:t})=>e.statSync(t))}async lstatPromise(e){return await this.makeCallPromise(e,async()=>await this.baseFs.lstatPromise(e),async(e,{subPath:t})=>await e.lstatPromise(t))}lstatSync(e){return this.makeCallSync(e,()=>this.baseFs.lstatSync(e),(e,{subPath:t})=>e.lstatSync(t))}async chmodPromise(e,t){return await this.makeCallPromise(e,async()=>await this.baseFs.chmodPromise(e,t),async(e,{subPath:r})=>await e.chmodPromise(r,t))}chmodSync(e,t){return this.makeCallSync(e,()=>this.baseFs.chmodSync(e,t),(e,{subPath:r})=>e.chmodSync(r,t))}async chownPromise(e,t,r){return await this.makeCallPromise(e,async()=>await this.baseFs.chownPromise(e,t,r),async(e,{subPath:n})=>await e.chownPromise(n,t,r))}chownSync(e,t,r){return this.makeCallSync(e,()=>this.baseFs.chownSync(e,t,r),(e,{subPath:n})=>e.chownSync(n,t,r))}async renamePromise(e,t){return await this.makeCallPromise(e,async()=>await this.makeCallPromise(t,async()=>await this.baseFs.renamePromise(e,t),async()=>{throw Object.assign(new Error("EEXDEV: cross-device link not permitted"),{code:"EEXDEV"})}),async(e,{subPath:r})=>await this.makeCallPromise(t,async()=>{throw Object.assign(new Error("EEXDEV: cross-device link not permitted"),{code:"EEXDEV"})},async(t,{subPath:n})=>{if(e!==t)throw Object.assign(new Error("EEXDEV: cross-device link not permitted"),{code:"EEXDEV"});return await e.renamePromise(r,n)}))}renameSync(e,t){return this.makeCallSync(e,()=>this.makeCallSync(t,()=>this.baseFs.renameSync(e,t),async()=>{throw Object.assign(new Error("EEXDEV: cross-device link not permitted"),{code:"EEXDEV"})}),(e,{subPath:r})=>this.makeCallSync(t,()=>{throw Object.assign(new Error("EEXDEV: cross-device link not permitted"),{code:"EEXDEV"})},(t,{subPath:n})=>{if(e!==t)throw Object.assign(new Error("EEXDEV: cross-device link not permitted"),{code:"EEXDEV"});return e.renameSync(r,n)}))}async copyFilePromise(e,t,r=0){const i=async(e,t,i,A)=>{if(0!=(r&n.constants.COPYFILE_FICLONE_FORCE))throw Object.assign(new Error(`EXDEV: cross-device clone not permitted, copyfile '${t}' -> ${A}'`),{code:"EXDEV"});if(r&n.constants.COPYFILE_EXCL&&await this.existsPromise(t))throw Object.assign(new Error(`EEXIST: file already exists, copyfile '${t}' -> '${A}'`),{code:"EEXIST"});let o;try{o=await e.readFilePromise(t)}catch(e){throw Object.assign(new Error(`EINVAL: invalid argument, copyfile '${t}' -> '${A}'`),{code:"EINVAL"})}await i.writeFilePromise(A,o)};return await this.makeCallPromise(e,async()=>await this.makeCallPromise(t,async()=>await this.baseFs.copyFilePromise(e,t,r),async(t,{subPath:r})=>await i(this.baseFs,e,t,r)),async(e,{subPath:n})=>await this.makeCallPromise(t,async()=>await i(e,n,this.baseFs,t),async(t,{subPath:A})=>e!==t?await i(e,n,t,A):await e.copyFilePromise(n,A,r)))}copyFileSync(e,t,r=0){const i=(e,t,i,A)=>{if(0!=(r&n.constants.COPYFILE_FICLONE_FORCE))throw Object.assign(new Error(`EXDEV: cross-device clone not permitted, copyfile '${t}' -> ${A}'`),{code:"EXDEV"});if(r&n.constants.COPYFILE_EXCL&&this.existsSync(t))throw Object.assign(new Error(`EEXIST: file already exists, copyfile '${t}' -> '${A}'`),{code:"EEXIST"});let o;try{o=e.readFileSync(t)}catch(e){throw Object.assign(new Error(`EINVAL: invalid argument, copyfile '${t}' -> '${A}'`),{code:"EINVAL"})}i.writeFileSync(A,o)};return this.makeCallSync(e,()=>this.makeCallSync(t,()=>this.baseFs.copyFileSync(e,t,r),(t,{subPath:r})=>i(this.baseFs,e,t,r)),(e,{subPath:n})=>this.makeCallSync(t,()=>i(e,n,this.baseFs,t),(t,{subPath:A})=>e!==t?i(e,n,t,A):e.copyFileSync(n,A,r)))}async appendFilePromise(e,t,r){return await this.makeCallPromise(e,async()=>await this.baseFs.appendFilePromise(e,t,r),async(e,{subPath:n})=>await e.appendFilePromise(n,t,r))}appendFileSync(e,t,r){return this.makeCallSync(e,()=>this.baseFs.appendFileSync(e,t,r),(e,{subPath:n})=>e.appendFileSync(n,t,r))}async writeFilePromise(e,t,r){return await this.makeCallPromise(e,async()=>await this.baseFs.writeFilePromise(e,t,r),async(e,{subPath:n})=>await e.writeFilePromise(n,t,r))}writeFileSync(e,t,r){return this.makeCallSync(e,()=>this.baseFs.writeFileSync(e,t,r),(e,{subPath:n})=>e.writeFileSync(n,t,r))}async unlinkPromise(e){return await this.makeCallPromise(e,async()=>await this.baseFs.unlinkPromise(e),async(e,{subPath:t})=>await e.unlinkPromise(t))}unlinkSync(e){return this.makeCallSync(e,()=>this.baseFs.unlinkSync(e),(e,{subPath:t})=>e.unlinkSync(t))}async utimesPromise(e,t,r){return await this.makeCallPromise(e,async()=>await this.baseFs.utimesPromise(e,t,r),async(e,{subPath:n})=>await e.utimesPromise(n,t,r))}utimesSync(e,t,r){return this.makeCallSync(e,()=>this.baseFs.utimesSync(e,t,r),(e,{subPath:n})=>e.utimesSync(n,t,r))}async mkdirPromise(e,t){return await this.makeCallPromise(e,async()=>await this.baseFs.mkdirPromise(e,t),async(e,{subPath:r})=>await e.mkdirPromise(r,t))}mkdirSync(e,t){return this.makeCallSync(e,()=>this.baseFs.mkdirSync(e,t),(e,{subPath:r})=>e.mkdirSync(r,t))}async rmdirPromise(e){return await this.makeCallPromise(e,async()=>await this.baseFs.rmdirPromise(e),async(e,{subPath:t})=>await e.rmdirPromise(t))}rmdirSync(e){return this.makeCallSync(e,()=>this.baseFs.rmdirSync(e),(e,{subPath:t})=>e.rmdirSync(t))}async linkPromise(e,t){return await this.makeCallPromise(t,async()=>await this.baseFs.linkPromise(e,t),async(t,{subPath:r})=>await t.linkPromise(e,r))}linkSync(e,t){return this.makeCallSync(t,()=>this.baseFs.linkSync(e,t),(t,{subPath:r})=>t.linkSync(e,r))}async symlinkPromise(e,t,r){return await this.makeCallPromise(t,async()=>await this.baseFs.symlinkPromise(e,t,r),async(t,{subPath:r})=>await t.symlinkPromise(e,r))}symlinkSync(e,t,r){return this.makeCallSync(t,()=>this.baseFs.symlinkSync(e,t,r),(t,{subPath:r})=>t.symlinkSync(e,r))}async readFilePromise(e,t){return this.makeCallPromise(e,async()=>{switch(t){case"utf8":default:return await this.baseFs.readFilePromise(e,t)}},async(e,{subPath:r})=>await e.readFilePromise(r,t))}readFileSync(e,t){return this.makeCallSync(e,()=>{switch(t){case"utf8":default:return this.baseFs.readFileSync(e,t)}},(e,{subPath:r})=>e.readFileSync(r,t))}async readdirPromise(e,{withFileTypes:t}={}){return await this.makeCallPromise(e,async()=>await this.baseFs.readdirPromise(e,{withFileTypes:t}),async(e,{subPath:r})=>await e.readdirPromise(r,{withFileTypes:t}),{requireSubpath:!1})}readdirSync(e,{withFileTypes:t}={}){return this.makeCallSync(e,()=>this.baseFs.readdirSync(e,{withFileTypes:t}),(e,{subPath:r})=>e.readdirSync(r,{withFileTypes:t}),{requireSubpath:!1})}async readlinkPromise(e){return await this.makeCallPromise(e,async()=>await this.baseFs.readlinkPromise(e),async(e,{subPath:t})=>await e.readlinkPromise(t))}readlinkSync(e){return this.makeCallSync(e,()=>this.baseFs.readlinkSync(e),(e,{subPath:t})=>e.readlinkSync(t))}async truncatePromise(e,t){return await this.makeCallPromise(e,async()=>await this.baseFs.truncatePromise(e,t),async(e,{subPath:r})=>await e.truncatePromise(r,t))}truncateSync(e,t){return this.makeCallSync(e,()=>this.baseFs.truncateSync(e,t),(e,{subPath:r})=>e.truncateSync(r,t))}watch(e,t,r){return this.makeCallSync(e,()=>this.baseFs.watch(e,t,r),(e,{subPath:n})=>e.watch(n,t,r))}watchFile(e,t,r){return this.makeCallSync(e,()=>this.baseFs.watchFile(e,t,r),()=>(0,s._x)(this,e,t,r))}unwatchFile(e,t){return this.makeCallSync(e,()=>this.baseFs.unwatchFile(e,t),()=>(0,s.nd)(this,e,t))}async makeCallPromise(e,t,r,{requireSubpath:n=!0}={}){if("string"!=typeof e)return await t();const i=this.resolve(e),A=this.findZip(i);return A?n&&"/"===A.subPath?await t():await this.getZipPromise(A.archivePath,async e=>await r(e,A)):await t()}makeCallSync(e,t,r,{requireSubpath:n=!0}={}){if("string"!=typeof e)return t();const i=this.resolve(e),A=this.findZip(i);return A?n&&"/"===A.subPath?t():this.getZipSync(A.archivePath,e=>r(e,A)):t()}findZip(e){if(this.filter&&!this.filter.test(e))return null;let t="";for(;;){const r=g.exec(e.substr(t.length));if(!r)return null;if(t=this.pathUtils.join(t,r[0]),!1===this.isZip.has(t)){if(this.notZip.has(t))continue;try{if(!this.baseFs.lstatSync(t).isFile()){this.notZip.add(t);continue}}catch(e){return null}this.isZip.add(t)}return{archivePath:t,subPath:this.pathUtils.join(a.LZ.root,e.substr(t.length))}}}limitOpenFiles(e){if(null===this.zipInstances)return;const t=Date.now();let r=t+this.maxAge,n=null===e?0:this.zipInstances.size-e;for(const[i,{zipFs:A,expiresAt:o,refCount:s}]of this.zipInstances.entries())if(0===s&&!A.hasOpenFileHandles())if(t>=o)A.saveAndClose(),this.zipInstances.delete(i),n-=1;else{if(null===e||n<=0){r=o;break}A.saveAndClose(),this.zipInstances.delete(i),n-=1}null===this.limitOpenFilesTimeout&&(null===e&&this.zipInstances.size>0||null!==e)&&(this.limitOpenFilesTimeout=setTimeout(()=>{this.limitOpenFilesTimeout=null,this.limitOpenFiles(null)},r-t).unref())}async getZipPromise(e,t){const r=async()=>({baseFs:this.baseFs,libzip:this.libzip,readOnly:this.readOnlyArchives,stats:await this.baseFs.statPromise(e)});if(this.zipInstances){let n=this.zipInstances.get(e);if(!n){const t=await r();n=this.zipInstances.get(e),n||(n={zipFs:new o.d(e,t),expiresAt:0,refCount:0})}this.zipInstances.delete(e),this.limitOpenFiles(this.maxOpenFiles-1),this.zipInstances.set(e,n),n.expiresAt=Date.now()+this.maxAge,n.refCount+=1;try{return await t(n.zipFs)}finally{n.refCount-=1}}else{const n=new o.d(e,await r());try{return await t(n)}finally{n.saveAndClose()}}}getZipSync(e,t){const r=()=>({baseFs:this.baseFs,libzip:this.libzip,readOnly:this.readOnlyArchives,stats:this.baseFs.statSync(e)});if(this.zipInstances){let n=this.zipInstances.get(e);return n||(n={zipFs:new o.d(e,r()),expiresAt:0,refCount:0}),this.zipInstances.delete(e),this.limitOpenFiles(this.maxOpenFiles-1),this.zipInstances.set(e,n),n.expiresAt=Date.now()+this.maxAge,t(n.zipFs)}{const n=new o.d(e,r());try{return t(n)}finally{n.saveAndClose()}}}}},91438:(e,t,r)=>{"use strict";r.d(t,{_x:()=>g,nd:()=>l,L:()=>u});var n,i,A=r(28614),o=r(65760);function s(e,t){if(e!==t)throw new Error(`Invalid StatWatcher status: expected '${t}', got '${e}'`)}!function(e){e.Change="change",e.Stop="stop"}(n||(n={})),function(e){e.Ready="ready",e.Running="running",e.Stopped="stopped"}(i||(i={}));class a extends A.EventEmitter{constructor(e,t,{bigint:r=!1}={}){super(),this.status=i.Ready,this.changeListeners=new Map,this.startTimeout=null,this.fakeFs=e,this.path=t,this.bigint=r,this.lastStats=this.stat()}static create(e,t,r){const n=new a(e,t,r);return n.start(),n}start(){s(this.status,i.Ready),this.status=i.Running,this.startTimeout=setTimeout(()=>{this.startTimeout=null,this.fakeFs.existsSync(this.path)||this.emit(n.Change,this.lastStats,this.lastStats)},3)}stop(){s(this.status,i.Running),this.status=i.Stopped,null!==this.startTimeout&&(clearTimeout(this.startTimeout),this.startTimeout=null),this.emit(n.Stop)}stat(){try{return this.fakeFs.statSync(this.path)}catch(e){if("ENOENT"===e.code)return o.makeEmptyStats();throw e}}makeInterval(e){const t=setInterval(()=>{const e=this.stat(),t=this.lastStats;o.areStatsEqual(e,t)||(this.lastStats=e,this.emit(n.Change,e,t))},e.interval);return e.persistent?t:t.unref()}registerChangeListener(e,t){this.addListener(n.Change,e),this.changeListeners.set(e,this.makeInterval(t))}unregisterChangeListener(e){this.removeListener(n.Change,e);const t=this.changeListeners.get(e);void 0!==t&&clearInterval(t),this.changeListeners.delete(e)}unregisterAllChangeListeners(){for(const e of this.changeListeners.keys())this.unregisterChangeListener(e)}hasChangeListeners(){return this.changeListeners.size>0}ref(){for(const e of this.changeListeners.values())e.ref();return this}unref(){for(const e of this.changeListeners.values())e.unref();return this}}const c=new WeakMap;function g(e,t,r,n){let i,A,o,s;switch(typeof r){case"function":i=!1,A=!0,o=5007,s=r;break;default:({bigint:i=!1,persistent:A=!0,interval:o=5007}=r),s=n}let g=c.get(e);void 0===g&&c.set(e,g=new Map);let l=g.get(t);return void 0===l&&(l=a.create(e,t,{bigint:i}),g.set(t,l)),l.registerChangeListener(s,{persistent:A,interval:o}),l}function l(e,t,r){const n=c.get(e);if(void 0===n)return;const i=n.get(t);void 0!==i&&(void 0===r?i.unregisterAllChangeListeners():i.unregisterChangeListener(r),i.hasChangeListeners()||(i.stop(),n.delete(t)))}function u(e){const t=c.get(e);if(void 0!==t)for(const r of t.keys())l(e,r)}},22004:(e,t,r)=>{"use strict";r.d(t,{wK:()=>n,QB:()=>i,Pe:()=>A,Zv:()=>o});const n=61440,i=16384,A=32768,o=40960},26984:(e,t,r)=>{"use strict";function n(e,t){return Object.assign(new Error(`${e}: ${t}`),{code:e})}function i(e){return n("EBUSY",e)}function A(e,t){return n("ENOSYS",`${e}, ${t}`)}function o(e){return n("EINVAL","invalid argument, "+e)}function s(e){return n("EBADF","bad file descriptor, "+e)}function a(e){return n("ENOENT","no such file or directory, "+e)}function c(e){return n("ENOTDIR","not a directory, "+e)}function g(e){return n("EISDIR","illegal operation on a directory, "+e)}function l(e){return n("EEXIST","file already exists, "+e)}function u(e){return n("EROFS","read-only filesystem, "+e)}function h(e){return n("ENOTEMPTY","directory not empty, "+e)}function f(e){return n("EOPNOTSUPP","operation not supported, "+e)}r.d(t,{Vw:()=>i,bk:()=>A,hq:()=>o,Ch:()=>s,z6:()=>a,Ab:()=>c,GA:()=>g,cT:()=>l,YW:()=>u,re:()=>h,Hs:()=>f,Yn:()=>p});class p extends Error{constructor(e,t){super(e),this.name="Libzip Error",this.code=t}}},56537:(e,t,r)=>{"use strict";r.r(t),r.d(t,{statUtils:()=>a,normalizeLineEndings:()=>c.qH,DEFAULT_COMPRESSION_LEVEL:()=>g.k,PortablePath:()=>s.LZ,Filename:()=>s.QS,npath:()=>s.cS,ppath:()=>s.y1,toFilename:()=>s.Zu,AliasFS:()=>l.K,FakeFS:()=>c.uY,CwdFS:()=>u.M,JailFS:()=>h.n,LazyFS:()=>f.v,NoFS:()=>C,NodeFS:()=>o.S,PosixFS:()=>d.i,ProxiedFS:()=>I.p,VirtualFS:()=>E.p,ZipFS:()=>g.d,ZipOpenFS:()=>m.A,patchFs:()=>w,extendFs:()=>y,xfs:()=>D});var n=r(12087),i=r.n(n),A=r(31669),o=r(78420),s=r(46009),a=r(65760),c=r(35398),g=r(90739),l=r(14626),u=r(75448),h=r(10489),f=r(15037);const p=()=>Object.assign(new Error("ENOSYS: unsupported filesystem access"),{code:"ENOSYS"});class C extends c.uY{constructor(){super(s.y1)}getExtractHint(){throw p()}getRealPath(){throw p()}resolve(){throw p()}async openPromise(){throw p()}openSync(){throw p()}async readPromise(){throw p()}readSync(){throw p()}async writePromise(){throw p()}writeSync(){throw p()}async closePromise(){throw p()}closeSync(){throw p()}createWriteStream(){throw p()}createReadStream(){throw p()}async realpathPromise(){throw p()}realpathSync(){throw p()}async readdirPromise(){throw p()}readdirSync(){throw p()}async existsPromise(e){throw p()}existsSync(e){throw p()}async accessPromise(){throw p()}accessSync(){throw p()}async statPromise(){throw p()}statSync(){throw p()}async lstatPromise(e){throw p()}lstatSync(e){throw p()}async chmodPromise(){throw p()}chmodSync(){throw p()}async chownPromise(){throw p()}chownSync(){throw p()}async mkdirPromise(){throw p()}mkdirSync(){throw p()}async rmdirPromise(){throw p()}rmdirSync(){throw p()}async linkPromise(){throw p()}linkSync(){throw p()}async symlinkPromise(){throw p()}symlinkSync(){throw p()}async renamePromise(){throw p()}renameSync(){throw p()}async copyFilePromise(){throw p()}copyFileSync(){throw p()}async appendFilePromise(){throw p()}appendFileSync(){throw p()}async writeFilePromise(){throw p()}writeFileSync(){throw p()}async unlinkPromise(){throw p()}unlinkSync(){throw p()}async utimesPromise(){throw p()}utimesSync(){throw p()}async readFilePromise(){throw p()}readFileSync(){throw p()}async readlinkPromise(){throw p()}readlinkSync(){throw p()}async truncatePromise(){throw p()}truncateSync(){throw p()}watch(){throw p()}watchFile(){throw p()}unwatchFile(){throw p()}}C.instance=new C;var d=r(39725),I=r(42096),E=r(17674),m=r(53660);function B(e){const t=s.cS.toPortablePath(i().tmpdir()),r=Math.ceil(4294967296*Math.random()).toString(16).padStart(8,"0");return s.y1.join(t,`${e}${r}`)}function w(e,t){const r=new Set(["accessSync","appendFileSync","createReadStream","chmodSync","chownSync","closeSync","copyFileSync","linkSync","lstatSync","lutimesSync","mkdirSync","openSync","readSync","readlinkSync","readFileSync","readdirSync","readlinkSync","realpathSync","renameSync","rmdirSync","statSync","symlinkSync","truncateSync","unlinkSync","unwatchFile","utimesSync","watch","watchFile","writeFileSync","writeSync"]),n=new Set(["accessPromise","appendFilePromise","chmodPromise","chownPromise","closePromise","copyFilePromise","linkPromise","lstatPromise","lutimesPromise","mkdirPromise","openPromise","readdirPromise","realpathPromise","readFilePromise","readdirPromise","readlinkPromise","renamePromise","rmdirPromise","statPromise","symlinkPromise","truncatePromise","unlinkPromise","utimesPromise","writeFilePromise","writeSync"]),i=new Set(["appendFilePromise","chmodPromise","chownPromise","closePromise","readPromise","readFilePromise","statPromise","truncatePromise","utimesPromise","writePromise","writeFilePromise"]),o=(e,t,r)=>{const n=e[t];e[t]=r,void 0!==(null==n?void 0:n[A.promisify.custom])&&(r[A.promisify.custom]=n[A.promisify.custom])};o(e,"exists",(e,...r)=>{const n="function"==typeof r[r.length-1]?r.pop():()=>{};process.nextTick(()=>{t.existsPromise(e).then(e=>{n(e)},()=>{n(!1)})})}),o(e,"read",(e,r,...n)=>{const i="function"==typeof n[n.length-1]?n.pop():()=>{};process.nextTick(()=>{t.readPromise(e,r,...n).then(e=>{i(null,e,r)},e=>{i(e)})})});for(const r of n){const n=r.replace(/Promise$/,"");if(void 0===e[n])continue;const i=t[r];if(void 0===i)continue;o(e,n,(...e)=>{const r="function"==typeof e[e.length-1]?e.pop():()=>{};process.nextTick(()=>{i.apply(t,e).then(e=>{r(null,e)},e=>{r(e)})})})}e.realpath.native=e.realpath,o(e,"existsSync",e=>{try{return t.existsSync(e)}catch(e){return!1}});for(const n of r){const r=n;if(void 0===e[r])continue;const i=t[n];void 0!==i&&o(e,r,i.bind(t))}e.realpathSync.native=e.realpathSync;{const r=process.emitWarning;let A;process.emitWarning=()=>{};try{A=e.promises}finally{process.emitWarning=r}if(void 0!==A){for(const e of n){const r=e.replace(/Promise$/,"");if(void 0===A[r])continue;const n=t[e];void 0!==n&&("open"!==e&&o(A,r,n.bind(t)))}class e{constructor(e){this.fd=e}}for(const r of i){const n=r.replace(/Promise$/,""),i=t[r];void 0!==i&&o(e.prototype,n,(function(...e){return i.call(t,this.fd,...e)}))}o(A,"open",async(...r)=>{const n=await t.openPromise(...r);return new e(n)})}}}function y(e,t){const r=Object.create(e);return w(r,t),r}const Q=new Set;let v=!1;function b(){v||(v=!0,process.once("exit",()=>{D.rmtempSync()}))}const D=Object.assign(new o.S,{detachTemp(e){Q.delete(e)},mktempSync(e){for(b();;){const t=B("xfs-");try{this.mkdirSync(t)}catch(e){if("EEXIST"===e.code)continue;throw e}const r=this.realpathSync(t);if(Q.add(r),void 0===e)return t;try{return e(r)}finally{if(Q.has(r)){Q.delete(r);try{this.removeSync(r)}catch(e){}}}}},async mktempPromise(e){for(b();;){const t=B("xfs-");try{await this.mkdirPromise(t)}catch(e){if("EEXIST"===e.code)continue;throw e}const r=await this.realpathPromise(t);if(Q.add(r),void 0===e)return r;try{return await e(r)}finally{if(Q.has(r)){Q.delete(r);try{await this.removePromise(r)}catch(e){}}}}},async rmtempPromise(){await Promise.all(Array.from(Q.values()).map(async e=>{try{await D.removePromise(e,{maxRetries:0}),Q.delete(e)}catch(e){}}))},rmtempSync(){for(const e of Q)try{D.removeSync(e),Q.delete(e)}catch(e){}}})},46009:(e,t,r)=>{"use strict";r.d(t,{LZ:()=>o,QS:()=>s,cS:()=>a,y1:()=>c,CI:()=>d,Zu:()=>I});var n,i=r(85622),A=r.n(i);!function(e){e[e.File=0]="File",e[e.Portable=1]="Portable",e[e.Native=2]="Native"}(n||(n={}));const o={root:"/",dot:"."},s={nodeModules:"node_modules",manifest:"package.json",lockfile:"yarn.lock",pnpJs:".pnp.js",rc:".yarnrc.yml"},a=Object.create(A()),c=Object.create(A().posix);a.cwd=()=>process.cwd(),c.cwd=()=>C(process.cwd()),c.resolve=(...e)=>e.length>0&&c.isAbsolute(e[0])?A().posix.resolve(...e):A().posix.resolve(c.cwd(),...e);const g=function(e,t,r){return(t=e.normalize(t))===(r=e.normalize(r))?".":(t.endsWith(e.sep)||(t+=e.sep),r.startsWith(t)?r.slice(t.length):null)};a.fromPortablePath=p,a.toPortablePath=C,a.contains=(e,t)=>g(a,e,t),c.contains=(e,t)=>g(c,e,t);const l=/^([a-zA-Z]:.*)$/,u=/^\\\\(\.\\)?(.*)$/,h=/^\/([a-zA-Z]:.*)$/,f=/^\/unc\/(\.dot\/)?(.*)$/;function p(e){if("win32"!==process.platform)return e;if(e.match(h))e=e.replace(h,"$1");else{if(!e.match(f))return e;e=e.replace(f,(e,t,r)=>`\\\\${t?".\\":""}${r}`)}return e.replace(/\//g,"\\")}function C(e){return"win32"!==process.platform?e:(e.match(l)?e=e.replace(l,"/$1"):e.match(u)&&(e=e.replace(u,(e,t,r)=>`/unc/${t?".dot/":""}${r}`)),e.replace(/\\/g,"/"))}function d(e,t){return e===a?p(t):C(t)}function I(e){if(""!==a.parse(e).dir||""!==c.parse(e).dir)throw new Error(`Invalid filename: "${e}"`);return e}},65760:(e,t,r)=>{"use strict";r.r(t),r.d(t,{DirEntry:()=>i,StatEntry:()=>A,makeDefaultStats:()=>o,makeEmptyStats:()=>s,areStatsEqual:()=>a});var n=r(22004);class i{constructor(){this.name="",this.mode=0}isBlockDevice(){return!1}isCharacterDevice(){return!1}isDirectory(){return(this.mode&n.wK)===n.QB}isFIFO(){return!1}isFile(){return(this.mode&n.wK)===n.Pe}isSocket(){return!1}isSymbolicLink(){return(this.mode&n.wK)===n.Zv}}class A{constructor(){this.dev=0,this.ino=0,this.mode=0,this.nlink=1,this.rdev=0,this.blocks=1}isBlockDevice(){return!1}isCharacterDevice(){return!1}isDirectory(){return(this.mode&n.wK)===n.QB}isFIFO(){return!1}isFile(){return(this.mode&n.wK)===n.Pe}isSocket(){return!1}isSymbolicLink(){return(this.mode&n.wK)===n.Zv}}function o(){return Object.assign(new A,{uid:0,gid:0,size:0,blksize:0,atimeMs:0,mtimeMs:0,ctimeMs:0,birthtimeMs:0,atime:new Date(0),mtime:new Date(0),ctime:new Date(0),birthtime:new Date(0),mode:420|n.Pe})}function s(){return Object.assign(o(),{nlink:0,blocks:0,mode:0})}function a(e,t){return e.atimeMs===t.atimeMs&&(e.birthtimeMs===t.birthtimeMs&&(e.blksize===t.blksize&&(e.blocks===t.blocks&&(e.ctimeMs===t.ctimeMs&&(e.dev===t.dev&&(e.gid===t.gid&&(e.ino===t.ino&&(e.isBlockDevice()===t.isBlockDevice()&&(e.isCharacterDevice()===t.isCharacterDevice()&&(e.isDirectory()===t.isDirectory()&&(e.isFIFO()===t.isFIFO()&&(e.isFile()===t.isFile()&&(e.isSocket()===t.isSocket()&&(e.isSymbolicLink()===t.isSymbolicLink()&&(e.mode===t.mode&&(e.mtimeMs===t.mtimeMs&&(e.nlink===t.nlink&&(e.rdev===t.rdev&&(e.size===t.size&&e.uid===t.uid)))))))))))))))))))}},29486:(e,t,r)=>{"use strict";r.r(t),r.d(t,{getLibzipSync:()=>o,getLibzipPromise:()=>s});const n=["number","number"];var i;!function(e){e[e.ZIP_ER_OK=0]="ZIP_ER_OK",e[e.ZIP_ER_MULTIDISK=1]="ZIP_ER_MULTIDISK",e[e.ZIP_ER_RENAME=2]="ZIP_ER_RENAME",e[e.ZIP_ER_CLOSE=3]="ZIP_ER_CLOSE",e[e.ZIP_ER_SEEK=4]="ZIP_ER_SEEK",e[e.ZIP_ER_READ=5]="ZIP_ER_READ",e[e.ZIP_ER_WRITE=6]="ZIP_ER_WRITE",e[e.ZIP_ER_CRC=7]="ZIP_ER_CRC",e[e.ZIP_ER_ZIPCLOSED=8]="ZIP_ER_ZIPCLOSED",e[e.ZIP_ER_NOENT=9]="ZIP_ER_NOENT",e[e.ZIP_ER_EXISTS=10]="ZIP_ER_EXISTS",e[e.ZIP_ER_OPEN=11]="ZIP_ER_OPEN",e[e.ZIP_ER_TMPOPEN=12]="ZIP_ER_TMPOPEN",e[e.ZIP_ER_ZLIB=13]="ZIP_ER_ZLIB",e[e.ZIP_ER_MEMORY=14]="ZIP_ER_MEMORY",e[e.ZIP_ER_CHANGED=15]="ZIP_ER_CHANGED",e[e.ZIP_ER_COMPNOTSUPP=16]="ZIP_ER_COMPNOTSUPP",e[e.ZIP_ER_EOF=17]="ZIP_ER_EOF",e[e.ZIP_ER_INVAL=18]="ZIP_ER_INVAL",e[e.ZIP_ER_NOZIP=19]="ZIP_ER_NOZIP",e[e.ZIP_ER_INTERNAL=20]="ZIP_ER_INTERNAL",e[e.ZIP_ER_INCONS=21]="ZIP_ER_INCONS",e[e.ZIP_ER_REMOVE=22]="ZIP_ER_REMOVE",e[e.ZIP_ER_DELETED=23]="ZIP_ER_DELETED",e[e.ZIP_ER_ENCRNOTSUPP=24]="ZIP_ER_ENCRNOTSUPP",e[e.ZIP_ER_RDONLY=25]="ZIP_ER_RDONLY",e[e.ZIP_ER_NOPASSWD=26]="ZIP_ER_NOPASSWD",e[e.ZIP_ER_WRONGPASSWD=27]="ZIP_ER_WRONGPASSWD",e[e.ZIP_ER_OPNOTSUPP=28]="ZIP_ER_OPNOTSUPP",e[e.ZIP_ER_INUSE=29]="ZIP_ER_INUSE",e[e.ZIP_ER_TELL=30]="ZIP_ER_TELL",e[e.ZIP_ER_COMPRESSED_DATA=31]="ZIP_ER_COMPRESSED_DATA"}(i||(i={}));let A=null;function o(){var e;return null===A&&(e=r(3368),A={get HEAP8(){return e.HEAP8},get HEAPU8(){return e.HEAPU8},errors:i,SEEK_SET:0,SEEK_CUR:1,SEEK_END:2,ZIP_CHECKCONS:4,ZIP_CREATE:1,ZIP_EXCL:2,ZIP_TRUNCATE:8,ZIP_RDONLY:16,ZIP_FL_OVERWRITE:8192,ZIP_FL_COMPRESSED:4,ZIP_OPSYS_DOS:0,ZIP_OPSYS_AMIGA:1,ZIP_OPSYS_OPENVMS:2,ZIP_OPSYS_UNIX:3,ZIP_OPSYS_VM_CMS:4,ZIP_OPSYS_ATARI_ST:5,ZIP_OPSYS_OS_2:6,ZIP_OPSYS_MACINTOSH:7,ZIP_OPSYS_Z_SYSTEM:8,ZIP_OPSYS_CPM:9,ZIP_OPSYS_WINDOWS_NTFS:10,ZIP_OPSYS_MVS:11,ZIP_OPSYS_VSE:12,ZIP_OPSYS_ACORN_RISC:13,ZIP_OPSYS_VFAT:14,ZIP_OPSYS_ALTERNATE_MVS:15,ZIP_OPSYS_BEOS:16,ZIP_OPSYS_TANDEM:17,ZIP_OPSYS_OS_400:18,ZIP_OPSYS_OS_X:19,ZIP_CM_DEFAULT:-1,ZIP_CM_STORE:0,ZIP_CM_DEFLATE:8,uint08S:e._malloc(1),uint16S:e._malloc(2),uint32S:e._malloc(4),uint64S:e._malloc(8),malloc:e._malloc,free:e._free,getValue:e.getValue,open:e.cwrap("zip_open","number",["string","number","number"]),openFromSource:e.cwrap("zip_open_from_source","number",["number","number","number"]),close:e.cwrap("zip_close","number",["number"]),discard:e.cwrap("zip_discard",null,["number"]),getError:e.cwrap("zip_get_error","number",["number"]),getName:e.cwrap("zip_get_name","string",["number","number","number"]),getNumEntries:e.cwrap("zip_get_num_entries","number",["number","number"]),delete:e.cwrap("zip_delete","number",["number","number"]),stat:e.cwrap("zip_stat","number",["number","string","number","number"]),statIndex:e.cwrap("zip_stat_index","number",["number",...n,"number","number"]),fopen:e.cwrap("zip_fopen","number",["number","string","number"]),fopenIndex:e.cwrap("zip_fopen_index","number",["number",...n,"number"]),fread:e.cwrap("zip_fread","number",["number","number","number","number"]),fclose:e.cwrap("zip_fclose","number",["number"]),dir:{add:e.cwrap("zip_dir_add","number",["number","string"])},file:{add:e.cwrap("zip_file_add","number",["number","string","number","number"]),getError:e.cwrap("zip_file_get_error","number",["number"]),getExternalAttributes:e.cwrap("zip_file_get_external_attributes","number",["number",...n,"number","number","number"]),setExternalAttributes:e.cwrap("zip_file_set_external_attributes","number",["number",...n,"number","number","number"]),setMtime:e.cwrap("zip_file_set_mtime","number",["number",...n,"number","number"]),setCompression:e.cwrap("zip_set_file_compression","number",["number",...n,"number","number"])},ext:{countSymlinks:e.cwrap("zip_ext_count_symlinks","number",["number"])},error:{initWithCode:e.cwrap("zip_error_init_with_code",null,["number","number"]),strerror:e.cwrap("zip_error_strerror","string",["number"])},name:{locate:e.cwrap("zip_name_locate","number",["number","string","number"])},source:{fromUnattachedBuffer:e.cwrap("zip_source_buffer_create","number",["number","number","number","number"]),fromBuffer:e.cwrap("zip_source_buffer","number",["number","number",...n,"number"]),free:e.cwrap("zip_source_free",null,["number"]),keep:e.cwrap("zip_source_keep",null,["number"]),open:e.cwrap("zip_source_open","number",["number"]),close:e.cwrap("zip_source_close","number",["number"]),seek:e.cwrap("zip_source_seek","number",["number",...n,"number"]),tell:e.cwrap("zip_source_tell","number",["number"]),read:e.cwrap("zip_source_read","number",["number","number","number"]),error:e.cwrap("zip_source_error","number",["number"]),setMtime:e.cwrap("zip_source_set_mtime","number",["number","number"])},struct:{stat:e.cwrap("zipstruct_stat","number",[]),statS:e.cwrap("zipstruct_statS","number",[]),statName:e.cwrap("zipstruct_stat_name","string",["number"]),statIndex:e.cwrap("zipstruct_stat_index","number",["number"]),statSize:e.cwrap("zipstruct_stat_size","number",["number"]),statCompSize:e.cwrap("zipstruct_stat_comp_size","number",["number"]),statCompMethod:e.cwrap("zipstruct_stat_comp_method","number",["number"]),statMtime:e.cwrap("zipstruct_stat_mtime","number",["number"]),error:e.cwrap("zipstruct_error","number",[]),errorS:e.cwrap("zipstruct_errorS","number",[]),errorCodeZip:e.cwrap("zipstruct_error_code_zip","number",["number"])}}),A}async function s(){return o()}},55125:(e,t,r)=>{"use strict";r.r(t),r.d(t,{parseShell:()=>i,parseResolution:()=>o,stringifyResolution:()=>s,parseSyml:()=>I,stringifySyml:()=>p});var n=r(92962);function i(e,t={isGlobPattern:()=>!1}){try{return(0,n.parse)(e,t)}catch(e){throw e.location&&(e.message=e.message.replace(/(\.)?$/,` (line ${e.location.start.line}, column ${e.location.start.column})$1`)),e}}var A=r(98261);function o(e){const t=e.match(/^\*{1,2}\/(.*)/);if(t)throw new Error(`The override for '${e}' includes a glob pattern. Glob patterns have been removed since their behaviours don't match what you'd expect. Set the override to '${t[1]}' instead.`);try{return(0,A.parse)(e)}catch(e){throw e.location&&(e.message=e.message.replace(/(\.)?$/,` (line ${e.location.start.line}, column ${e.location.start.column})$1`)),e}}function s(e){let t="";return e.from&&(t+=e.from.fullName,e.from.description&&(t+="@"+e.from.description),t+="/"),t+=e.descriptor.fullName,e.descriptor.description&&(t+="@"+e.descriptor.description),t}var a=r(21194),c=r(85443);const g=/^(?![-?:,\][{}#&*!|>'"%@` \t\r\n]).([ \t]*(?![,\][{}:# \t\r\n]).)*$/,l=["__metadata","version","resolution","dependencies","peerDependencies","dependenciesMeta","peerDependenciesMeta","binaries"];class u{constructor(e){this.data=e}}function h(e){return e.match(g)?e:JSON.stringify(e)}function f(e,t,r){if(null===e)return"null\n";if("number"==typeof e||"boolean"==typeof e)return e.toString()+"\n";if("string"==typeof e)return h(e)+"\n";if(Array.isArray(e)){if(0===e.length)return"[]\n";const r=" ".repeat(t);return"\n"+e.map(e=>`${r}- ${f(e,t+1,!1)}`).join("")}if("object"==typeof e&&e){let n,i;e instanceof u?(n=e.data,i=!1):(n=e,i=!0);const A=" ".repeat(t),o=Object.keys(n);i&&o.sort((e,t)=>{const r=l.indexOf(e),n=l.indexOf(t);return-1===r&&-1===n?et?1:0:-1!==r&&-1===n?-1:-1===r&&-1!==n?1:r-n});const s=o.filter(e=>!function e(t){return void 0===t||"object"==typeof t&&null!==t&&Object.keys(t).every(r=>e(t[r]))}(n[e])).map((e,i)=>{const o=n[e],s=h(e),a=f(o,t+1,!0),c=i>0||r?A:"";return a.startsWith("\n")?`${c}${s}:${a}`:`${c}${s}: ${a}`}).join(0===t?"\n":"")||"\n";return r?"\n"+s:""+s}throw new Error(`Unsupported value type (${e})`)}function p(e){try{const t=f(e,0,!1);return"\n"!==t?t:""}catch(e){throw e.location&&(e.message=e.message.replace(/(\.)?$/,` (line ${e.location.start.line}, column ${e.location.start.column})$1`)),e}}p.PreserveOrdering=u;const C=/^(#.*(\r?\n))*?#\s+yarn\s+lockfile\s+v1\r?\n/i;function d(e){if(C.test(e))return function(e){return e.endsWith("\n")||(e+="\n"),(0,c.parse)(e)}(e);const t=(0,a.safeLoad)(e,{schema:a.FAILSAFE_SCHEMA});if(null==t)return{};if("object"!=typeof t)throw new Error(`Expected an indexed object, got a ${typeof t} instead. Does your file follow Yaml's rules?`);if(Array.isArray(t))throw new Error("Expected an indexed object, got an array instead. Does your file follow Yaml's rules?");return t}function I(e){return d(e)}},88563:(e,t,r)=>{"use strict";var n,i;r.d(t,{gY:()=>E,Q$:()=>m,oC:()=>N}),function(e){e.HARD="HARD",e.SOFT="SOFT"}(n||(n={})),function(e){e.DEFAULT="DEFAULT",e.TOP_LEVEL="TOP_LEVEL",e.FALLBACK_EXCLUSION_LIST="FALLBACK_EXCLUSION_LIST",e.FALLBACK_EXCLUSION_ENTRIES="FALLBACK_EXCLUSION_ENTRIES",e.FALLBACK_EXCLUSION_DATA="FALLBACK_EXCLUSION_DATA",e.PACKAGE_REGISTRY_DATA="PACKAGE_REGISTRY_DATA",e.PACKAGE_REGISTRY_ENTRIES="PACKAGE_REGISTRY_ENTRIES",e.PACKAGE_STORE_DATA="PACKAGE_STORE_DATA",e.PACKAGE_STORE_ENTRIES="PACKAGE_STORE_ENTRIES",e.PACKAGE_INFORMATION_DATA="PACKAGE_INFORMATION_DATA",e.PACKAGE_DEPENDENCIES="PACKAGE_DEPENDENCIES",e.PACKAGE_DEPENDENCY="PACKAGE_DEPENDENCY"}(i||(i={}));const A={[i.DEFAULT]:{collapsed:!1,next:{"*":i.DEFAULT}},[i.TOP_LEVEL]:{collapsed:!1,next:{fallbackExclusionList:i.FALLBACK_EXCLUSION_LIST,packageRegistryData:i.PACKAGE_REGISTRY_DATA,"*":i.DEFAULT}},[i.FALLBACK_EXCLUSION_LIST]:{collapsed:!1,next:{"*":i.FALLBACK_EXCLUSION_ENTRIES}},[i.FALLBACK_EXCLUSION_ENTRIES]:{collapsed:!0,next:{"*":i.FALLBACK_EXCLUSION_DATA}},[i.FALLBACK_EXCLUSION_DATA]:{collapsed:!0,next:{"*":i.DEFAULT}},[i.PACKAGE_REGISTRY_DATA]:{collapsed:!1,next:{"*":i.PACKAGE_REGISTRY_ENTRIES}},[i.PACKAGE_REGISTRY_ENTRIES]:{collapsed:!0,next:{"*":i.PACKAGE_STORE_DATA}},[i.PACKAGE_STORE_DATA]:{collapsed:!1,next:{"*":i.PACKAGE_STORE_ENTRIES}},[i.PACKAGE_STORE_ENTRIES]:{collapsed:!0,next:{"*":i.PACKAGE_INFORMATION_DATA}},[i.PACKAGE_INFORMATION_DATA]:{collapsed:!1,next:{packageDependencies:i.PACKAGE_DEPENDENCIES,"*":i.DEFAULT}},[i.PACKAGE_DEPENDENCIES]:{collapsed:!1,next:{"*":i.PACKAGE_DEPENDENCY}},[i.PACKAGE_DEPENDENCY]:{collapsed:!0,next:{"*":i.DEFAULT}}};function o(e,t,r,n){const{next:i}=A[r];return s(t,i[e]||i["*"],n)}function s(e,t,r){const{collapsed:n}=A[t];return Array.isArray(e)?n?function(e,t,r){let n="";n+="[";for(let i=0,A=e.length;ie(t)));const i=r.map((e,t)=>t);return i.sort((e,t)=>{for(const r of n){const n=r[e]r[t]?1:0;if(0!==n)return n}return 0}),i.map(e=>r[e])}function g(e){const t=new Map,r=c(e.fallbackExclusionList||[],[({name:e,reference:t})=>e,({name:e,reference:t})=>t]);for(const{name:e,reference:n}of r){let r=t.get(e);void 0===r&&t.set(e,r=new Set),r.add(n)}return Array.from(t).map(([e,t])=>[e,Array.from(t)])}function l(e){return c(e.fallbackPool||[],([e])=>e)}function u(e){const t=[];for(const[r,n]of c(e.packageRegistry,([e])=>null===e?"0":"1"+e)){const e=[];t.push([r,e]);for(const[t,{packageLocation:i,packageDependencies:A,packagePeers:o,linkType:s,discardFromLookup:a}]of c(n,([e])=>null===e?"0":"1"+e)){const n=[];null===r||null===t||A.has(r)||n.push([r,t]);for(const[e,t]of c(A.entries(),([e])=>e))n.push([e,t]);const g=o&&o.size>0?Array.from(o):void 0,l=a||void 0;e.push([t,{packageLocation:i,packageDependencies:n,packagePeers:g,linkType:s,discardFromLookup:l}])}}return t}function h(e){return c(e.blacklistedLocations||[],e=>e)}function f(e){return{__info:["This file is automatically generated. Do not touch it, or risk","your modifications being lost. We also recommend you not to read","it either without using the @yarnpkg/pnp package, as the data layout","is entirely unspecified and WILL change from a version to another."],dependencyTreeRoots:e.dependencyTreeRoots,enableTopLevelFallback:e.enableTopLevelFallback||!1,ignorePatternData:e.ignorePattern||null,fallbackExclusionList:g(e),fallbackPool:l(e),locationBlacklistData:h(e),packageRegistryData:u(e)}}var p=r(20103),C=r.n(p);function d(e,t){return[e?e+"\n":"","/* eslint-disable */\n\n","try {\n"," Object.freeze({}).detectStrictMode = true;\n","} catch (error) {\n"," throw new Error(`The whole PnP file got strict-mode-ified, which is known to break (Emscripten libraries aren't strict mode). This usually happens when the file goes through Babel.`);\n","}\n","\n","var __non_webpack_module__ = module;\n","\n","function $$SETUP_STATE(hydrateRuntimeState, basePath) {\n",t.replace(/^/gm," "),"}\n","\n",C()()].join("")}function I(e){return JSON.stringify(e,null,2)}function E(e){const t=function(e){return[`return hydrateRuntimeState(${a(e)}, {basePath: basePath || __dirname});\n`].join("")}(f(e));return d(e.shebang,t)}function m(e){const t=f(e),r=(n=e.dataLocation,["var path = require('path');\n",`var dataLocation = path.resolve(__dirname, ${JSON.stringify(n)});\n`,"return hydrateRuntimeState(require(dataLocation), {basePath: basePath || path.dirname(dataLocation)});\n"].join(""));var n;const i=d(e.shebang,r);return{dataFile:I(t),loaderFile:i}}var B=r(35747),w=(r(85622),r(31669)),y=r(46009);function Q(e,{basePath:t}){const r=y.cS.toPortablePath(t),n=y.y1.resolve(r),i=null!==e.ignorePatternData?new RegExp(e.ignorePatternData):null,A=new Map(e.packageRegistryData.map(([e,t])=>[e,new Map(t.map(([e,t])=>[e,{packageLocation:y.y1.join(n,t.packageLocation),packageDependencies:new Map(t.packageDependencies),packagePeers:new Set(t.packagePeers),linkType:t.linkType,discardFromLookup:t.discardFromLookup||!1}]))])),o=new Map,s=new Set;for(const[t,r]of e.packageRegistryData)for(const[e,n]of r){if(null===t!=(null===e))throw new Error("Assertion failed: The name and reference should be null, or neither should");if(n.discardFromLookup)continue;const r={name:t,reference:e};o.set(n.packageLocation,r),s.add(n.packageLocation.length)}for(const t of e.locationBlacklistData)o.set(t,null);const a=new Map(e.fallbackExclusionList.map(([e,t])=>[e,new Set(t)])),c=new Map(e.fallbackPool);return{basePath:r,dependencyTreeRoots:e.dependencyTreeRoots,enableTopLevelFallback:e.enableTopLevelFallback,fallbackExclusionList:a,fallbackPool:c,ignorePattern:i,packageLocationLengths:[...s].sort((e,t)=>t-e),packageLocatorsByLocations:o,packageRegistry:A}}var v,b=r(17674),D=r(32282);!function(e){e.API_ERROR="API_ERROR",e.BLACKLISTED="BLACKLISTED",e.BUILTIN_NODE_RESOLUTION_FAILED="BUILTIN_NODE_RESOLUTION_FAILED",e.MISSING_DEPENDENCY="MISSING_DEPENDENCY",e.MISSING_PEER_DEPENDENCY="MISSING_PEER_DEPENDENCY",e.QUALIFIED_PATH_RESOLUTION_FAILED="QUALIFIED_PATH_RESOLUTION_FAILED",e.INTERNAL="INTERNAL",e.UNDECLARED_DEPENDENCY="UNDECLARED_DEPENDENCY",e.UNSUPPORTED="UNSUPPORTED"}(v||(v={}));const S=new Set([v.BLACKLISTED,v.BUILTIN_NODE_RESOLUTION_FAILED,v.MISSING_DEPENDENCY,v.MISSING_PEER_DEPENDENCY,v.QUALIFIED_PATH_RESOLUTION_FAILED,v.UNDECLARED_DEPENDENCY]);function k(e,t,r={}){const n=S.has(e)?"MODULE_NOT_FOUND":e,i={configurable:!0,writable:!0,enumerable:!1};return Object.defineProperties(new Error(t),{code:{...i,value:n},pnpCode:{...i,value:e},data:{...i,value:r}})}function M(e){return y.cS.normalize(y.cS.fromPortablePath(e))}function F(e,t){const r=Number(process.env.PNP_ALWAYS_WARN_ON_FALLBACK)>0,n=Number(process.env.PNP_DEBUG_LEVEL),i=new Set(D.Module.builtinModules||Object.keys(process.binding("natives"))),A=/^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:@[^/]+\/)?[^/]+)\/*(.*|)$/,o=/^\.{0,2}\//,s=/\/$/,a={name:null,reference:null},c=[],g=new Set;if(!0===e.enableTopLevelFallback&&c.push(a),!1!==t.compatibilityMode)for(const t of["react-scripts","gatsby"]){const r=e.packageRegistry.get(t);if(r)for(const e of r.keys()){if(null===e)throw new Error("Assertion failed: This reference shouldn't be null");c.push({name:t,reference:e})}}const{ignorePattern:l,packageRegistry:u,packageLocatorsByLocations:h,packageLocationLengths:f}=e;function p(e,t){return{fn:e,args:t,error:null,result:null}}function C(e,r){if(!1===t.allowDebug)return r;if(Number.isFinite(n)){if(n>=2)return(...t)=>{const n=p(e,t);try{return n.result=r(...t)}catch(e){throw n.error=e}finally{console.trace(n)}};if(n>=1)return(...t)=>{try{return r(...t)}catch(r){const n=p(e,t);throw n.error=r,console.trace(n),r}}}return r}function d(e){const t=m(e);if(!t)throw k(v.INTERNAL,"Couldn't find a matching entry in the dependency tree for the specified parent (this is probably an internal error)");return t}function I(t){if(null===t.name)return!0;for(const r of e.dependencyTreeRoots)if(r.name===t.name&&r.reference===t.reference)return!0;return!1}function E(e,t){return t.endsWith("/")&&(t=y.y1.join(t,"internal.js")),D.Module._resolveFilename(e,function(e){const t=new D.Module(e,null);return t.filename=e,t.paths=D.Module._nodeModulePaths(e),t}(y.cS.fromPortablePath(t)),!1,{plugnplay:!1})}function m({name:e,reference:t}){const r=u.get(e);if(!r)return null;const n=r.get(t);return n||null}function B(e,t){const r=new Map,n=new Set,i=t=>{const A=JSON.stringify(t.name);if(n.has(A))return;n.add(A);const o=function({name:e,reference:t}){const r=[];for(const[n,i]of u)if(null!==n)for(const[A,o]of i){if(null===A)continue;o.packageDependencies.get(e)===t&&(n===e&&A===t||r.push({name:n,reference:A}))}return r}(t);for(const t of o){if(d(t).packagePeers.has(e))i(t);else{let e=r.get(t.name);void 0===e&&r.set(t.name,e=new Set),e.add(t.reference)}}};i(t);const A=[];for(const e of[...r.keys()].sort())for(const t of[...r.get(e)].sort())A.push({name:e,reference:t});return A}function w(t){let r=(n=y.y1.relative(e.basePath,t),y.cS.toPortablePath(n));var n;r.match(o)||(r="./"+r),t.match(s)&&!r.endsWith("/")&&(r+="/");let i=0;for(;ir.length;)i+=1;for(let e=i;eI(e))?k(v.MISSING_PEER_DEPENDENCY,`${s.name} tried to access ${t} (a peer dependency) but it isn't provided by your application; this makes the require call ambiguous and unsound.\n\nRequired package: ${t} (via "${u}")\nRequired by: ${s.name}@${s.reference} (via ${h})\n${e.map(e=>`Ancestor breaking the chain: ${e.name}@${e.reference}\n`).join("")}\n`,{request:u,issuer:h,issuerLocator:Object.assign({},s),dependencyName:t,brokenAncestors:e}):k(v.MISSING_PEER_DEPENDENCY,`${s.name} tried to access ${t} (a peer dependency) but it isn't provided by its ancestors; this makes the require call ambiguous and unsound.\n\nRequired package: ${t} (via "${u}")\nRequired by: ${s.name}@${s.reference} (via ${h})\n${e.map(e=>`Ancestor breaking the chain: ${e.name}@${e.reference}\n`).join("")}\n`,{request:u,issuer:h,issuerLocator:Object.assign({},s),dependencyName:t,brokenAncestors:e})}else void 0===l&&(m=!a&&i.has(n)?I(s)?k(v.UNDECLARED_DEPENDENCY,`Your application tried to access ${t}. While this module is usually interpreted as a Node builtin, your resolver is running inside a non-Node resolution context where such builtins are ignored. Since ${t} isn't otherwise declared in your dependencies, this makes the require call ambiguous and unsound.\n\nRequired package: ${t} (via "${u}")\nRequired by: ${h}\n`,{request:u,issuer:h,dependencyName:t}):k(v.UNDECLARED_DEPENDENCY,`${s.name} tried to access ${t}. While this module is usually interpreted as a Node builtin, your resolver is running inside a non-Node resolution context where such builtins are ignored. Since ${t} isn't otherwise declared in ${s.name}'s dependencies, this makes the require call ambiguous and unsound.\n\nRequired package: ${t} (via "${u}")\nRequired by: ${h}\n`,{request:u,issuer:h,issuerLocator:Object.assign({},s),dependencyName:t}):I(s)?k(v.UNDECLARED_DEPENDENCY,`Your application tried to access ${t}, but it isn't declared in your dependencies; this makes the require call ambiguous and unsound.\n\nRequired package: ${t} (via "${u}")\nRequired by: ${h}\n`,{request:u,issuer:h,dependencyName:t}):k(v.UNDECLARED_DEPENDENCY,`${s.name} tried to access ${t}, but it isn't declared in its dependencies; this makes the require call ambiguous and unsound.\n\nRequired package: ${t} (via "${u}")\nRequired by: ${s.name}@${s.reference} (via ${h})\n`,{request:u,issuer:h,issuerLocator:Object.assign({},s),dependencyName:t}));if(null==l){if(null===C||null===m)throw m||new Error("Assertion failed: Expected an error to have been set");l=C;const e=m.message.replace(/\n.*/g,"");m.message=e,g.has(e)||(g.add(e),process.emitWarning(m))}const Q=Array.isArray(l)?{name:l[0],reference:l[1]}:{name:t,reference:l},b=d(Q);if(!b.packageLocation)throw k(v.MISSING_DEPENDENCY,`A dependency seems valid but didn't get installed for some reason. This might be caused by a partial install, such as dev vs prod.\n\nRequired package: ${Q.name}@${Q.reference} (via "${u}")\nRequired by: ${s.name}@${s.reference} (via ${h})\n`,{request:u,issuer:h,dependencyLocator:Object.assign({},Q)});const D=b.packageLocation;f=A?y.y1.join(D,A):D}else{if(y.y1.isAbsolute(n))f=y.y1.normalize(n);else{if(!o)throw k(v.API_ERROR,"The resolveToUnqualified function must be called with a valid issuer when the path isn't a builtin nor absolute",{request:u,issuer:h});const e=y.y1.resolve(o);f=o.match(s)?y.y1.normalize(y.y1.join(e,n)):y.y1.normalize(y.y1.join(y.y1.dirname(e),n))}w(f)}return y.y1.normalize(f)}function S(e,{extensions:r=Object.keys(D.Module._extensions)}={}){const n=[],i=function e(r,n,{extensions:i}){let A;try{n.push(r),A=t.fakeFs.statSync(r)}catch(e){}if(A&&!A.isDirectory())return t.fakeFs.realpathSync(r);if(A&&A.isDirectory()){let A,o;try{A=JSON.parse(t.fakeFs.readFileSync(y.y1.join(r,"package.json"),"utf8"))}catch(e){}if(A&&A.main&&(o=y.y1.resolve(r,A.main)),o&&o!==r){const t=e(o,n,{extensions:i});if(null!==t)return t}}for(let e=0,A=i.length;e`Rejected candidate: ${M(e)}\n`).join("")}`,{unqualifiedPath:t})}}return{VERSIONS:{std:3,resolveVirtual:1},topLevel:a,getLocator:(e,t)=>Array.isArray(t)?{name:t[0],reference:t[1]}:{name:e,reference:t},getDependencyTreeRoots:()=>[...e.dependencyTreeRoots],getPackageInformation:e=>{const t=m(e);if(null===t)return null;const r=y.cS.fromPortablePath(t.packageLocation);return{...t,packageLocation:r}},findPackageLocator:e=>w(y.cS.toPortablePath(e)),resolveToUnqualified:C("resolveToUnqualified",(e,t,r)=>{const n=null!==t?y.cS.toPortablePath(t):null,i=Q(y.cS.toPortablePath(e),n,r);return null===i?null:y.cS.fromPortablePath(i)}),resolveUnqualified:C("resolveUnqualified",(e,t)=>y.cS.fromPortablePath(S(y.cS.toPortablePath(e),t))),resolveRequest:C("resolveRequest",(e,t,r)=>{const n=null!==t?y.cS.toPortablePath(t):null,i=function(e,t,{considerBuiltins:r,extensions:n}={}){const i=Q(e,t,{considerBuiltins:r});if(null===i)return null;try{return S(i,{extensions:n})}catch(r){throw"QUALIFIED_PATH_RESOLUTION_FAILED"===r.pnpCode&&Object.assign(r.data,{request:M(e),issuer:t&&M(t)}),r}}(y.cS.toPortablePath(e),n,r);return null===i?null:y.cS.fromPortablePath(i)}),resolveVirtual:C("resolveVirtual",e=>{const t=function(e){const t=y.y1.normalize(e),r=b.p.resolveVirtual(t);return r!==t?r:null}(y.cS.toPortablePath(e));return null!==t?y.cS.fromPortablePath(t):null})}}(0,w.promisify)(B.readFile);const N=(e,t,r)=>F(Q(f(e),{basePath:t}),{fakeFs:r,pnpapiResolution:y.cS.join(t,".pnp.js")})},43982:(e,t,r)=>{"use strict";r.r(t),r.d(t,{execute:()=>T});var n,i=r(46009),A=r(56537),o=r(39725),s=r(55125),a=r(19347),c=r.n(a),g=r(12087),l=r(92413),u=r(67566),h=r.n(u);function f(){}!function(e){e[e.STDOUT=1]="STDOUT",e[e.STDERR=2]="STDERR"}(n||(n={}));let p=0;class C{constructor(e){this.stream=e}close(){}get(){return this.stream}}class d{constructor(){this.stream=null}close(){if(null===this.stream)throw new Error("Assertion failed: No stream attached");this.stream.end()}attach(e){this.stream=e}get(){if(null===this.stream)throw new Error("Assertion failed: No stream attached");return this.stream}}class I{constructor(e,t){this.stdin=null,this.stdout=null,this.stderr=null,this.pipe=null,this.ancestor=e,this.implementation=t}static start(e,{stdin:t,stdout:r,stderr:n}){const i=new I(null,e);return i.stdin=t,i.stdout=r,i.stderr=n,i}pipeTo(e,t=n.STDOUT){const r=new I(this,e),i=new d;return r.pipe=i,r.stdout=this.stdout,r.stderr=this.stderr,(t&n.STDOUT)===n.STDOUT?this.stdout=i:null!==this.ancestor&&(this.stderr=this.ancestor.stdout),(t&n.STDERR)===n.STDERR?this.stderr=i:null!==this.ancestor&&(this.stderr=this.ancestor.stderr),r}async exec(){const e=["ignore","ignore","ignore"];if(this.pipe)e[0]="pipe";else{if(null===this.stdin)throw new Error("Assertion failed: No input stream registered");e[0]=this.stdin.get()}let t,r;if(null===this.stdout)throw new Error("Assertion failed: No output stream registered");if(t=this.stdout,e[1]=t.get(),null===this.stderr)throw new Error("Assertion failed: No error stream registered");r=this.stderr,e[2]=r.get();const n=this.implementation(e);return this.pipe&&this.pipe.attach(n.stdin),await n.promise.then(e=>(t.close(),r.close(),e))}async run(){const e=[];for(let t=this;t;t=t.ancestor)e.push(t.exec());return(await Promise.all(e))[0]}}function E(e,t){return I.start(e,t)}function m(e,t={}){const r={...e,...t};return r.environment={...e.environment,...t.environment},r.variables={...e.variables,...t.variables},r}const B=new Map([["cd",async([e=(0,g.homedir)(),...t],r,n)=>{const o=i.y1.resolve(n.cwd,i.cS.toPortablePath(e));return(await A.xfs.statPromise(o)).isDirectory()?(n.cwd=o,0):(n.stderr.write("cd: not a directory\n"),1)}],["pwd",async(e,t,r)=>(r.stdout.write(i.cS.fromPortablePath(r.cwd)+"\n"),0)],["true",async(e,t,r)=>0],["false",async(e,t,r)=>1],["exit",async([e,...t],r,n)=>n.exitCode=parseInt(null!=e?e:n.variables["?"],10)],["echo",async(e,t,r)=>(r.stdout.write(e.join(" ")+"\n"),0)],["__ysh_run_procedure",async(e,t,r)=>{const n=r.procedures[e[0]];return await E(n,{stdin:new C(r.stdin),stdout:new C(r.stdout),stderr:new C(r.stderr)}).run()}],["__ysh_set_redirects",async(e,t,r)=>{let n=r.stdin,o=r.stdout;const s=r.stderr,a=[],c=[];let g=0;for(;"--"!==e[g];){const t=e[g++],n=Number(e[g++]),o=g+n;for(let n=g;nA.xfs.createReadStream(i.y1.resolve(r.cwd,i.cS.toPortablePath(e[n]))));break;case"<<<":a.push(()=>{const t=new l.PassThrough;return process.nextTick(()=>{t.write(e[n]+"\n"),t.end()}),t});break;case">":c.push(A.xfs.createWriteStream(i.y1.resolve(r.cwd,i.cS.toPortablePath(e[n]))));break;case">>":c.push(A.xfs.createWriteStream(i.y1.resolve(r.cwd,i.cS.toPortablePath(e[n])),{flags:"a"}))}}if(a.length>0){const e=new l.PassThrough;n=e;const t=r=>{if(r===a.length)e.end();else{const n=a[r]();n.pipe(e,{end:!1}),n.on("end",()=>{t(r+1)})}};t(0)}if(c.length>0){const e=new l.PassThrough;o=e;for(const t of c)e.pipe(t)}const u=await E(k(e.slice(g+1),t,r),{stdin:new C(n),stdout:new C(o),stderr:new C(s)}).run();return await Promise.all(c.map(e=>new Promise(t=>{e.on("close",()=>{t()}),e.end()}))),u}]]);async function w(e,t,r){const n=[],i=new l.PassThrough;return i.on("data",e=>n.push(e)),await x(e,t,m(r,{stdout:i})),Buffer.concat(n).toString().replace(/[\r\n]+$/,"")}async function y(e,t,r){const n=e.map(async e=>{const n=await S(e.args,t,r);return{name:e.name,value:n.join(" ")}});return(await Promise.all(n)).reduce((e,t)=>(e[t.name]=t.value,e),{})}function Q(e){return e.match(/[^ \r\n\t]+/g)||[]}async function v(e,t,r,n,i=n){switch(e.name){case"#":n(String(t.args.length));break;case"@":if(e.quoted)for(const e of t.args)i(e);else for(const e of t.args){const t=Q(e);for(let e=0;e=0&&ie+t,subtraction:(e,t)=>e-t,multiplication:(e,t)=>e*t,division:(e,t)=>Math.trunc(e/t)};async function D(e,t,r){if("number"===e.type){if(Number.isInteger(e.value))return e.value;throw new Error(`Invalid number: "${e.value}", only integers are allowed`)}if("variable"===e.type){const n=[];await v({...e,quoted:!0},t,r,e=>n.push(e));const i=Number(n.join(" "));return Number.isNaN(i)?D({type:"variable",name:n.join(" ")},t,r):D({type:"number",value:i},t,r)}return b[e.type](await D(e.left,t,r),await D(e.right,t,r))}async function S(e,t,r){const n=new Map,i=[];let A=[];const o=e=>{A.push(e)},s=()=>{A.length>0&&i.push(A.join("")),A=[]},a=e=>{o(e),s()},c=(e,t)=>{let r=n.get(e);void 0===r&&n.set(e,r=[]),r.push(t)};for(const n of e){switch(n.type){case"redirection":{const e=await S(n.args,t,r);for(const t of e)c(n.subtype,t)}break;case"argument":for(const e of n.segments)switch(e.type){case"text":o(e.text);break;case"glob":{const n=await t.glob.match(e.pattern,{cwd:r.cwd});if(!n.length)throw new Error(`No file matches found: "${e.pattern}". Note: Glob patterns currently only support files that exist on the filesystem (Help Wanted)`);for(const e of n.sort())a(e)}break;case"shell":{const n=await w(e.shell,t,r);if(e.quoted)o(n);else{const e=Q(n);for(let t=0;t0){const e=[];for(const[t,r]of n.entries())e.splice(e.length,0,t,String(r.length),...r);i.splice(0,0,"__ysh_set_redirects",...e,"--")}return i}function k(e,t,r){t.builtins.has(e[0])||(e=["command",...e]);const n=i.cS.fromPortablePath(r.cwd);let A=r.environment;void 0!==A.PWD&&(A={...A,PWD:n});const[o,...s]=e;if("command"===o)return function(e,t,r,n){return r=>{const i=r[0]instanceof l.Transform?"pipe":r[0],A=r[1]instanceof l.Transform?"pipe":r[1],o=r[2]instanceof l.Transform?"pipe":r[2],s=h()(e,t,{...n,stdio:[i,A,o]});return 0==p++&&process.on("SIGINT",f),r[0]instanceof l.Transform&&r[0].pipe(s.stdin),r[1]instanceof l.Transform&&s.stdout.pipe(r[1],{end:!1}),r[2]instanceof l.Transform&&s.stderr.pipe(r[2],{end:!1}),{stdin:s.stdin,promise:new Promise(t=>{s.on("error",n=>{switch(0==--p&&process.off("SIGINT",f),n.code){case"ENOENT":r[2].write(`command not found: ${e}\n`),t(127);break;case"EACCESS":r[2].write(`permission denied: ${e}\n`),t(128);break;default:r[2].write(`uncaught error: ${n.message}\n`),t(1)}}),s.on("exit",e=>{0==--p&&process.off("SIGINT",f),t(null!==e?e:129)})})}}}(s[0],s.slice(1),0,{cwd:n,env:A});const a=t.builtins.get(o);if(void 0===a)throw new Error(`Assertion failed: A builtin should exist for "${o}"`);return function(e){return t=>{const r="pipe"===t[0]?new l.PassThrough:t[0];return{stdin:r,promise:Promise.resolve().then(()=>e({stdin:r,stdout:t[1],stderr:t[2]}))}}}(async({stdin:e,stdout:n,stderr:i})=>(r.stdin=e,r.stdout=n,r.stderr=i,await a(s,t,r)))}function M(e,t,r){return n=>{const i=new l.PassThrough;return{stdin:i,promise:x(e,t,m(r,{stdin:i}))}}}function F(e,t,r){return n=>({stdin:new l.PassThrough,promise:x(e,t,r)})}function N(e,t,r,n){if(0===t.length)return e;{let i;do{i=String(Math.random())}while(Object.prototype.hasOwnProperty.call(n.procedures,i));return n.procedures={...n.procedures},n.procedures[i]=e,k([...t,"__ysh_run_procedure",i],r,n)}}async function R(e,t,r){let i=e,A=null,o=null;for(;i;){const e=i.then?{...r}:r;let s;switch(i.type){case"command":{const n=await S(i.args,t,r),A=await y(i.envs,t,r);s=i.envs.length?k(n,t,m(e,{environment:A})):k(n,t,e)}break;case"subshell":{const n=await S(i.args,t,r);s=N(M(i.subshell,t,e),n,t,e)}break;case"group":{const n=await S(i.args,t,r);s=N(F(i.group,t,e),n,t,e)}break;case"envs":{const n=await y(i.envs,t,r);e.environment={...e.environment,...n},s=k(["true"],t,e)}}if(void 0===s)throw new Error("Assertion failed: An action should have been generated");if(null===A)o=E(s,{stdin:new C(e.stdin),stdout:new C(e.stdout),stderr:new C(e.stderr)});else{if(null===o)throw new Error("The execution pipeline should have been setup");switch(A){case"|":o=o.pipeTo(s,n.STDOUT);break;case"|&":o=o.pipeTo(s,n.STDOUT|n.STDERR)}}i.then?(A=i.then.type,i=i.then.chain):i=null}if(null===o)throw new Error("Assertion failed: The execution pipeline should have been setup");return await o.run()}async function K(e,t,r){let n;const i=e=>{n=e,r.variables["?"]=String(e)};for(i(await R(e.chain,t,r));e.then;){if(null!==r.exitCode)return r.exitCode;switch(e.then.type){case"&&":0===n&&i(await R(e.then.line.chain,t,r));break;case"||":0!==n&&i(await R(e.then.line.chain,t,r));break;default:throw new Error(`Unsupported command type: "${e.then.type}"`)}e=e.then.line}return n}async function x(e,t,r){let n=0;for(const i of e){if(n=await K(i,t,r),null!==r.exitCode)return r.exitCode;r.variables["?"]=String(n)}return n}function L(e){switch(e.type){case"variable":return"@"===e.name||"#"===e.name||"*"===e.name||Number.isFinite(parseInt(e.name,10))||"defaultValue"in e&&!!e.defaultValue&&e.defaultValue.some(e=>P(e));case"arithmetic":return function e(t){switch(t.type){case"variable":return L(t);case"number":return!1;default:return e(t.left)||e(t.right)}}(e.arithmetic);case"shell":return U(e.shell);default:return!1}}function P(e){switch(e.type){case"redirection":return e.args.some(e=>P(e));case"argument":return e.segments.some(e=>L(e));default:throw new Error("Unreacheable")}}function U(e){return e.some(e=>{for(;e;){let t=e.chain;for(;t;){let e;switch(t.type){case"subshell":e=U(t.subshell);break;case"command":e=t.envs.some(e=>e.args.some(e=>P(e)))||t.args.some(e=>P(e))}if(e)return!0;if(!t.then)break;t=t.then.chain}if(!e.then)break;e=e.then.line}return!1})}async function T(e,t=[],{builtins:r={},cwd:n=i.cS.toPortablePath(process.cwd()),env:a=process.env,stdin:g=process.stdin,stdout:u=process.stdout,stderr:h=process.stderr,variables:f={},glob:p={isGlobPattern:c().isDynamicPattern,match:(e,{cwd:t,fs:r=A.xfs})=>c()(e,{cwd:i.cS.fromPortablePath(t),fs:new o.i(r)})}}={}){const C={};for(const[e,t]of Object.entries(a))void 0!==t&&(C[e]=t);const d=new Map(B);for(const[e,t]of Object.entries(r))d.set(e,t);null===g&&(g=new l.PassThrough).end();const I=(0,s.parseShell)(e,p);if(!U(I)&&I.length>0&&t.length>0){let e=I[I.length-1];for(;e.then;)e=e.then.line;let r=e.chain;for(;r.then;)r=r.then.chain;"command"===r.type&&(r.args=r.args.concat(t.map(e=>({type:"argument",segments:[{type:"text",text:e}]}))))}return await x(I,{args:t,builtins:d,initialStdin:g,initialStdout:u,initialStderr:h,glob:p},{cwd:n,environment:C,exitCode:null,procedures:{},stdin:g,stdout:u,stderr:h,variables:Object.assign({},f,{"?":0})})}},45330:(e,t,r)=>{t.e=()=>({modules:new Map([["@yarnpkg/cli",r(95397)],["@yarnpkg/core",r(5624)],["@yarnpkg/fslib",r(56537)],["@yarnpkg/libzip",r(29486)],["@yarnpkg/parsers",r(55125)],["@yarnpkg/shell",r(43982)],["clipanion",r(93103)],["semver",r(53887)],["yup",r(15966)],["@yarnpkg/plugin-essentials",r(61736)],["@yarnpkg/plugin-compat",r(80150)],["@yarnpkg/plugin-dlx",r(10420)],["@yarnpkg/plugin-file",r(74802)],["@yarnpkg/plugin-git",r(10284)],["@yarnpkg/plugin-github",r(23599)],["@yarnpkg/plugin-http",r(21754)],["@yarnpkg/plugin-init",r(74230)],["@yarnpkg/plugin-link",r(86161)],["@yarnpkg/plugin-node-modules",r(8149)],["@yarnpkg/plugin-npm",r(86717)],["@yarnpkg/plugin-npm-cli",r(94573)],["@yarnpkg/plugin-pack",r(5973)],["@yarnpkg/plugin-patch",r(5698)],["@yarnpkg/plugin-pnp",r(57436)]]),plugins:new Set(["@yarnpkg/plugin-essentials","@yarnpkg/plugin-compat","@yarnpkg/plugin-dlx","@yarnpkg/plugin-file","@yarnpkg/plugin-git","@yarnpkg/plugin-github","@yarnpkg/plugin-http","@yarnpkg/plugin-init","@yarnpkg/plugin-link","@yarnpkg/plugin-node-modules","@yarnpkg/plugin-npm","@yarnpkg/plugin-npm-cli","@yarnpkg/plugin-pack","@yarnpkg/plugin-patch","@yarnpkg/plugin-pnp"])})},29148:(e,t,r)=>{const n=r(74988),i=/^(.*?)(\x1b\[[^m]+m|\x1b\]8;;.*?(\x1b\\|\u0007))/,A=new n;e.exports=(e,t=0,r=e.length)=>{if(t<0||r<0)throw new RangeError("Negative indices aren't supported by this implementation");const n=r-t;let o="",s=0,a=0;for(;e.length>0;){const r=e.match(i)||[e,e,void 0];let c=A.splitGraphemes(r[1]);const g=Math.min(t-s,c.length);c=c.slice(g);const l=Math.min(n-a,c.length);o+=c.slice(0,l).join(""),s+=g,a+=l,void 0!==r[2]&&(o+=r[2]),e=e.slice(r[0].length)}return o}},72912:e=>{function t(){return e.exports=t=Object.assign||function(e){for(var t=1;t{e.exports=function(e){return e&&e.__esModule?e:{default:e}}},19228:(e,t,r)=>{var n=r(54694);function i(){if("function"!=typeof WeakMap)return null;var e=new WeakMap;return i=function(){return e},e}e.exports=function(e){if(e&&e.__esModule)return e;if(null===e||"object"!==n(e)&&"function"!=typeof e)return{default:e};var t=i();if(t&&t.has(e))return t.get(e);var r={},A=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var o in e)if(Object.prototype.hasOwnProperty.call(e,o)){var s=A?Object.getOwnPropertyDescriptor(e,o):null;s&&(s.get||s.set)?Object.defineProperty(r,o,s):r[o]=e[o]}return r.default=e,t&&t.set(e,r),r}},74943:e=>{e.exports=function(e,t){if(null==e)return{};var r,n,i={},A=Object.keys(e);for(n=0;n=0||(i[r]=e[r]);return i}},62407:e=>{e.exports=function(e,t){return t||(t=e.slice(0)),e.raw=t,e}},54694:e=>{function t(r){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=t=function(e){return typeof e}:e.exports=t=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t(r)}e.exports=t},96117:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(35747);t.FILE_SYSTEM_ADAPTER={lstat:n.lstat,stat:n.stat,lstatSync:n.lstatSync,statSync:n.statSync,readdir:n.readdir,readdirSync:n.readdirSync},t.createFileSystemAdapter=function(e){return void 0===e?t.FILE_SYSTEM_ADAPTER:Object.assign(Object.assign({},t.FILE_SYSTEM_ADAPTER),e)}},79774:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=process.versions.node.split("."),n=parseInt(r[0],10),i=parseInt(r[1],10),A=n>10,o=10===n&&i>=10;t.IS_SUPPORT_READDIR_WITH_FILE_TYPES=A||o},85670:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(31020),i=r(35516),A=r(38844);function o(e={}){return e instanceof A.default?e:new A.default(e)}t.Settings=A.default,t.scandir=function(e,t,r){if("function"==typeof t)return n.read(e,o(),t);n.read(e,o(t),r)},t.scandirSync=function(e,t){const r=o(t);return i.read(e,r)}},31020:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(53403),i=r(69078),A=r(79774),o=r(65225);function s(e,t,r){t.fs.readdir(e,{withFileTypes:!0},(n,A)=>{if(null!==n)return c(r,n);const s=A.map(r=>({dirent:r,name:r.name,path:`${e}${t.pathSegmentSeparator}${r.name}`}));if(!t.followSymbolicLinks)return g(r,s);const a=s.map(e=>function(e,t){return r=>{if(!e.dirent.isSymbolicLink())return r(null,e);t.fs.stat(e.path,(n,i)=>null!==n?t.throwErrorOnBrokenSymbolicLink?r(n):r(null,e):(e.dirent=o.fs.createDirentFromStats(e.name,i),r(null,e)))}}(e,t));i(a,(e,t)=>{if(null!==e)return c(r,e);g(r,t)})})}function a(e,t,r){t.fs.readdir(e,(A,s)=>{if(null!==A)return c(r,A);const a=s.map(r=>`${e}${t.pathSegmentSeparator}${r}`),l=a.map(e=>r=>n.stat(e,t.fsStatSettings,r));i(l,(e,n)=>{if(null!==e)return c(r,e);const i=[];s.forEach((e,r)=>{const A=n[r],s={name:e,path:a[r],dirent:o.fs.createDirentFromStats(e,A)};t.stats&&(s.stats=A),i.push(s)}),g(r,i)})})}function c(e,t){e(t)}function g(e,t){e(null,t)}t.read=function(e,t,r){return!t.stats&&A.IS_SUPPORT_READDIR_WITH_FILE_TYPES?s(e,t,r):a(e,t,r)},t.readdirWithFileTypes=s,t.readdir=a},35516:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(53403),i=r(79774),A=r(65225);function o(e,t){return t.fs.readdirSync(e,{withFileTypes:!0}).map(r=>{const n={dirent:r,name:r.name,path:`${e}${t.pathSegmentSeparator}${r.name}`};if(n.dirent.isSymbolicLink()&&t.followSymbolicLinks)try{const e=t.fs.statSync(n.path);n.dirent=A.fs.createDirentFromStats(n.name,e)}catch(e){if(t.throwErrorOnBrokenSymbolicLink)throw e}return n})}function s(e,t){return t.fs.readdirSync(e).map(r=>{const i=`${e}${t.pathSegmentSeparator}${r}`,o=n.statSync(i,t.fsStatSettings),s={name:r,path:i,dirent:A.fs.createDirentFromStats(r,o)};return t.stats&&(s.stats=o),s})}t.read=function(e,t){return!t.stats&&i.IS_SUPPORT_READDIR_WITH_FILE_TYPES?o(e,t):s(e,t)},t.readdirWithFileTypes=o,t.readdir=s},38844:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(85622),i=r(53403),A=r(96117);t.default=class{constructor(e={}){this._options=e,this.followSymbolicLinks=this._getValue(this._options.followSymbolicLinks,!1),this.fs=A.createFileSystemAdapter(this._options.fs),this.pathSegmentSeparator=this._getValue(this._options.pathSegmentSeparator,n.sep),this.stats=this._getValue(this._options.stats,!1),this.throwErrorOnBrokenSymbolicLink=this._getValue(this._options.throwErrorOnBrokenSymbolicLink,!0),this.fsStatSettings=new i.Settings({followSymbolicLink:this.followSymbolicLinks,fs:this.fs,throwErrorOnBrokenSymbolicLink:this.throwErrorOnBrokenSymbolicLink})}_getValue(e,t){return void 0===e?t:e}}},72156:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});class r{constructor(e,t){this.name=e,this.isBlockDevice=t.isBlockDevice.bind(t),this.isCharacterDevice=t.isCharacterDevice.bind(t),this.isDirectory=t.isDirectory.bind(t),this.isFIFO=t.isFIFO.bind(t),this.isFile=t.isFile.bind(t),this.isSocket=t.isSocket.bind(t),this.isSymbolicLink=t.isSymbolicLink.bind(t)}}t.createDirentFromStats=function(e,t){return new r(e,t)}},65225:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(72156);t.fs=n},71208:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(35747);t.FILE_SYSTEM_ADAPTER={lstat:n.lstat,stat:n.stat,lstatSync:n.lstatSync,statSync:n.statSync},t.createFileSystemAdapter=function(e){return void 0===e?t.FILE_SYSTEM_ADAPTER:Object.assign(Object.assign({},t.FILE_SYSTEM_ADAPTER),e)}},53403:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(17790),i=r(34846),A=r(92687);function o(e={}){return e instanceof A.default?e:new A.default(e)}t.Settings=A.default,t.stat=function(e,t,r){if("function"==typeof t)return n.read(e,o(),t);n.read(e,o(t),r)},t.statSync=function(e,t){const r=o(t);return i.read(e,r)}},17790:(e,t)=>{"use strict";function r(e,t){e(t)}function n(e,t){e(null,t)}Object.defineProperty(t,"__esModule",{value:!0}),t.read=function(e,t,i){t.fs.lstat(e,(A,o)=>null!==A?r(i,A):o.isSymbolicLink()&&t.followSymbolicLink?void t.fs.stat(e,(e,A)=>{if(null!==e)return t.throwErrorOnBrokenSymbolicLink?r(i,e):n(i,o);t.markSymbolicLink&&(A.isSymbolicLink=()=>!0),n(i,A)}):n(i,o))}},34846:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.read=function(e,t){const r=t.fs.lstatSync(e);if(!r.isSymbolicLink()||!t.followSymbolicLink)return r;try{const r=t.fs.statSync(e);return t.markSymbolicLink&&(r.isSymbolicLink=()=>!0),r}catch(e){if(!t.throwErrorOnBrokenSymbolicLink)return r;throw e}}},92687:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(71208);t.default=class{constructor(e={}){this._options=e,this.followSymbolicLink=this._getValue(this._options.followSymbolicLink,!0),this.fs=n.createFileSystemAdapter(this._options.fs),this.markSymbolicLink=this._getValue(this._options.markSymbolicLink,!1),this.throwErrorOnBrokenSymbolicLink=this._getValue(this._options.throwErrorOnBrokenSymbolicLink,!0)}_getValue(e,t){return void 0===e?t:e}}},72897:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(42369),i=r(27696),A=r(22111),o=r(14954);function s(e={}){return e instanceof o.default?e:new o.default(e)}t.Settings=o.default,t.walk=function(e,t,r){if("function"==typeof t)return new n.default(e,s()).read(t);new n.default(e,s(t)).read(r)},t.walkSync=function(e,t){const r=s(t);return new A.default(e,r).read()},t.walkStream=function(e,t){const r=s(t);return new i.default(e,r).read()}},42369:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(98566);t.default=class{constructor(e,t){this._root=e,this._settings=t,this._reader=new n.default(this._root,this._settings),this._storage=new Set}read(e){this._reader.onError(t=>{!function(e,t){e(t)}(e,t)}),this._reader.onEntry(e=>{this._storage.add(e)}),this._reader.onEnd(()=>{!function(e,t){e(null,t)}(e,[...this._storage])}),this._reader.read()}}},27696:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(92413),i=r(98566);t.default=class{constructor(e,t){this._root=e,this._settings=t,this._reader=new i.default(this._root,this._settings),this._stream=new n.Readable({objectMode:!0,read:()=>{},destroy:this._reader.destroy.bind(this._reader)})}read(){return this._reader.onError(e=>{this._stream.emit("error",e)}),this._reader.onEntry(e=>{this._stream.push(e)}),this._reader.onEnd(()=>{this._stream.push(null)}),this._reader.read(),this._stream}}},22111:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(97835);t.default=class{constructor(e,t){this._root=e,this._settings=t,this._reader=new n.default(this._root,this._settings)}read(){return this._reader.read()}}},98566:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(28614),i=r(85670),A=r(98360),o=r(10750),s=r(75504);class a extends s.default{constructor(e,t){super(e,t),this._settings=t,this._scandir=i.scandir,this._emitter=new n.EventEmitter,this._queue=A(this._worker.bind(this),this._settings.concurrency),this._isFatalError=!1,this._isDestroyed=!1,this._queue.drain=()=>{this._isFatalError||this._emitter.emit("end")}}read(){return this._isFatalError=!1,this._isDestroyed=!1,setImmediate(()=>{this._pushToQueue(this._root,this._settings.basePath)}),this._emitter}destroy(){if(this._isDestroyed)throw new Error("The reader is already destroyed");this._isDestroyed=!0,this._queue.killAndDrain()}onEntry(e){this._emitter.on("entry",e)}onError(e){this._emitter.once("error",e)}onEnd(e){this._emitter.once("end",e)}_pushToQueue(e,t){const r={directory:e,base:t};this._queue.push(r,e=>{null!==e&&this._handleError(e)})}_worker(e,t){this._scandir(e.directory,this._settings.fsScandirSettings,(r,n)=>{if(null!==r)return t(r,void 0);for(const t of n)this._handleEntry(t,e.base);t(null,void 0)})}_handleError(e){o.isFatalError(this._settings,e)&&(this._isFatalError=!0,this._isDestroyed=!0,this._emitter.emit("error",e))}_handleEntry(e,t){if(this._isDestroyed||this._isFatalError)return;const r=e.path;void 0!==t&&(e.path=o.joinPathSegments(t,e.name,this._settings.pathSegmentSeparator)),o.isAppliedFilter(this._settings.entryFilter,e)&&this._emitEntry(e),e.dirent.isDirectory()&&o.isAppliedFilter(this._settings.deepFilter,e)&&this._pushToQueue(r,e.path)}_emitEntry(e){this._emitter.emit("entry",e)}}t.default=a},10750:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isFatalError=function(e,t){return null===e.errorFilter||!e.errorFilter(t)},t.isAppliedFilter=function(e,t){return null===e||e(t)},t.replacePathSegmentSeparator=function(e,t){return e.split(/[\\/]/).join(t)},t.joinPathSegments=function(e,t,r){return""===e?t:e+r+t}},75504:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(10750);t.default=class{constructor(e,t){this._root=e,this._settings=t,this._root=n.replacePathSegmentSeparator(e,t.pathSegmentSeparator)}}},97835:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(85670),i=r(10750),A=r(75504);class o extends A.default{constructor(){super(...arguments),this._scandir=n.scandirSync,this._storage=new Set,this._queue=new Set}read(){return this._pushToQueue(this._root,this._settings.basePath),this._handleQueue(),[...this._storage]}_pushToQueue(e,t){this._queue.add({directory:e,base:t})}_handleQueue(){for(const e of this._queue.values())this._handleDirectory(e.directory,e.base)}_handleDirectory(e,t){try{const r=this._scandir(e,this._settings.fsScandirSettings);for(const e of r)this._handleEntry(e,t)}catch(e){this._handleError(e)}}_handleError(e){if(i.isFatalError(this._settings,e))throw e}_handleEntry(e,t){const r=e.path;void 0!==t&&(e.path=i.joinPathSegments(t,e.name,this._settings.pathSegmentSeparator)),i.isAppliedFilter(this._settings.entryFilter,e)&&this._pushToStorage(e),e.dirent.isDirectory()&&i.isAppliedFilter(this._settings.deepFilter,e)&&this._pushToQueue(r,e.path)}_pushToStorage(e){this._storage.add(e)}}t.default=o},14954:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(85622),i=r(85670);t.default=class{constructor(e={}){this._options=e,this.basePath=this._getValue(this._options.basePath,void 0),this.concurrency=this._getValue(this._options.concurrency,1/0),this.deepFilter=this._getValue(this._options.deepFilter,null),this.entryFilter=this._getValue(this._options.entryFilter,null),this.errorFilter=this._getValue(this._options.errorFilter,null),this.pathSegmentSeparator=this._getValue(this._options.pathSegmentSeparator,n.sep),this.fsScandirSettings=new i.Settings({followSymbolicLinks:this._options.followSymbolicLinks,fs:this._options.fs,pathSegmentSeparator:this._options.pathSegmentSeparator,stats:this._options.stats,throwErrorOnBrokenSymbolicLink:this._options.throwErrorOnBrokenSymbolicLink})}_getValue(e,t){return void 0===e?t:e}}},8189:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const{toString:r}=Object.prototype,n=e=>t=>typeof t===e,i=e=>{const t=r.call(e).slice(8,-1);if(t)return t},A=e=>t=>i(t)===e;function o(e){switch(e){case null:return"null";case!0:case!1:return"boolean"}switch(typeof e){case"undefined":return"undefined";case"string":return"string";case"number":return"number";case"bigint":return"bigint";case"symbol":return"symbol"}if(o.function_(e))return"Function";if(o.observable(e))return"Observable";if(o.array(e))return"Array";if(o.buffer(e))return"Buffer";const t=i(e);if(t)return t;if(e instanceof String||e instanceof Boolean||e instanceof Number)throw new TypeError("Please don't use object wrappers for primitive types");return"Object"}o.undefined=n("undefined"),o.string=n("string");const s=n("number");o.number=e=>s(e)&&!o.nan(e),o.bigint=n("bigint"),o.function_=n("function"),o.null_=e=>null===e,o.class_=e=>o.function_(e)&&e.toString().startsWith("class "),o.boolean=e=>!0===e||!1===e,o.symbol=n("symbol"),o.numericString=e=>o.string(e)&&!o.emptyStringOrWhitespace(e)&&!Number.isNaN(Number(e)),o.array=Array.isArray,o.buffer=e=>{var t,r,n,i;return null!==(i=null===(n=null===(r=null===(t=e)||void 0===t?void 0:t.constructor)||void 0===r?void 0:r.isBuffer)||void 0===n?void 0:n.call(r,e))&&void 0!==i&&i},o.nullOrUndefined=e=>o.null_(e)||o.undefined(e),o.object=e=>!o.null_(e)&&("object"==typeof e||o.function_(e)),o.iterable=e=>{var t;return o.function_(null===(t=e)||void 0===t?void 0:t[Symbol.iterator])},o.asyncIterable=e=>{var t;return o.function_(null===(t=e)||void 0===t?void 0:t[Symbol.asyncIterator])},o.generator=e=>o.iterable(e)&&o.function_(e.next)&&o.function_(e.throw),o.asyncGenerator=e=>o.asyncIterable(e)&&o.function_(e.next)&&o.function_(e.throw),o.nativePromise=e=>A("Promise")(e);o.promise=e=>o.nativePromise(e)||(e=>{var t,r;return o.function_(null===(t=e)||void 0===t?void 0:t.then)&&o.function_(null===(r=e)||void 0===r?void 0:r.catch)})(e),o.generatorFunction=A("GeneratorFunction"),o.asyncGeneratorFunction=e=>"AsyncGeneratorFunction"===i(e),o.asyncFunction=e=>"AsyncFunction"===i(e),o.boundFunction=e=>o.function_(e)&&!e.hasOwnProperty("prototype"),o.regExp=A("RegExp"),o.date=A("Date"),o.error=A("Error"),o.map=e=>A("Map")(e),o.set=e=>A("Set")(e),o.weakMap=e=>A("WeakMap")(e),o.weakSet=e=>A("WeakSet")(e),o.int8Array=A("Int8Array"),o.uint8Array=A("Uint8Array"),o.uint8ClampedArray=A("Uint8ClampedArray"),o.int16Array=A("Int16Array"),o.uint16Array=A("Uint16Array"),o.int32Array=A("Int32Array"),o.uint32Array=A("Uint32Array"),o.float32Array=A("Float32Array"),o.float64Array=A("Float64Array"),o.bigInt64Array=A("BigInt64Array"),o.bigUint64Array=A("BigUint64Array"),o.arrayBuffer=A("ArrayBuffer"),o.sharedArrayBuffer=A("SharedArrayBuffer"),o.dataView=A("DataView"),o.directInstanceOf=(e,t)=>Object.getPrototypeOf(e)===t.prototype,o.urlInstance=e=>A("URL")(e),o.urlString=e=>{if(!o.string(e))return!1;try{return new URL(e),!0}catch(e){return!1}},o.truthy=e=>Boolean(e),o.falsy=e=>!e,o.nan=e=>Number.isNaN(e);const a=new Set(["undefined","string","number","bigint","boolean","symbol"]);o.primitive=e=>o.null_(e)||a.has(typeof e),o.integer=e=>Number.isInteger(e),o.safeInteger=e=>Number.isSafeInteger(e),o.plainObject=e=>{if("Object"!==i(e))return!1;const t=Object.getPrototypeOf(e);return null===t||t===Object.getPrototypeOf({})};const c=new Set(["Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","BigInt64Array","BigUint64Array"]);o.typedArray=e=>{const t=i(e);return void 0!==t&&c.has(t)};o.arrayLike=e=>!o.nullOrUndefined(e)&&!o.function_(e)&&(e=>o.safeInteger(e)&&e>=0)(e.length),o.inRange=(e,t)=>{if(o.number(t))return e>=Math.min(0,t)&&e<=Math.max(t,0);if(o.array(t)&&2===t.length)return e>=Math.min(...t)&&e<=Math.max(...t);throw new TypeError("Invalid range: "+JSON.stringify(t))};const g=["innerHTML","ownerDocument","style","attributes","nodeValue"];o.domElement=e=>o.object(e)&&1===e.nodeType&&o.string(e.nodeName)&&!o.plainObject(e)&&g.every(t=>t in e),o.observable=e=>{var t,r,n,i;return!!e&&(e===(null===(r=(t=e)[Symbol.observable])||void 0===r?void 0:r.call(t))||e===(null===(i=(n=e)["@@observable"])||void 0===i?void 0:i.call(n)))},o.nodeStream=e=>o.object(e)&&o.function_(e.pipe)&&!o.observable(e),o.infinite=e=>e===1/0||e===-1/0;const l=e=>t=>o.integer(t)&&Math.abs(t%2)===e;o.evenInteger=l(0),o.oddInteger=l(1),o.emptyArray=e=>o.array(e)&&0===e.length,o.nonEmptyArray=e=>o.array(e)&&e.length>0,o.emptyString=e=>o.string(e)&&0===e.length,o.nonEmptyString=e=>o.string(e)&&e.length>0;o.emptyStringOrWhitespace=e=>o.emptyString(e)||(e=>o.string(e)&&!/\S/.test(e))(e),o.emptyObject=e=>o.object(e)&&!o.map(e)&&!o.set(e)&&0===Object.keys(e).length,o.nonEmptyObject=e=>o.object(e)&&!o.map(e)&&!o.set(e)&&Object.keys(e).length>0,o.emptySet=e=>o.set(e)&&0===e.size,o.nonEmptySet=e=>o.set(e)&&e.size>0,o.emptyMap=e=>o.map(e)&&0===e.size,o.nonEmptyMap=e=>o.map(e)&&e.size>0;const u=(e,t,r)=>{if(!o.function_(t))throw new TypeError("Invalid predicate: "+JSON.stringify(t));if(0===r.length)throw new TypeError("Invalid number of values");return e.call(r,t)};o.any=(e,...t)=>(o.array(e)?e:[e]).some(e=>u(Array.prototype.some,e,t)),o.all=(e,...t)=>u(Array.prototype.every,e,t);const h=(e,t,r)=>{if(!e)throw new TypeError(`Expected value which is \`${t}\`, received value of type \`${o(r)}\`.`)};t.assert={undefined:e=>h(o.undefined(e),"undefined",e),string:e=>h(o.string(e),"string",e),number:e=>h(o.number(e),"number",e),bigint:e=>h(o.bigint(e),"bigint",e),function_:e=>h(o.function_(e),"Function",e),null_:e=>h(o.null_(e),"null",e),class_:e=>h(o.class_(e),"Class",e),boolean:e=>h(o.boolean(e),"boolean",e),symbol:e=>h(o.symbol(e),"symbol",e),numericString:e=>h(o.numericString(e),"string with a number",e),array:e=>h(o.array(e),"Array",e),buffer:e=>h(o.buffer(e),"Buffer",e),nullOrUndefined:e=>h(o.nullOrUndefined(e),"null or undefined",e),object:e=>h(o.object(e),"Object",e),iterable:e=>h(o.iterable(e),"Iterable",e),asyncIterable:e=>h(o.asyncIterable(e),"AsyncIterable",e),generator:e=>h(o.generator(e),"Generator",e),asyncGenerator:e=>h(o.asyncGenerator(e),"AsyncGenerator",e),nativePromise:e=>h(o.nativePromise(e),"native Promise",e),promise:e=>h(o.promise(e),"Promise",e),generatorFunction:e=>h(o.generatorFunction(e),"GeneratorFunction",e),asyncGeneratorFunction:e=>h(o.asyncGeneratorFunction(e),"AsyncGeneratorFunction",e),asyncFunction:e=>h(o.asyncFunction(e),"AsyncFunction",e),boundFunction:e=>h(o.boundFunction(e),"Function",e),regExp:e=>h(o.regExp(e),"RegExp",e),date:e=>h(o.date(e),"Date",e),error:e=>h(o.error(e),"Error",e),map:e=>h(o.map(e),"Map",e),set:e=>h(o.set(e),"Set",e),weakMap:e=>h(o.weakMap(e),"WeakMap",e),weakSet:e=>h(o.weakSet(e),"WeakSet",e),int8Array:e=>h(o.int8Array(e),"Int8Array",e),uint8Array:e=>h(o.uint8Array(e),"Uint8Array",e),uint8ClampedArray:e=>h(o.uint8ClampedArray(e),"Uint8ClampedArray",e),int16Array:e=>h(o.int16Array(e),"Int16Array",e),uint16Array:e=>h(o.uint16Array(e),"Uint16Array",e),int32Array:e=>h(o.int32Array(e),"Int32Array",e),uint32Array:e=>h(o.uint32Array(e),"Uint32Array",e),float32Array:e=>h(o.float32Array(e),"Float32Array",e),float64Array:e=>h(o.float64Array(e),"Float64Array",e),bigInt64Array:e=>h(o.bigInt64Array(e),"BigInt64Array",e),bigUint64Array:e=>h(o.bigUint64Array(e),"BigUint64Array",e),arrayBuffer:e=>h(o.arrayBuffer(e),"ArrayBuffer",e),sharedArrayBuffer:e=>h(o.sharedArrayBuffer(e),"SharedArrayBuffer",e),dataView:e=>h(o.dataView(e),"DataView",e),urlInstance:e=>h(o.urlInstance(e),"URL",e),urlString:e=>h(o.urlString(e),"string with a URL",e),truthy:e=>h(o.truthy(e),"truthy",e),falsy:e=>h(o.falsy(e),"falsy",e),nan:e=>h(o.nan(e),"NaN",e),primitive:e=>h(o.primitive(e),"primitive",e),integer:e=>h(o.integer(e),"integer",e),safeInteger:e=>h(o.safeInteger(e),"integer",e),plainObject:e=>h(o.plainObject(e),"plain object",e),typedArray:e=>h(o.typedArray(e),"TypedArray",e),arrayLike:e=>h(o.arrayLike(e),"array-like",e),domElement:e=>h(o.domElement(e),"Element",e),observable:e=>h(o.observable(e),"Observable",e),nodeStream:e=>h(o.nodeStream(e),"Node.js Stream",e),infinite:e=>h(o.infinite(e),"infinite number",e),emptyArray:e=>h(o.emptyArray(e),"empty array",e),nonEmptyArray:e=>h(o.nonEmptyArray(e),"non-empty array",e),emptyString:e=>h(o.emptyString(e),"empty string",e),nonEmptyString:e=>h(o.nonEmptyString(e),"non-empty string",e),emptyStringOrWhitespace:e=>h(o.emptyStringOrWhitespace(e),"empty string or whitespace",e),emptyObject:e=>h(o.emptyObject(e),"empty object",e),nonEmptyObject:e=>h(o.nonEmptyObject(e),"non-empty object",e),emptySet:e=>h(o.emptySet(e),"empty set",e),nonEmptySet:e=>h(o.nonEmptySet(e),"non-empty set",e),emptyMap:e=>h(o.emptyMap(e),"empty map",e),nonEmptyMap:e=>h(o.nonEmptyMap(e),"non-empty map",e),evenInteger:e=>h(o.evenInteger(e),"even integer",e),oddInteger:e=>h(o.oddInteger(e),"odd integer",e),directInstanceOf:(e,t)=>h(o.directInstanceOf(e,t),"T",e),inRange:(e,t)=>h(o.inRange(e,t),"in range",e),any:(e,...t)=>h(o.any(e,...t),"predicate returns truthy for any value",t),all:(e,...t)=>h(o.all(e,...t),"predicate returns truthy for all values",t)},Object.defineProperties(o,{class:{value:o.class_},function:{value:o.function_},null:{value:o.null_}}),Object.defineProperties(t.assert,{class:{value:t.assert.class_},function:{value:t.assert.function_},null:{value:t.assert.null_}}),t.default=o,e.exports=o,e.exports.default=o,e.exports.assert=t.assert},98298:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(93121),i=Number(process.versions.node.split(".")[0]),A=e=>{const t={start:Date.now(),socket:void 0,lookup:void 0,connect:void 0,secureConnect:void 0,upload:void 0,response:void 0,end:void 0,error:void 0,abort:void 0,phases:{wait:void 0,dns:void 0,tcp:void 0,tls:void 0,request:void 0,firstByte:void 0,download:void 0,total:void 0}};e.timings=t;const r=e=>{const r=e.emit.bind(e);e.emit=(n,...i)=>("error"===n&&(t.error=Date.now(),t.phases.total=t.error-t.start,e.emit=r),r(n,...i))};r(e),e.prependOnceListener("abort",()=>{t.abort=Date.now(),(!t.response||i>=13)&&(t.phases.total=Date.now()-t.start)});const A=e=>{t.socket=Date.now(),t.phases.wait=t.socket-t.start;const r=()=>{t.lookup=Date.now(),t.phases.dns=t.lookup-t.socket};e.prependOnceListener("lookup",r),n.default(e,{connect:()=>{t.connect=Date.now(),void 0===t.lookup&&(e.removeListener("lookup",r),t.lookup=t.connect,t.phases.dns=t.lookup-t.socket),t.phases.tcp=t.connect-t.lookup},secureConnect:()=>{t.secureConnect=Date.now(),t.phases.tls=t.secureConnect-t.connect}})};e.socket?A(e.socket):e.prependOnceListener("socket",A);const o=()=>{var e;t.upload=Date.now(),t.phases.request=t.upload-(null!=(e=t.secureConnect)?e:t.connect)};return("boolean"==typeof e.writableFinished?!e.writableFinished:!e.finished||0!==e.outputSize||e.socket&&0!==e.socket.writableLength)?e.prependOnceListener("finish",o):o(),e.prependOnceListener("response",e=>{t.response=Date.now(),t.phases.firstByte=t.response-t.upload,e.timings=t,r(e),e.prependOnceListener("end",()=>{t.end=Date.now(),t.phases.download=t.end-t.response,t.phases.total=t.end-t.start})}),t};t.default=A,e.exports=A,e.exports.default=A},58069:(e,t,r)=>{"use strict";l.ifExists=function(e,t,r){return l(e,t,r).catch(()=>{})};const n=r(31669),i=r(46227),A=r(85622),o=r(97369),s=/^#!\s*(?:\/usr\/bin\/env)?\s*([^ \t]+)(.*)$/,a={createPwshFile:!0,createCmdFile:o(),fs:r(35747)},c=new Map([[".js","node"],[".cmd","cmd"],[".bat","cmd"],[".ps1","pwsh"],[".sh","sh"]]);function g(e){const t={...a,...e},r=t.fs;return t.fs_={chmod:r.chmod?n.promisify(r.chmod):async()=>{},stat:n.promisify(r.stat),unlink:n.promisify(r.unlink),readFile:n.promisify(r.readFile),writeFile:n.promisify(r.writeFile)},t}async function l(e,t,r){const n=g(r);await n.fs_.stat(e),await async function(e,t,r){const n=await async function(e,t){const r=await t.fs_.readFile(e,"utf8"),n=r.trim().split(/\r*\n/)[0].match(s);if(!n){const t=A.extname(e).toLowerCase();return{program:c.get(t)||null,additionalArgs:""}}return{program:n[1],additionalArgs:n[2]}}(e,r);return await function(e,t){return i(A.dirname(e),{fs:t.fs})}(t,r),function(e,t,r,n){const i=g(n),A=[{generator:h,extension:""}];i.createCmdFile&&A.push({generator:u,extension:".cmd"});i.createPwshFile&&A.push({generator:f,extension:".ps1"});return Promise.all(A.map(n=>async function(e,t,r,n,i){const A=i.preserveSymlinks?"--preserve-symlinks":"",o=[r.additionalArgs,A].filter(e=>e).join(" ");return i=Object.assign({},i,{prog:r.program,args:o}),await function(e,t){return function(e,t){return t.fs_.unlink(e).catch(()=>{})}(e,t)}(t,i),await i.fs_.writeFile(t,n(e,t,i),"utf8"),function(e,t){return function(e,t){return t.fs_.chmod(e,493)}(e,t)}(t,i)}(e,t+n.extension,r,n.generator,i)))}(e,t,n,r)}(e,t,n)}function u(e,t,r){let n=A.relative(A.dirname(t),e).split("/").join("\\");const i=A.isAbsolute(n)?`"${n}"`:`"%~dp0\\${n}"`;let o,s=r.prog,a=r.args||"";const c=p(r.nodePath).win32;s?(o=`"%~dp0\\${s}.exe"`,n=i):(s=i,a="",n="");let g=r.progArgs?r.progArgs.join(" ")+" ":"",l=c?`@SET NODE_PATH=${c}\r\n`:"";return l+=o?`@IF EXIST ${o} (\r\n ${o} ${a} ${n} ${g}%*\r\n) ELSE (\r\n @SETLOCAL\r\n @SET PATHEXT=%PATHEXT:;.JS;=;%\r\n ${s} ${a} ${n} ${g}%*\r\n)`:`@${s} ${a} ${n} ${g}%*\r\n`,l}function h(e,t,r){let n,i=A.relative(A.dirname(t),e),o=r.prog&&r.prog.split("\\").join("/");i=i.split("\\").join("/");const s=A.isAbsolute(i)?`"${i}"`:`"$basedir/${i}"`;let a=r.args||"";const c=p(r.nodePath).posix;o?(n=`"$basedir/${r.prog}"`,i=s):(o=s,a="",i="");let g=r.progArgs?r.progArgs.join(" ")+" ":"",l="#!/bin/sh\n";l+='basedir=$(dirname "$(echo "$0" | sed -e \'s,\\\\,/,g\')")\n\ncase `uname` in\n *CYGWIN*) basedir=`cygpath -w "$basedir"`;;\nesac\n\n';const u=r.nodePath?`export NODE_PATH="${c}"\n`:"";return l+=n?u+`if [ -x ${n} ]; then\n`+` exec ${n} ${a} ${i} ${g}"$@"\nelse \n`+` exec ${o} ${a} ${i} ${g}"$@"\nfi\n`:`${u}${o} ${a} ${i} ${g}"$@"\nexit $?\n`,l}function f(e,t,r){let n=A.relative(A.dirname(t),e);const i=r.prog&&r.prog.split("\\").join("/");let o,s=i&&`"${i}$exe"`;n=n.split("\\").join("/");const a=A.isAbsolute(n)?`"${n}"`:`"$basedir/${n}"`;let c=r.args||"",g=p(r.nodePath);const l=g.win32,u=g.posix;s?(o=`"$basedir/${r.prog}$exe"`,n=a):(s=a,c="",n="");let h=r.progArgs?r.progArgs.join(" ")+" ":"",f='#!/usr/bin/env pwsh\n$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent\n\n$exe=""\n'+(r.nodePath?`$env_node_path=$env:NODE_PATH\n$env:NODE_PATH="${l}"\n`:"")+'if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {\n # Fix case when both the Windows and Linux builds of Node\n # are installed in the same directory\n $exe=".exe"\n}';return r.nodePath&&(f=f+" else {\n"+` $env:NODE_PATH="${u}"\n}`),f+="\n",f=o?f+"$ret=0\n"+`if (Test-Path ${o}) {\n # Support pipeline input\n if ($MyInvocation.ExpectingInput) {\n`+` $input | & ${o} ${c} ${n} ${h}$args\n } else {\n`+` & ${o} ${c} ${n} ${h}$args\n }\n $ret=$LASTEXITCODE\n} else {\n # Support pipeline input\n if ($MyInvocation.ExpectingInput) {\n`+` $input | & ${s} ${c} ${n} ${h}$args\n } else {\n`+` & ${s} ${c} ${n} ${h}$args\n }\n $ret=$LASTEXITCODE\n}\n`+(r.nodePath?"$env:NODE_PATH=$env_node_path\n":"")+"exit $ret\n":f+"# Support pipeline input\nif ($MyInvocation.ExpectingInput) {\n"+` $input | & ${s} ${c} ${n} ${h}$args\n} else {\n`+` & ${s} ${c} ${n} ${h}$args\n}\n`+(r.nodePath?"$env:NODE_PATH=$env_node_path\n":"")+"exit $LASTEXITCODE\n",f}function p(e){if(!e)return{win32:"",posix:""};let t="string"==typeof e?e.split(A.delimiter):Array.from(e),r={};for(let e=0;e"/mnt/"+t.toLowerCase()):t[e];r.win32=r.win32?`${r.win32};${n}`:n,r.posix=r.posix?`${r.posix}:${i}`:i,r[e]={win32:n,posix:i}}return r}e.exports=l},97991:(e,t,r)=>{"use strict";const n=/[\u001b\u009b][[\]#;?()]*(?:(?:(?:[^\W_]*;?[^\W_]*)\u0007)|(?:(?:[0-9]{1,4}(;[0-9]{0,4})*)?[~0-9=<>cf-nqrtyA-PRZ]))/g,i=()=>{const e={enabled:!0,visible:!0,styles:{},keys:{}};"FORCE_COLOR"in process.env&&(e.enabled="0"!==process.env.FORCE_COLOR);const t=(e,t,r)=>"function"==typeof e?e(t):e.wrap(t,r),i=(r,n)=>{if(""===r||null==r)return"";if(!1===e.enabled)return r;if(!1===e.visible)return"";let i=""+r,A=i.includes("\n"),o=n.length;for(o>0&&n.includes("unstyle")&&(n=[...new Set(["unstyle",...n])].reverse());o-- >0;)i=t(e.styles[n[o]],i,A);return i},A=(t,r,n)=>{e.styles[t]=(e=>{let t=e.open=`[${e.codes[0]}m`,r=e.close=`[${e.codes[1]}m`,n=e.regex=new RegExp(`\\u001b\\[${e.codes[1]}m`,"g");return e.wrap=(e,i)=>{e.includes(r)&&(e=e.replace(n,r+t));let A=t+e+r;return i?A.replace(/\r*\n/g,`${r}$&${t}`):A},e})({name:t,codes:r}),(e.keys[n]||(e.keys[n]=[])).push(t),Reflect.defineProperty(e,t,{configurable:!0,enumerable:!0,set(r){e.alias(t,r)},get(){let r=e=>i(e,r.stack);return Reflect.setPrototypeOf(r,e),r.stack=this.stack?this.stack.concat(t):[t],r}})};return A("reset",[0,0],"modifier"),A("bold",[1,22],"modifier"),A("dim",[2,22],"modifier"),A("italic",[3,23],"modifier"),A("underline",[4,24],"modifier"),A("inverse",[7,27],"modifier"),A("hidden",[8,28],"modifier"),A("strikethrough",[9,29],"modifier"),A("black",[30,39],"color"),A("red",[31,39],"color"),A("green",[32,39],"color"),A("yellow",[33,39],"color"),A("blue",[34,39],"color"),A("magenta",[35,39],"color"),A("cyan",[36,39],"color"),A("white",[37,39],"color"),A("gray",[90,39],"color"),A("grey",[90,39],"color"),A("bgBlack",[40,49],"bg"),A("bgRed",[41,49],"bg"),A("bgGreen",[42,49],"bg"),A("bgYellow",[43,49],"bg"),A("bgBlue",[44,49],"bg"),A("bgMagenta",[45,49],"bg"),A("bgCyan",[46,49],"bg"),A("bgWhite",[47,49],"bg"),A("blackBright",[90,39],"bright"),A("redBright",[91,39],"bright"),A("greenBright",[92,39],"bright"),A("yellowBright",[93,39],"bright"),A("blueBright",[94,39],"bright"),A("magentaBright",[95,39],"bright"),A("cyanBright",[96,39],"bright"),A("whiteBright",[97,39],"bright"),A("bgBlackBright",[100,49],"bgBright"),A("bgRedBright",[101,49],"bgBright"),A("bgGreenBright",[102,49],"bgBright"),A("bgYellowBright",[103,49],"bgBright"),A("bgBlueBright",[104,49],"bgBright"),A("bgMagentaBright",[105,49],"bgBright"),A("bgCyanBright",[106,49],"bgBright"),A("bgWhiteBright",[107,49],"bgBright"),e.ansiRegex=n,e.hasColor=e.hasAnsi=t=>(e.ansiRegex.lastIndex=0,"string"==typeof t&&""!==t&&e.ansiRegex.test(t)),e.alias=(t,r)=>{let n="string"==typeof r?e[r]:r;if("function"!=typeof n)throw new TypeError("Expected alias to be the name of an existing color (string) or a function");n.stack||(Reflect.defineProperty(n,"name",{value:t}),e.styles[t]=n,n.stack=[t]),Reflect.defineProperty(e,t,{configurable:!0,enumerable:!0,set(r){e.alias(t,r)},get(){let t=e=>i(e,t.stack);return Reflect.setPrototypeOf(t,e),t.stack=this.stack?this.stack.concat(n.stack):n.stack,t}})},e.theme=t=>{if(null===(r=t)||"object"!=typeof r||Array.isArray(r))throw new TypeError("Expected theme to be an object");var r;for(let r of Object.keys(t))e.alias(r,t[r]);return e},e.alias("unstyle",t=>"string"==typeof t&&""!==t?(e.ansiRegex.lastIndex=0,t.replace(e.ansiRegex,"")):""),e.alias("noop",e=>e),e.none=e.clear=e.noop,e.stripColor=e.unstyle,e.symbols=r(31283),e.define=A,e};e.exports=i(),e.exports.create=i},31283:e=>{"use strict";const t="Hyper"===process.env.TERM_PROGRAM,r="win32"===process.platform,n="linux"===process.platform,i={ballotDisabled:"☒",ballotOff:"☐",ballotOn:"☑",bullet:"•",bulletWhite:"◦",fullBlock:"█",heart:"❤",identicalTo:"≡",line:"─",mark:"※",middot:"·",minus:"-",multiplication:"×",obelus:"÷",pencilDownRight:"✎",pencilRight:"✏",pencilUpRight:"✐",percent:"%",pilcrow2:"❡",pilcrow:"¶",plusMinus:"±",section:"§",starsOff:"☆",starsOn:"★",upDownArrow:"↕"},A=Object.assign({},i,{check:"√",cross:"×",ellipsisLarge:"...",ellipsis:"...",info:"i",question:"?",questionSmall:"?",pointer:">",pointerSmall:"»",radioOff:"( )",radioOn:"(*)",warning:"‼"}),o=Object.assign({},i,{ballotCross:"✘",check:"✔",cross:"✖",ellipsisLarge:"⋯",ellipsis:"…",info:"ℹ",question:"?",questionFull:"?",questionSmall:"﹖",pointer:n?"▸":"❯",pointerSmall:n?"‣":"›",radioOff:"◯",radioOn:"◉",warning:"⚠"});e.exports=r&&!t?A:o,Reflect.defineProperty(e.exports,"common",{enumerable:!1,value:i}),Reflect.defineProperty(e.exports,"windows",{enumerable:!1,value:A}),Reflect.defineProperty(e.exports,"other",{enumerable:!1,value:o})},18483:(e,t,r)=>{"use strict";e=r.nmd(e);const n=(e,t)=>(...r)=>`[${e(...r)+t}m`,i=(e,t)=>(...r)=>{const n=e(...r);return`[${38+t};5;${n}m`},A=(e,t)=>(...r)=>{const n=e(...r);return`[${38+t};2;${n[0]};${n[1]};${n[2]}m`},o=e=>e,s=(e,t,r)=>[e,t,r],a=(e,t,r)=>{Object.defineProperty(e,t,{get:()=>{const n=r();return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0}),n},enumerable:!0,configurable:!0})};let c;const g=(e,t,n,i)=>{void 0===c&&(c=r(2744));const A=i?10:0,o={};for(const[r,i]of Object.entries(c)){const s="ansi16"===r?"ansi":r;r===t?o[s]=e(n,A):"object"==typeof i&&(o[s]=e(i[t],A))}return o};Object.defineProperty(e,"exports",{enumerable:!0,get:function(){const e=new Map,t={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};t.color.gray=t.color.blackBright,t.bgColor.bgGray=t.bgColor.bgBlackBright,t.color.grey=t.color.blackBright,t.bgColor.bgGrey=t.bgColor.bgBlackBright;for(const[r,n]of Object.entries(t)){for(const[r,i]of Object.entries(n))t[r]={open:`[${i[0]}m`,close:`[${i[1]}m`},n[r]=t[r],e.set(i[0],i[1]);Object.defineProperty(t,r,{value:n,enumerable:!1})}return Object.defineProperty(t,"codes",{value:e,enumerable:!1}),t.color.close="",t.bgColor.close="",a(t.color,"ansi",()=>g(n,"ansi16",o,!1)),a(t.color,"ansi256",()=>g(i,"ansi256",o,!1)),a(t.color,"ansi16m",()=>g(A,"rgb",s,!1)),a(t.bgColor,"ansi",()=>g(n,"ansi16",o,!0)),a(t.bgColor,"ansi256",()=>g(i,"ansi256",o,!0)),a(t.bgColor,"ansi16m",()=>g(A,"rgb",s,!0)),t}})},39920:e=>{"use strict";e.exports=(...e)=>[...new Set([].concat(...e))]},73975:(e,t,r)=>{"use strict";var n=r(86897).Duplex;function i(e){if(!(this instanceof i))return new i(e);if(this._bufs=[],this.length=0,"function"==typeof e){this._callback=e;var t=function(e){this._callback&&(this._callback(e),this._callback=null)}.bind(this);this.on("pipe",(function(e){e.on("error",t)})),this.on("unpipe",(function(e){e.removeListener("error",t)}))}else this.append(e);n.call(this)}r(31669).inherits(i,n),i.prototype._offset=function(e){var t,r=0,n=0;if(0===e)return[0,0];for(;nthis.length||e<0)){var t=this._offset(e);return this._bufs[t[0]][t[1]]}},i.prototype.slice=function(e,t){return"number"==typeof e&&e<0&&(e+=this.length),"number"==typeof t&&t<0&&(t+=this.length),this.copy(null,0,e,t)},i.prototype.copy=function(e,t,r,n){if(("number"!=typeof r||r<0)&&(r=0),("number"!=typeof n||n>this.length)&&(n=this.length),r>=this.length)return e||Buffer.alloc(0);if(n<=0)return e||Buffer.alloc(0);var i,A,o=!!e,s=this._offset(r),a=n-r,c=a,g=o&&t||0,l=s[1];if(0===r&&n==this.length){if(!o)return 1===this._bufs.length?this._bufs[0]:Buffer.concat(this._bufs,this.length);for(A=0;A(i=this._bufs[A].length-l))){this._bufs[A].copy(e,g,l,l+c);break}this._bufs[A].copy(e,g,l),g+=i,c-=i,l&&(l=0)}return e},i.prototype.shallowSlice=function(e,t){if(e=e||0,t="number"!=typeof t?this.length:t,e<0&&(e+=this.length),t<0&&(t+=this.length),e===t)return new i;var r=this._offset(e),n=this._offset(t),A=this._bufs.slice(r[0],n[0]+1);return 0==n[1]?A.pop():A[A.length-1]=A[A.length-1].slice(0,n[1]),0!=r[1]&&(A[0]=A[0].slice(r[1])),new i(A)},i.prototype.toString=function(e,t,r){return this.slice(t,r).toString(e)},i.prototype.consume=function(e){for(;this._bufs.length;){if(!(e>=this._bufs[0].length)){this._bufs[0]=this._bufs[0].slice(e),this.length-=e;break}e-=this._bufs[0].length,this.length-=this._bufs[0].length,this._bufs.shift()}return this},i.prototype.duplicate=function(){for(var e=0,t=new i;ethis.length?this.length:t;for(var n=this._offset(t),A=n[0],o=n[1];A=e.length){var a=s.indexOf(e,o);if(-1!==a)return this._reverseOffset([A,a]);o=s.length-e.length+1}else{var c=this._reverseOffset([A,o]);if(this._match(c,e))return c;o++}}o=0}return-1},i.prototype._match=function(e,t){if(this.length-e{"use strict";const n=r(54900),i=r(44617),A=r(1495),o=r(425),s=(e,t={})=>{let r=[];if(Array.isArray(e))for(let n of e){let e=s.create(n,t);Array.isArray(e)?r.push(...e):r.push(e)}else r=[].concat(s.create(e,t));return t&&!0===t.expand&&!0===t.nodupes&&(r=[...new Set(r)]),r};s.parse=(e,t={})=>o(e,t),s.stringify=(e,t={})=>n("string"==typeof e?s.parse(e,t):e,t),s.compile=(e,t={})=>("string"==typeof e&&(e=s.parse(e,t)),i(e,t)),s.expand=(e,t={})=>{"string"==typeof e&&(e=s.parse(e,t));let r=A(e,t);return!0===t.noempty&&(r=r.filter(Boolean)),!0===t.nodupes&&(r=[...new Set(r)]),r},s.create=(e,t={})=>""===e||e.length<3?[e]:!0!==t.expand?s.compile(e,t):s.expand(e,t),e.exports=s},44617:(e,t,r)=>{"use strict";const n=r(52169),i=r(4542);e.exports=(e,t={})=>{let r=(e,A={})=>{let o=i.isInvalidBrace(A),s=!0===e.invalid&&!0===t.escapeInvalid,a=!0===o||!0===s,c=!0===t.escapeInvalid?"\\":"",g="";if(!0===e.isOpen)return c+e.value;if(!0===e.isClose)return c+e.value;if("open"===e.type)return a?c+e.value:"(";if("close"===e.type)return a?c+e.value:")";if("comma"===e.type)return"comma"===e.prev.type?"":a?e.value:"|";if(e.value)return e.value;if(e.nodes&&e.ranges>0){let r=i.reduce(e.nodes),A=n(...r,{...t,wrap:!1,toRegex:!0});if(0!==A.length)return r.length>1&&A.length>1?`(${A})`:A}if(e.nodes)for(let t of e.nodes)g+=r(t,e);return g};return r(e)}},5384:e=>{"use strict";e.exports={MAX_LENGTH:65536,CHAR_0:"0",CHAR_9:"9",CHAR_UPPERCASE_A:"A",CHAR_LOWERCASE_A:"a",CHAR_UPPERCASE_Z:"Z",CHAR_LOWERCASE_Z:"z",CHAR_LEFT_PARENTHESES:"(",CHAR_RIGHT_PARENTHESES:")",CHAR_ASTERISK:"*",CHAR_AMPERSAND:"&",CHAR_AT:"@",CHAR_BACKSLASH:"\\",CHAR_BACKTICK:"`",CHAR_CARRIAGE_RETURN:"\r",CHAR_CIRCUMFLEX_ACCENT:"^",CHAR_COLON:":",CHAR_COMMA:",",CHAR_DOLLAR:"$",CHAR_DOT:".",CHAR_DOUBLE_QUOTE:'"',CHAR_EQUAL:"=",CHAR_EXCLAMATION_MARK:"!",CHAR_FORM_FEED:"\f",CHAR_FORWARD_SLASH:"/",CHAR_HASH:"#",CHAR_HYPHEN_MINUS:"-",CHAR_LEFT_ANGLE_BRACKET:"<",CHAR_LEFT_CURLY_BRACE:"{",CHAR_LEFT_SQUARE_BRACKET:"[",CHAR_LINE_FEED:"\n",CHAR_NO_BREAK_SPACE:" ",CHAR_PERCENT:"%",CHAR_PLUS:"+",CHAR_QUESTION_MARK:"?",CHAR_RIGHT_ANGLE_BRACKET:">",CHAR_RIGHT_CURLY_BRACE:"}",CHAR_RIGHT_SQUARE_BRACKET:"]",CHAR_SEMICOLON:";",CHAR_SINGLE_QUOTE:"'",CHAR_SPACE:" ",CHAR_TAB:"\t",CHAR_UNDERSCORE:"_",CHAR_VERTICAL_LINE:"|",CHAR_ZERO_WIDTH_NOBREAK_SPACE:"\ufeff"}},1495:(e,t,r)=>{"use strict";const n=r(52169),i=r(54900),A=r(4542),o=(e="",t="",r=!1)=>{let n=[];if(e=[].concat(e),!(t=[].concat(t)).length)return e;if(!e.length)return r?A.flatten(t).map(e=>`{${e}}`):t;for(let i of e)if(Array.isArray(i))for(let e of i)n.push(o(e,t,r));else for(let e of t)!0===r&&"string"==typeof e&&(e=`{${e}}`),n.push(Array.isArray(e)?o(i,e,r):i+e);return A.flatten(n)};e.exports=(e,t={})=>{let r=void 0===t.rangeLimit?1e3:t.rangeLimit,s=(e,a={})=>{e.queue=[];let c=a,g=a.queue;for(;"brace"!==c.type&&"root"!==c.type&&c.parent;)c=c.parent,g=c.queue;if(e.invalid||e.dollar)return void g.push(o(g.pop(),i(e,t)));if("brace"===e.type&&!0!==e.invalid&&2===e.nodes.length)return void g.push(o(g.pop(),["{}"]));if(e.nodes&&e.ranges>0){let s=A.reduce(e.nodes);if(A.exceedsLimit(...s,t.step,r))throw new RangeError("expanded array length exceeds range limit. Use options.rangeLimit to increase or disable the limit.");let a=n(...s,t);return 0===a.length&&(a=i(e,t)),g.push(o(g.pop(),a)),void(e.nodes=[])}let l=A.encloseBrace(e),u=e.queue,h=e;for(;"brace"!==h.type&&"root"!==h.type&&h.parent;)h=h.parent,u=h.queue;for(let t=0;t{"use strict";const n=r(54900),{MAX_LENGTH:i,CHAR_BACKSLASH:A,CHAR_BACKTICK:o,CHAR_COMMA:s,CHAR_DOT:a,CHAR_LEFT_PARENTHESES:c,CHAR_RIGHT_PARENTHESES:g,CHAR_LEFT_CURLY_BRACE:l,CHAR_RIGHT_CURLY_BRACE:u,CHAR_LEFT_SQUARE_BRACKET:h,CHAR_RIGHT_SQUARE_BRACKET:f,CHAR_DOUBLE_QUOTE:p,CHAR_SINGLE_QUOTE:C,CHAR_NO_BREAK_SPACE:d,CHAR_ZERO_WIDTH_NOBREAK_SPACE:I}=r(5384);e.exports=(e,t={})=>{if("string"!=typeof e)throw new TypeError("Expected a string");let r=t||{},E="number"==typeof r.maxLength?Math.min(i,r.maxLength):i;if(e.length>E)throw new SyntaxError(`Input length (${e.length}), exceeds max characters (${E})`);let m,B={type:"root",input:e,nodes:[]},w=[B],y=B,Q=B,v=0,b=e.length,D=0,S=0;const k=()=>e[D++],M=e=>{if("text"===e.type&&"dot"===Q.type&&(Q.type="text"),!Q||"text"!==Q.type||"text"!==e.type)return y.nodes.push(e),e.parent=y,e.prev=Q,Q=e,e;Q.value+=e.value};for(M({type:"bos"});D0){if(y.ranges>0){y.ranges=0;let e=y.nodes.shift();y.nodes=[e,{type:"text",value:n(y)}]}M({type:"comma",value:m}),y.commas++}else if(m===a&&S>0&&0===y.commas){let e=y.nodes;if(0===S||0===e.length){M({type:"text",value:m});continue}if("dot"===Q.type){if(y.range=[],Q.value+=m,Q.type="range",3!==y.nodes.length&&5!==y.nodes.length){y.invalid=!0,y.ranges=0,Q.type="text";continue}y.ranges++,y.args=[];continue}if("range"===Q.type){e.pop();let t=e[e.length-1];t.value+=Q.value+m,Q=t,y.ranges--;continue}M({type:"dot",value:m})}else M({type:"text",value:m});else{if("brace"!==y.type){M({type:"text",value:m});continue}let e="close";y=w.pop(),y.close=!0,M({type:e,value:m}),S--,y=w[w.length-1]}else{S++;let e=Q.value&&"$"===Q.value.slice(-1)||!0===y.dollar;y=M({type:"brace",open:!0,close:!1,dollar:e,depth:S,commas:0,ranges:0,nodes:[]}),w.push(y),M({type:"open",value:m})}else{let e,r=m;for(!0!==t.keepQuotes&&(m="");D{e.nodes||("open"===e.type&&(e.isOpen=!0),"close"===e.type&&(e.isClose=!0),e.nodes||(e.type="text"),e.invalid=!0)});let e=w[w.length-1],t=e.nodes.indexOf(y);e.nodes.splice(t,1,...y.nodes)}}while(w.length>0);return M({type:"eos"}),B}},54900:(e,t,r)=>{"use strict";const n=r(4542);e.exports=(e,t={})=>{let r=(e,i={})=>{let A=t.escapeInvalid&&n.isInvalidBrace(i),o=!0===e.invalid&&!0===t.escapeInvalid,s="";if(e.value)return(A||o)&&n.isOpenOrClose(e)?"\\"+e.value:e.value;if(e.value)return e.value;if(e.nodes)for(let t of e.nodes)s+=r(t);return s};return r(e)}},4542:(e,t)=>{"use strict";t.isInteger=e=>"number"==typeof e?Number.isInteger(e):"string"==typeof e&&""!==e.trim()&&Number.isInteger(Number(e)),t.find=(e,t)=>e.nodes.find(e=>e.type===t),t.exceedsLimit=(e,r,n=1,i)=>!1!==i&&(!(!t.isInteger(e)||!t.isInteger(r))&&(Number(r)-Number(e))/Number(n)>=i),t.escapeNode=(e,t=0,r)=>{let n=e.nodes[t];n&&(r&&n.type===r||"open"===n.type||"close"===n.type)&&!0!==n.escaped&&(n.value="\\"+n.value,n.escaped=!0)},t.encloseBrace=e=>"brace"===e.type&&(e.commas>>0+e.ranges>>0==0&&(e.invalid=!0,!0)),t.isInvalidBrace=e=>"brace"===e.type&&(!(!0!==e.invalid&&!e.dollar)||(e.commas>>0+e.ranges>>0==0||!0!==e.open||!0!==e.close)&&(e.invalid=!0,!0)),t.isOpenOrClose=e=>"open"===e.type||"close"===e.type||(!0===e.open||!0===e.close),t.reduce=e=>e.reduce((e,t)=>("text"===t.type&&e.push(t.value),"range"===t.type&&(t.type="text"),e),[]),t.flatten=(...e)=>{const t=[],r=e=>{for(let n=0;n{"use strict";const n=r(85622),{watch:i}=r(35747),{readFile:A}=r(35747).promises,{isIP:o}=r(11631),s="win32"===process.platform?n.join(process.env.SystemDrive,"Windows\\System32\\drivers\\etc\\hosts"):"/etc/hosts",a=/^(?:(?:[a-zA-Z\d]|[a-zA-Z\d][a-zA-Z\d-]*[a-zA-Z\d])\.)*(?:[A-Za-z\d]|[A-Za-z\d][A-Za-z\d-]*[A-Za-z\d])$/,c=e=>a.test(e),g={encoding:"utf8"},l=/\s+/g;class u{constructor({watching:e,customHostsPath:t=s}){this._hostsPath=t,this._error=null,this._watcher=null,this._watching=e,this._hosts={},this._init()}_init(){"string"==typeof this._hostsPath&&(this._promise=(async()=>{await this._update(),this._promise=null,this._error||this._watching&&(this._watcher=i(this._hostsPath,{persistent:!1},e=>{"change"===e?this._update():this._watcher.close()}),this._watcher.once("error",e=>{this._error=e,this._hosts={}}),this._watcher.once("close",()=>{this._init()}))})())}async _update(){try{let e=await A(this._hostsPath,g);e=e.split("\n"),this._hosts={};for(let t of e){t=t.replace(l," ").trim();const e=t.split(" "),r=o(e[0]);if(!r)continue;const n=e.shift();for(const t of e){if(!c(t))break;if(this._hosts[t]){let e=!1;for(const n of this._hosts[t])if(n.family===r){e=!0;break}if(e)continue}else this._hosts[t]=[],this._hosts[t].expires=1/0;this._hosts[t].push({address:n,family:r,expires:1/0,ttl:1/0})}}}catch(e){this._hosts={},this._error=e}}async get(e){if(this._promise&&await this._promise,this._error)throw this._error;return this._hosts[e]}}const h={};u.getResolver=({customHostsPath:e,watching:t})=>{void 0!==e&&"string"!=typeof e&&(e=!1);const r=`${e}:${t=Boolean(t)}`;let n=h[r];return n||(n=new u({customHostsPath:e,watching:t}),h[r]=n,n)},e.exports=u},43261:(e,t,r)=>{"use strict";const{V4MAPPED:n,ADDRCONFIG:i,promises:{Resolver:A},lookup:o}=r(40881),{promisify:s}=r(31669),a=r(12087),{getResolver:c}=r(76438),g=Symbol("cacheableLookupCreateConnection"),l=Symbol("cacheableLookupInstance"),u=e=>{if(!e||"function"!=typeof e.createConnection)throw new Error("Expected an Agent instance as the first argument")},h=()=>{let e=!1,t=!1;for(const r of Object.values(a.networkInterfaces()))for(const n of r)if(!n.internal&&("IPv6"===n.family?t=!0:e=!0,e&&t))return{has4:e,has6:t};return{has4:e,has6:t}},f={ttl:!0};class p{constructor({customHostsPath:e,watchingHostsFile:t=!1,cache:r=new Map,maxTtl:n=1/0,resolver:i=new A,fallbackTtl:a=1,errorTtl:g=.15}={}){this.maxTtl=n,this.fallbackTtl=a,this.errorTtl=g,this._cache=r,this._resolver=i,this._lookup=s(o),this._resolver instanceof A?(this._resolve4=this._resolver.resolve4.bind(this._resolver),this._resolve6=this._resolver.resolve6.bind(this._resolver)):(this._resolve4=s(this._resolver.resolve4.bind(this._resolver)),this._resolve6=s(this._resolver.resolve6.bind(this._resolver))),this._iface=h(),this._hostsResolver=c({customHostsPath:e,watching:t}),this._pending={},this._nextRemovalTime=!1,this.lookup=this.lookup.bind(this),this.lookupAsync=this.lookupAsync.bind(this)}set servers(e){this.updateInterfaceInfo(),this._resolver.setServers(e)}get servers(){return this._resolver.getServers()}lookup(e,t,r){if("function"==typeof t?(r=t,t={}):"number"==typeof t&&(t={family:t}),!r)throw new Error("Callback must be a function.");this.lookupAsync(e,t).then(e=>{t.all?r(null,e):r(null,e.address,e.family,e.expires,e.ttl)},r)}async lookupAsync(e,t={}){"number"==typeof t&&(t={family:t});let r=await this.query(e);if(6===t.family){const e=r.filter(e=>6===e.family);0===e.length&&t.hints&n?(e=>{for(const t of e)t.address="::ffff:"+t.address,t.family=6})(r):r=e}else 4===t.family&&(r=r.filter(e=>4===e.family));if(t.hints&i){const{_iface:e}=this;r=r.filter(t=>6===t.family?e.has6:e.has4)}if(0===r.length){const t=new Error("ENOTFOUND "+e);throw t.code="ENOTFOUND",t.hostname=e,t}return t.all?r:1===r.length?r[0]:this._getEntry(r,e)}async query(e){let t=await this._hostsResolver.get(e)||await this._cache.get(e);if(!t){const r=this._pending[e];if(r)t=await r;else{const r=this.queryAndCache(e);this._pending[e]=r,t=await r}}return t=t.map(e=>({...e})),t}async queryAndCache(e){const[t,r]=await Promise.all([this._resolve4(e,f).catch(()=>[]),this._resolve6(e,f).catch(()=>[])]);let n=0;if(t)for(const e of t)e.family=4,e.expires=Date.now()+1e3*e.ttl,n=Math.max(n,e.ttl);if(r)for(const e of r)e.family=6,e.expires=Date.now()+1e3*e.ttl,n=Math.max(n,e.ttl);let i=[...t||[],...r||[]];if(0===i.length)try{i=await this._lookup(e,{all:!0});for(const e of i)e.ttl=this.fallbackTtl,e.expires=Date.now()+1e3*e.ttl;n=1e3*this.fallbackTtl}catch(t){throw delete this._pending[e],"ENOTFOUND"===t.code&&(n=1e3*this.errorTtl,i.expires=Date.now()+n,await this._cache.set(e,i,n),this._tick(n)),t}else n=1e3*Math.min(this.maxTtl,n);return this.maxTtl>0&&n>0&&(i.expires=Date.now()+n,await this._cache.set(e,i,n),this._tick(n)),delete this._pending[e],i}_getEntry(e,t){return e[0]}tick(){}_tick(e){if(!(this._cache instanceof Map)||void 0===e)return;const t=this._nextRemovalTime;(!t||e{this._nextRemovalTime=!1;let e=1/0;const t=Date.now();for(const[r,{expires:n}]of this._cache)t>=n?this._cache.delete(r):n("lookup"in t||(t.lookup=this.lookup),e[g](t,r))}uninstall(e){if(u(e),e[g]){if(e[l]!==this)throw new Error("The agent is not owned by this CacheableLookup instance");e.createConnection=e[g],delete e[g],delete e[l]}}updateInterfaceInfo(){this._iface=h(),this._cache.clear()}clear(e){e?this._cache.delete(e):this._cache.clear()}}e.exports=p,e.exports.default=p},11200:(e,t,r)=>{"use strict";const n=r(28614),i=r(78835),A=r(19793),o=r(58764),s=r(86834),a=r(48491),c=r(55737),g=r(15751),l=r(72515);class u{constructor(e,t){if("function"!=typeof e)throw new TypeError("Parameter `request` must be a function");return this.cache=new l({uri:"string"==typeof t&&t,store:"string"!=typeof t&&t,namespace:"cacheable-request"}),this.createCacheableRequest(e)}createCacheableRequest(e){return(t,r)=>{let l;if("string"==typeof t)l=f(i.parse(t)),t={};else if(t instanceof i.URL)l=f(i.parse(t.toString())),t={};else{const[e,...r]=(t.path||"").split("?"),n=r.length>0?"?"+r.join("?"):"";l=f({...t,pathname:e,search:n})}(t={headers:{},method:"GET",cache:!0,strictTtl:!1,automaticFailover:!1,...t,...h(l)}).headers=c(t.headers);const p=new n,C=A(i.format(l),{stripWWW:!1,removeTrailingSlash:!1,stripAuthentication:!1}),d=`${t.method}:${C}`;let I=!1,E=!1;const m=t=>{E=!0;let n,i=!1;const A=new Promise(e=>{n=()=>{i||(i=!0,e())}}),c=e=>{if(I&&!t.forceRefresh){e.status=e.statusCode;const r=s.fromObject(I.cachePolicy).revalidatedPolicy(t,e);if(!r.modified){const t=r.policy.responseHeaders();(e=new a(I.statusCode,t,I.body,I.url)).cachePolicy=r.policy,e.fromCache=!0}}let n;e.fromCache||(e.cachePolicy=new s(t,e,t),e.fromCache=!1),t.cache&&e.cachePolicy.storable()?(n=g(e),(async()=>{try{const r=o.buffer(e);if(await Promise.race([A,new Promise(t=>e.once("end",t))]),i)return;const n=await r,s={cachePolicy:e.cachePolicy.toObject(),url:e.url,statusCode:e.fromCache?I.statusCode:e.statusCode,body:n};let a=t.strictTtl?e.cachePolicy.timeToLive():void 0;t.maxTtl&&(a=a?Math.min(a,t.maxTtl):t.maxTtl),await this.cache.set(d,s,a)}catch(e){p.emit("error",new u.CacheError(e))}})()):t.cache&&I&&(async()=>{try{await this.cache.delete(d)}catch(e){p.emit("error",new u.CacheError(e))}})(),p.emit("response",n||e),"function"==typeof r&&r(n||e)};try{const r=e(t,c);r.once("error",n),r.once("abort",n),p.emit("request",r)}catch(e){p.emit("error",new u.RequestError(e))}};return(async()=>{const e=async e=>{await Promise.resolve();const t=e.cache?await this.cache.get(d):void 0;if(void 0===t)return m(e);const n=s.fromObject(t.cachePolicy);if(n.satisfiesWithoutRevalidation(e)&&!e.forceRefresh){const e=n.responseHeaders(),i=new a(t.statusCode,e,t.body,t.url);i.cachePolicy=n,i.fromCache=!0,p.emit("response",i),"function"==typeof r&&r(i)}else I=t,e.headers=n.revalidationHeaders(e),m(e)},n=e=>p.emit("error",new u.CacheError(e));this.cache.once("error",n),p.on("response",()=>this.cache.removeListener("error",n));try{await e(t)}catch(e){t.automaticFailover&&!E&&m(t),p.emit("error",new u.CacheError(e))}})(),p}}}function h(e){const t={...e};return t.path=`${e.pathname||"/"}${e.search||""}`,delete t.pathname,delete t.search,t}function f(e){return{protocol:e.protocol,auth:e.auth,hostname:e.hostname||e.host||"localhost",port:e.port,pathname:e.pathname,search:e.search}}u.RequestError=class extends Error{constructor(e){super(e.message),this.name="RequestError",Object.assign(this,e)}},u.CacheError=class extends Error{constructor(e){super(e.message),this.name="CacheError",Object.assign(this,e)}},e.exports=u},54738:e=>{"use strict";const t=(e,t)=>{if("string"!=typeof e&&!Array.isArray(e))throw new TypeError("Expected the input to be `string | string[]`");t=Object.assign({pascalCase:!1},t);if(0===(e=Array.isArray(e)?e.map(e=>e.trim()).filter(e=>e.length).join("-"):e.trim()).length)return"";if(1===e.length)return t.pascalCase?e.toUpperCase():e.toLowerCase();return e!==e.toLowerCase()&&(e=(e=>{let t=!1,r=!1,n=!1;for(let i=0;it.toUpperCase()).replace(/\d+(\w|$)/g,e=>e.toUpperCase()),r=e,t.pascalCase?r.charAt(0).toUpperCase()+r.slice(1):r;var r};e.exports=t,e.exports.default=t},95882:(e,t,r)=>{"use strict";const n=r(18483),{stdout:i,stderr:A}=r(59428),{stringReplaceAll:o,stringEncaseCRLFWithFirstIndex:s}=r(73327),a=["ansi","ansi","ansi256","ansi16m"],c=Object.create(null);class g{constructor(e){return l(e)}}const l=e=>{const t={};return((e,t={})=>{if(t.level>3||t.level<0)throw new Error("The `level` option should be an integer from 0 to 3");const r=i?i.level:0;e.level=void 0===t.level?r:t.level})(t,e),t.template=(...e)=>E(t.template,...e),Object.setPrototypeOf(t,u.prototype),Object.setPrototypeOf(t.template,t),t.template.constructor=()=>{throw new Error("`chalk.constructor()` is deprecated. Use `new chalk.Instance()` instead.")},t.template.Instance=g,t.template};function u(e){return l(e)}for(const[e,t]of Object.entries(n))c[e]={get(){const r=C(this,p(t.open,t.close,this._styler),this._isEmpty);return Object.defineProperty(this,e,{value:r}),r}};c.visible={get(){const e=C(this,this._styler,!0);return Object.defineProperty(this,"visible",{value:e}),e}};const h=["rgb","hex","keyword","hsl","hsv","hwb","ansi","ansi256"];for(const e of h)c[e]={get(){const{level:t}=this;return function(...r){const i=p(n.color[a[t]][e](...r),n.color.close,this._styler);return C(this,i,this._isEmpty)}}};for(const e of h){c["bg"+e[0].toUpperCase()+e.slice(1)]={get(){const{level:t}=this;return function(...r){const i=p(n.bgColor[a[t]][e](...r),n.bgColor.close,this._styler);return C(this,i,this._isEmpty)}}}}const f=Object.defineProperties(()=>{},{...c,level:{enumerable:!0,get(){return this._generator.level},set(e){this._generator.level=e}}}),p=(e,t,r)=>{let n,i;return void 0===r?(n=e,i=t):(n=r.openAll+e,i=t+r.closeAll),{open:e,close:t,openAll:n,closeAll:i,parent:r}},C=(e,t,r)=>{const n=(...e)=>d(n,1===e.length?""+e[0]:e.join(" "));return n.__proto__=f,n._generator=e,n._styler=t,n._isEmpty=r,n},d=(e,t)=>{if(e.level<=0||!t)return e._isEmpty?"":t;let r=e._styler;if(void 0===r)return t;const{openAll:n,closeAll:i}=r;if(-1!==t.indexOf(""))for(;void 0!==r;)t=o(t,r.close,r.open),r=r.parent;const A=t.indexOf("\n");return-1!==A&&(t=s(t,i,n,A)),n+t+i};let I;const E=(e,...t)=>{const[n]=t;if(!Array.isArray(n))return t.join(" ");const i=t.slice(1),A=[n.raw[0]];for(let e=1;e{"use strict";const t=/(?:\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi,r=/(?:^|\.)(\w+)(?:\(([^)]*)\))?/g,n=/^(['"])((?:\\.|(?!\1)[^\\])*)\1$/,i=/\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.)|([^\\])/gi,A=new Map([["n","\n"],["r","\r"],["t","\t"],["b","\b"],["f","\f"],["v","\v"],["0","\0"],["\\","\\"],["e",""],["a",""]]);function o(e){const t="u"===e[0],r="{"===e[1];return t&&!r&&5===e.length||"x"===e[0]&&3===e.length?String.fromCharCode(parseInt(e.slice(1),16)):t&&r?String.fromCodePoint(parseInt(e.slice(2,-1),16)):A.get(e)||e}function s(e,t){const r=[],A=t.trim().split(/\s*,\s*/g);let s;for(const t of A){const A=Number(t);if(Number.isNaN(A)){if(!(s=t.match(n)))throw new Error(`Invalid Chalk template style argument: ${t} (in style '${e}')`);r.push(s[2].replace(i,(e,t,r)=>t?o(t):r))}else r.push(A)}return r}function a(e){r.lastIndex=0;const t=[];let n;for(;null!==(n=r.exec(e));){const e=n[1];if(n[2]){const r=s(e,n[2]);t.push([e].concat(r))}else t.push([e])}return t}function c(e,t){const r={};for(const e of t)for(const t of e.styles)r[t[0]]=e.inverse?null:t.slice(1);let n=e;for(const[e,t]of Object.entries(r))if(Array.isArray(t)){if(!(e in n))throw new Error("Unknown Chalk style: "+e);n=t.length>0?n[e](...t):n[e]}return n}e.exports=(e,r)=>{const n=[],i=[];let A=[];if(r.replace(t,(t,r,s,g,l,u)=>{if(r)A.push(o(r));else if(g){const t=A.join("");A=[],i.push(0===n.length?t:c(e,n)(t)),n.push({inverse:s,styles:a(g)})}else if(l){if(0===n.length)throw new Error("Found extraneous } in Chalk template literal");i.push(c(e,n)(A.join(""))),A=[],n.pop()}else A.push(u)}),i.push(A.join("")),n.length>0){const e=`Chalk template literal is missing ${n.length} closing bracket${1===n.length?"":"s"} (\`}\`)`;throw new Error(e)}return i.join("")}},73327:e=>{"use strict";e.exports={stringReplaceAll:(e,t,r)=>{let n=e.indexOf(t);if(-1===n)return e;const i=t.length;let A=0,o="";do{o+=e.substr(A,n-A)+t+r,A=n+i,n=e.indexOf(t,A)}while(-1!==n);return o+=e.substr(A),o},stringEncaseCRLFWithFirstIndex:(e,t,r,n)=>{let i=0,A="";do{const o="\r"===e[n-1];A+=e.substr(i,(o?n-1:n)-i)+t+(o?"\r\n":"\n")+r,i=n+1,n=e.indexOf("\n",i)}while(-1!==n);return A+=e.substr(i),A}}},5864:(e,t,r)=>{"use strict";var n=r(85832),i=process.env;function A(e){return"string"==typeof e?!!i[e]:Object.keys(e).every((function(t){return i[t]===e[t]}))}Object.defineProperty(t,"_vendors",{value:n.map((function(e){return e.constant}))}),t.name=null,t.isPR=null,n.forEach((function(e){var r=(Array.isArray(e.env)?e.env:[e.env]).every((function(e){return A(e)}));if(t[e.constant]=r,r)switch(t.name=e.name,typeof e.pr){case"string":t.isPR=!!i[e.pr];break;case"object":"env"in e.pr?t.isPR=e.pr.env in i&&i[e.pr.env]!==e.pr.ne:"any"in e.pr?t.isPR=e.pr.any.some((function(e){return!!i[e]})):t.isPR=A(e.pr);break;default:t.isPR=null}})),t.isCI=!!(i.CI||i.CONTINUOUS_INTEGRATION||i.BUILD_NUMBER||i.RUN_ID||t.name)},85832:e=>{"use strict";e.exports=JSON.parse('[{"name":"AppVeyor","constant":"APPVEYOR","env":"APPVEYOR","pr":"APPVEYOR_PULL_REQUEST_NUMBER"},{"name":"Azure Pipelines","constant":"AZURE_PIPELINES","env":"SYSTEM_TEAMFOUNDATIONCOLLECTIONURI","pr":"SYSTEM_PULLREQUEST_PULLREQUESTID"},{"name":"Bamboo","constant":"BAMBOO","env":"bamboo_planKey"},{"name":"Bitbucket Pipelines","constant":"BITBUCKET","env":"BITBUCKET_COMMIT","pr":"BITBUCKET_PR_ID"},{"name":"Bitrise","constant":"BITRISE","env":"BITRISE_IO","pr":"BITRISE_PULL_REQUEST"},{"name":"Buddy","constant":"BUDDY","env":"BUDDY_WORKSPACE_ID","pr":"BUDDY_EXECUTION_PULL_REQUEST_ID"},{"name":"Buildkite","constant":"BUILDKITE","env":"BUILDKITE","pr":{"env":"BUILDKITE_PULL_REQUEST","ne":"false"}},{"name":"CircleCI","constant":"CIRCLE","env":"CIRCLECI","pr":"CIRCLE_PULL_REQUEST"},{"name":"Cirrus CI","constant":"CIRRUS","env":"CIRRUS_CI","pr":"CIRRUS_PR"},{"name":"AWS CodeBuild","constant":"CODEBUILD","env":"CODEBUILD_BUILD_ARN"},{"name":"Codeship","constant":"CODESHIP","env":{"CI_NAME":"codeship"}},{"name":"Drone","constant":"DRONE","env":"DRONE","pr":{"DRONE_BUILD_EVENT":"pull_request"}},{"name":"dsari","constant":"DSARI","env":"DSARI"},{"name":"GitLab CI","constant":"GITLAB","env":"GITLAB_CI"},{"name":"GoCD","constant":"GOCD","env":"GO_PIPELINE_LABEL"},{"name":"Hudson","constant":"HUDSON","env":"HUDSON_URL"},{"name":"Jenkins","constant":"JENKINS","env":["JENKINS_URL","BUILD_ID"],"pr":{"any":["ghprbPullId","CHANGE_ID"]}},{"name":"Magnum CI","constant":"MAGNUM","env":"MAGNUM"},{"name":"Netlify CI","constant":"NETLIFY","env":"NETLIFY_BUILD_BASE","pr":{"env":"PULL_REQUEST","ne":"false"}},{"name":"Sail CI","constant":"SAIL","env":"SAILCI","pr":"SAIL_PULL_REQUEST_NUMBER"},{"name":"Semaphore","constant":"SEMAPHORE","env":"SEMAPHORE","pr":"PULL_REQUEST_NUMBER"},{"name":"Shippable","constant":"SHIPPABLE","env":"SHIPPABLE","pr":{"IS_PULL_REQUEST":"true"}},{"name":"Solano CI","constant":"SOLANO","env":"TDDIUM","pr":"TDDIUM_PR_ID"},{"name":"Strider CD","constant":"STRIDER","env":"STRIDER"},{"name":"TaskCluster","constant":"TASKCLUSTER","env":["TASK_ID","RUN_ID"]},{"name":"TeamCity","constant":"TEAMCITY","env":"TEAMCITY_VERSION"},{"name":"Travis CI","constant":"TRAVIS","env":"TRAVIS","pr":{"env":"TRAVIS_PULL_REQUEST","ne":"false"}}]')},93103:(e,t,r)=>{"use strict";r.r(t),r.d(t,{Cli:()=>j,Command:()=>n,UsageError:()=>u});class n{constructor(){this.help=!1}static getMeta(e){const t=e.constructor;return t.meta=Object.prototype.hasOwnProperty.call(t,"meta")?t.meta:{definitions:[],transformers:[(e,t)=>{for(const{name:r,value:n}of e.options)"-h"!==r&&"--help"!==r||(t.help=n)}]}}static resolveMeta(e){const t=[],r=[];for(let i=e;i instanceof n;i=i.__proto__){const e=this.getMeta(i);for(const r of e.definitions)t.push(r);for(const t of e.transformers)r.push(t)}return{definitions:t,transformers:r}}static registerDefinition(e,t){this.getMeta(e).definitions.push(t)}static registerTransformer(e,t){this.getMeta(e).transformers.push(t)}static addPath(...e){this.Path(...e)(this.prototype,"execute")}static addOption(e,t){t(this.prototype,e)}static Path(...e){return(t,r)=>{this.registerDefinition(t,t=>{t.addPath(e)})}}static Boolean(e,{hidden:t=!1}={}){return(r,n)=>{const i=e.split(",");this.registerDefinition(r,e=>{e.addOption({names:i,arity:0,hidden:t,allowBinding:!1})}),this.registerTransformer(r,(e,t)=>{for(const{name:r,value:A}of e.options)i.includes(r)&&(t[n]=A)})}}static String(e={required:!0},{tolerateBoolean:t=!1,hidden:r=!1}={}){return(n,i)=>{if("string"==typeof e){const A=e.split(",");this.registerDefinition(n,e=>{e.addOption({names:A,arity:t?0:1,hidden:r})}),this.registerTransformer(n,(e,t)=>{for(const{name:r,value:n}of e.options)A.includes(r)&&(t[i]=n)})}else this.registerDefinition(n,t=>{t.addPositional({name:i,required:e.required})}),this.registerTransformer(n,(e,t)=>{e.positionals.length>0&&(t[i]=e.positionals.shift().value)})}}static Array(e,{hidden:t=!1}={}){return(r,n)=>{const i=e.split(",");this.registerDefinition(r,e=>{e.addOption({names:i,arity:1,hidden:t})}),this.registerTransformer(r,(e,t)=>{for(const{name:r,value:A}of e.options)i.includes(r)&&(t[n]=t[n]||[],t[n].push(A))})}}static Rest({required:e=0}={}){return(t,r)=>{this.registerDefinition(t,t=>{t.addRest({name:r,required:e})}),this.registerTransformer(t,(e,t)=>{t[r]=e.positionals.map(({value:e})=>e)})}}static Proxy({required:e=0}={}){return(t,r)=>{this.registerDefinition(t,t=>{t.addProxy({required:e})}),this.registerTransformer(t,(e,t)=>{t[r]=e.positionals.map(({value:e})=>e)})}}static Usage(e){return e}static Schema(e){return e}async validateAndExecute(){const e=this.constructor.schema;if(void 0!==e)try{await e.validate(this)}catch(e){throw"ValidationError"===e.name&&(e.clipanion={type:"usage"}),e}const t=await this.execute();return void 0!==t?t:0}} -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -***************************************************************************** */ -function i(e,t,r,n){var i,A=arguments.length,o=A<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(A<3?i(o):A>3?i(t,r,o):i(t,r))||o);return A>3&&o&&Object.defineProperty(t,r,o),o}n.Entries={};class A extends n{async execute(){this.context.stdout.write(this.cli.usage(null))}}i([n.Path("--help"),n.Path("-h")],A.prototype,"execute",null);class o extends n{async execute(){var e;this.context.stdout.write((null!==(e=this.cli.binaryVersion)&&void 0!==e?e:"")+"\n")}}i([n.Path("--version"),n.Path("-v")],o.prototype,"execute",null);const s=/^(-h|--help)(?:=([0-9]+))?$/,a=/^(--[a-z]+(?:-[a-z]+)*|-[a-zA-Z]+)$/,c=/^-[a-zA-Z]{2,}$/,g=/^([^=]+)=([\s\S]*)$/,l="1"===process.env.DEBUG_CLI;class u extends Error{constructor(e){super(e),this.clipanion={type:"usage"},this.name="UsageError"}}class h extends Error{constructor(e,t){if(super(),this.input=e,this.candidates=t,this.clipanion={type:"none"},this.name="UnknownSyntaxError",0===this.candidates.length)this.message="Command not found, but we're not sure what's the alternative.";else if(1===this.candidates.length&&null!==this.candidates[0].reason){const[{usage:e,reason:t}]=this.candidates;this.message=`${t}\n\n$ ${e}`}else if(1===this.candidates.length){const[{usage:t}]=this.candidates;this.message=`Command not found; did you mean:\n\n$ ${t}\n${p(e)}`}else this.message=`Command not found; did you mean one of:\n\n${this.candidates.map(({usage:e},t)=>`${(t+".").padStart(4)} ${e}`).join("\n")}\n\n${p(e)}`}}class f extends Error{constructor(e,t){super(),this.input=e,this.usages=t,this.clipanion={type:"none"},this.name="AmbiguousSyntaxError",this.message=`Cannot find who to pick amongst the following alternatives:\n\n${this.usages.map((e,t)=>`${(t+".").padStart(4)} ${e}`).join("\n")}\n\n${p(e)}`}}const p=e=>"While running "+e.filter(e=>"\0"!==e).map(e=>{const t=JSON.stringify(e);return e.match(/\s/)||0===e.length||t!==`"${e}"`?t:e}).join(" ");function C(e){l&&console.log(e)}function d(e,t){return e.nodes.push(t),e.nodes.length-1}function I(e,t,r=!1){C("Running a vm on "+JSON.stringify(t));let n=[{node:0,state:{candidateUsage:null,errorMessage:null,ignoreOptions:!1,options:[],path:[],positionals:[],remainder:null,selectedIndex:null}}];!function(e,{prefix:t=""}={}){C(t+"Nodes are:");for(let r=0;r2!==e).map(({state:e})=>({usage:e.candidateUsage,reason:null})));if(s.every(({node:e})=>2===e))throw new h(t,s.map(({state:e})=>({usage:e.candidateUsage,reason:e.errorMessage})));n=B(s)}if(n.length>0){C(" Results:");for(const e of n)C(` - ${e.node} -> ${JSON.stringify(e.state)}`)}else C(" No results");return n}function E(e,t){if(null!==t.selectedIndex)return!0;if(Object.prototype.hasOwnProperty.call(e.statics,"\0"))for(const{to:t}of e.statics["\0"])if(1===t)return!0;return!1}function m(e,t){return function(e,t){const r=t.filter(e=>null!==e.selectedIndex);if(0===r.length)throw new Error;let n=0;for(const e of r)e.path.length>n&&(n=e.path.length);const i=r.filter(e=>e.path.length===n),A=e=>e.positionals.filter(({extra:e})=>!e).length+e.options.length,o=i.map(e=>({state:e,positionalCount:A(e)}));let s=0;for(const{positionalCount:e}of o)e>s&&(s=e);const a=function(e){const t=[],r=[];for(const n of e)-1===n.selectedIndex?r.push(n):t.push(n);r.length>0&&t.push({candidateUsage:null,errorMessage:null,ignoreOptions:!1,path:w(...r.map(e=>e.path)),positionals:[],options:r.reduce((e,t)=>e.concat(t.options),[]),remainder:null,selectedIndex:-1});return t}(o.filter(({positionalCount:e})=>e===s).map(({state:e})=>e));if(a.length>1)throw new f(e,a.map(e=>e.candidateUsage));return a[0]}(t,I(e,[...t,"\0"]).map(({state:e})=>e))}function B(e){let t=0;for(const{state:r}of e)r.path.length>t&&(t=r.path.length);return e.filter(({state:e})=>e.path.length===t)}function w(e,t,...r){return void 0===t?Array.from(e):w(e.filter((e,r)=>e===t[r]),...r)}function y(e){return 1===e||2===e}function Q(e,t=0){return{to:y(e.to)?e.to:e.to>2?e.to+t-2:e.to+t,reducer:e.reducer}}function v(e,t=0){const r={dynamics:[],shortcuts:[],statics:{}};for(const[n,i]of e.dynamics)r.dynamics.push([n,Q(i,t)]);for(const n of e.shortcuts)r.shortcuts.push(Q(n,t));for(const[n,i]of Object.entries(e.statics))r.statics[n]=i.map(e=>Q(e,t));return r}function b(e,t,r,n,i){e.nodes[t].dynamics.push([r,{to:n,reducer:i}])}function D(e,t,r,n){e.nodes[t].shortcuts.push({to:r,reducer:n})}function S(e,t,r,n,i){(Object.prototype.hasOwnProperty.call(e.nodes[t].statics,r)?e.nodes[t].statics[r]:e.nodes[t].statics[r]=[]).push({to:n,reducer:i})}function k(e,t,r,n){if(Array.isArray(t)){const[i,...A]=t;return e[i](r,n,...A)}return e[t](r,n)}function M(e,t){const r=Array.isArray(e)?F[e[0]]:F[e];if(void 0===r.suggest)return null;const n=Array.isArray(e)?e.slice(1):[];return r.suggest(t,...n)}const F={always:()=>!0,isNotOptionLike:(e,t)=>e.ignoreOptions||!t.startsWith("-"),isOption:(e,t,r,n)=>!e.ignoreOptions&&t===r,isBatchOption:(e,t,r)=>!e.ignoreOptions&&c.test(t)&&[...t.slice(1)].every(e=>r.includes("-"+e)),isBoundOption:(e,t,r,n)=>{const i=t.match(g);return!e.ignoreOptions&&!!i&&a.test(i[1])&&r.includes(i[1])&&n.filter(e=>e.names.includes(i[1])).every(e=>e.allowBinding)},isNegatedOption:(e,t,r)=>!e.ignoreOptions&&t==="--no-"+r.slice(2),isHelp:(e,t)=>!e.ignoreOptions&&s.test(t),isUnsupportedOption:(e,t,r)=>!e.ignoreOptions&&t.startsWith("-")&&a.test(t)&&!r.includes(t),isInvalidOption:(e,t)=>!e.ignoreOptions&&t.startsWith("-")&&!a.test(t)};F.isOption.suggest=(e,t,r=!0)=>r?null:[t];const N={setCandidateUsage:(e,t,r)=>Object.assign(Object.assign({},e),{candidateUsage:r}),setSelectedIndex:(e,t,r)=>Object.assign(Object.assign({},e),{selectedIndex:r}),pushBatch:(e,t)=>Object.assign(Object.assign({},e),{options:e.options.concat([...t.slice(1)].map(e=>({name:"-"+e,value:!0})))}),pushBound:(e,t)=>{const[,r,n]=t.match(g);return Object.assign(Object.assign({},e),{options:e.options.concat({name:r,value:n})})},pushPath:(e,t)=>Object.assign(Object.assign({},e),{path:e.path.concat(t)}),pushPositional:(e,t)=>Object.assign(Object.assign({},e),{positionals:e.positionals.concat({value:t,extra:!1})}),pushExtra:(e,t)=>Object.assign(Object.assign({},e),{positionals:e.positionals.concat({value:t,extra:!0})}),pushTrue:(e,t,r=t)=>Object.assign(Object.assign({},e),{options:e.options.concat({name:t,value:!0})}),pushFalse:(e,t,r=t)=>Object.assign(Object.assign({},e),{options:e.options.concat({name:r,value:!1})}),pushUndefined:(e,t)=>Object.assign(Object.assign({},e),{options:e.options.concat({name:t,value:void 0})}),setStringValue:(e,t)=>Object.assign(Object.assign({},e),{options:e.options.slice(0,-1).concat(Object.assign(Object.assign({},e.options[e.options.length-1]),{value:t}))}),inhibateOptions:e=>Object.assign(Object.assign({},e),{ignoreOptions:!0}),useHelp:(e,t,r)=>{const[,n,i]=t.match(s);return void 0!==i?Object.assign(Object.assign({},e),{options:[{name:"-c",value:String(r)},{name:"-i",value:i}]}):Object.assign(Object.assign({},e),{options:[{name:"-c",value:String(r)}]})},setError:(e,t,r)=>"\0"===t?Object.assign(Object.assign({},e),{errorMessage:r+"."}):Object.assign(Object.assign({},e),{errorMessage:`${r} ("${t}").`})},R=Symbol();class K{constructor(e,t){this.allOptionNames=[],this.arity={leading:[],trailing:[],extra:[],proxy:!1},this.options=[],this.paths=[],this.cliIndex=e,this.cliOpts=t}addPath(e){this.paths.push(e)}setArity({leading:e=this.arity.leading,trailing:t=this.arity.trailing,extra:r=this.arity.extra,proxy:n=this.arity.proxy}){Object.assign(this.arity,{leading:e,trailing:t,extra:r,proxy:n})}addPositional({name:e="arg",required:t=!0}={}){if(!t&&this.arity.extra===R)throw new Error("Optional parameters cannot be declared when using .rest() or .proxy()");if(!t&&this.arity.trailing.length>0)throw new Error("Optional parameters cannot be declared after the required trailing positional arguments");t||this.arity.extra===R?this.arity.extra!==R&&0===this.arity.extra.length?this.arity.leading.push(e):this.arity.trailing.push(e):this.arity.extra.push(e)}addRest({name:e="arg",required:t=0}={}){if(this.arity.extra===R)throw new Error("Infinite lists cannot be declared multiple times in the same command");if(this.arity.trailing.length>0)throw new Error("Infinite lists cannot be declared after the required trailing positional arguments");for(let r=0;r0&&t.push(...this.paths[0]),e){for(const{names:e,arity:r,hidden:n}of this.options){if(n)continue;const i=[];for(let e=0;e`<${e}>`)),this.arity.extra===R?t.push("..."):t.push(...this.arity.extra.map(e=>`[${e}]`)),t.push(...this.arity.trailing.map(e=>`<${e}>`))}return t.join(" ")}compile(){if(void 0===this.context)throw new Error("Assertion failed: No context attached");const e={nodes:[{dynamics:[],shortcuts:[],statics:{}},{dynamics:[],shortcuts:[],statics:{}},{dynamics:[],shortcuts:[],statics:{}}]};let t=0;t=d(e,{dynamics:[],shortcuts:[],statics:{}}),S(e,0,"",t,["setCandidateUsage",this.usage()]);const r=this.arity.proxy?"always":"isNotOptionLike",n=this.paths.length>0?this.paths:[[]];for(const i of n){let n=t;if(i.length>0){const t=d(e,{dynamics:[],shortcuts:[],statics:{}});D(e,n,t),this.registerOptions(e,t),n=t}for(let t=0;t0||!this.arity.proxy){const t=d(e,{dynamics:[],shortcuts:[],statics:{}});b(e,n,"isHelp",t,["useHelp",this.cliIndex]),S(e,t,"\0",1,["setSelectedIndex",-1]),this.registerOptions(e,n)}this.arity.leading.length>0&&S(e,n,"\0",2,["setError","Not enough positional arguments"]);let A=n;for(let t=0;t0||t+1!==this.arity.leading.length)&&S(e,r,"\0",2,["setError","Not enough positional arguments"]),b(e,A,"isNotOptionLike",r,"pushPositional"),A=r}let o=A;if(this.arity.extra===R||this.arity.extra.length>0){const t=d(e,{dynamics:[],shortcuts:[],statics:{}});if(D(e,A,t),this.arity.extra===R){const n=d(e,{dynamics:[],shortcuts:[],statics:{}});this.arity.proxy||this.registerOptions(e,n),b(e,A,r,n,"pushExtra"),b(e,n,r,n,"pushExtra"),D(e,n,t)}else for(let n=0;n0&&S(e,o,"\0",2,["setError","Not enough positional arguments"]);let s=o;for(let t=0;tt.length>e.length?t:e,"");if(0===r.arity)for(const i of r.names)b(e,t,["isOption",i,r.hidden||i!==n],t,"pushTrue"),i.startsWith("--")&&b(e,t,["isNegatedOption",i,r.hidden||i!==n],t,["pushFalse",i]);else{if(1!==r.arity)throw new Error(`Unsupported option arity (${r.arity})`);{const i=d(e,{dynamics:[],shortcuts:[],statics:{}});b(e,i,"isNotOptionLike",t,"setStringValue");for(const A of r.names)b(e,t,["isOption",A,r.hidden||A!==n],i,"pushUndefined")}}}}}class x{constructor({binaryName:e="..."}={}){this.builders=[],this.opts={binaryName:e}}static build(e,t={}){return new x(t).commands(e).compile()}getBuilderByIndex(e){if(!(e>=0&&e{if(t.has(n))return;t.add(n);const i=e.nodes[n];for(const e of Object.values(i.statics))for(const{to:t}of e)r(t);for(const[,{to:e}]of i.dynamics)r(e);for(const{to:e}of i.shortcuts)r(e);const A=new Set(i.shortcuts.map(({to:e})=>e));for(;i.shortcuts.length>0;){const{to:t}=i.shortcuts.shift(),r=e.nodes[t];for(const[e,t]of Object.entries(r.statics)){let r=Object.prototype.hasOwnProperty.call(i.statics,e)?i.statics[e]:i.statics[e]=[];for(const e of t)r.some(({to:t})=>e.to===t)||r.push(e)}for(const[e,t]of r.dynamics)i.dynamics.some(([r,{to:n}])=>e===r&&t.to===n)||i.dynamics.push([e,t]);for(const e of r.shortcuts)A.has(e.to)||(i.shortcuts.push(e),A.add(e.to))}};r(0)}(r),{machine:r,contexts:t,process:e=>m(r,e),suggest:(e,t)=>function(e,t,r){const n=r&&t.length>0?[""]:[],i=I(e,t,r),A=[],o=new Set,s=(t,r,n=!0)=>{let i=[r];for(;i.length>0;){const r=i;i=[];for(const A of r){const r=e.nodes[A],o=Object.keys(r.statics);for(const e of Object.keys(r.statics)){const e=o[0];for(const{to:A,reducer:o}of r.statics[e])"pushPath"===o&&(n||t.push(e),i.push(A))}}n=!1}const s=JSON.stringify(t);o.has(s)||(A.push(t),o.add(s))};for(const{node:t,state:r}of i){if(null!==r.remainder){s([r.remainder],t);continue}const i=e.nodes[t],A=E(i,r);for(const[e,r]of Object.entries(i.statics))(A&&"\0"!==e||!e.startsWith("-")&&r.some(({reducer:e})=>"pushPath"===e))&&s([...n,e],t);if(A)for(const[e,{to:A}]of i.dynamics){if(2===A)continue;const i=M(e,r);if(null!==i)for(const e of i)s([...n,e],t)}}return[...A].sort()}(r,e,t)}}}const L={bold:e=>`${e}`,error:e=>`${e}`,code:e=>`${e}`},P={bold:e=>e,error:e=>e,code:e=>e};function U(e,{format:t,paragraphs:r}){return e=(e=(e=(e=(e=e.replace(/\r\n?/g,"\n")).replace(/^[\t ]+|[\t ]+$/gm,"")).replace(/^\n+|\n+$/g,"")).replace(/^-([^\n]*?)\n+/gm,"-$1\n\n")).replace(/\n(\n)?\n*/g,"$1"),r&&(e=e.split(/\n/).map((function(e){let t=e.match(/^[*-][\t ]+(.*)/);return t?t[1].match(/(.{1,78})(?: |$)/g).map((e,t)=>(0===t?"- ":" ")+e).join("\n"):e.match(/(.{1,80})(?: |$)/g).join("\n")})).join("\n\n")),(e=e.replace(/(`+)((?:.|[\n])*?)\1/g,(function(e,r,n){return t.code(r+n+r)})))?e+"\n":""}class T extends n{constructor(e,t){super(),this.realCli=e,this.contexts=t,this.commands=[]}static from(e,t,r){const n=new T(t,r);n.path=e.path;for(const t of e.options)switch(t.name){case"-c":n.commands.push(Number(t.value));break;case"-i":n.index=Number(t.value)}return n}async execute(){let e=this.commands;if(void 0!==this.index&&this.index>=0&&this.index1){this.context.stdout.write("Multiple commands match your selection:\n"),this.context.stdout.write("\n");let e=0;for(const t of this.commands)this.context.stdout.write(this.realCli.usage(this.contexts[t].commandClass,{prefix:(e+++". ").padStart(5)}));this.context.stdout.write("\n"),this.context.stdout.write("Run again with -h= to see the longer details of any of those commands.\n")}}}function O(){return"0"!==process.env.FORCE_COLOR&&("1"===process.env.FORCE_COLOR||!(void 0===process.stdout||!process.stdout.isTTY))}class j{constructor({binaryLabel:e,binaryName:t="...",binaryVersion:r,enableColors:n=O()}={}){this.registrations=new Map,this.builder=new x({binaryName:t}),this.binaryLabel=e,this.binaryName=t,this.binaryVersion=r,this.enableColors=n}static from(e,t={}){const r=new j(t);for(const t of e)r.register(t);return r}register(e){const t=this.builder.command();this.registrations.set(e,t.cliIndex);const{definitions:r}=e.resolveMeta(e.prototype);for(const e of r)e(t);t.setContext({commandClass:e})}process(e){const{contexts:t,process:r}=this.builder.compile(),n=r(e);switch(n.selectedIndex){case-1:return T.from(n,this,t);default:{const{commandClass:e}=t[n.selectedIndex],r=new e;r.path=n.path;const{transformers:i}=e.resolveMeta(e.prototype);for(const e of i)e(n,r);return r}}}async run(e,t){let r,n;if(Array.isArray(e))try{r=this.process(e)}catch(e){return t.stdout.write(this.error(e)),1}else r=e;if(r.help)return t.stdout.write(this.usage(r,{detailed:!0})),0;r.context=t,r.cli={binaryLabel:this.binaryLabel,binaryName:this.binaryName,binaryVersion:this.binaryVersion,enableColors:this.enableColors,definitions:()=>this.definitions(),error:(e,t)=>this.error(e,t),process:e=>this.process(e),run:(e,r)=>this.run(e,Object.assign(Object.assign({},t),r)),usage:(e,t)=>this.usage(e,t)};try{n=await r.validateAndExecute()}catch(e){return t.stdout.write(this.error(e,{command:r})),1}return n}async runExit(e,t){process.exitCode=await this.run(e,t)}suggest(e,t){const{contexts:r,process:n,suggest:i}=this.builder.compile();return i(e,t)}definitions({colored:e=!1}={}){const t=[];for(const[r,n]of this.registrations){if(void 0===r.usage)continue;const i=this.getUsageByIndex(n,{detailed:!1}),A=this.getUsageByIndex(n,{detailed:!0}),o=void 0!==r.usage.category?U(r.usage.category,{format:this.format(e),paragraphs:!1}):void 0,s=void 0!==r.usage.description?U(r.usage.description,{format:this.format(e),paragraphs:!1}):void 0,a=void 0!==r.usage.details?U(r.usage.details,{format:this.format(e),paragraphs:!0}):void 0,c=void 0!==r.usage.examples?r.usage.examples.map(([t,r])=>[U(t,{format:this.format(e),paragraphs:!1}),r.replace(/\$0/g,this.binaryName)]):void 0;t.push({path:i,usage:A,category:o,description:s,details:a,examples:c})}return t}usage(e=null,{colored:t,detailed:r=!1,prefix:n="$ "}={}){const i=null!==e&&void 0===e.getMeta?e.constructor:e;let A="";if(i)if(r){const{description:e="",details:r="",examples:o=[]}=i.usage||{};if(""!==e&&(A+=U(e,{format:this.format(t),paragraphs:!1}).replace(/^./,e=>e.toUpperCase()),A+="\n"),(""!==r||o.length>0)&&(A+=this.format(t).bold("Usage:")+"\n",A+="\n"),A+=`${this.format(t).bold(n)}${this.getUsageByRegistration(i)}\n`,""!==r&&(A+="\n",A+=this.format(t).bold("Details:")+"\n",A+="\n",A+=U(r,{format:this.format(t),paragraphs:!0})),o.length>0){A+="\n",A+=this.format(t).bold("Examples:")+"\n";for(let[e,r]of o)A+="\n",A+=U(e,{format:this.format(t),paragraphs:!1}),A+=r.replace(/^/m," "+this.format(t).bold(n)).replace(/\$0/g,this.binaryName)+"\n"}}else A+=`${this.format(t).bold(n)}${this.getUsageByRegistration(i)}\n`;else{const e=new Map;for(const[r,n]of this.registrations.entries()){if(void 0===r.usage)continue;const i=void 0!==r.usage.category?U(r.usage.category,{format:this.format(t),paragraphs:!1}):null;let A=e.get(i);void 0===A&&e.set(i,A=[]);const o=this.getUsageByIndex(n);A.push({commandClass:r,usage:o})}const r=Array.from(e.keys()).sort((e,t)=>null===e?-1:null===t?1:e.localeCompare(t,"en",{usage:"sort",caseFirst:"upper"})),i=void 0!==this.binaryLabel,o=void 0!==this.binaryVersion;i||o?(A+=i&&o?this.format(t).bold(`${this.binaryLabel} - ${this.binaryVersion}`)+"\n\n":i?this.format(t).bold(""+this.binaryLabel)+"\n":this.format(t).bold(""+this.binaryVersion)+"\n",A+=` ${this.format(t).bold(n)}${this.binaryName} \n`):A+=`${this.format(t).bold(n)}${this.binaryName} \n`;for(let n of r){const r=e.get(n).slice().sort((e,t)=>e.usage.localeCompare(t.usage,"en",{usage:"sort",caseFirst:"upper"})),i=null!==n?n.trim():"Where is one of";A+="\n",A+=this.format(t).bold(i+":")+"\n";for(let{commandClass:e,usage:n}of r){const r=e.usage.description||"undocumented";A+="\n",A+=` ${this.format(t).bold(n)}\n`,A+=" "+U(r,{format:this.format(t),paragraphs:!1})}}A+="\n",A+=U("You can also print more details about any of these commands by calling them after adding the `-h,--help` flag right after the command name.",{format:this.format(t),paragraphs:!0})}return A}error(e,{colored:t,command:r=null}={}){e instanceof Error||(e=new Error(`Execution failed with a non-error rejection (rejected value: ${JSON.stringify(e)})`));let n="",i=e.name.replace(/([a-z])([A-Z])/g,"$1 $2");"Error"===i&&(i="Internal Error"),n+=`${this.format(t).error(i)}: ${e.message}\n`;const A=e.clipanion;return void 0!==A?"usage"===A.type&&(n+="\n",n+=this.usage(r)):e.stack&&(n+=e.stack.replace(/^.*\n/,"")+"\n"),n}getUsageByRegistration(e,t){const r=this.registrations.get(e);if(void 0===r)throw new Error("Assertion failed: Unregistered command");return this.getUsageByIndex(r,t)}getUsageByIndex(e,t){return this.builder.getBuilderByIndex(e).usage(t)}format(e=this.enableColors){return e?L:P}}j.defaultContext={stdin:process.stdin,stdout:process.stdout,stderr:process.stderr},n.Entries.Help=A,n.Entries.Version=o},15751:(e,t,r)=>{"use strict";const n=r(92413).PassThrough,i=r(65007);e.exports=e=>{if(!e||!e.pipe)throw new TypeError("Parameter `response` must be a response stream.");const t=new n;return i(e,t),e.pipe(t)}},15311:(e,t,r)=>{const n=r(93300),i={};for(const e of Object.keys(n))i[n[e]]=e;const A={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};e.exports=A;for(const e of Object.keys(A)){if(!("channels"in A[e]))throw new Error("missing channels property: "+e);if(!("labels"in A[e]))throw new Error("missing channel labels property: "+e);if(A[e].labels.length!==A[e].channels)throw new Error("channel and label counts mismatch: "+e);const{channels:t,labels:r}=A[e];delete A[e].channels,delete A[e].labels,Object.defineProperty(A[e],"channels",{value:t}),Object.defineProperty(A[e],"labels",{value:r})}A.rgb.hsl=function(e){const t=e[0]/255,r=e[1]/255,n=e[2]/255,i=Math.min(t,r,n),A=Math.max(t,r,n),o=A-i;let s,a;A===i?s=0:t===A?s=(r-n)/o:r===A?s=2+(n-t)/o:n===A&&(s=4+(t-r)/o),s=Math.min(60*s,360),s<0&&(s+=360);const c=(i+A)/2;return a=A===i?0:c<=.5?o/(A+i):o/(2-A-i),[s,100*a,100*c]},A.rgb.hsv=function(e){let t,r,n,i,A;const o=e[0]/255,s=e[1]/255,a=e[2]/255,c=Math.max(o,s,a),g=c-Math.min(o,s,a),l=function(e){return(c-e)/6/g+.5};return 0===g?(i=0,A=0):(A=g/c,t=l(o),r=l(s),n=l(a),o===c?i=n-r:s===c?i=1/3+t-n:a===c&&(i=2/3+r-t),i<0?i+=1:i>1&&(i-=1)),[360*i,100*A,100*c]},A.rgb.hwb=function(e){const t=e[0],r=e[1];let n=e[2];const i=A.rgb.hsl(e)[0],o=1/255*Math.min(t,Math.min(r,n));return n=1-1/255*Math.max(t,Math.max(r,n)),[i,100*o,100*n]},A.rgb.cmyk=function(e){const t=e[0]/255,r=e[1]/255,n=e[2]/255,i=Math.min(1-t,1-r,1-n);return[100*((1-t-i)/(1-i)||0),100*((1-r-i)/(1-i)||0),100*((1-n-i)/(1-i)||0),100*i]},A.rgb.keyword=function(e){const t=i[e];if(t)return t;let r,A=1/0;for(const t of Object.keys(n)){const i=n[t],a=(s=i,((o=e)[0]-s[0])**2+(o[1]-s[1])**2+(o[2]-s[2])**2);a.04045?((t+.055)/1.055)**2.4:t/12.92,r=r>.04045?((r+.055)/1.055)**2.4:r/12.92,n=n>.04045?((n+.055)/1.055)**2.4:n/12.92;return[100*(.4124*t+.3576*r+.1805*n),100*(.2126*t+.7152*r+.0722*n),100*(.0193*t+.1192*r+.9505*n)]},A.rgb.lab=function(e){const t=A.rgb.xyz(e);let r=t[0],n=t[1],i=t[2];r/=95.047,n/=100,i/=108.883,r=r>.008856?r**(1/3):7.787*r+16/116,n=n>.008856?n**(1/3):7.787*n+16/116,i=i>.008856?i**(1/3):7.787*i+16/116;return[116*n-16,500*(r-n),200*(n-i)]},A.hsl.rgb=function(e){const t=e[0]/360,r=e[1]/100,n=e[2]/100;let i,A,o;if(0===r)return o=255*n,[o,o,o];i=n<.5?n*(1+r):n+r-n*r;const s=2*n-i,a=[0,0,0];for(let e=0;e<3;e++)A=t+1/3*-(e-1),A<0&&A++,A>1&&A--,o=6*A<1?s+6*(i-s)*A:2*A<1?i:3*A<2?s+(i-s)*(2/3-A)*6:s,a[e]=255*o;return a},A.hsl.hsv=function(e){const t=e[0];let r=e[1]/100,n=e[2]/100,i=r;const A=Math.max(n,.01);n*=2,r*=n<=1?n:2-n,i*=A<=1?A:2-A;return[t,100*(0===n?2*i/(A+i):2*r/(n+r)),100*((n+r)/2)]},A.hsv.rgb=function(e){const t=e[0]/60,r=e[1]/100;let n=e[2]/100;const i=Math.floor(t)%6,A=t-Math.floor(t),o=255*n*(1-r),s=255*n*(1-r*A),a=255*n*(1-r*(1-A));switch(n*=255,i){case 0:return[n,a,o];case 1:return[s,n,o];case 2:return[o,n,a];case 3:return[o,s,n];case 4:return[a,o,n];case 5:return[n,o,s]}},A.hsv.hsl=function(e){const t=e[0],r=e[1]/100,n=e[2]/100,i=Math.max(n,.01);let A,o;o=(2-r)*n;const s=(2-r)*i;return A=r*i,A/=s<=1?s:2-s,A=A||0,o/=2,[t,100*A,100*o]},A.hwb.rgb=function(e){const t=e[0]/360;let r=e[1]/100,n=e[2]/100;const i=r+n;let A;i>1&&(r/=i,n/=i);const o=Math.floor(6*t),s=1-n;A=6*t-o,0!=(1&o)&&(A=1-A);const a=r+A*(s-r);let c,g,l;switch(o){default:case 6:case 0:c=s,g=a,l=r;break;case 1:c=a,g=s,l=r;break;case 2:c=r,g=s,l=a;break;case 3:c=r,g=a,l=s;break;case 4:c=a,g=r,l=s;break;case 5:c=s,g=r,l=a}return[255*c,255*g,255*l]},A.cmyk.rgb=function(e){const t=e[0]/100,r=e[1]/100,n=e[2]/100,i=e[3]/100;return[255*(1-Math.min(1,t*(1-i)+i)),255*(1-Math.min(1,r*(1-i)+i)),255*(1-Math.min(1,n*(1-i)+i))]},A.xyz.rgb=function(e){const t=e[0]/100,r=e[1]/100,n=e[2]/100;let i,A,o;return i=3.2406*t+-1.5372*r+-.4986*n,A=-.9689*t+1.8758*r+.0415*n,o=.0557*t+-.204*r+1.057*n,i=i>.0031308?1.055*i**(1/2.4)-.055:12.92*i,A=A>.0031308?1.055*A**(1/2.4)-.055:12.92*A,o=o>.0031308?1.055*o**(1/2.4)-.055:12.92*o,i=Math.min(Math.max(0,i),1),A=Math.min(Math.max(0,A),1),o=Math.min(Math.max(0,o),1),[255*i,255*A,255*o]},A.xyz.lab=function(e){let t=e[0],r=e[1],n=e[2];t/=95.047,r/=100,n/=108.883,t=t>.008856?t**(1/3):7.787*t+16/116,r=r>.008856?r**(1/3):7.787*r+16/116,n=n>.008856?n**(1/3):7.787*n+16/116;return[116*r-16,500*(t-r),200*(r-n)]},A.lab.xyz=function(e){let t,r,n;r=(e[0]+16)/116,t=e[1]/500+r,n=r-e[2]/200;const i=r**3,A=t**3,o=n**3;return r=i>.008856?i:(r-16/116)/7.787,t=A>.008856?A:(t-16/116)/7.787,n=o>.008856?o:(n-16/116)/7.787,t*=95.047,r*=100,n*=108.883,[t,r,n]},A.lab.lch=function(e){const t=e[0],r=e[1],n=e[2];let i;i=360*Math.atan2(n,r)/2/Math.PI,i<0&&(i+=360);return[t,Math.sqrt(r*r+n*n),i]},A.lch.lab=function(e){const t=e[0],r=e[1],n=e[2]/360*2*Math.PI;return[t,r*Math.cos(n),r*Math.sin(n)]},A.rgb.ansi16=function(e,t=null){const[r,n,i]=e;let o=null===t?A.rgb.hsv(e)[2]:t;if(o=Math.round(o/50),0===o)return 30;let s=30+(Math.round(i/255)<<2|Math.round(n/255)<<1|Math.round(r/255));return 2===o&&(s+=60),s},A.hsv.ansi16=function(e){return A.rgb.ansi16(A.hsv.rgb(e),e[2])},A.rgb.ansi256=function(e){const t=e[0],r=e[1],n=e[2];if(t===r&&r===n)return t<8?16:t>248?231:Math.round((t-8)/247*24)+232;return 16+36*Math.round(t/255*5)+6*Math.round(r/255*5)+Math.round(n/255*5)},A.ansi16.rgb=function(e){let t=e%10;if(0===t||7===t)return e>50&&(t+=3.5),t=t/10.5*255,[t,t,t];const r=.5*(1+~~(e>50));return[(1&t)*r*255,(t>>1&1)*r*255,(t>>2&1)*r*255]},A.ansi256.rgb=function(e){if(e>=232){const t=10*(e-232)+8;return[t,t,t]}let t;e-=16;return[Math.floor(e/36)/5*255,Math.floor((t=e%36)/6)/5*255,t%6/5*255]},A.rgb.hex=function(e){const t=(((255&Math.round(e[0]))<<16)+((255&Math.round(e[1]))<<8)+(255&Math.round(e[2]))).toString(16).toUpperCase();return"000000".substring(t.length)+t},A.hex.rgb=function(e){const t=e.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!t)return[0,0,0];let r=t[0];3===t[0].length&&(r=r.split("").map(e=>e+e).join(""));const n=parseInt(r,16);return[n>>16&255,n>>8&255,255&n]},A.rgb.hcg=function(e){const t=e[0]/255,r=e[1]/255,n=e[2]/255,i=Math.max(Math.max(t,r),n),A=Math.min(Math.min(t,r),n),o=i-A;let s,a;return s=o<1?A/(1-o):0,a=o<=0?0:i===t?(r-n)/o%6:i===r?2+(n-t)/o:4+(t-r)/o,a/=6,a%=1,[360*a,100*o,100*s]},A.hsl.hcg=function(e){const t=e[1]/100,r=e[2]/100,n=r<.5?2*t*r:2*t*(1-r);let i=0;return n<1&&(i=(r-.5*n)/(1-n)),[e[0],100*n,100*i]},A.hsv.hcg=function(e){const t=e[1]/100,r=e[2]/100,n=t*r;let i=0;return n<1&&(i=(r-n)/(1-n)),[e[0],100*n,100*i]},A.hcg.rgb=function(e){const t=e[0]/360,r=e[1]/100,n=e[2]/100;if(0===r)return[255*n,255*n,255*n];const i=[0,0,0],A=t%1*6,o=A%1,s=1-o;let a=0;switch(Math.floor(A)){case 0:i[0]=1,i[1]=o,i[2]=0;break;case 1:i[0]=s,i[1]=1,i[2]=0;break;case 2:i[0]=0,i[1]=1,i[2]=o;break;case 3:i[0]=0,i[1]=s,i[2]=1;break;case 4:i[0]=o,i[1]=0,i[2]=1;break;default:i[0]=1,i[1]=0,i[2]=s}return a=(1-r)*n,[255*(r*i[0]+a),255*(r*i[1]+a),255*(r*i[2]+a)]},A.hcg.hsv=function(e){const t=e[1]/100,r=t+e[2]/100*(1-t);let n=0;return r>0&&(n=t/r),[e[0],100*n,100*r]},A.hcg.hsl=function(e){const t=e[1]/100,r=e[2]/100*(1-t)+.5*t;let n=0;return r>0&&r<.5?n=t/(2*r):r>=.5&&r<1&&(n=t/(2*(1-r))),[e[0],100*n,100*r]},A.hcg.hwb=function(e){const t=e[1]/100,r=t+e[2]/100*(1-t);return[e[0],100*(r-t),100*(1-r)]},A.hwb.hcg=function(e){const t=e[1]/100,r=1-e[2]/100,n=r-t;let i=0;return n<1&&(i=(r-n)/(1-n)),[e[0],100*n,100*i]},A.apple.rgb=function(e){return[e[0]/65535*255,e[1]/65535*255,e[2]/65535*255]},A.rgb.apple=function(e){return[e[0]/255*65535,e[1]/255*65535,e[2]/255*65535]},A.gray.rgb=function(e){return[e[0]/100*255,e[0]/100*255,e[0]/100*255]},A.gray.hsl=function(e){return[0,0,e[0]]},A.gray.hsv=A.gray.hsl,A.gray.hwb=function(e){return[0,100,e[0]]},A.gray.cmyk=function(e){return[0,0,0,e[0]]},A.gray.lab=function(e){return[e[0],0,0]},A.gray.hex=function(e){const t=255&Math.round(e[0]/100*255),r=((t<<16)+(t<<8)+t).toString(16).toUpperCase();return"000000".substring(r.length)+r},A.rgb.gray=function(e){return[(e[0]+e[1]+e[2])/3/255*100]}},2744:(e,t,r)=>{const n=r(15311),i=r(78577),A={};Object.keys(n).forEach(e=>{A[e]={},Object.defineProperty(A[e],"channels",{value:n[e].channels}),Object.defineProperty(A[e],"labels",{value:n[e].labels});const t=i(e);Object.keys(t).forEach(r=>{const n=t[r];A[e][r]=function(e){const t=function(...t){const r=t[0];if(null==r)return r;r.length>1&&(t=r);const n=e(t);if("object"==typeof n)for(let e=n.length,t=0;t1&&(t=r),e(t))};return"conversion"in e&&(t.conversion=e.conversion),t}(n)})}),e.exports=A},78577:(e,t,r)=>{const n=r(15311);function i(e){const t=function(){const e={},t=Object.keys(n);for(let r=t.length,n=0;n{"use strict";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},67566:(e,t,r)=>{"use strict";const n=r(63129),i=r(14951),A=r(10779);function o(e,t,r){const o=i(e,t,r),s=n.spawn(o.command,o.args,o.options);return A.hookChildProcess(s,o),s}e.exports=o,e.exports.spawn=o,e.exports.sync=function(e,t,r){const o=i(e,t,r),s=n.spawnSync(o.command,o.args,o.options);return s.error=s.error||A.verifyENOENTSync(s.status,o),s},e.exports._parse=i,e.exports._enoent=A},10779:e=>{"use strict";const t="win32"===process.platform;function r(e,t){return Object.assign(new Error(`${t} ${e.command} ENOENT`),{code:"ENOENT",errno:"ENOENT",syscall:`${t} ${e.command}`,path:e.command,spawnargs:e.args})}function n(e,n){return t&&1===e&&!n.file?r(n.original,"spawn"):null}e.exports={hookChildProcess:function(e,r){if(!t)return;const i=e.emit;e.emit=function(t,A){if("exit"===t){const t=n(A,r);if(t)return i.call(e,"error",t)}return i.apply(e,arguments)}},verifyENOENT:n,verifyENOENTSync:function(e,n){return t&&1===e&&!n.file?r(n.original,"spawnSync"):null},notFoundError:r}},14951:(e,t,r)=>{"use strict";const n=r(85622),i=r(47447),A=r(27066),o=r(35187),s="win32"===process.platform,a=/\.(?:com|exe)$/i,c=/node_modules[\\/].bin[\\/][^\\/]+\.cmd$/i;function g(e){if(!s)return e;const t=function(e){e.file=i(e);const t=e.file&&o(e.file);return t?(e.args.unshift(e.file),e.command=t,i(e)):e.file}(e),r=!a.test(t);if(e.options.forceShell||r){const r=c.test(t);e.command=n.normalize(e.command),e.command=A.command(e.command),e.args=e.args.map(e=>A.argument(e,r));const i=[e.command].concat(e.args).join(" ");e.args=["/d","/s","/c",`"${i}"`],e.command=process.env.comspec||"cmd.exe",e.options.windowsVerbatimArguments=!0}return e}e.exports=function(e,t,r){t&&!Array.isArray(t)&&(r=t,t=null);const n={command:e,args:t=t?t.slice(0):[],options:r=Object.assign({},r),file:void 0,original:{command:e,args:t}};return r.shell?n:g(n)}},27066:e=>{"use strict";const t=/([()\][%!^"`<>&|;, *?])/g;e.exports.command=function(e){return e=e.replace(t,"^$1")},e.exports.argument=function(e,r){return e=(e=`"${e=(e=(e=""+e).replace(/(\\*)"/g,'$1$1\\"')).replace(/(\\*)$/,"$1$1")}"`).replace(t,"^$1"),r&&(e=e.replace(t,"^$1")),e}},35187:(e,t,r)=>{"use strict";const n=r(35747),i=r(91470);e.exports=function(e){const t=Buffer.alloc(150);let r;try{r=n.openSync(e,"r"),n.readSync(r,t,0,150,0),n.closeSync(r)}catch(e){}return i(t.toString())}},47447:(e,t,r)=>{"use strict";const n=r(85622),i=r(87945),A=r(37127);function o(e,t){const r=e.options.env||process.env,o=process.cwd(),s=null!=e.options.cwd,a=s&&void 0!==process.chdir&&!process.chdir.disabled;if(a)try{process.chdir(e.options.cwd)}catch(e){}let c;try{c=i.sync(e.command,{path:r[A({env:r})],pathExt:t?n.delimiter:void 0})}catch(e){}finally{a&&process.chdir(o)}return c&&(c=n.resolve(s?e.options.cwd:"",c)),c}e.exports=function(e){return o(e)||o(e,!0)}},53832:(e,t,r)=>{"use strict";const{pipeline:n,PassThrough:i}=r(92413),A=r(78761),o=r(60102);e.exports=e=>{const t=(e.headers["content-encoding"]||"").toLowerCase();if(!["gzip","deflate","br"].includes(t))return e;const r="br"===t;if(r&&"function"!=typeof A.createBrotliDecompress)return e;const s=r?A.createBrotliDecompress():A.createUnzip(),a=new i;s.on("error",e=>{"Z_BUF_ERROR"!==e.code?a.emit("error",e):a.end()});const c=n(e,s,a,()=>{});return o(e,c),c}},93121:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(4016),i=(e,t)=>{let r;if("function"==typeof t){r={connect:t}}else r=t;const i="function"==typeof r.connect,A="function"==typeof r.secureConnect,o="function"==typeof r.close,s=()=>{i&&r.connect(),e instanceof n.TLSSocket&&A&&(e.authorized?r.secureConnect():e.authorizationError||e.once("secureConnect",r.secureConnect)),o&&e.once("close",r.close)};e.writable&&!e.connecting?s():e.connecting?e.once("connect",s):e.destroyed&&o&&r.close(e._hadError)};t.default=i,e.exports=i,e.exports.default=i},66241:(e,t,r)=>{"use strict";const n=r(85622),i=r(5763),A=e=>e.length>1?`{${e.join(",")}}`:e[0],o=(e,t)=>{const r="!"===e[0]?e.slice(1):e;return n.isAbsolute(r)?r:n.join(t,r)},s=(e,t)=>{if(t.files&&!Array.isArray(t.files))throw new TypeError(`Expected \`files\` to be of type \`Array\` but received type \`${typeof t.files}\``);if(t.extensions&&!Array.isArray(t.extensions))throw new TypeError(`Expected \`extensions\` to be of type \`Array\` but received type \`${typeof t.extensions}\``);return t.files&&t.extensions?t.files.map(r=>{return n.posix.join(e,(i=r,o=t.extensions,n.extname(i)?"**/"+i:`**/${i}.${A(o)}`));var i,o}):t.files?t.files.map(t=>n.posix.join(e,"**/"+t)):t.extensions?[n.posix.join(e,"**/*."+A(t.extensions))]:[n.posix.join(e,"**")]};e.exports=async(e,t)=>{if("string"!=typeof(t={cwd:process.cwd(),...t}).cwd)throw new TypeError(`Expected \`cwd\` to be of type \`string\` but received type \`${typeof t.cwd}\``);const r=await Promise.all([].concat(e).map(async e=>await i.isDirectory(o(e,t.cwd))?s(e,t):e));return[].concat.apply([],r)},e.exports.sync=(e,t)=>{if("string"!=typeof(t={cwd:process.cwd(),...t}).cwd)throw new TypeError(`Expected \`cwd\` to be of type \`string\` but received type \`${typeof t.cwd}\``);const r=[].concat(e).map(e=>i.isDirectorySync(o(e,t.cwd))?s(e,t):e);return[].concat.apply([],r)}},97681:(e,t,r)=>{var n=r(91162),i=function(){},A=function(e,t,r){if("function"==typeof t)return A(e,null,t);t||(t={}),r=n(r||i);var o=e._writableState,s=e._readableState,a=t.readable||!1!==t.readable&&e.readable,c=t.writable||!1!==t.writable&&e.writable,g=function(){e.writable||l()},l=function(){c=!1,a||r()},u=function(){a=!1,c||r()},h=function(e){r(e?new Error("exited with error code: "+e):null)},f=function(){return(!a||s&&s.ended)&&(!c||o&&o.ended)?void 0:r(new Error("premature close"))},p=function(){e.req.on("finish",l)};return!function(e){return e.setHeader&&"function"==typeof e.abort}(e)?c&&!o&&(e.on("end",g),e.on("close",g)):(e.on("complete",l),e.on("abort",f),e.req?p():e.on("request",p)),function(e){return e.stdio&&Array.isArray(e.stdio)&&3===e.stdio.length}(e)&&e.on("exit",h),e.on("end",u),e.on("finish",l),!1!==t.error&&e.on("error",r),e.on("close",f),function(){e.removeListener("complete",l),e.removeListener("abort",f),e.removeListener("request",p),e.req&&e.req.removeListener("finish",l),e.removeListener("end",g),e.removeListener("close",g),e.removeListener("finish",l),e.removeListener("exit",h),e.removeListener("end",u),e.removeListener("error",r),e.removeListener("close",f)}};e.exports=A},17067:(e,t,r)=>{var n=r(27180),i=function(){},A=function(e,t,r){if("function"==typeof t)return A(e,null,t);t||(t={}),r=n(r||i);var o=e._writableState,s=e._readableState,a=t.readable||!1!==t.readable&&e.readable,c=t.writable||!1!==t.writable&&e.writable,g=function(){e.writable||l()},l=function(){c=!1,a||r.call(e)},u=function(){a=!1,c||r.call(e)},h=function(t){r.call(e,t?new Error("exited with error code: "+t):null)},f=function(t){r.call(e,t)},p=function(){return(!a||s&&s.ended)&&(!c||o&&o.ended)?void 0:r.call(e,new Error("premature close"))},C=function(){e.req.on("finish",l)};return!function(e){return e.setHeader&&"function"==typeof e.abort}(e)?c&&!o&&(e.on("end",g),e.on("close",g)):(e.on("complete",l),e.on("abort",p),e.req?C():e.on("request",C)),function(e){return e.stdio&&Array.isArray(e.stdio)&&3===e.stdio.length}(e)&&e.on("exit",h),e.on("end",u),e.on("finish",l),!1!==t.error&&e.on("error",f),e.on("close",p),function(){e.removeListener("complete",l),e.removeListener("abort",p),e.removeListener("request",C),e.req&&e.req.removeListener("finish",l),e.removeListener("end",g),e.removeListener("close",g),e.removeListener("finish",l),e.removeListener("exit",h),e.removeListener("end",u),e.removeListener("error",f),e.removeListener("close",p)}};e.exports=A},61899:(e,t,r)=>{"use strict";const n=r(42357),i=r(28614),A=r(10278);class o extends i{constructor(e,t){super(),this.options=A.merge({},e),this.answers={...t}}register(e,t){if(A.isObject(e)){for(let t of Object.keys(e))this.register(t,e[t]);return this}n.equal(typeof t,"function","expected a function");let r=e.toLowerCase();return t.prototype instanceof this.Prompt?this.prompts[r]=t:this.prompts[r]=t(this.Prompt,this),this}async prompt(e=[]){for(let t of[].concat(e))try{"function"==typeof t&&(t=await t.call(this)),await this.ask(A.merge({},this.options,t))}catch(e){return Promise.reject(e)}return this.answers}async ask(e){"function"==typeof e&&(e=await e.call(this));let t=A.merge({},this.options,e),{type:r,name:i}=e,{set:o,get:s}=A;if("function"==typeof r&&(r=await r.call(this,e,this.answers)),!r)return this.answers[i];n(this.prompts[r],`Prompt "${r}" is not registered`);let a=new this.prompts[r](t),c=s(this.answers,i);a.state.answers=this.answers,a.enquirer=this,i&&a.on("submit",e=>{this.emit("answer",i,e,a),o(this.answers,i,e)});let g=a.emit.bind(a);return a.emit=(...e)=>(this.emit.call(this,...e),g(...e)),this.emit("prompt",a,this),t.autofill&&null!=c?(a.value=a.input=c,"show"===t.autofill&&await a.submit()):c=a.value=await a.run(),c}use(e){return e.call(this,this),this}set Prompt(e){this._Prompt=e}get Prompt(){return this._Prompt||this.constructor.Prompt}get prompts(){return this.constructor.prompts}static set Prompt(e){this._Prompt=e}static get Prompt(){return this._Prompt||r(58386)}static get prompts(){return r(53609)}static get types(){return r(13235)}static get prompt(){const e=(t,...r)=>{let n=new this(...r),i=n.emit.bind(n);return n.emit=(...t)=>(e.emit(...t),i(...t)),n.prompt(t)};return A.mixinEmitter(e,new i),e}}A.mixinEmitter(o,new i);const s=o.prompts;for(let e of Object.keys(s)){let t=e.toLowerCase(),r=t=>new s[e](t).run();o.prompt[t]=r,o[t]=r,o[e]||Reflect.defineProperty(o,e,{get:()=>s[e]})}const a=e=>{A.defineExport(o,e,()=>o.types[e])};a("ArrayPrompt"),a("AuthPrompt"),a("BooleanPrompt"),a("NumberPrompt"),a("StringPrompt"),e.exports=o},72380:(e,t,r)=>{"use strict";const n="Apple_Terminal"===process.env.TERM_PROGRAM,i=r(97991),A=r(10278),o=e.exports=t,s="[";let a=!1;const c=o.code={bell:"",beep:"",beginning:"",down:"",esc:s,getPosition:"",hide:"[?25l",line:"",lineEnd:"",lineStart:"",restorePosition:s+(n?"8":"u"),savePosition:s+(n?"7":"s"),screen:"",show:"[?25h",up:""},g=o.cursor={get hidden(){return a},hide:()=>(a=!0,c.hide),show:()=>(a=!1,c.show),forward:(e=1)=>`[${e}C`,backward:(e=1)=>`[${e}D`,nextLine:(e=1)=>"".repeat(e),prevLine:(e=1)=>"".repeat(e),up:(e=1)=>e?`[${e}A`:"",down:(e=1)=>e?`[${e}B`:"",right:(e=1)=>e?`[${e}C`:"",left:(e=1)=>e?`[${e}D`:"",to:(e,t)=>t?`[${t+1};${e+1}H`:`[${e+1}G`,move(e=0,t=0){let r="";return r+=e<0?g.left(-e):e>0?g.right(e):"",r+=t<0?g.up(-t):t>0?g.down(t):"",r},restore(e={}){let{after:t,cursor:r,initial:n,input:i,prompt:s,size:a,value:c}=e;if(n=A.isPrimitive(n)?String(n):"",i=A.isPrimitive(i)?String(i):"",c=A.isPrimitive(c)?String(c):"",a){let e=o.cursor.up(a)+o.cursor.to(s.length),t=i.length-r;return t>0&&(e+=o.cursor.left(t)),e}if(c||t){let e=!i&&n?-n.length:-i.length+r;return t&&(e-=t.length),""===i&&n&&!s.includes(n)&&(e+=n.length),o.cursor.move(e)}}},l=o.erase={screen:c.screen,up:c.up,down:c.down,line:c.line,lineEnd:c.lineEnd,lineStart:c.lineStart,lines(e){let t="";for(let r=0;r{if(!t)return l.line+g.to(0);let r=e.split(/\r?\n/),n=0;for(let e of r)n+=1+Math.floor(Math.max((A=e,[...i.unstyle(A)].length-1),0)/t);var A;return(l.line+g.prevLine()).repeat(n-1)+l.line+g.to(0)}},62475:(e,t)=>{"use strict";t.ctrl={a:"first",b:"backward",c:"cancel",d:"deleteForward",e:"last",f:"forward",g:"reset",i:"tab",k:"cutForward",l:"reset",n:"newItem",m:"cancel",j:"submit",p:"search",r:"remove",s:"save",u:"undo",w:"cutLeft",x:"toggleCursor",v:"paste"},t.shift={up:"shiftUp",down:"shiftDown",left:"shiftLeft",right:"shiftRight",tab:"prev"},t.fn={up:"pageUp",down:"pageDown",left:"pageLeft",right:"pageRight",delete:"deleteForward"},t.option={b:"backward",f:"forward",d:"cutRight",left:"cutLeft",up:"altUp",down:"altDown"},t.keys={pageup:"pageUp",pagedown:"pageDown",home:"home",end:"end",cancel:"cancel",delete:"deleteForward",backspace:"delete",down:"down",enter:"submit",escape:"cancel",left:"left",space:"space",number:"number",return:"submit",right:"right",tab:"next",up:"up"}},64083:e=>{"use strict";const t=e=>(e=>e.filter((t,r)=>e.lastIndexOf(t)===r))(e).filter(Boolean);e.exports=(e,r={},n="")=>{let i,A,{past:o=[],present:s=""}=r;switch(e){case"prev":case"undo":return i=o.slice(0,o.length-1),A=o[o.length-1]||"",{past:t([n,...i]),present:A};case"next":case"redo":return i=o.slice(1),A=o[0]||"",{past:t([...i,n]),present:A};case"save":return{past:t([...o,n]),present:""};case"remove":return A=t(o.filter(e=>e!==n)),s="",A.length&&(s=A.pop()),{past:A,present:s};default:throw new Error(`Invalid action: "${e}"`)}}},84368:(e,t,r)=>{"use strict";const n=r(97991);class i{constructor(e){this.name=e.key,this.field=e.field||{},this.value=((e="")=>"string"==typeof e?e.replace(/^['"]|['"]$/g,""):"")(e.initial||this.field.initial||""),this.message=e.message||this.name,this.cursor=0,this.input="",this.lines=[]}}function A(e,t,r,n){return(r,i,A,o)=>"function"==typeof A.field[e]?A.field[e].call(t,r,i,A,o):[n,r].find(e=>t.isValue(e))}e.exports=async e=>{let t=e.options,r=new Set(!0===t.required?[]:t.required||[]),o={...t.values,...t.initial},{tabstops:s,items:a,keys:c}=await(async(e={},t={},r=(e=>e))=>{let n=new Set,A=e.fields||[],o=e.template,s=[],a=[],c=[],g=1;"function"==typeof o&&(o=await o());let l=-1,u=()=>o[++l],h=()=>o[l+1],f=e=>{e.line=g,s.push(e)};for(f({type:"bos",value:""});le.name===s.key);s.field=A.find(e=>e.name===s.key),g||(g=new i(s),a.push(g)),g.lines.push(s.line-1);continue}let o=s[s.length-1];"text"===o.type&&o.line===g?o.value+=e:f({type:"text",value:e})}return f({type:"eos",value:""}),{input:o,tabstops:s,unique:n,keys:c,items:a}})(t,o),g=A("result",e,t),l=A("format",e,t),u=A("validate",e,t,!0),h=e.isValue.bind(e);return async(i={},A=!1)=>{let o=0;i.required=r,i.items=a,i.keys=c,i.output="";let f=async(e,t,r,n)=>{let i=await u(e,t,r,n);return!1===i?"Invalid field "+r.name:i};for(let r of s){let s=r.value,c=r.key;if("template"===r.type){if("template"===r.type){let u=a.find(e=>e.name===c);!0===t.required&&i.required.add(u.name);let p=[u.input,i.values[u.value],u.value,s].find(h),C=(u.field||{}).message||r.inner;if(A){let e=await f(i.values[c],i,u,o);if(e&&"string"==typeof e||!1===e){i.invalid.set(c,e);continue}i.invalid.delete(c);let t=await g(i.values[c],i,u,o);i.output+=n.unstyle(t);continue}u.placeholder=!1;let d=s;s=await l(s,i,u,o),p!==s?(i.values[c]=p,s=e.styles.typing(p),i.missing.delete(C)):(i.values[c]=void 0,p=`<${C}>`,s=e.styles.primary(p),u.placeholder=!0,i.required.has(c)&&i.missing.add(C)),i.missing.has(C)&&i.validating&&(s=e.styles.warning(p)),i.invalid.has(c)&&i.validating&&(s=e.styles.danger(p)),o===i.index&&(s=d!==s?e.styles.underline(s):e.styles.heading(n.unstyle(s))),o++}s&&(i.output+=s)}else s&&(i.output+=s)}let p=i.output.split("\n").map(e=>" "+e),C=a.length,d=0;for(let t of a)i.invalid.has(t.name)&&t.lines.forEach(e=>{" "===p[e][0]&&(p[e]=i.styles.danger(i.symbols.bullet)+p[e].slice(1))}),e.isValue(i.values[t.name])&&d++;return i.completed=(d/C*100).toFixed(0),i.output=p.join("\n"),i.output}}},30650:(e,t,r)=>{"use strict";const n=r(51058),i=r(62475),A=/^(?:\x1b)([a-zA-Z0-9])$/,o=/^(?:\x1b+)(O|N|\[|\[\[)(?:(\d+)(?:;(\d+))?([~^$])|(?:1;)?(\d+)?([a-zA-Z]))/,s={OP:"f1",OQ:"f2",OR:"f3",OS:"f4","[11~":"f1","[12~":"f2","[13~":"f3","[14~":"f4","[[A":"f1","[[B":"f2","[[C":"f3","[[D":"f4","[[E":"f5","[15~":"f5","[17~":"f6","[18~":"f7","[19~":"f8","[20~":"f9","[21~":"f10","[23~":"f11","[24~":"f12","[A":"up","[B":"down","[C":"right","[D":"left","[E":"clear","[F":"end","[H":"home",OA:"up",OB:"down",OC:"right",OD:"left",OE:"clear",OF:"end",OH:"home","[1~":"home","[2~":"insert","[3~":"delete","[4~":"end","[5~":"pageup","[6~":"pagedown","[[5~":"pageup","[[6~":"pagedown","[7~":"home","[8~":"end","[a":"up","[b":"down","[c":"right","[d":"left","[e":"clear","[2$":"insert","[3$":"delete","[5$":"pageup","[6$":"pagedown","[7$":"home","[8$":"end",Oa:"up",Ob:"down",Oc:"right",Od:"left",Oe:"clear","[2^":"insert","[3^":"delete","[5^":"pageup","[6^":"pagedown","[7^":"home","[8^":"end","[Z":"tab"};const a=(e="",t={})=>{let r,n={name:t.name,ctrl:!1,meta:!1,shift:!1,option:!1,sequence:e,raw:e,...t};if(Buffer.isBuffer(e)?e[0]>127&&void 0===e[1]?(e[0]-=128,e=""+String(e)):e=String(e):void 0!==e&&"string"!=typeof e?e=String(e):e||(e=n.sequence||""),n.sequence=n.sequence||e||n.name,"\r"===e)n.raw=void 0,n.name="return";else if("\n"===e)n.name="enter";else if("\t"===e)n.name="tab";else if("\b"===e||""===e||""===e||"\b"===e)n.name="backspace",n.meta=""===e.charAt(0);else if(""===e||""===e)n.name="escape",n.meta=2===e.length;else if(" "===e||" "===e)n.name="space",n.meta=2===e.length;else if(e<="")n.name=String.fromCharCode(e.charCodeAt(0)+"a".charCodeAt(0)-1),n.ctrl=!0;else if(1===e.length&&e>="0"&&e<="9")n.name="number";else if(1===e.length&&e>="a"&&e<="z")n.name=e;else if(1===e.length&&e>="A"&&e<="Z")n.name=e.toLowerCase(),n.shift=!0;else if(r=A.exec(e))n.meta=!0,n.shift=/^[A-Z]$/.test(r[1]);else if(r=o.exec(e)){let t=[...e];""===t[0]&&""===t[1]&&(n.option=!0);let i=[r[1],r[2],r[4],r[6]].filter(Boolean).join(""),A=(r[3]||r[5]||1)-1;n.ctrl=!!(4&A),n.meta=!!(10&A),n.shift=!!(1&A),n.code=i,n.name=s[i],n.shift=function(e){return["[a","[b","[c","[d","[e","[2$","[3$","[5$","[6$","[7$","[8$","[Z"].includes(e)}(i)||n.shift,n.ctrl=function(e){return["Oa","Ob","Oc","Od","Oe","[2^","[3^","[5^","[6^","[7^","[8^"].includes(e)}(i)||n.ctrl}return n};a.listen=(e={},t)=>{let{stdin:r}=e;if(!r||r!==process.stdin&&!r.isTTY)throw new Error("Invalid stream passed");let i=n.createInterface({terminal:!0,input:r});n.emitKeypressEvents(r,i);let A=(e,r)=>t(e,a(e,r),i),o=r.isRaw;r.isTTY&&r.setRawMode(!0),r.on("keypress",A),i.resume();return()=>{r.isTTY&&r.setRawMode(o),r.removeListener("keypress",A),i.pause(),i.close()}},a.action=(e,t,r)=>{let n={...i,...r};return t.ctrl?(t.action=n.ctrl[t.name],t):t.option&&n.option?(t.action=n.option[t.name],t):t.shift?(t.action=n.shift[t.name],t):(t.action=n.keys[t.name],t)},e.exports=a},96496:(e,t,r)=>{"use strict";const n=r(10278);e.exports=(e,t={})=>{e.cursorHide();let{input:r="",initial:i="",pos:A,showCursor:o=!0,color:s}=t,a=s||e.styles.placeholder,c=n.inverse(e.styles.primary),g=t=>c(e.styles.black(t)),l=r,u=g(" ");if(e.blink&&!0===e.blink.off&&(g=e=>e,u=""),o&&0===A&&""===i&&""===r)return g(" ");if(o&&0===A&&(r===i||""===r))return g(i[0])+a(i.slice(1));i=n.isPrimitive(i)?""+i:"",r=n.isPrimitive(r)?""+r:"";let h=i&&i.startsWith(r)&&i!==r,f=h?g(i[r.length]):u;if(A!==r.length&&!0===o&&(l=r.slice(0,A)+g(r[A])+r.slice(A+1),f=""),!1===o&&(f=""),h){let t=e.styles.unstyle(l+f);return l+f+a(i.slice(t.length))}return l+f}},58386:(e,t,r)=>{"use strict";const n=r(28614),i=r(97991),A=r(30650),o=r(47159),s=r(61807),a=r(26205),c=r(10278),g=r(72380);class l extends n{constructor(e={}){super(),this.name=e.name,this.type=e.type,this.options=e,a(this),o(this),this.state=new s(this),this.initial=[e.initial,e.default].find(e=>null!=e),this.stdout=e.stdout||process.stdout,this.stdin=e.stdin||process.stdin,this.scale=e.scale||1,this.term=this.options.term||process.env.TERM_PROGRAM,this.margin=function(e){"number"==typeof e&&(e=[e,e,e,e]);let t=[].concat(e||[]),r=e=>e%2==0?"\n":" ",n=[];for(let e=0;e<4;e++){let i=r(e);t[e]?n.push(i.repeat(t[e])):n.push("")}return n}(this.options.margin),this.setMaxListeners(0),function(e){let t=t=>void 0===e[t]||"function"==typeof e[t],r=["actions","choices","initial","margin","roles","styles","symbols","theme","timers","value"],n=["body","footer","error","header","hint","indicator","message","prefix","separator","skip"];for(let i of Object.keys(e.options)){if(r.includes(i))continue;if(/^on[A-Z]/.test(i))continue;let A=e.options[i];"function"==typeof A&&t(i)?n.includes(i)||(e[i]=A.bind(e)):"function"!=typeof e[i]&&(e[i]=A)}}(this)}async keypress(e,t={}){this.keypressed=!0;let r=A.action(e,A(e,t),this.options.actions);this.state.keypress=r,this.emit("keypress",e,r),this.emit("state",this.state.clone());let n=this.options[r.action]||this[r.action]||this.dispatch;if("function"==typeof n)return await n.call(this,e,r);this.alert()}alert(){delete this.state.alert,!1===this.options.show?this.emit("alert"):this.stdout.write(g.code.beep)}cursorHide(){this.stdout.write(g.cursor.hide()),c.onExit(()=>this.cursorShow())}cursorShow(){this.stdout.write(g.cursor.show())}write(e){e&&(this.stdout&&!1!==this.state.show&&this.stdout.write(e),this.state.buffer+=e)}clear(e=0){let t=this.state.buffer;this.state.buffer="",(t||e)&&!1!==this.options.show&&this.stdout.write(g.cursor.down(e)+g.clear(t,this.width))}restore(){if(this.state.closed||!1===this.options.show)return;let{prompt:e,after:t,rest:r}=this.sections(),{cursor:n,initial:i="",input:A="",value:o=""}=this,s={after:t,cursor:n,initial:i,input:A,prompt:e,size:this.state.size=r.length,value:o},a=g.cursor.restore(s);a&&this.stdout.write(a)}sections(){let{buffer:e,input:t,prompt:r}=this.state;r=i.unstyle(r);let n=i.unstyle(e),A=n.indexOf(r),o=n.slice(0,A),s=n.slice(A).split("\n"),a=s[0],c=s[s.length-1],g=(r+(t?" "+t:"")).length,l=ge.call(this,this.value),this.result=()=>r.call(this,this.value),"function"==typeof t.initial&&(this.initial=await t.initial.call(this,this)),"function"==typeof t.onRun&&await t.onRun.call(this,this),"function"==typeof t.onSubmit){let e=t.onSubmit.bind(this),r=this.submit.bind(this);delete this.options.onSubmit,this.submit=async()=>(await e(this.name,this.value,this),r())}await this.start(),await this.render()}render(){throw new Error("expected prompt to have a custom render method")}run(){return new Promise(async(e,t)=>{if(this.once("submit",e),this.once("cancel",t),await this.skip())return this.render=()=>{},this.submit();await this.initialize(),this.emit("run")})}async element(e,t,r){let{options:n,state:i,symbols:A,timers:o}=this,s=o&&o[e];i.timer=s;let a=n[e]||i[e]||A[e],c=t&&null!=t[e]?t[e]:await a;if(""===c)return c;let g=await this.resolve(c,i,t,r);return!g&&t&&t[e]?this.resolve(a,i,t,r):g}async prefix(){let e=await this.element("prefix")||this.symbols,t=this.timers&&this.timers.prefix,r=this.state;if(r.timer=t,c.isObject(e)&&(e=e[r.status]||e.pending),!c.hasColor(e)){return(this.styles[r.status]||this.styles.pending)(e)}return e}async message(){let e=await this.element("message");return c.hasColor(e)?e:this.styles.strong(e)}async separator(){let e=await this.element("separator")||this.symbols,t=this.timers&&this.timers.separator,r=this.state;r.timer=t;let n=e[r.status]||e.pending||r.separator,i=await this.resolve(n,r);return c.isObject(i)&&(i=i[r.status]||i.pending),c.hasColor(i)?i:this.styles.muted(i)}async pointer(e,t){let r=await this.element("pointer",e,t);if("string"==typeof r&&c.hasColor(r))return r;if(r){let e=this.styles,n=this.index===t,i=n?e.primary:e=>e,A=await this.resolve(r[n?"on":"off"]||r,this.state),o=c.hasColor(A)?A:i(A);return n?o:" ".repeat(A.length)}}async indicator(e,t){let r=await this.element("indicator",e,t);if("string"==typeof r&&c.hasColor(r))return r;if(r){let t=this.styles,n=!0===e.enabled,i=n?t.success:t.dark,A=r[n?"on":"off"]||r;return c.hasColor(A)?A:i(A)}return""}body(){return null}footer(){if("pending"===this.state.status)return this.element("footer")}header(){if("pending"===this.state.status)return this.element("header")}async hint(){if("pending"===this.state.status&&!this.isValue(this.state.input)){let e=await this.element("hint");return c.hasColor(e)?e:this.styles.muted(e)}}error(e){return this.state.submitted?"":e||this.state.error}format(e){return e}result(e){return e}validate(e){return!0!==this.options.required||this.isValue(e)}isValue(e){return null!=e&&""!==e}resolve(e,...t){return c.resolve(this,e,...t)}get base(){return l.prototype}get style(){return this.styles[this.state.status]}get height(){return this.options.rows||c.height(this.stdout,25)}get width(){return this.options.columns||c.width(this.stdout,80)}get size(){return{width:this.width,height:this.height}}set cursor(e){this.state.cursor=e}get cursor(){return this.state.cursor}set input(e){this.state.input=e}get input(){return this.state.input}set value(e){this.state.value=e}get value(){let{input:e,value:t}=this.state,r=[t,e].find(this.isValue.bind(this));return this.isValue(r)?r:this.initial}static get prompt(){return e=>new this(e).run()}}e.exports=l},63310:(e,t,r)=>{"use strict";const n=r(31557);e.exports=class extends n{constructor(e){super(e),this.cursorShow()}moveCursor(e){this.state.cursor+=e}dispatch(e){return this.append(e)}space(e){return this.options.multiple?super.space(e):this.append(e)}append(e){let{cursor:t,input:r}=this.state;return this.input=r.slice(0,t)+e+r.slice(t),this.moveCursor(1),this.complete()}delete(){let{cursor:e,input:t}=this.state;return t?(this.input=t.slice(0,e-1)+t.slice(e),this.moveCursor(-1),this.complete()):this.alert()}deleteForward(){let{cursor:e,input:t}=this.state;return void 0===t[e]?this.alert():(this.input=(""+t).slice(0,e)+(""+t).slice(e+1),this.complete())}number(e){return this.append(e)}async complete(){this.completing=!0,this.choices=await this.suggest(this.input,this.state._choices),this.state.limit=void 0,this.index=Math.min(Math.max(this.visible.length-1,0),this.index),await this.render(),this.completing=!1}suggest(e=this.input,t=this.state._choices){if("function"==typeof this.options.suggest)return this.options.suggest.call(this,e,t);let r=e.toLowerCase();return t.filter(e=>e.message.toLowerCase().includes(r))}pointer(){return""}format(){if(!this.focused)return this.input;if(this.options.multiple&&this.state.submitted)return this.selected.map(e=>this.styles.primary(e.message)).join(", ");if(this.state.submitted){let e=this.value=this.input=this.focused.value;return this.styles.primary(e)}return this.input}async render(){if("pending"!==this.state.status)return super.render();let e=this.options.highlight?this.options.highlight.bind(this):this.styles.placeholder,t=((e,t)=>{let r=e.toLowerCase();return e=>{let n=e.toLowerCase().indexOf(r),i=t(e.slice(n,n+r.length));return n>=0?e.slice(0,n)+i+e.slice(n+r.length):e}})(this.input,e),r=this.choices;this.choices=r.map(e=>({...e,message:t(e.message)})),await super.render(),this.choices=r}submit(){return this.options.multiple&&(this.value=this.selected.map(e=>e.name)),super.submit()}}},52810:(e,t,r)=>{"use strict";const n=r(46614);function i(e,t){return e.username===this.options.username&&e.password===this.options.password}const A=(e=i)=>{const t=[{name:"username",message:"username"},{name:"password",message:"password",format(e){if(this.options.showPassword)return e;return(this.state.submitted?this.styles.primary:this.styles.muted)(this.symbols.asterisk.repeat(e.length))}}];class r extends(n.create(e)){constructor(e){super({...e,choices:t})}static create(e){return A(e)}}return r};e.exports=A()},65742:(e,t,r)=>{"use strict";const n=r(82710);e.exports=class extends n{constructor(e){super(e),this.default=this.options.default||(this.initial?"(Y/n)":"(y/N)")}}},24570:(e,t,r)=>{"use strict";const n=r(31557),i=r(71447).prototype;e.exports=class extends n{constructor(e){super({...e,multiple:!0}),this.align=[this.options.align,"left"].find(e=>null!=e),this.emptyError="",this.values={}}dispatch(e,t){let r=this.focused,n=r.parent||{};return r.editable||n.editable||"a"!==e&&"i"!==e?i.dispatch.call(this,e,t):super[e]()}append(e,t){return i.append.call(this,e,t)}delete(e,t){return i.delete.call(this,e,t)}space(e){return this.focused.editable?this.append(e):super.space()}number(e){return this.focused.editable?this.append(e):super.number(e)}next(){return this.focused.editable?i.next.call(this):super.next()}prev(){return this.focused.editable?i.prev.call(this):super.prev()}async indicator(e,t){let r=e.indicator||"",n=e.editable?r:super.indicator(e,t);return await this.resolve(n,this.state,e,t)||""}indent(e){return"heading"===e.role?"":e.editable?" ":" "}async renderChoice(e,t){return e.indent="",e.editable?i.renderChoice.call(this,e,t):super.renderChoice(e,t)}error(){return""}footer(){return this.state.error}async validate(){let e=!0;for(let t of this.choices){if("function"!=typeof t.validate)continue;if("heading"===t.role)continue;let r=t.parent?this.value[t.parent.name]:this.value;if(t.editable?r=t.value===t.name?t.initial||"":t.value:this.isDisabled(t)||(r=!0===t.enabled),e=await t.validate(r,this.state),!0!==e)break}return!0!==e&&(this.state.error="string"==typeof e?e:"Invalid Input"),e}submit(){if(!0===this.focused.newChoice)return super.submit();if(this.choices.some(e=>e.newChoice))return this.alert();this.value={};for(let e of this.choices){let t=e.parent?this.value[e.parent.name]:this.value;"heading"!==e.role?e.editable?t[e.name]=e.value===e.name?e.initial||"":e.value:this.isDisabled(e)||(t[e.name]=!0===e.enabled):this.value[e.name]={}}return this.base.submit.call(this)}}},71447:(e,t,r)=>{"use strict";const n=r(97991),i=r(31557),A=r(96496);e.exports=class extends i{constructor(e){super({...e,multiple:!0}),this.type="form",this.initial=this.options.initial,this.align=[this.options.align,"right"].find(e=>null!=e),this.emptyError="",this.values={}}async reset(e){return await super.reset(),!0===e&&(this._index=this.index),this.index=this._index,this.values={},this.choices.forEach(e=>e.reset&&e.reset()),this.render()}dispatch(e){return!!e&&this.append(e)}append(e){let t=this.focused;if(!t)return this.alert();let{cursor:r,input:n}=t;return t.value=t.input=n.slice(0,r)+e+n.slice(r),t.cursor++,this.render()}delete(){let e=this.focused;if(!e||e.cursor<=0)return this.alert();let{cursor:t,input:r}=e;return e.value=e.input=r.slice(0,t-1)+r.slice(t),e.cursor--,this.render()}deleteForward(){let e=this.focused;if(!e)return this.alert();let{cursor:t,input:r}=e;if(void 0===r[t])return this.alert();let n=(""+r).slice(0,t)+(""+r).slice(t+1);return e.value=e.input=n,this.render()}right(){let e=this.focused;return e?e.cursor>=e.input.length?this.alert():(e.cursor++,this.render()):this.alert()}left(){let e=this.focused;return e?e.cursor<=0?this.alert():(e.cursor--,this.render()):this.alert()}space(e,t){return this.dispatch(e,t)}number(e,t){return this.dispatch(e,t)}next(){let e=this.focused;if(!e)return this.alert();let{initial:t,input:r}=e;return t&&t.startsWith(r)&&r!==t?(e.value=e.input=t,e.cursor=e.value.length,this.render()):super.next()}prev(){let e=this.focused;return e?0===e.cursor?super.prev():(e.value=e.input="",e.cursor=0,this.render()):this.alert()}separator(){return""}format(e){return this.state.submitted?"":super.format(e)}pointer(){return""}indicator(e){return e.input?"⦿":"⊙"}async choiceSeparator(e,t){let r=await this.resolve(e.separator,this.state,e,t)||":";return r?" "+this.styles.disabled(r):""}async renderChoice(e,t){await this.onChoice(e,t);let{state:r,styles:i}=this,{cursor:o,initial:s="",name:a,hint:c,input:g=""}=e,{muted:l,submitted:u,primary:h,danger:f}=i,p=c,C=this.index===t,d=e.validate||(()=>!0),I=await this.choiceSeparator(e,t),E=e.message;"right"===this.align&&(E=E.padStart(this.longest+1," ")),"left"===this.align&&(E=E.padEnd(this.longest+1," "));let m=this.values[a]=g||s,B=g?"success":"dark";!0!==await d.call(e,m,this.state)&&(B="danger");let w=(0,i[B])(await this.indicator(e,t))+(e.pad||""),y=this.indent(e),Q=()=>[y,w,E+I,g,p].filter(Boolean).join(" ");if(r.submitted)return E=n.unstyle(E),g=u(g),p="",Q();if(e.format)g=await e.format.call(this,g,e,t);else{let e=this.styles.muted;g=A(this,{input:g,initial:s,pos:o,showCursor:C,color:e})}return this.isValue(g)||(g=this.styles.muted(this.symbols.ellipsis)),e.result&&(this.values[a]=await e.result.call(this,m,e,t)),C&&(E=h(E)),e.error?g+=(g?" ":"")+f(e.error.trim()):e.hint&&(g+=(g?" ":"")+l(e.hint.trim())),Q()}async submit(){return this.value=this.values,super.base.submit.call(this)}}},53609:(e,t,r)=>{"use strict";const n=r(10278),i=(e,r)=>{n.defineExport(t,e,r),n.defineExport(t,e.toLowerCase(),r)};i("AutoComplete",()=>r(63310)),i("BasicAuth",()=>r(52810)),i("Confirm",()=>r(65742)),i("Editable",()=>r(24570)),i("Form",()=>r(71447)),i("Input",()=>r(12372)),i("Invisible",()=>r(32684)),i("List",()=>r(40876)),i("MultiSelect",()=>r(42293)),i("Numeral",()=>r(42126)),i("Password",()=>r(84697)),i("Scale",()=>r(99580)),i("Select",()=>r(31557)),i("Snippet",()=>r(98094)),i("Sort",()=>r(60042)),i("Survey",()=>r(25223)),i("Text",()=>r(97298)),i("Toggle",()=>r(41817)),i("Quiz",()=>r(88677))},12372:(e,t,r)=>{"use strict";const n=r(45853),i=r(64083);e.exports=class extends n{constructor(e){super(e);let t=this.options.history;if(t&&t.store){let e=t.values||this.initial;this.autosave=!!t.autosave,this.store=t.store,this.data=this.store.get("values")||{past:[],present:e},this.initial=this.data.present||this.data.past[this.data.past.length-1]}}completion(e){return this.store?(this.data=i(e,this.data,this.input),this.data.present?(this.input=this.data.present,this.cursor=this.input.length,this.render()):this.alert()):this.alert()}altUp(){return this.completion("prev")}altDown(){return this.completion("next")}prev(){return this.save(),super.prev()}save(){this.store&&(this.data=i("save",this.data,this.input),this.store.set("values",this.data))}submit(){return this.store&&!0===this.autosave&&this.save(),super.submit()}}},32684:(e,t,r)=>{"use strict";const n=r(45853);e.exports=class extends n{format(){return""}}},40876:(e,t,r)=>{"use strict";const n=r(45853);e.exports=class extends n{constructor(e={}){super(e),this.sep=this.options.separator||/, */,this.initial=e.initial||""}split(e=this.value){return e?String(e).split(this.sep):[]}format(){let e=this.state.submitted?this.styles.primary:e=>e;return this.list.map(e).join(", ")}async submit(e){let t=this.state.error||await this.validate(this.list,this.state);return!0!==t?(this.state.error=t,super.submit()):(this.value=this.list,super.submit())}get list(){return this.split()}}},42293:(e,t,r)=>{"use strict";const n=r(31557);e.exports=class extends n{constructor(e){super({...e,multiple:!0})}}},42126:(e,t,r)=>{e.exports=r(64987)},84697:(e,t,r)=>{"use strict";const n=r(45853);e.exports=class extends n{constructor(e){super(e),this.cursorShow()}format(e=this.input){if(!this.keypressed)return"";return(this.state.submitted?this.styles.primary:this.styles.muted)(this.symbols.asterisk.repeat(e.length))}}},88677:(e,t,r)=>{"use strict";const n=r(31557);e.exports=class extends n{constructor(e){if(super(e),"number"!=typeof this.options.correctChoice||this.options.correctChoice<0)throw new Error("Please specify the index of the correct answer from the list of choices")}async toChoices(e,t){let r=await super.toChoices(e,t);if(r.length<2)throw new Error("Please give at least two choices to the user");if(this.options.correctChoice>r.length)throw new Error("Please specify the index of the correct answer from the list of choices");return r}check(e){return e.index===this.options.correctChoice}async result(e){return{selectedAnswer:e,correctAnswer:this.options.choices[this.options.correctChoice].value,correct:await this.check(this.state)}}}},99580:(e,t,r)=>{"use strict";const n=r(97991),i=r(14723),A=r(10278);e.exports=class extends i{constructor(e={}){super(e),this.widths=[].concat(e.messageWidth||50),this.align=[].concat(e.align||"left"),this.linebreak=e.linebreak||!1,this.edgeLength=e.edgeLength||3,this.newline=e.newline||"\n ";let t=e.startNumber||1;"number"==typeof this.scale&&(this.scaleKey=!1,this.scale=Array(this.scale).fill(0).map((e,r)=>({name:r+t})))}async reset(){return this.tableized=!1,await super.reset(),this.render()}tableize(){if(!0===this.tableized)return;this.tableized=!0;let e=0;for(let t of this.choices){e=Math.max(e,t.message.length),t.scaleIndex=t.initial||2,t.scale=[];for(let e=0;e=this.scale.length-1?this.alert():(e.scaleIndex++,this.render())}left(){let e=this.focused;return e.scaleIndex<=0?this.alert():(e.scaleIndex--,this.render())}indent(){return""}format(){if(this.state.submitted){return this.choices.map(e=>this.styles.info(e.index)).join(", ")}return""}pointer(){return""}renderScaleKey(){if(!1===this.scaleKey)return"";if(this.state.submitted)return"";return["",...this.scale.map(e=>` ${e.name} - ${e.message}`)].map(e=>this.styles.muted(e)).join("\n")}renderScaleHeading(e){let t=this.scale.map(e=>e.name);"function"==typeof this.options.renderScaleHeading&&(t=this.options.renderScaleHeading.call(this,e));let r=this.scaleLength-t.join("").length,n=Math.round(r/(t.length-1)),i=t.map(e=>this.styles.strong(e)).join(" ".repeat(n)),A=" ".repeat(this.widths[0]);return this.margin[3]+A+this.margin[1]+i}scaleIndicator(e,t,r){if("function"==typeof this.options.scaleIndicator)return this.options.scaleIndicator.call(this,e,t,r);let n=e.scaleIndex===t.index;return t.disabled?this.styles.hint(this.symbols.radio.disabled):n?this.styles.success(this.symbols.radio.on):this.symbols.radio.off}renderScale(e,t){let r=e.scale.map(r=>this.scaleIndicator(e,r,t)),n="Hyper"===this.term?"":" ";return r.join(n+this.symbols.line.repeat(this.edgeLength))}async renderChoice(e,t){await this.onChoice(e,t);let r=this.index===t,i=await this.pointer(e,t),o=await e.hint;o&&!A.hasColor(o)&&(o=this.styles.muted(o));let s=e=>this.margin[3]+e.replace(/\s+$/,"").padEnd(this.widths[0]," "),a=this.newline,c=this.indent(e),g=await this.resolve(e.message,this.state,e,t),l=await this.renderScale(e,t),u=this.margin[1]+this.margin[3];this.scaleLength=n.unstyle(l).length,this.widths[0]=Math.min(this.widths[0],this.width-this.scaleLength-u.length);let h=A.wordWrap(g,{width:this.widths[0],newline:a}).split("\n").map(e=>s(e)+this.margin[1]);return r&&(l=this.styles.info(l),h=h.map(e=>this.styles.info(e))),h[0]+=l,this.linebreak&&h.push(""),[c+i,h.join("\n")].filter(Boolean)}async renderChoices(){if(this.state.submitted)return"";this.tableize();let e=this.visible.map(async(e,t)=>await this.renderChoice(e,t)),t=await Promise.all(e),r=await this.renderScaleHeading();return this.margin[0]+[r,...t.map(e=>e.join(" "))].join("\n")}async render(){let{submitted:e,size:t}=this.state,r=await this.prefix(),n=await this.separator(),i=await this.message(),A="";!1!==this.options.promptLine&&(A=[r,i,n,""].join(" "),this.state.prompt=A);let o=await this.header(),s=await this.format(),a=await this.renderScaleKey(),c=await this.error()||await this.hint(),g=await this.renderChoices(),l=await this.footer(),u=this.emptyError;s&&(A+=s),c&&!A.includes(c)&&(A+=" "+c),e&&!s&&!g.trim()&&this.multiple&&null!=u&&(A+=this.styles.danger(u)),this.clear(t),this.write([o,A,a,g,l].filter(Boolean).join("\n")),this.state.submitted||this.write(this.margin[2]),this.restore()}submit(){this.value={};for(let e of this.choices)this.value[e.name]=e.scaleIndex;return this.base.submit.call(this)}}},31557:(e,t,r)=>{"use strict";const n=r(14723),i=r(10278);e.exports=class extends n{constructor(e){super(e),this.emptyError=this.options.emptyError||"No items were selected"}async dispatch(e,t){if(this.multiple)return this[t.name]?await this[t.name](e,t):await super.dispatch(e,t);this.alert()}separator(){if(this.options.separator)return super.separator();let e=this.styles.muted(this.symbols.ellipsis);return this.state.submitted?super.separator():e}pointer(e,t){return!this.multiple||this.options.pointer?super.pointer(e,t):""}indicator(e,t){return this.multiple?super.indicator(e,t):""}choiceMessage(e,t){let r=this.resolve(e.message,this.state,e,t);return"heading"!==e.role||i.hasColor(r)||(r=this.styles.strong(r)),this.resolve(r,this.state,e,t)}choiceSeparator(){return":"}async renderChoice(e,t){await this.onChoice(e,t);let r=this.index===t,n=await this.pointer(e,t),A=await this.indicator(e,t)+(e.pad||""),o=await this.resolve(e.hint,this.state,e,t);o&&!i.hasColor(o)&&(o=this.styles.muted(o));let s=this.indent(e),a=await this.choiceMessage(e,t),c=()=>[this.margin[3],s+n+A,a,this.margin[1],o].filter(Boolean).join(" ");return"heading"===e.role?c():e.disabled?(i.hasColor(a)||(a=this.styles.disabled(a)),c()):(r&&(a=this.styles.em(a)),c())}async renderChoices(){if("choices"===this.state.loading)return this.styles.warning("Loading choices");if(this.state.submitted)return"";let e=this.visible.map(async(e,t)=>await this.renderChoice(e,t)),t=await Promise.all(e);t.length||t.push(this.styles.danger("No matching choices"));let r,n=this.margin[0]+t.join("\n");return this.options.choicesHeader&&(r=await this.resolve(this.options.choicesHeader,this.state)),[r,n].filter(Boolean).join("\n")}format(){return!this.state.submitted||this.state.cancelled?"":Array.isArray(this.selected)?this.selected.map(e=>this.styles.primary(e.name)).join(", "):this.styles.primary(this.selected.name)}async render(){let{submitted:e,size:t}=this.state,r="",n=await this.header(),i=await this.prefix(),A=await this.separator(),o=await this.message();!1!==this.options.promptLine&&(r=[i,o,A,""].join(" "),this.state.prompt=r);let s=await this.format(),a=await this.error()||await this.hint(),c=await this.renderChoices(),g=await this.footer();s&&(r+=s),a&&!r.includes(a)&&(r+=" "+a),e&&!s&&!c.trim()&&this.multiple&&null!=this.emptyError&&(r+=this.styles.danger(this.emptyError)),this.clear(t),this.write([n,r,c,g].filter(Boolean).join("\n")),this.write(this.margin[2]),this.restore()}}},98094:(e,t,r)=>{"use strict";const n=r(97991),i=r(84368),A=r(58386);e.exports=class extends A{constructor(e){super(e),this.cursorHide(),this.reset(!0)}async initialize(){this.interpolate=await i(this),await super.initialize()}async reset(e){this.state.keys=[],this.state.invalid=new Map,this.state.missing=new Set,this.state.completed=0,this.state.values={},!0!==e&&(await this.initialize(),await this.render())}moveCursor(e){let t=this.getItem();this.cursor+=e,t.cursor+=e}dispatch(e,t){t.code||t.ctrl||null==e||!this.getItem()?this.alert():this.append(e,t)}append(e,t){let r=this.getItem(),n=r.input.slice(0,this.cursor),i=r.input.slice(this.cursor);this.input=r.input=`${n}${e}${i}`,this.moveCursor(1),this.render()}delete(){let e=this.getItem();if(this.cursor<=0||!e.input)return this.alert();let t=e.input.slice(this.cursor),r=e.input.slice(0,this.cursor-1);this.input=e.input=`${r}${t}`,this.moveCursor(-1),this.render()}increment(e){return e>=this.state.keys.length-1?0:e+1}decrement(e){return e<=0?this.state.keys.length-1:e-1}first(){this.state.index=0,this.render()}last(){this.state.index=this.state.keys.length-1,this.render()}right(){if(this.cursor>=this.input.length)return this.alert();this.moveCursor(1),this.render()}left(){if(this.cursor<=0)return this.alert();this.moveCursor(-1),this.render()}prev(){this.state.index=this.decrement(this.state.index),this.getItem(),this.render()}next(){this.state.index=this.increment(this.state.index),this.getItem(),this.render()}up(){this.prev()}down(){this.next()}format(e){let t=this.state.completed<100?this.styles.warning:this.styles.success;return!0===this.state.submitted&&100!==this.state.completed&&(t=this.styles.danger),t(this.state.completed+"% completed")}async render(){let{index:e,keys:t=[],submitted:r,size:n}=this.state,i=[this.options.newline,"\n"].find(e=>null!=e),A=await this.prefix(),o=await this.separator(),s=[A,await this.message(),o].filter(Boolean).join(" ");this.state.prompt=s;let a=await this.header(),c=await this.error()||"",g=await this.hint()||"",l=r?"":await this.interpolate(this.state),u=this.state.key=t[e]||"",h=await this.format(u),f=await this.footer();h&&(s+=" "+h),g&&!h&&0===this.state.completed&&(s+=" "+g),this.clear(n);let p=[a,s,l,f,c.trim()];this.write(p.filter(Boolean).join(i)),this.restore()}getItem(e){let{items:t,keys:r,index:n}=this.state,i=t.find(e=>e.name===r[n]);return i&&null!=i.input&&(this.input=i.input,this.cursor=i.cursor),i}async submit(){"function"!=typeof this.interpolate&&await this.initialize(),await this.interpolate(this.state,!0);let{invalid:e,missing:t,output:r,values:i}=this.state;if(e.size){let t="";for(let[r,n]of e)t+=`Invalid ${r}: ${n}\n`;return this.state.error=t,super.submit()}if(t.size)return this.state.error="Required: "+[...t.keys()].join(", "),super.submit();let A=n.unstyle(r).split("\n").map(e=>e.slice(1)).join("\n");return this.value={values:i,result:A},super.submit()}}},60042:(e,t,r)=>{"use strict";const n="(Use + to sort)",i=r(31557);e.exports=class extends i{constructor(e){super({...e,reorder:!1,sort:!0,multiple:!0}),this.state.hint=[this.options.hint,n].find(this.isValue.bind(this))}indicator(){return""}async renderChoice(e,t){let r=await super.renderChoice(e,t),n=this.symbols.identicalTo+" ",i=this.index===t&&this.sorting?this.styles.muted(n):" ";return!1===this.options.drag&&(i=""),!0===this.options.numbered?i+(t+1+" - ")+r:i+r}get selected(){return this.choices}submit(){return this.value=this.choices.map(e=>e.value),super.submit()}}},25223:(e,t,r)=>{"use strict";const n=r(14723);function i(e,t={}){if(Array.isArray(t.scale))return t.scale.map(e=>({...e}));let r=[];for(let t=1;tthis.styles.muted(e)),this.state.header=e.join("\n ")}}async toChoices(...e){if(this.createdScales)return!1;this.createdScales=!0;let t=await super.toChoices(...e);for(let e of t)e.scale=i(5,this.options),e.scaleIdx=2;return t}dispatch(){this.alert()}space(){let e=this.focused,t=e.scale[e.scaleIdx],r=t.selected;return e.scale.forEach(e=>e.selected=!1),t.selected=!r,this.render()}indicator(){return""}pointer(){return""}separator(){return this.styles.muted(this.symbols.ellipsis)}right(){let e=this.focused;return e.scaleIdx>=e.scale.length-1?this.alert():(e.scaleIdx++,this.render())}left(){let e=this.focused;return e.scaleIdx<=0?this.alert():(e.scaleIdx--,this.render())}indent(){return" "}async renderChoice(e,t){await this.onChoice(e,t);let r=this.index===t,n="Hyper"===this.term,i=n?9:8,A=n?"":" ",o=this.symbols.line.repeat(i),s=" ".repeat(i+(n?0:1)),a=e=>(e?this.styles.success("◉"):"◯")+A,c=t+1+".",g=r?this.styles.heading:this.styles.noop,l=await this.resolve(e.message,this.state,e,t),u=this.indent(e),h=u+e.scale.map((t,r)=>a(r===e.scaleIdx)).join(o),f=u+e.scale.map((t,r)=>(t=>t===e.scaleIdx?g(t):t)(r)).join(s);return r&&(h=this.styles.cyan(h),f=this.styles.cyan(f)),[[c,l].filter(Boolean).join(" "),h,f," "].filter(Boolean).join("\n")}async renderChoices(){if(this.state.submitted)return"";let e=this.visible.map(async(e,t)=>await this.renderChoice(e,t)),t=await Promise.all(e);return t.length||t.push(this.styles.danger("No matching choices")),t.join("\n")}format(){if(this.state.submitted){return this.choices.map(e=>this.styles.info(e.scaleIdx)).join(", ")}return""}async render(){let{submitted:e,size:t}=this.state,r=await this.prefix(),n=await this.separator(),i=[r,await this.message(),n].filter(Boolean).join(" ");this.state.prompt=i;let A=await this.header(),o=await this.format(),s=await this.error()||await this.hint(),a=await this.renderChoices(),c=await this.footer();!o&&s||(i+=" "+o),s&&!i.includes(s)&&(i+=" "+s),e&&!o&&!a&&this.multiple&&"form"!==this.type&&(i+=this.styles.danger(this.emptyError)),this.clear(t),this.write([i,A,a,c].filter(Boolean).join("\n")),this.restore()}submit(){this.value={};for(let e of this.choices)this.value[e.name]=e.scaleIdx;return this.base.submit.call(this)}}},97298:(e,t,r)=>{e.exports=r(12372)},41817:(e,t,r)=>{"use strict";const n=r(82710);e.exports=class extends n{async initialize(){await super.initialize(),this.value=this.initial=!!this.options.initial,this.disabled=this.options.disabled||"no",this.enabled=this.options.enabled||"yes",await this.render()}reset(){this.value=this.initial,this.render()}delete(){this.alert()}toggle(){this.value=!this.value,this.render()}enable(){if(!0===this.value)return this.alert();this.value=!0,this.render()}disable(){if(!1===this.value)return this.alert();this.value=!1,this.render()}up(){this.toggle()}down(){this.toggle()}right(){this.toggle()}left(){this.toggle()}next(){this.toggle()}prev(){this.toggle()}dispatch(e="",t){switch(e.toLowerCase()){case" ":return this.toggle();case"1":case"y":case"t":return this.enable();case"0":case"n":case"f":return this.disable();default:return this.alert()}}format(){let e=e=>this.styles.primary.underline(e);return[this.value?this.disabled:e(this.disabled),this.value?e(this.enabled):this.enabled].join(this.styles.muted(" / "))}async render(){let{size:e}=this.state,t=await this.header(),r=await this.prefix(),n=await this.separator(),i=await this.message(),A=await this.format(),o=await this.error()||await this.hint(),s=await this.footer(),a=[r,i,n,A].join(" ");this.state.prompt=a,o&&!a.includes(o)&&(a+=" "+o),this.clear(e),this.write([t,a,s].filter(Boolean).join("\n")),this.write(this.margin[2]),this.restore()}}},27011:(e,t,r)=>{"use strict";const n=r(10278),i={default:(e,t)=>t,checkbox(e,t){throw new Error("checkbox role is not implemented yet")},editable(e,t){throw new Error("editable role is not implemented yet")},expandable(e,t){throw new Error("expandable role is not implemented yet")},heading:(e,t)=>(t.disabled="",t.indicator=[t.indicator," "].find(e=>null!=e),t.message=t.message||"",t),input(e,t){throw new Error("input role is not implemented yet")},option:(e,t)=>i.default(e,t),radio(e,t){throw new Error("radio role is not implemented yet")},separator:(e,t)=>(t.disabled="",t.indicator=[t.indicator," "].find(e=>null!=e),t.message=t.message||e.symbols.line.repeat(5),t),spacer:(e,t)=>t};e.exports=(e,t={})=>{let r=n.merge({},i,t.roles);return r[e]||r.default}},61807:(e,t,r)=>{"use strict";const{define:n,width:i}=r(10278);e.exports=class{constructor(e){let t=e.options;n(this,"_prompt",e),this.type=e.type,this.name=e.name,this.message="",this.header="",this.footer="",this.error="",this.hint="",this.input="",this.cursor=0,this.index=0,this.lines=0,this.tick=0,this.prompt="",this.buffer="",this.width=i(t.stdout||process.stdout),Object.assign(this,t),this.name=this.name||this.message,this.message=this.message||this.name,this.symbols=e.symbols,this.styles=e.styles,this.required=new Set,this.cancelled=!1,this.submitted=!1}clone(){let e={...this};return e.status=this.status,e.buffer=Buffer.from(e.buffer),delete e.clone,e}set color(e){this._color=e}get color(){let e=this.prompt.styles;if(this.cancelled)return e.cancelled;if(this.submitted)return e.submitted;let t=this._color||e[this.status];return"function"==typeof t?t:e.pending}set loading(e){this._loading=e}get loading(){return"boolean"==typeof this._loading?this._loading:!!this.loadingChoices&&"choices"}get status(){return this.cancelled?"cancelled":this.submitted?"submitted":"pending"}}},64402:(e,t,r)=>{"use strict";const n=r(10278),i=r(97991),A={default:i.noop,noop:i.noop,set inverse(e){this._inverse=e},get inverse(){return this._inverse||n.inverse(this.primary)},set complement(e){this._complement=e},get complement(){return this._complement||n.complement(this.primary)},primary:i.cyan,success:i.green,danger:i.magenta,strong:i.bold,warning:i.yellow,muted:i.dim,disabled:i.gray,dark:i.dim.gray,underline:i.underline,set info(e){this._info=e},get info(){return this._info||this.primary},set em(e){this._em=e},get em(){return this._em||this.primary.underline},set heading(e){this._heading=e},get heading(){return this._heading||this.muted.underline},set pending(e){this._pending=e},get pending(){return this._pending||this.primary},set submitted(e){this._submitted=e},get submitted(){return this._submitted||this.success},set cancelled(e){this._cancelled=e},get cancelled(){return this._cancelled||this.danger},set typing(e){this._typing=e},get typing(){return this._typing||this.dim},set placeholder(e){this._placeholder=e},get placeholder(){return this._placeholder||this.primary.dim},set highlight(e){this._highlight=e},get highlight(){return this._highlight||this.inverse},merge:(e={})=>{e.styles&&"boolean"==typeof e.styles.enabled&&(i.enabled=e.styles.enabled),e.styles&&"boolean"==typeof e.styles.visible&&(i.visible=e.styles.visible);let t=n.merge({},A,e.styles);delete t.merge;for(let e of Object.keys(i))t.hasOwnProperty(e)||Reflect.defineProperty(t,e,{get:()=>i[e]});for(let e of Object.keys(i.styles))t.hasOwnProperty(e)||Reflect.defineProperty(t,e,{get:()=>i[e]});return t}};e.exports=A},50511:(e,t,r)=>{"use strict";const n="win32"===process.platform,i=r(97991),A=r(10278),o={...i.symbols,upDownDoubleArrow:"⇕",upDownDoubleArrow2:"⬍",upDownArrow:"↕",asterisk:"*",asterism:"⁂",bulletWhite:"◦",electricArrow:"⌁",ellipsisLarge:"⋯",ellipsisSmall:"…",fullBlock:"█",identicalTo:"≡",indicator:i.symbols.check,leftAngle:"‹",mark:"※",minus:"−",multiplication:"×",obelus:"÷",percent:"%",pilcrow:"¶",pilcrow2:"❡",pencilUpRight:"✐",pencilDownRight:"✎",pencilRight:"✏",plus:"+",plusMinus:"±",pointRight:"☞",rightAngle:"›",section:"§",hexagon:{off:"⬡",on:"⬢",disabled:"⬢"},ballot:{on:"☑",off:"☐",disabled:"☒"},stars:{on:"★",off:"☆",disabled:"☆"},folder:{on:"▼",off:"▶",disabled:"▶"},prefix:{pending:i.symbols.question,submitted:i.symbols.check,cancelled:i.symbols.cross},separator:{pending:i.symbols.pointerSmall,submitted:i.symbols.middot,cancelled:i.symbols.middot},radio:{off:n?"( )":"◯",on:n?"(*)":"◉",disabled:n?"(|)":"Ⓘ"},numbers:["⓪","①","②","③","④","⑤","⑥","⑦","⑧","⑨","⑩","⑪","⑫","⑬","⑭","⑮","⑯","⑰","⑱","⑲","⑳","㉑","㉒","㉓","㉔","㉕","㉖","㉗","㉘","㉙","㉚","㉛","㉜","㉝","㉞","㉟","㊱","㊲","㊳","㊴","㊵","㊶","㊷","㊸","㊹","㊺","㊻","㊼","㊽","㊾","㊿"]};o.merge=e=>{let t=A.merge({},i.symbols,o,e.symbols);return delete t.merge,t},e.exports=o},26205:(e,t,r)=>{"use strict";const n=r(64402),i=r(50511),A=r(10278);e.exports=e=>{e.options=A.merge({},e.options.theme,e.options),e.symbols=i.merge(e.options),e.styles=n.merge(e.options)}},47159:e=>{"use strict";function t(e,t,r={}){let n=e.timers[t]={name:t,start:Date.now(),ms:0,tick:0},i=r.interval||120;n.frames=r.frames||[],n.loading=!0;let A=setInterval(()=>{n.ms=Date.now()-n.start,n.tick++,e.render()},i);return n.stop=()=>{n.loading=!1,clearInterval(A)},Reflect.defineProperty(n,"interval",{value:A}),e.once("close",()=>n.stop()),n.stop}e.exports=e=>{e.timers=e.timers||{};let r=e.options.timers;if(r)for(let n of Object.keys(r)){let i=r[n];"number"==typeof i&&(i={interval:i}),t(e,n,i)}}},14723:(e,t,r)=>{"use strict";const n=r(97991),i=r(58386),A=r(27011),o=r(10278),{reorder:s,scrollUp:a,scrollDown:c,isObject:g,swap:l}=o;function u(e,t){if(t instanceof Promise)return t;if("function"==typeof t){if(o.isAsyncFn(t))return t;t=t.call(e,e)}for(let r of t){if(Array.isArray(r.choices)){let t=r.choices.filter(t=>!e.isDisabled(t));r.enabled=t.every(e=>!0===e.enabled)}!0===e.isDisabled(r)&&delete r.enabled}return t}e.exports=class extends i{constructor(e){super(e),this.cursorHide(),this.maxSelected=e.maxSelected||1/0,this.multiple=e.multiple||!1,this.initial=e.initial||0,this.delay=e.delay||0,this.longest=0,this.num=""}async initialize(){"function"==typeof this.options.initial&&(this.initial=await this.options.initial.call(this)),await this.reset(!0),await super.initialize()}async reset(){let{choices:e,initial:t,autofocus:r,suggest:n}=this.options;if(this.state._choices=[],this.state.choices=[],this.choices=await Promise.all(await this.toChoices(e)),this.choices.forEach(e=>e.enabled=!1),"function"!=typeof n&&0===this.selectable.length)throw new Error("At least one choice must be selectable");g(t)&&(t=Object.keys(t)),Array.isArray(t)?(null!=r&&(this.index=this.findIndex(r)),t.forEach(e=>this.enable(this.find(e))),await this.render()):(null!=r&&(t=r),"string"==typeof t&&(t=this.findIndex(t)),"number"==typeof t&&t>-1&&(this.index=Math.max(0,Math.min(t,this.choices.length)),this.enable(this.find(this.index)))),this.isDisabled(this.focused)&&await this.down()}async toChoices(e,t){this.state.loadingChoices=!0;let r=[],n=0,i=async(e,t)=>{"function"==typeof e&&(e=await e.call(this)),e instanceof Promise&&(e=await e);for(let A=0;A(this.state.loadingChoices=!1,e))}async toChoice(e,t,r){if("function"==typeof e&&(e=await e.call(this,this)),e instanceof Promise&&(e=await e),"string"==typeof e&&(e={name:e}),e.normalized)return e;e.normalized=!0;let i=e.value,s=A(e.role,this.options);if("string"!=typeof(e=s(this,e)).disabled||e.hint||(e.hint=e.disabled,e.disabled=!0),!0===e.disabled&&null==e.hint&&(e.hint="(disabled)"),null!=e.index)return e;e.name=e.name||e.key||e.title||e.value||e.message,e.message=e.message||e.name||"",e.value=[e.value,e.name].find(this.isValue.bind(this)),e.input="",e.index=t,e.cursor=0,o.define(e,"parent",r),e.level=r?r.level+1:1,null==e.indent&&(e.indent=r?r.indent+" ":e.indent||""),e.path=r?r.path+"."+e.name:e.name,e.enabled=!(!this.multiple||this.isDisabled(e)||!e.enabled&&!this.isSelected(e)),this.isDisabled(e)||(this.longest=Math.max(this.longest,n.unstyle(e.message).length));let a={...e};return e.reset=(t=a.input,r=a.value)=>{for(let t of Object.keys(a))e[t]=a[t];e.input=t,e.value=r},null==i&&"function"==typeof e.initial&&(e.input=await e.initial.call(this,this.state,e,t)),e}async onChoice(e,t){this.emit("choice",e,t,this),"function"==typeof e.onChoice&&await e.onChoice.call(this,this.state,e,t)}async addChoice(e,t,r){let n=await this.toChoice(e,t,r);return this.choices.push(n),this.index=this.choices.length-1,this.limit=this.choices.length,n}async newItem(e,t,r){let n={name:"New choice name?",editable:!0,newChoice:!0,...e},i=await this.addChoice(n,t,r);return i.updateChoice=()=>{delete i.newChoice,i.name=i.message=i.input,i.input="",i.cursor=0},this.render()}indent(e){return null==e.indent?e.level>1?" ".repeat(e.level-1):"":e.indent}dispatch(e,t){if(this.multiple&&this[t.name])return this[t.name]();this.alert()}focus(e,t){return"boolean"!=typeof t&&(t=e.enabled),t&&!e.enabled&&this.selected.length>=this.maxSelected?this.alert():(this.index=e.index,e.enabled=t&&!this.isDisabled(e),e)}space(){return this.multiple?(this.toggle(this.focused),this.render()):this.alert()}a(){if(this.maxSelectede.enabled);return this.choices.forEach(t=>t.enabled=!e),this.render()}i(){return this.choices.length-this.selected.length>this.maxSelected?this.alert():(this.choices.forEach(e=>e.enabled=!e.enabled),this.render())}g(e=this.focused){return this.choices.some(e=>!!e.parent)?(this.toggle(e.parent&&!e.choices?e.parent:e),this.render()):this.a()}toggle(e,t){if(!e.enabled&&this.selected.length>=this.maxSelected)return this.alert();"boolean"!=typeof t&&(t=!e.enabled),e.enabled=t,e.choices&&e.choices.forEach(e=>this.toggle(e,t));let r=e.parent;for(;r;){let e=r.choices.filter(e=>this.isDisabled(e));r.enabled=e.every(e=>!0===e.enabled),r=r.parent}return u(this,this.choices),this.emit("toggle",e,this),e}enable(e){return this.selected.length>=this.maxSelected?this.alert():(e.enabled=!this.isDisabled(e),e.choices&&e.choices.forEach(this.enable.bind(this)),e)}disable(e){return e.enabled=!1,e.choices&&e.choices.forEach(this.disable.bind(this)),e}number(e){this.num+=e;let t=e=>{let t=Number(e);if(t>this.choices.length-1)return this.alert();let r=this.focused,n=this.choices.find(e=>t===e.index);if(!n.enabled&&this.selected.length>=this.maxSelected)return this.alert();if(-1===this.visible.indexOf(n)){let e=s(this.choices),t=e.indexOf(n);if(r.index>t){let r=e.slice(t,t+this.limit),n=e.filter(e=>!r.includes(e));this.choices=r.concat(n)}else{let r=t-this.limit+1;this.choices=e.slice(r).concat(e.slice(0,r))}}return this.index=this.choices.indexOf(n),this.toggle(this.focused),this.render()};return clearTimeout(this.numberTimeout),new Promise(e=>{let r=this.choices.length,n=this.num,i=(r=!1,i)=>{clearTimeout(this.numberTimeout),r&&(i=t(n)),this.num="",e(i)};return"0"===n||1===n.length&&Number(n+"0")>r?i(!0):Number(n)>r?i(!1,this.alert()):void(this.numberTimeout=setTimeout(()=>i(!0),this.delay))})}home(){return this.choices=s(this.choices),this.index=0,this.render()}end(){let e=this.choices.length-this.limit,t=s(this.choices);return this.choices=t.slice(e).concat(t.slice(0,e)),this.index=this.limit-1,this.render()}first(){return this.index=0,this.render()}last(){return this.index=this.visible.length-1,this.render()}prev(){return this.visible.length<=1?this.alert():this.up()}next(){return this.visible.length<=1?this.alert():this.down()}right(){return this.cursor>=this.input.length?this.alert():(this.cursor++,this.render())}left(){return this.cursor<=0?this.alert():(this.cursor--,this.render())}up(){let e=this.choices.length,t=this.visible.length,r=this.index;return!1===this.options.scroll&&0===r?this.alert():e>t&&0===r?this.scrollUp():(this.index=(r-1%e+e)%e,this.isDisabled()?this.up():this.render())}down(){let e=this.choices.length,t=this.visible.length,r=this.index;return!1===this.options.scroll&&r===t-1?this.alert():e>t&&r===t-1?this.scrollDown():(this.index=(r+1)%e,this.isDisabled()?this.down():this.render())}scrollUp(e=0){return this.choices=a(this.choices),this.index=e,this.isDisabled()?this.up():this.render()}scrollDown(e=this.visible.length-1){return this.choices=c(this.choices),this.index=e,this.isDisabled()?this.down():this.render()}async shiftUp(){return!0===this.options.sort?(this.sorting=!0,this.swap(this.index-1),await this.up(),void(this.sorting=!1)):this.scrollUp(this.index)}async shiftDown(){return!0===this.options.sort?(this.sorting=!0,this.swap(this.index+1),await this.down(),void(this.sorting=!1)):this.scrollDown(this.index)}pageUp(){return this.visible.length<=1?this.alert():(this.limit=Math.max(this.limit-1,0),this.index=Math.min(this.limit-1,this.index),this._limit=this.limit,this.isDisabled()?this.up():this.render())}pageDown(){return this.visible.length>=this.choices.length?this.alert():(this.index=Math.max(0,this.index),this.limit=Math.min(this.limit+1,this.choices.length),this._limit=this.limit,this.isDisabled()?this.down():this.render())}swap(e){l(this.choices,this.index,e)}isDisabled(e=this.focused){return!(!e||!["disabled","collapsed","hidden","completing","readonly"].some(t=>!0===e[t]))||e&&"heading"===e.role}isEnabled(e=this.focused){if(Array.isArray(e))return e.every(e=>this.isEnabled(e));if(e.choices){let t=e.choices.filter(e=>!this.isDisabled(e));return e.enabled&&t.every(e=>this.isEnabled(e))}return e.enabled&&!this.isDisabled(e)}isChoice(e,t){return e.name===t||e.index===Number(t)}isSelected(e){return Array.isArray(this.initial)?this.initial.some(t=>this.isChoice(e,t)):this.isChoice(e,this.initial)}map(e=[],t="value"){return[].concat(e||[]).reduce((e,r)=>(e[r]=this.find(r,t),e),{})}filter(e,t){let r="function"==typeof e?e:(t,r)=>[t.name,r].includes(e),n=(this.options.multiple?this.state._choices:this.choices).filter(r);return t?n.map(e=>e[t]):n}find(e,t){if(g(e))return t?e[t]:e;let r="function"==typeof e?e:(t,r)=>[t.name,r].includes(e),n=this.choices.find(r);return n?t?n[t]:n:void 0}findIndex(e){return this.choices.indexOf(this.find(e))}async submit(){let e=this.focused;if(!e)return this.alert();if(e.newChoice)return e.input?(e.updateChoice(),this.render()):this.alert();if(this.choices.some(e=>e.newChoice))return this.alert();let{reorder:t,sort:r}=this.options,n=!0===this.multiple,i=this.selected;return void 0===i?this.alert():(Array.isArray(i)&&!1!==t&&!0!==r&&(i=o.reorder(i)),this.value=n?i.map(e=>e.name):i.name,super.submit())}set choices(e=[]){this.state._choices=this.state._choices||[],this.state.choices=e;for(let t of e)this.state._choices.some(e=>e.name===t.name)||this.state._choices.push(t);if(!this._initial&&this.options.initial){this._initial=!0;let e=this.initial;if("string"==typeof e||"number"==typeof e){let t=this.find(e);t&&(this.initial=t.index,this.focus(t,!0))}}}get choices(){return u(this,this.state.choices||[])}set visible(e){this.state.visible=e}get visible(){return(this.state.visible||this.choices).slice(0,this.limit)}set limit(e){this.state.limit=e}get limit(){let{state:e,options:t,choices:r}=this,n=e.limit||this._limit||t.limit||r.length;return Math.min(n,this.height)}set value(e){super.value=e}get value(){return"string"!=typeof super.value&&super.value===this.initial?this.input:super.value}set index(e){this.state.index=e}get index(){return Math.max(0,this.state?this.state.index:0)}get enabled(){return this.filter(this.isEnabled.bind(this))}get focused(){let e=this.choices[this.index];return e&&this.state.submitted&&!0!==this.multiple&&(e.enabled=!0),e}get selectable(){return this.choices.filter(e=>!this.isDisabled(e))}get selected(){return this.multiple?this.enabled:this.focused}}},46614:(e,t,r)=>{"use strict";const n=r(71447),i=()=>{throw new Error("expected prompt to have a custom authenticate method")},A=(e=i)=>class extends n{constructor(e){super(e)}async submit(){this.value=await e.call(this,this.values,this.state),super.base.submit.call(this)}static create(e){return A(e)}};e.exports=A()},82710:(e,t,r)=>{"use strict";const n=r(58386),{isPrimitive:i,hasColor:A}=r(10278);e.exports=class extends n{constructor(e){super(e),this.cursorHide()}async initialize(){let e=await this.resolve(this.initial,this.state);this.input=await this.cast(e),await super.initialize()}dispatch(e){return this.isValue(e)?(this.input=e,this.submit()):this.alert()}format(e){let{styles:t,state:r}=this;return r.submitted?t.success(e):t.primary(e)}cast(e){return this.isTrue(e)}isTrue(e){return/^[ty1]/i.test(e)}isFalse(e){return/^[fn0]/i.test(e)}isValue(e){return i(e)&&(this.isTrue(e)||this.isFalse(e))}async hint(){if("pending"===this.state.status){let e=await this.element("hint");return A(e)?e:this.styles.muted(e)}}async render(){let{input:e,size:t}=this.state,r=await this.prefix(),n=await this.separator(),i=[r,await this.message(),this.styles.muted(this.default),n].filter(Boolean).join(" ");this.state.prompt=i;let A=await this.header(),o=this.value=this.cast(e),s=await this.format(o),a=await this.error()||await this.hint(),c=await this.footer();a&&!i.includes(a)&&(s+=" "+a),i+=" "+s,this.clear(t),this.write([A,i,c].filter(Boolean).join("\n")),this.restore()}set value(e){super.value=e}get value(){return this.cast(super.value)}}},13235:(e,t,r)=>{e.exports={ArrayPrompt:r(14723),AuthPrompt:r(46614),BooleanPrompt:r(82710),NumberPrompt:r(64987),StringPrompt:r(45853)}},64987:(e,t,r)=>{"use strict";const n=r(45853);e.exports=class extends n{constructor(e={}){super({style:"number",...e}),this.min=this.isValue(e.min)?this.toNumber(e.min):-1/0,this.max=this.isValue(e.max)?this.toNumber(e.max):1/0,this.delay=null!=e.delay?e.delay:1e3,this.float=!1!==e.float,this.round=!0===e.round||!1===e.float,this.major=e.major||10,this.minor=e.minor||1,this.initial=null!=e.initial?e.initial:"",this.input=String(this.initial),this.cursor=this.input.length,this.cursorShow()}append(e){return!/[-+.]/.test(e)||"."===e&&this.input.includes(".")?this.alert("invalid number"):super.append(e)}number(e){return super.append(e)}next(){return this.input&&this.input!==this.initial?this.alert():this.isValue(this.initial)?(this.input=this.initial,this.cursor=String(this.initial).length,this.render()):this.alert()}up(e){let t=e||this.minor,r=this.toNumber(this.input);return r>this.max+t?this.alert():(this.input=""+(r+t),this.render())}down(e){let t=e||this.minor,r=this.toNumber(this.input);return rthis.isValue(e));return this.value=this.toNumber(e||0),super.submit()}}},45853:(e,t,r)=>{"use strict";const n=r(58386),i=r(96496),{isPrimitive:A}=r(10278);e.exports=class extends n{constructor(e){super(e),this.initial=A(this.initial)?String(this.initial):"",this.initial&&this.cursorHide(),this.state.prevCursor=0,this.state.clipboard=[]}async keypress(e,t={}){let r=this.state.prevKeypress;return this.state.prevKeypress=t,!0!==this.options.multiline||"return"!==t.name||r&&"return"===r.name?super.keypress(e,t):this.append("\n",t)}moveCursor(e){this.cursor+=e}reset(){return this.input=this.value="",this.cursor=0,this.render()}dispatch(e,t){if(!e||t.ctrl||t.code)return this.alert();this.append(e)}append(e){let{cursor:t,input:r}=this.state;this.input=(""+r).slice(0,t)+e+(""+r).slice(t),this.moveCursor(String(e).length),this.render()}insert(e){this.append(e)}delete(){let{cursor:e,input:t}=this.state;if(e<=0)return this.alert();this.input=(""+t).slice(0,e-1)+(""+t).slice(e),this.moveCursor(-1),this.render()}deleteForward(){let{cursor:e,input:t}=this.state;if(void 0===t[e])return this.alert();this.input=(""+t).slice(0,e)+(""+t).slice(e+1),this.render()}cutForward(){let e=this.cursor;if(this.input.length<=e)return this.alert();this.state.clipboard.push(this.input.slice(e)),this.input=this.input.slice(0,e),this.render()}cutLeft(){let e=this.cursor;if(0===e)return this.alert();let t=this.input.slice(0,e),r=this.input.slice(e),n=t.split(" ");this.state.clipboard.push(n.pop()),this.input=n.join(" "),this.cursor=this.input.length,this.input+=r,this.render()}paste(){if(!this.state.clipboard.length)return this.alert();this.insert(this.state.clipboard.pop()),this.render()}toggleCursor(){this.state.prevCursor?(this.cursor=this.state.prevCursor,this.state.prevCursor=0):(this.state.prevCursor=this.cursor,this.cursor=0),this.render()}first(){this.cursor=0,this.render()}last(){this.cursor=this.input.length-1,this.render()}next(){let e=null!=this.initial?String(this.initial):"";if(!e||!e.startsWith(this.input))return this.alert();this.input=this.initial,this.cursor=this.initial.length,this.render()}prev(){if(!this.input)return this.alert();this.reset()}backward(){return this.left()}forward(){return this.right()}right(){return this.cursor>=this.input.length?this.alert():(this.moveCursor(1),this.render())}left(){return this.cursor<=0?this.alert():(this.moveCursor(-1),this.render())}isValue(e){return!!e}async format(e=this.value){let t=await this.resolve(this.initial,this.state);return this.state.submitted?this.styles.submitted(e||t):i(this,{input:e,initial:t,pos:this.cursor})}async render(){let e=this.state.size,t=await this.prefix(),r=await this.separator(),n=[t,await this.message(),r].filter(Boolean).join(" ");this.state.prompt=n;let i=await this.header(),A=await this.format(),o=await this.error()||await this.hint(),s=await this.footer();o&&!A.includes(o)&&(A+=" "+o),n+=" "+A,this.clear(e),this.write([i,n,s].filter(Boolean).join("\n")),this.restore()}}},10278:(e,t,r)=>{"use strict";const n=Object.prototype.toString,i=r(97991);let A=!1,o=[];const s={yellow:"blue",cyan:"red",green:"magenta",black:"white",blue:"yellow",red:"cyan",magenta:"green",white:"black"};t.longest=(e,t)=>e.reduce((e,r)=>Math.max(e,t?r[t].length:r.length),0),t.hasColor=e=>!!e&&i.hasColor(e);const a=t.isObject=e=>null!==e&&"object"==typeof e&&!Array.isArray(e);t.nativeType=e=>n.call(e).slice(8,-1).toLowerCase().replace(/\s/g,""),t.isAsyncFn=e=>"asyncfunction"===t.nativeType(e),t.isPrimitive=e=>null!=e&&"object"!=typeof e&&"function"!=typeof e,t.resolve=(e,t,...r)=>"function"==typeof t?t.call(e,...r):t,t.scrollDown=(e=[])=>[...e.slice(1),e[0]],t.scrollUp=(e=[])=>[e.pop(),...e],t.reorder=(e=[])=>{let t=e.slice();return t.sort((e,t)=>e.index>t.index?1:e.index{let n=e.length,i=r===n?0:r<0?n-1:r,A=e[t];e[t]=e[i],e[i]=A},t.width=(e,t=80)=>{let r=e&&e.columns?e.columns:t;return e&&"function"==typeof e.getWindowSize&&(r=e.getWindowSize()[0]),"win32"===process.platform?r-1:r},t.height=(e,t=20)=>{let r=e&&e.rows?e.rows:t;return e&&"function"==typeof e.getWindowSize&&(r=e.getWindowSize()[1]),r},t.wordWrap=(e,t={})=>{if(!e)return e;"number"==typeof t&&(t={width:t});let{indent:r="",newline:n="\n"+r,width:i=80}=t,A=(n+r).match(/[^\S\n]/g)||[];i-=A.length;let o=`.{1,${i}}([\\s\\u200B]+|$)|[^\\s\\u200B]+?([\\s\\u200B]+|$)`,s=e.trim(),a=new RegExp(o,"g"),c=s.match(a)||[];return c=c.map(e=>e.replace(/\n$/,"")),t.padEnd&&(c=c.map(e=>e.padEnd(i," "))),t.padStart&&(c=c.map(e=>e.padStart(i," "))),r+c.join(n)},t.unmute=e=>{let t=e.stack.find(e=>i.keys.color.includes(e));return t?i[t]:e.stack.find(e=>"bg"===e.slice(2))?i[t.slice(2)]:e=>e},t.pascal=e=>e?e[0].toUpperCase()+e.slice(1):"",t.inverse=e=>{if(!e||!e.stack)return e;let r=e.stack.find(e=>i.keys.color.includes(e));if(r){let n=i["bg"+t.pascal(r)];return n?n.black:e}let n=e.stack.find(e=>"bg"===e.slice(0,2));return n?i[n.slice(2).toLowerCase()]||e:i.none},t.complement=e=>{if(!e||!e.stack)return e;let r=e.stack.find(e=>i.keys.color.includes(e)),n=e.stack.find(e=>"bg"===e.slice(0,2));if(r&&!n)return i[s[r]||r];if(n){let r=n.slice(2).toLowerCase(),A=s[r];return A&&i["bg"+t.pascal(A)]||e}return i.none},t.meridiem=e=>{let t=e.getHours(),r=e.getMinutes(),n=t>=12?"pm":"am";return t%=12,(0===t?12:t)+":"+(r<10?"0"+r:r)+" "+n},t.set=(e={},r="",n)=>r.split(".").reduce((e,r,i,A)=>{let o=A.length-1>i?e[r]||{}:n;return!t.isObject(o)&&i{let n=null==e[t]?t.split(".").reduce((e,t)=>e&&e[t],e):e[t];return null==n?r:n},t.mixin=(e,r)=>{if(!a(e))return r;if(!a(r))return e;for(let n of Object.keys(r)){let i=Object.getOwnPropertyDescriptor(r,n);if(i.hasOwnProperty("value"))if(e.hasOwnProperty(n)&&a(i.value)){let A=Object.getOwnPropertyDescriptor(e,n);a(A.value)?e[n]=t.merge({},e[n],r[n]):Reflect.defineProperty(e,n,i)}else Reflect.defineProperty(e,n,i);else Reflect.defineProperty(e,n,i)}return e},t.merge=(...e)=>{let r={};for(let n of e)t.mixin(r,n);return r},t.mixinEmitter=(e,r)=>{let n=r.constructor.prototype;for(let i of Object.keys(n)){let A=n[i];"function"==typeof A?t.define(e,i,A.bind(r)):t.define(e,i,A)}},t.onExit=e=>{const t=(e,t)=>{A||(A=!0,o.forEach(e=>e()),!0===e&&process.exit(128+t))};0===o.length&&(process.once("SIGTERM",t.bind(null,!0,15)),process.once("SIGINT",t.bind(null,!0,2)),process.once("exit",t)),o.push(e)},t.define=(e,t,r)=>{Reflect.defineProperty(e,t,{value:r})},t.defineExport=(e,t,r)=>{let n;Reflect.defineProperty(e,t,{enumerable:!0,configurable:!0,set(e){n=e},get:()=>n?n():r()})}},19347:(e,t,r)=>{"use strict";const n=r(80598),i=r(58182),A=r(67652),o=r(81340),s=r(43754),a=r(16777);async function c(e,t){l(e);const r=g(e,i.default,t),n=await Promise.all(r);return a.array.flatten(n)}function g(e,t,r){const i=[].concat(e),A=new s.default(r),o=n.generate(i,A),a=new t(A);return o.map(a.read,a)}function l(e){if(![].concat(e).every(e=>a.string.isString(e)&&!a.string.isEmpty(e)))throw new TypeError("Patterns must be a string (non empty) or an array of strings")}!function(e){e.sync=function(e,t){l(e);const r=g(e,o.default,t);return a.array.flatten(r)},e.stream=function(e,t){l(e);const r=g(e,A.default,t);return a.stream.merge(r)},e.generateTasks=function(e,t){l(e);const r=[].concat(e),i=new s.default(t);return n.generate(r,i)},e.isDynamicPattern=function(e,t){l(e);const r=new s.default(t);return a.pattern.isDynamicPattern(e,r)},e.escapePath=function(e){return l(e),a.path.escape(e)}}(c||(c={})),e.exports=c},80598:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(16777);function i(e,t,r){const n=s(e);if("."in n){return[c(".",e,t,r)]}return a(n,t,r)}function A(e){return n.pattern.getPositivePatterns(e)}function o(e,t){return n.pattern.getNegativePatterns(e).concat(t).map(n.pattern.convertToPositivePattern)}function s(e){return e.reduce((e,t)=>{const r=n.pattern.getBaseDirectory(t);return r in e?e[r].push(t):e[r]=[t],e},{})}function a(e,t,r){return Object.keys(e).map(n=>c(n,e[n],t,r))}function c(e,t,r,i){return{dynamic:i,positive:t,negative:r,base:e,patterns:[].concat(t,r.map(n.pattern.convertToNegativePattern))}}t.generate=function(e,t){const r=A(e),s=o(e,t.ignore),a=r.filter(e=>n.pattern.isStaticPattern(e,t)),c=r.filter(e=>n.pattern.isDynamicPattern(e,t)),g=i(a,s,!1),l=i(c,s,!0);return g.concat(l)},t.convertPatternsToTasks=i,t.getPositivePatterns=A,t.getNegativePatternsAsPositive=o,t.groupPatternsByBaseDirectory=s,t.convertPatternGroupsToTasks=a,t.convertPatternGroupToTask=c},58182:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(82774),i=r(40545);class A extends i.default{constructor(){super(...arguments),this._reader=new n.default(this._settings)}read(e){const t=this._getRootDirectory(e),r=this._getReaderOptions(e),n=[];return new Promise((i,A)=>{const o=this.api(t,e,r);o.once("error",A),o.on("data",e=>n.push(r.transform(e))),o.once("end",()=>i(n))})}api(e,t,r){return t.dynamic?this._reader.dynamic(e,r):this._reader.static(t.patterns,r)}}t.default=A},65989:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(16777),i=r(42585);t.default=class{constructor(e,t){this._settings=e,this._micromatchOptions=t}getFilter(e,t,r){const n=this._getMatcher(t),i=this._getNegativePatternsRe(r);return t=>this._filter(e,t,n,i)}_getMatcher(e){return new i.default(e,this._settings,this._micromatchOptions)}_getNegativePatternsRe(e){const t=e.filter(n.pattern.isAffectDepthOfReadingPattern);return n.pattern.convertPatternsToRe(t,this._micromatchOptions)}_filter(e,t,r,i){const A=this._getEntryLevel(e,t.path);if(this._isSkippedByDeep(A))return!1;if(this._isSkippedSymbolicLink(t))return!1;const o=n.path.removeLeadingDotSegment(t.path);return!this._isSkippedByPositivePatterns(o,r)&&this._isSkippedByNegativePatterns(o,i)}_isSkippedByDeep(e){return e>=this._settings.deep}_isSkippedSymbolicLink(e){return!this._settings.followSymbolicLinks&&e.dirent.isSymbolicLink()}_getEntryLevel(e,t){const r=e.split("/").length;return t.split("/").length-(""===e?0:r)}_isSkippedByPositivePatterns(e,t){return!this._settings.baseNameMatch&&!t.match(e)}_isSkippedByNegativePatterns(e,t){return!n.pattern.matchAny(e,t)}}},37338:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(16777);t.default=class{constructor(e,t){this._settings=e,this._micromatchOptions=t,this.index=new Map}getFilter(e,t){const r=n.pattern.convertPatternsToRe(e,this._micromatchOptions),i=n.pattern.convertPatternsToRe(t,this._micromatchOptions);return e=>this._filter(e,r,i)}_filter(e,t,r){if(this._settings.unique){if(this._isDuplicateEntry(e))return!1;this._createIndexRecord(e)}if(this._onlyFileFilter(e)||this._onlyDirectoryFilter(e))return!1;if(this._isSkippedByAbsoluteNegativePatterns(e,r))return!1;const n=this._settings.baseNameMatch?e.name:e.path;return this._isMatchToPatterns(n,t)&&!this._isMatchToPatterns(e.path,r)}_isDuplicateEntry(e){return this.index.has(e.path)}_createIndexRecord(e){this.index.set(e.path,void 0)}_onlyFileFilter(e){return this._settings.onlyFiles&&!e.dirent.isFile()}_onlyDirectoryFilter(e){return this._settings.onlyDirectories&&!e.dirent.isDirectory()}_isSkippedByAbsoluteNegativePatterns(e,t){if(!this._settings.absolute)return!1;const r=n.path.makeAbsolute(this._settings.cwd,e.path);return this._isMatchToPatterns(r,t)}_isMatchToPatterns(e,t){const r=n.path.removeLeadingDotSegment(e);return n.pattern.matchAny(r,t)}}},54345:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(16777);t.default=class{constructor(e){this._settings=e}getFilter(){return e=>this._isNonFatalError(e)}_isNonFatalError(e){return n.errno.isEnoentCodeError(e)||this._settings.suppressErrors}}},34789:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(16777);t.default=class{constructor(e,t,r){this._patterns=e,this._settings=t,this._micromatchOptions=r,this._storage=[],this._fillStorage()}_fillStorage(){const e=n.pattern.expandPatternsWithBraceExpansion(this._patterns);for(const t of e){const e=this._getPatternSegments(t),r=this._splitSegmentsIntoSections(e);this._storage.push({complete:r.length<=1,pattern:t,segments:e,sections:r})}}_getPatternSegments(e){return n.pattern.getPatternParts(e,this._micromatchOptions).map(e=>n.pattern.isDynamicPattern(e,this._settings)?{dynamic:!0,pattern:e,patternRe:n.pattern.makeRe(e,this._micromatchOptions)}:{dynamic:!1,pattern:e})}_splitSegmentsIntoSections(e){return n.array.splitWhen(e,e=>e.dynamic&&n.pattern.hasGlobStar(e.pattern))}}},42585:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(34789);class i extends n.default{match(e){const t=e.split("/"),r=t.length,n=this._storage.filter(e=>!e.complete||e.segments.length>r);for(const e of n){const n=e.sections[0];if(!e.complete&&r>n.length)return!0;if(t.every((t,r)=>{const n=e.segments[r];return!(!n.dynamic||!n.patternRe.test(t))||!n.dynamic&&n.pattern===t}))return!0}return!1}}t.default=i},40545:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(85622),i=r(65989),A=r(37338),o=r(54345),s=r(77541);t.default=class{constructor(e){this._settings=e,this.errorFilter=new o.default(this._settings),this.entryFilter=new A.default(this._settings,this._getMicromatchOptions()),this.deepFilter=new i.default(this._settings,this._getMicromatchOptions()),this.entryTransformer=new s.default(this._settings)}_getRootDirectory(e){return n.resolve(this._settings.cwd,e.base)}_getReaderOptions(e){const t="."===e.base?"":e.base;return{basePath:t,pathSegmentSeparator:"/",concurrency:this._settings.concurrency,deepFilter:this.deepFilter.getFilter(t,e.positive,e.negative),entryFilter:this.entryFilter.getFilter(e.positive,e.negative),errorFilter:this.errorFilter.getFilter(),followSymbolicLinks:this._settings.followSymbolicLinks,fs:this._settings.fs,stats:this._settings.stats,throwErrorOnBrokenSymbolicLink:this._settings.throwErrorOnBrokenSymbolicLink,transform:this.entryTransformer.getTransformer()}}_getMicromatchOptions(){return{dot:this._settings.dot,matchBase:this._settings.baseNameMatch,nobrace:!this._settings.braceExpansion,nocase:!this._settings.caseSensitiveMatch,noext:!this._settings.extglob,noglobstar:!this._settings.globstar,posix:!0,strictSlashes:!1}}}},67652:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(92413),i=r(82774),A=r(40545);class o extends A.default{constructor(){super(...arguments),this._reader=new i.default(this._settings)}read(e){const t=this._getRootDirectory(e),r=this._getReaderOptions(e),i=this.api(t,e,r),A=new n.Readable({objectMode:!0,read:()=>{}});return i.once("error",e=>A.emit("error",e)).on("data",e=>A.emit("data",r.transform(e))).once("end",()=>A.emit("end")),A.once("close",()=>i.destroy()),A}api(e,t,r){return t.dynamic?this._reader.dynamic(e,r):this._reader.static(t.patterns,r)}}t.default=o},81340:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(29543),i=r(40545);class A extends i.default{constructor(){super(...arguments),this._reader=new n.default(this._settings)}read(e){const t=this._getRootDirectory(e),r=this._getReaderOptions(e);return this.api(t,e,r).map(r.transform)}api(e,t,r){return t.dynamic?this._reader.dynamic(e,r):this._reader.static(t.patterns,r)}}t.default=A},77541:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(16777);t.default=class{constructor(e){this._settings=e}getTransformer(){return e=>this._transform(e)}_transform(e){let t=e.path;return this._settings.absolute&&(t=n.path.makeAbsolute(this._settings.cwd,t),t=n.path.unixify(t)),this._settings.markDirectories&&e.dirent.isDirectory()&&(t+="/"),this._settings.objectMode?Object.assign(Object.assign({},e),{path:t}):t}}},99458:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(85622),i=r(53403),A=r(16777);t.default=class{constructor(e){this._settings=e,this._fsStatSettings=new i.Settings({followSymbolicLink:this._settings.followSymbolicLinks,fs:this._settings.fs,throwErrorOnBrokenSymbolicLink:this._settings.followSymbolicLinks})}_getFullEntryPath(e){return n.resolve(this._settings.cwd,e)}_makeEntry(e,t){const r={name:t,path:t,dirent:A.fs.createDirentFromStats(t,e)};return this._settings.stats&&(r.stats=e),r}_isFatalError(e){return!A.errno.isEnoentCodeError(e)&&!this._settings.suppressErrors}}},82774:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(92413),i=r(53403),A=r(72897),o=r(99458);class s extends o.default{constructor(){super(...arguments),this._walkStream=A.walkStream,this._stat=i.stat}dynamic(e,t){return this._walkStream(e,t)}static(e,t){const r=e.map(this._getFullEntryPath,this),i=new n.PassThrough({objectMode:!0});i._write=(n,A,o)=>this._getEntry(r[n],e[n],t).then(e=>{null!==e&&t.entryFilter(e)&&i.push(e),n===r.length-1&&i.end(),o()}).catch(o);for(let e=0;ethis._makeEntry(e,t)).catch(e=>{if(r.errorFilter(e))return null;throw e})}_getStat(e){return new Promise((t,r)=>{this._stat(e,this._fsStatSettings,(e,n)=>null===e?t(n):r(e))})}}t.default=s},29543:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(53403),i=r(72897),A=r(99458);class o extends A.default{constructor(){super(...arguments),this._walkSync=i.walkSync,this._statSync=n.statSync}dynamic(e,t){return this._walkSync(e,t)}static(e,t){const r=[];for(const n of e){const e=this._getFullEntryPath(n),i=this._getEntry(e,n,t);null!==i&&t.entryFilter(i)&&r.push(i)}return r}_getEntry(e,t,r){try{const r=this._getStat(e);return this._makeEntry(r,t)}catch(e){if(r.errorFilter(e))return null;throw e}}_getStat(e){return this._statSync(e,this._fsStatSettings)}}t.default=o},43754:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(35747),i=r(12087).cpus().length;t.DEFAULT_FILE_SYSTEM_ADAPTER={lstat:n.lstat,lstatSync:n.lstatSync,stat:n.stat,statSync:n.statSync,readdir:n.readdir,readdirSync:n.readdirSync};t.default=class{constructor(e={}){this._options=e,this.absolute=this._getValue(this._options.absolute,!1),this.baseNameMatch=this._getValue(this._options.baseNameMatch,!1),this.braceExpansion=this._getValue(this._options.braceExpansion,!0),this.caseSensitiveMatch=this._getValue(this._options.caseSensitiveMatch,!0),this.concurrency=this._getValue(this._options.concurrency,i),this.cwd=this._getValue(this._options.cwd,process.cwd()),this.deep=this._getValue(this._options.deep,1/0),this.dot=this._getValue(this._options.dot,!1),this.extglob=this._getValue(this._options.extglob,!0),this.followSymbolicLinks=this._getValue(this._options.followSymbolicLinks,!0),this.fs=this._getFileSystemMethods(this._options.fs),this.globstar=this._getValue(this._options.globstar,!0),this.ignore=this._getValue(this._options.ignore,[]),this.markDirectories=this._getValue(this._options.markDirectories,!1),this.objectMode=this._getValue(this._options.objectMode,!1),this.onlyDirectories=this._getValue(this._options.onlyDirectories,!1),this.onlyFiles=this._getValue(this._options.onlyFiles,!0),this.stats=this._getValue(this._options.stats,!1),this.suppressErrors=this._getValue(this._options.suppressErrors,!1),this.throwErrorOnBrokenSymbolicLink=this._getValue(this._options.throwErrorOnBrokenSymbolicLink,!1),this.unique=this._getValue(this._options.unique,!0),this.onlyDirectories&&(this.onlyFiles=!1),this.stats&&(this.objectMode=!0)}_getValue(e,t){return void 0===e?t:e}_getFileSystemMethods(e={}){return Object.assign(Object.assign({},t.DEFAULT_FILE_SYSTEM_ADAPTER),e)}}},60919:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.flatten=function(e){return e.reduce((e,t)=>[].concat(e,t),[])},t.splitWhen=function(e,t){const r=[[]];let n=0;for(const i of e)t(i)?(n++,r[n]=[]):r[n].push(i);return r}},35525:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isEnoentCodeError=function(e){return"ENOENT"===e.code}},62524:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});class r{constructor(e,t){this.name=e,this.isBlockDevice=t.isBlockDevice.bind(t),this.isCharacterDevice=t.isCharacterDevice.bind(t),this.isDirectory=t.isDirectory.bind(t),this.isFIFO=t.isFIFO.bind(t),this.isFile=t.isFile.bind(t),this.isSocket=t.isSocket.bind(t),this.isSymbolicLink=t.isSymbolicLink.bind(t)}}t.createDirentFromStats=function(e,t){return new r(e,t)}},16777:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(60919);t.array=n;const i=r(35525);t.errno=i;const A=r(62524);t.fs=A;const o=r(71462);t.path=o;const s=r(14659);t.pattern=s;const a=r(2042);t.stream=a;const c=r(10217);t.string=c},71462:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(85622),i=/(\\?)([()*?[\]{|}]|^!|[!+@](?=\())/g;t.unixify=function(e){return e.replace(/\\/g,"/")},t.makeAbsolute=function(e,t){return n.resolve(e,t)},t.escape=function(e){return e.replace(i,"\\$2")},t.removeLeadingDotSegment=function(e){if("."===e.charAt(0)){const t=e.charAt(1);if("/"===t||"\\"===t)return e.slice(2)}return e}},14659:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(85622),i=r(97098),A=r(2401),o=r(54722),s=/[*?]|^!/,a=/\[.*]/,c=/(?:^|[^!*+?@])\(.*\|.*\)/,g=/[!*+?@]\(.*\)/,l=/{.*(?:,|\.\.).*}/;function u(e,t={}){return!h(e,t)}function h(e,t={}){return!(!1!==t.caseSensitiveMatch&&!e.includes("\\"))||(!!(s.test(e)||a.test(e)||c.test(e))||(!(!1===t.extglob||!g.test(e))||!(!1===t.braceExpansion||!l.test(e))))}function f(e){return e.startsWith("!")&&"("!==e[1]}function p(e){return!f(e)}function C(e){return e.endsWith("/**")}function d(e){return A.braces(e,{expand:!0,nodupes:!0})}function I(e,t){return A.makeRe(e,t)}t.isStaticPattern=u,t.isDynamicPattern=h,t.convertToPositivePattern=function(e){return f(e)?e.slice(1):e},t.convertToNegativePattern=function(e){return"!"+e},t.isNegativePattern=f,t.isPositivePattern=p,t.getNegativePatterns=function(e){return e.filter(f)},t.getPositivePatterns=function(e){return e.filter(p)},t.getBaseDirectory=function(e){return i(e,{flipBackslashes:!1})},t.hasGlobStar=function(e){return e.includes("**")},t.endsWithSlashGlobStar=C,t.isAffectDepthOfReadingPattern=function(e){const t=n.basename(e);return C(e)||u(t)},t.expandPatternsWithBraceExpansion=function(e){return e.reduce((e,t)=>e.concat(d(t)),[])},t.expandBraceExpansion=d,t.getPatternParts=function(e,t){const r=o.scan(e,Object.assign(Object.assign({},t),{parts:!0}));return 0===r.parts.length?[e]:r.parts},t.makeRe=I,t.convertPatternsToRe=function(e,t){return e.map(e=>I(e,t))},t.matchAny=function(e,t){return t.some(t=>t.test(e))}},2042:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(55598);function i(e){e.forEach(e=>e.emit("close"))}t.merge=function(e){const t=n(e);return e.forEach(e=>{e.once("error",e=>t.emit("error",e))}),t.once("close",()=>i(e)),t.once("end",()=>i(e)),t}},10217:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isString=function(e){return"string"==typeof e},t.isEmpty=function(e){return""===e}},98360:(e,t,r)=>{"use strict";var n=r(2383);function i(){}function A(){this.value=null,this.callback=i,this.next=null,this.release=i,this.context=null;var e=this;this.worked=function(t,r){var n=e.callback;e.value=null,e.callback=i,n.call(e.context,t,r),e.release(e)}}e.exports=function(e,t,r){"function"==typeof e&&(r=t,t=e,e=null);var o=n(A),s=null,a=null,c=0,g={push:function(r,n){var A=o.get();A.context=e,A.release=l,A.value=r,A.callback=n||i,c===g.concurrency||g.paused?a?(a.next=A,a=A):(s=A,a=A,g.saturated()):(c++,t.call(e,A.value,A.worked))},drain:i,saturated:i,pause:function(){g.paused=!0},paused:!1,concurrency:r,running:function(){return c},resume:function(){if(!g.paused)return;g.paused=!1;for(var e=0;e{"use strict";class n{constructor(e,t,r){this.__specs=e||{},Object.keys(this.__specs).forEach(e=>{if("string"==typeof this.__specs[e]){const t=this.__specs[e],r=this.__specs[t];if(!r)throw new Error(`Alias refers to invalid key: ${t} -> ${e}`);{const n=r.aliases||[];n.push(e,t),r.aliases=[...new Set(n)],this.__specs[e]=r}}}),this.__opts=t||{},this.__providers=s(r.filter(e=>null!=e&&"object"==typeof e)),this.__isFiggyPudding=!0}get(e){return i(this,e,!0)}get[Symbol.toStringTag](){return"FiggyPudding"}forEach(e,t=this){for(let[r,n]of this.entries())e.call(t,n,r,this)}toJSON(){const e={};return this.forEach((t,r)=>{e[r]=t}),e}*entries(e){for(let e of Object.keys(this.__specs))yield[e,this.get(e)];const t=e||this.__opts.other;if(t){const e=new Set;for(let r of this.__providers){const n=r.entries?r.entries(t):a(r);for(let[r,i]of n)t(r)&&!e.has(r)&&(e.add(r),yield[r,i])}}}*[Symbol.iterator](){for(let[e,t]of this.entries())yield[e,t]}*keys(){for(let[e]of this.entries())yield e}*values(){for(let[,e]of this.entries())yield e}concat(...e){return new Proxy(new n(this.__specs,this.__opts,s(this.__providers).concat(e)),o)}}try{const e=r(31669);n.prototype[e.inspect.custom]=function(t,r){return this[Symbol.toStringTag]+" "+e.inspect(this.toJSON(),r)}}catch(e){}function i(e,t,r){let n=e.__specs[t];if(!r||n||e.__opts.other&&e.__opts.other(t)){let r;n||(n={});for(let i of e.__providers){if(r=A(t,i),void 0===r&&n.aliases&&n.aliases.length)for(let e of n.aliases)if(e!==t&&(r=A(e,i),void 0!==r))break;if(void 0!==r)break}return void 0===r&&void 0!==n.default?"function"==typeof n.default?n.default(e):n.default:r}!function(e){throw Object.assign(new Error("invalid config key requested: "+e),{code:"EBADKEY"})}(t)}function A(e,t){let r;return r=t.__isFiggyPudding?i(t,e,!1):"function"==typeof t.get?t.get(e):t[e],r}const o={has:(e,t)=>t in e.__specs&&void 0!==i(e,t,!1),ownKeys:e=>Object.keys(e.__specs),get:(e,t)=>"symbol"==typeof t||"__"===t.slice(0,2)||t in n.prototype?e[t]:e.get(t),set(e,t,r){if("symbol"==typeof t||"__"===t.slice(0,2))return e[t]=r,!0;throw new Error("figgyPudding options cannot be modified. Use .concat() instead.")},deleteProperty(){throw new Error("figgyPudding options cannot be deleted. Use .concat() and shadow them instead.")}};function s(e){const t=[];return e.forEach(e=>t.unshift(e)),t}function a(e){return Object.keys(e).map(t=>[t,e[t]])}e.exports=function(e,t){return function(...r){return new Proxy(new n(e,t,r),o)}}},52169:(e,t,r)=>{"use strict"; -/*! - * fill-range - * - * Copyright (c) 2014-present, Jon Schlinkert. - * Licensed under the MIT License. - */const n=r(31669),i=r(84615),A=e=>null!==e&&"object"==typeof e&&!Array.isArray(e),o=e=>"number"==typeof e||"string"==typeof e&&""!==e,s=e=>Number.isInteger(+e),a=e=>{let t=""+e,r=-1;if("-"===t[0]&&(t=t.slice(1)),"0"===t)return!1;for(;"0"===t[++r];);return r>0},c=(e,t,r)=>{if(t>0){let r="-"===e[0]?"-":"";r&&(e=e.slice(1)),e=r+e.padStart(r?t-1:t,"0")}return!1===r?String(e):e},g=(e,t)=>{let r="-"===e[0]?"-":"";for(r&&(e=e.slice(1),t--);e.length{if(r)return i(e,t,{wrap:!1,...n});let A=String.fromCharCode(e);return e===t?A:`[${A}-${String.fromCharCode(t)}]`},u=(e,t,r)=>{if(Array.isArray(e)){let t=!0===r.wrap,n=r.capture?"":"?:";return t?`(${n}${e.join("|")})`:e.join("|")}return i(e,t,r)},h=(...e)=>new RangeError("Invalid range arguments: "+n.inspect(...e)),f=(e,t,r)=>{if(!0===r.strictRanges)throw h([e,t]);return[]},p=(e,t,r=1,n={})=>{let i=Number(e),A=Number(t);if(!Number.isInteger(i)||!Number.isInteger(A)){if(!0===n.strictRanges)throw h([e,t]);return[]}0===i&&(i=0),0===A&&(A=0);let o=i>A,s=String(e),f=String(t),p=String(r);r=Math.max(Math.abs(r),1);let C=a(s)||a(f)||a(p),d=C?Math.max(s.length,f.length,p.length):0,I=!1===C&&!1===((e,t,r)=>"string"==typeof e||"string"==typeof t||!0===r.stringify)(e,t,n),E=n.transform||(e=>t=>!0===e?Number(t):String(t))(I);if(n.toRegex&&1===r)return l(g(e,d),g(t,d),!0,n);let m={negatives:[],positives:[]},B=[],w=0;for(;o?i>=A:i<=A;)!0===n.toRegex&&r>1?m[(y=i)<0?"negatives":"positives"].push(Math.abs(y)):B.push(c(E(i,w),d,I)),i=o?i-r:i+r,w++;var y;return!0===n.toRegex?r>1?((e,t)=>{e.negatives.sort((e,t)=>et?1:0),e.positives.sort((e,t)=>et?1:0);let r,n=t.capture?"":"?:",i="",A="";return e.positives.length&&(i=e.positives.join("|")),e.negatives.length&&(A=`-(${n}${e.negatives.join("|")})`),r=i&&A?`${i}|${A}`:i||A,t.wrap?`(${n}${r})`:r})(m,n):u(B,null,{wrap:!1,...n}):B},C=(e,t,r,n={})=>{if(null==t&&o(e))return[e];if(!o(e)||!o(t))return f(e,t,n);if("function"==typeof r)return C(e,t,1,{transform:r});if(A(r))return C(e,t,0,r);let i={...n};return!0===i.capture&&(i.wrap=!0),r=r||i.step||1,s(r)?s(e)&&s(t)?p(e,t,r,i):((e,t,r=1,n={})=>{if(!s(e)&&e.length>1||!s(t)&&t.length>1)return f(e,t,n);let i=n.transform||(e=>String.fromCharCode(e)),A=(""+e).charCodeAt(0),o=(""+t).charCodeAt(0),a=A>o,c=Math.min(A,o),g=Math.max(A,o);if(n.toRegex&&1===r)return l(c,g,!1,n);let h=[],p=0;for(;a?A>=o:A<=o;)h.push(i(A,p)),A=a?A-r:A+r,p++;return!0===n.toRegex?u(h,null,{wrap:!1,options:n}):h})(e,t,Math.max(Math.abs(r),1),i):null==r||A(r)?C(e,t,1,r):((e,t)=>{if(!0===t.strictRanges)throw new TypeError(`Expected step "${e}" to be a number`);return[]})(r,i)};e.exports=C},50683:e=>{e.exports=function(e){return[...e].reduce((e,[t,r])=>(e[t]=r,e),{})}},13302:(e,t,r)=>{e.exports=r(35747).constants||r(27619)},72137:(e,t,r)=>{"use strict";const{PassThrough:n}=r(92413);e.exports=e=>{e={...e};const{array:t}=e;let{encoding:r}=e;const i="buffer"===r;let A=!1;t?A=!(r||i):r=r||"utf8",i&&(r=null);const o=new n({objectMode:A});r&&o.setEncoding(r);let s=0;const a=[];return o.on("data",e=>{a.push(e),A?s=a.length:s+=e.length}),o.getBufferedValue=()=>t?a:i?Buffer.concat(a,s):a.join(""),o.getBufferedLength=()=>s,o}},58764:(e,t,r)=>{"use strict";const n=r(50372),i=r(72137);class A extends Error{constructor(){super("maxBuffer exceeded"),this.name="MaxBufferError"}}async function o(e,t){if(!e)return Promise.reject(new Error("Expected a stream"));t={maxBuffer:1/0,...t};const{maxBuffer:r}=t;let o;return await new Promise((s,a)=>{const c=e=>{e&&(e.bufferedData=o.getBufferedValue()),a(e)};o=n(e,i(t),e=>{e?c(e):s()}),o.on("data",()=>{o.getBufferedLength()>r&&c(new A)})}),o.getBufferedValue()}e.exports=o,e.exports.default=o,e.exports.buffer=(e,t)=>o(e,{...t,encoding:"buffer"}),e.exports.array=(e,t)=>o(e,{...t,array:!0}),e.exports.MaxBufferError=A},97098:(e,t,r)=>{"use strict";var n=r(18193),i=r(85622).posix.dirname,A="win32"===r(12087).platform(),o=/\\/g,s=/[\{\[].*[\/]*.*[\}\]]$/,a=/(^|[^\\])([\{\[]|\([^\)]+$)/,c=/\\([\*\?\|\[\]\(\)\{\}])/g;e.exports=function(e,t){Object.assign({flipBackslashes:!0},t).flipBackslashes&&A&&e.indexOf("/")<0&&(e=e.replace(o,"/")),s.test(e)&&(e+="/"),e+="a";do{e=i(e)}while(n(e)||a.test(e));return e.replace(c,"$1")}},90734:(e,t,r)=>{"use strict";const{promisify:n}=r(31669),i=r(35747),A=r(85622),o=r(19347),s=r(46458),a=r(17234),c=["**/node_modules/**","**/flow-typed/**","**/coverage/**","**/.git"],g=n(i.readFile),l=(e,t)=>{const r=a(A.relative(t.cwd,A.dirname(t.fileName)));return e.split(/\r?\n/).filter(Boolean).filter(e=>!e.startsWith("#")).map((e=>t=>t.startsWith("!")?"!"+A.posix.join(e,t.slice(1)):A.posix.join(e,t))(r))},u=e=>e.reduce((e,t)=>(e.add(l(t.content,{cwd:t.cwd,fileName:t.filePath})),e),s()),h=(e,t)=>r=>e.ignores(a(A.relative(t,((e,t)=>{if(e=a(e),A.isAbsolute(t)){if(t.startsWith(e))return t;throw new Error(`Path ${t} is not in cwd ${e}`)}return A.join(e,t)})(t,r)))),f=({ignore:e=[],cwd:t=a(process.cwd())}={})=>({ignore:e,cwd:t});e.exports=async e=>{e=f(e);const t=await o("**/.gitignore",{ignore:c.concat(e.ignore),cwd:e.cwd}),r=await Promise.all(t.map(t=>(async(e,t)=>{const r=A.join(t,e);return{cwd:t,filePath:r,content:await g(r,"utf8")}})(t,e.cwd))),n=u(r);return h(n,e.cwd)},e.exports.sync=e=>{e=f(e);const t=o.sync("**/.gitignore",{ignore:c.concat(e.ignore),cwd:e.cwd}).map(t=>((e,t)=>{const r=A.join(t,e);return{cwd:t,filePath:r,content:i.readFileSync(r,"utf8")}})(t,e.cwd)),r=u(t);return h(r,e.cwd)}},58592:(e,t,r)=>{"use strict";const n=r(35747),i=r(39920),A=r(55598),o=r(19347),s=r(66241),a=r(90734),{FilterStream:c,UniqueStream:g}=r(66160),l=()=>!1,u=e=>"!"===e[0],h=(e,t)=>{(e=>{if(!e.every(e=>"string"==typeof e))throw new TypeError("Patterns must be a string or an array of strings")})(e=i([].concat(e))),((e={})=>{if(!e.cwd)return;let t;try{t=n.statSync(e.cwd)}catch(e){return}if(!t.isDirectory())throw new Error("The `cwd` option must be a path to a directory")})(t);const r=[];t={ignore:[],expandDirectories:!0,...t};for(const[n,i]of e.entries()){if(u(i))continue;const A=e.slice(n).filter(u).map(e=>e.slice(1)),o={...t,ignore:t.ignore.concat(A)};r.push({pattern:i,options:o})}return r},f=(e,t)=>e.options.expandDirectories?((e,t)=>{let r={};return e.options.cwd&&(r.cwd=e.options.cwd),Array.isArray(e.options.expandDirectories)?r={...r,files:e.options.expandDirectories}:"object"==typeof e.options.expandDirectories&&(r={...r,...e.options.expandDirectories}),t(e.pattern,r)})(e,t):[e.pattern],p=e=>e&&e.gitignore?a.sync({cwd:e.cwd,ignore:e.ignore}):l,C=e=>t=>{const{options:r}=e;return r.ignore&&Array.isArray(r.ignore)&&r.expandDirectories&&(r.ignore=s.sync(r.ignore)),{pattern:t,options:r}};e.exports=async(e,t)=>{const r=h(e,t),[A,c]=await Promise.all([(async()=>t&&t.gitignore?a({cwd:t.cwd,ignore:t.ignore}):l)(),(async()=>{const e=await Promise.all(r.map(async e=>{const t=await f(e,s);return Promise.all(t.map(C(e)))}));return i(...e)})()]),g=await Promise.all(c.map(e=>o(e.pattern,e.options)));return i(...g).filter(e=>{return!A((t=e,t.stats instanceof n.Stats?t.path:t));var t})},e.exports.sync=(e,t)=>{const r=h(e,t).reduce((e,t)=>{const r=f(t,s.sync).map(C(t));return e.concat(r)},[]),n=p(t);return r.reduce((e,t)=>i(e,o.sync(t.pattern,t.options)),[]).filter(e=>!n(e))},e.exports.stream=(e,t)=>{const r=h(e,t).reduce((e,t)=>{const r=f(t,s.sync).map(C(t));return e.concat(r)},[]),n=p(t),i=new c(e=>!n(e)),a=new g;return A(r.map(e=>o.stream(e.pattern,e.options))).pipe(i).pipe(a)},e.exports.generateGlobTasks=h,e.exports.hasMagic=(e,t)=>[].concat(e).some(e=>o.isDynamicPattern(e,t)),e.exports.gitignore=a},66160:(e,t,r)=>{"use strict";const{Transform:n}=r(92413);class i extends n{constructor(){super({objectMode:!0})}}e.exports={FilterStream:class extends i{constructor(e){super(),this._filter=e}_transform(e,t,r){this._filter(e)&&this.push(e),r()}},UniqueStream:class extends i{constructor(){super(),this._pushed=new Set}_transform(e,t,r){this._pushed.has(e)||(this.push(e),this._pushed.add(e)),r()}}}},67078:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(27143),i=new Set([413,429,503]),A=e=>e instanceof n.HTTPError||e instanceof n.ParseError||e instanceof n.MaxRedirectsError;t.default=({attemptCount:e,retryOptions:t,error:r})=>{if(e>t.limit)return 0;const n=t.methods.includes(r.options.method),o=t.errorCodes.includes(r.code),s=A(r)&&t.statusCodes.includes(r.response.statusCode);if(!n||!o&&!s)return 0;if(A(r)){const{response:e}=r;if(e&&"retry-after"in e.headers&&i.has(e.statusCode)){let r=Number(e.headers["retry-after"]);return Number.isNaN(r)?r=Date.parse(e.headers["retry-after"])-Date.now():r*=1e3,void 0===t.maxRetryAfter||r>t.maxRetryAfter?0:r}if(413===e.statusCode)return 0}return 2**(e-1)*1e3+100*Math.random()}},39560:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(8189),i=r(27143),A=r(8859);A.knownHookEvents.includes("beforeRetry")||A.knownHookEvents.push("beforeRetry","afterResponse"),t.knownBodyTypes=["json","buffer","text"],t.parseBody=(e,t,r)=>{const{rawBody:n}=e;try{if("text"===t)return n.toString(r);if("json"===t)return 0===n.length?"":JSON.parse(n.toString());if("buffer"===t)return Buffer.from(n);throw new i.ParseError({message:`Unknown body type '${t}'`,name:"Error"},e)}catch(t){throw new i.ParseError(t,e)}};class o extends A.default{static normalizeArguments(e,t,r){const i=super.normalizeArguments(e,t,r);if(n.default.null_(i.encoding))throw new TypeError("To get a Buffer, set `options.responseType` to `buffer` instead");n.assert.any([n.default.string,n.default.undefined],i.encoding),n.assert.any([n.default.boolean,n.default.undefined],i.resolveBodyOnly),n.assert.any([n.default.boolean,n.default.undefined],i.methodRewriting),n.assert.any([n.default.boolean,n.default.undefined],i.isStream);const{retry:A}=i;if(i.retry=r?{...r.retry}:{calculateDelay:e=>e.computedValue,limit:0,methods:[],statusCodes:[],errorCodes:[],maxRetryAfter:void 0},n.default.object(A)?(i.retry={...i.retry,...A},i.retry.methods=[...new Set(i.retry.methods.map(e=>e.toUpperCase()))],i.retry.statusCodes=[...new Set(i.retry.statusCodes)],i.retry.errorCodes=[...new Set(i.retry.errorCodes)]):n.default.number(A)&&(i.retry.limit=A),n.default.undefined(i.retry.maxRetryAfter)&&(i.retry.maxRetryAfter=Math.min(...[i.timeout.request,i.timeout.connect].filter(n.default.number))),n.default.object(i.pagination)){r&&(i.pagination={...r.pagination,...i.pagination});const{pagination:e}=i;if(!n.default.function_(e.transform))throw new Error("`options.pagination.transform` must be implemented");if(!n.default.function_(e.shouldContinue))throw new Error("`options.pagination.shouldContinue` must be implemented");if(!n.default.function_(e.filter))throw new TypeError("`options.pagination.filter` must be implemented");if(!n.default.function_(e.paginate))throw new Error("`options.pagination.paginate` must be implemented")}return"json"===i.responseType&&void 0===i.headers.accept&&(i.headers.accept="application/json"),i}static mergeOptions(...e){let t;for(const r of e)t=o.normalizeArguments(void 0,r,t);return t}async _beforeError(e){e instanceof A.RequestError||(e=new A.RequestError(e.message,e,this)),this.emit("error",e)}}t.default=o},57019:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(27143);t.default=function(e,...t){const r=(async()=>{if(e instanceof n.RequestError)try{for(const r of t)if(r)for(const t of r)e=await t(e)}catch(t){e=t}throw e})(),i=()=>r;return r.json=i,r.text=i,r.buffer=i,r.on=i,r}},74850:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(28614),i=r(58764),A=r(59351),o=r(67078),s=r(27143),a=r(39560);t.PromisableRequest=a.default;const c=r(63227),g=["request","response","redirect","uploadProgress","downloadProgress"];t.default=function e(t){let r,l,u=0;const h=new n.EventEmitter,f=new A((n,A,p)=>{const C=()=>{const{throwHttpErrors:d}=t;d||(t.throwHttpErrors=!0);const I=new a.default(t.url,t);I._noPipe=!0,p(()=>I.destroy());const E=async e=>{try{for(const r of t.hooks.beforeError)e=await r(e)}catch(e){return void A(new s.RequestError(e.message,e,I))}A(e)};r=I,I.once("response",async r=>{if(r.retryCount=u,r.request.aborted)return;const A=()=>{const{statusCode:e}=r,n=t.followRedirect?299:399;return e>=200&&e<=n||304===e};let o;try{o=await i.buffer(I),r.rawBody=o}catch(e){return}try{r.body=a.parseBody(r,t.responseType,t.encoding)}catch(e){if(r.body=o.toString(),A())return void E(e)}try{for(const[n,i]of t.hooks.afterResponse.entries())r=await i(r,async r=>{const i=a.default.normalizeArguments(void 0,{...r,retry:{calculateDelay:()=>0},throwHttpErrors:!1,resolveBodyOnly:!1},t);i.hooks.afterResponse=i.hooks.afterResponse.slice(0,n);for(const e of i.hooks.beforeRetry)await e(i);const A=e(i);return p(()=>{A.catch(()=>{}),A.cancel()}),A})}catch(e){return void E(new s.RequestError(e.message,e,I))}!d||A()?(l=r,n(t.resolveBodyOnly?r.body:r)):E(new s.HTTPError(r))}),I.once("error",e=>{if(f.isCanceled)return;if(!I.options)return void E(e);let r;u++;try{r=t.retry.calculateDelay({attemptCount:u,retryOptions:t.retry,error:e,computedValue:o.default({attemptCount:u,retryOptions:t.retry,error:e,computedValue:0})})}catch(t){return I.destroy(),void E(new s.RequestError(t.message,e,I))}if(r){I.destroy();setTimeout(async()=>{t.throwHttpErrors=d;try{for(const r of t.hooks.beforeRetry)await r(t,e,u)}catch(t){return I.destroy(),void E(new s.RequestError(t.message,e,I))}C()},r)}else u--,e instanceof s.HTTPError||(I.destroy(),E(e))}),c.default(I,h,g)};C()});f.on=(e,t)=>(h.on(e,t),f);const p=e=>{const r=(async()=>(await f,a.parseBody(l,e,t.encoding)))();return Object.defineProperties(r,Object.getOwnPropertyDescriptors(f)),r};return f.json=()=>(r.writableFinished||void 0!==t.headers.accept||(t.headers.accept="application/json"),p("json")),f.buffer=()=>p("buffer"),f.text=()=>p("text"),f},function(e){for(var r in e)t.hasOwnProperty(r)||(t[r]=e[r])}(r(27143))},27143:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(59351);t.CancelError=n.CancelError;const i=r(8859);t.RequestError=i.RequestError,t.MaxRedirectsError=i.MaxRedirectsError,t.CacheError=i.CacheError,t.UploadError=i.UploadError,t.TimeoutError=i.TimeoutError,t.HTTPError=i.HTTPError,t.ReadError=i.ReadError,t.UnsupportedProtocolError=i.UnsupportedProtocolError;class A extends i.RequestError{constructor(e,t){const{options:r}=t.request;super(`${e.message} in "${r.url.toString()}"`,e,t.request),this.name="ParseError",Object.defineProperty(this,"response",{enumerable:!1,value:t})}}t.ParseError=A},8859:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(31669),i=r(92413),A=r(35747),o=r(78835),s=r(98605),a=r(98605),c=r(57211),g=r(98298),l=r(53832),u=r(43261),h=r(11200),f=r(9453),p=r(55737),C=r(58764),d=r(8189),I=r(96596),E=r(35637),m=r(63227),B=r(32449),w=r(13656),y=r(80972),Q=r(30291),v=Symbol("request"),b=Symbol("response"),D=Symbol("responseSize"),S=Symbol("downloadedSize"),k=Symbol("bodySize"),M=Symbol("uploadedSize"),F=Symbol("serverResponsesPiped"),N=Symbol("unproxyEvents"),R=Symbol("isFromCache"),K=Symbol("cancelTimeouts"),x=Symbol("startedReading"),L=Symbol("stopReading"),P=Symbol("triggerRead"),U=Symbol("body"),T=Symbol("jobs"),O=Symbol("originalResponse");t.kIsNormalizedAlready=Symbol("isNormalizedAlready");const j=d.default.string(process.versions.brotli);t.withoutBody=new Set(["GET","HEAD"]),t.knownHookEvents=["init","beforeRequest","beforeRedirect","beforeError"];const Y=new Q.default,G=new Set([300,301,302,303,304,307,308]),_=["context","body","json","form"];class H extends Error{constructor(e,t,r){var n;if(super(e),Error.captureStackTrace(this,this.constructor),this.name="RequestError",this.code=t.code,r instanceof ee?(Object.defineProperty(this,"request",{enumerable:!1,value:r}),Object.defineProperty(this,"response",{enumerable:!1,value:r[b]}),Object.defineProperty(this,"options",{enumerable:!1,value:r.options})):Object.defineProperty(this,"options",{enumerable:!1,value:r}),this.timings=null===(n=this.request)||void 0===n?void 0:n.timings,!d.default.undefined(t.stack)){const e=this.stack.indexOf(this.message)+this.message.length,r=this.stack.slice(e).split("\n").reverse(),n=t.stack.slice(t.stack.indexOf(t.message)+t.message.length).split("\n").reverse();for(;0!==n.length&&n[0]===r[0];)r.shift();this.stack=`${this.stack.slice(0,e)}${r.reverse().join("\n")}${n.reverse().join("\n")}`}}}t.RequestError=H;class J extends H{constructor(e){super(`Redirected ${e.options.maxRedirects} times. Aborting.`,{},e),this.name="MaxRedirectsError"}}t.MaxRedirectsError=J;class q extends H{constructor(e){super(`Response code ${e.statusCode} (${e.statusMessage})`,{},e.request),this.name="HTTPError"}}t.HTTPError=q;class z extends H{constructor(e,t){super(e.message,e,t),this.name="CacheError"}}t.CacheError=z;class W extends H{constructor(e,t){super(e.message,e,t),this.name="UploadError"}}t.UploadError=W;class V extends H{constructor(e,t,r){super(e.message,e,r),this.name="TimeoutError",this.event=e.event,this.timings=t}}t.TimeoutError=V;class X extends H{constructor(e,t){super(e.message,e,t),this.name="ReadError"}}t.ReadError=X;class Z extends H{constructor(e){super(`Unsupported protocol "${e.url.protocol}"`,{},e),this.name="UnsupportedProtocolError"}}t.UnsupportedProtocolError=Z;const $=["socket","connect","continue","information","upgrade","timeout"];class ee extends i.Duplex{constructor(e,r={},n){super({highWaterMark:0}),this[S]=0,this[M]=0,this.requestInitialized=!1,this[F]=new Set,this.redirects=[],this[L]=!1,this[P]=!1,this[T]=[],this._progressCallbacks=[];const i=()=>this._unlockWrite(),o=()=>this._lockWrite();this.on("pipe",e=>{e.prependListener("data",i),e.on("data",o),e.prependListener("end",i),e.on("end",o)}),this.on("unpipe",e=>{e.off("data",i),e.off("data",o),e.off("end",i),e.off("end",o)}),this.on("pipe",e=>{e instanceof a.IncomingMessage&&(this.options.headers={...e.headers,...this.options.headers})});const{json:s,body:c,form:g}=r;(s||c||g)&&this._lockWrite(),(async r=>{var i;try{r.body instanceof A.ReadStream&&await(async e=>new Promise((t,r)=>{const n=e=>{r(e)};e.once("error",n),e.once("open",()=>{e.off("error",n),t()})}))(r.body),t.kIsNormalizedAlready in r?this.options=r:this.options=this.constructor.normalizeArguments(e,r,n);const{url:o}=this.options;if(!o)throw new TypeError("Missing `url` property");if(this.requestUrl=o.toString(),decodeURI(this.requestUrl),await this._finalizeBody(),await this._makeRequest(),this.destroyed)return void(null===(i=this[v])||void 0===i||i.destroy());for(const e of this[T])e();this.requestInitialized=!0}catch(e){if(e instanceof H)return void this._beforeError(e);this.destroyed||this.destroy(e)}})(r)}static normalizeArguments(e,r,i){var A,s,a,c;const g=r;if(d.default.object(e)&&!d.default.urlInstance(e))r={...i,...e,...r};else{if(e&&r&&r.url)throw new TypeError("The `url` option is mutually exclusive with the `input` argument");r={...i,...r},e&&(r.url=e),d.default.urlInstance(r.url)&&(r.url=new o.URL(r.url.toString()))}if(!1===r.cache&&(r.cache=void 0),!1===r.dnsCache&&(r.dnsCache=void 0),d.assert.any([d.default.string,d.default.undefined],r.method),d.assert.any([d.default.object,d.default.undefined],r.headers),d.assert.any([d.default.string,d.default.urlInstance,d.default.undefined],r.prefixUrl),d.assert.any([d.default.object,d.default.undefined],r.cookieJar),d.assert.any([d.default.object,d.default.string,d.default.undefined],r.searchParams),d.assert.any([d.default.object,d.default.string,d.default.undefined],r.cache),d.assert.any([d.default.object,d.default.number,d.default.undefined],r.timeout),d.assert.any([d.default.object,d.default.undefined],r.context),d.assert.any([d.default.object,d.default.undefined],r.hooks),d.assert.any([d.default.boolean,d.default.undefined],r.decompress),d.assert.any([d.default.boolean,d.default.undefined],r.ignoreInvalidCookies),d.assert.any([d.default.boolean,d.default.undefined],r.followRedirect),d.assert.any([d.default.number,d.default.undefined],r.maxRedirects),d.assert.any([d.default.boolean,d.default.undefined],r.throwHttpErrors),d.assert.any([d.default.boolean,d.default.undefined],r.http2),d.assert.any([d.default.boolean,d.default.undefined],r.allowGetBody),d.assert.any([d.default.boolean,d.default.undefined],r.rejectUnauthorized),d.default.string(r.method)?r.method=r.method.toUpperCase():r.method="GET",r.headers===(null==i?void 0:i.headers)?r.headers={...r.headers}:r.headers=p({...null==i?void 0:i.headers,...r.headers}),"slashes"in r)throw new TypeError("The legacy `url.Url` has been deprecated. Use `URL` instead.");if("auth"in r)throw new TypeError("Parameter `auth` is deprecated. Use `username` / `password` instead.");if("searchParams"in r&&r.searchParams&&r.searchParams!==(null==i?void 0:i.searchParams)){d.default.string(r.searchParams)||r.searchParams instanceof o.URLSearchParams||function(e){for(const t in e){const r=e[t];if(!(d.default.string(r)||d.default.number(r)||d.default.boolean(r)||d.default.null_(r)))throw new TypeError(`The \`searchParams\` value '${String(r)}' must be a string, number, boolean or null`)}}(r.searchParams);const e=new o.URLSearchParams(r.searchParams);null===(A=null==i?void 0:i.searchParams)||void 0===A||A.forEach((t,r)=>{e.has(r)||e.append(r,t)}),r.searchParams=e}if(r.username=null!==(s=r.username)&&void 0!==s?s:"",r.password=null!==(a=r.password)&&void 0!==a?a:"",r.prefixUrl?(r.prefixUrl=r.prefixUrl.toString(),""===r.prefixUrl||r.prefixUrl.endsWith("/")||(r.prefixUrl+="/")):r.prefixUrl="",d.default.string(r.url)){if(r.url.startsWith("/"))throw new Error("`input` must not start with a slash when using `prefixUrl`");r.url=y.default(r.prefixUrl+r.url,r)}else(d.default.undefined(r.url)&&""!==r.prefixUrl||r.protocol)&&(r.url=y.default(r.prefixUrl,r));if(r.url){let{prefixUrl:e}=r;Object.defineProperty(r,"prefixUrl",{set:t=>{const n=r.url;if(!n.href.startsWith(t))throw new Error(`Cannot change \`prefixUrl\` from ${e} to ${t}: ${n.href}`);r.url=new o.URL(t+n.href.slice(e.length)),e=t},get:()=>e});let{protocol:t}=r.url;if("unix:"===t&&(t="http:",r.url=new o.URL(`http://unix${r.url.pathname}${r.url.search}`)),r.searchParams&&(r.url.search=r.searchParams.toString()),r.url.search){const e="_GOT_INTERNAL_TRIGGER_NORMALIZATION";r.url.searchParams.append(e,""),r.url.searchParams.delete(e)}if("http:"!==t&&"https:"!==t)throw new Z(r);""===r.username?r.username=r.url.username:r.url.username=r.username,""===r.password?r.password=r.url.password:r.url.password=r.password}const{cookieJar:l}=r;if(l){let{setCookie:e,getCookieString:t}=l;d.assert.function_(e),d.assert.function_(t),4===e.length&&0===t.length&&(e=n.promisify(e.bind(r.cookieJar)),t=n.promisify(t.bind(r.cookieJar)),r.cookieJar={setCookie:e,getCookieString:t})}const{cache:f}=r;if(f&&(Y.has(f)||Y.set(f,new h((e,t)=>e[v](e,t),f))),!0===r.dnsCache)r.dnsCache=new u.default;else if(!(d.default.undefined(r.dnsCache)||r.dnsCache instanceof u.default))throw new TypeError("Parameter `dnsCache` must be a CacheableLookup instance or a boolean, got "+d.default(r.dnsCache));d.default.number(r.timeout)?r.timeout={request:r.timeout}:i&&r.timeout!==i.timeout?r.timeout={...i.timeout,...r.timeout}:r.timeout={...r.timeout},r.context||(r.context={});const C=r.hooks===(null==i?void 0:i.hooks);r.hooks={...r.hooks};for(const e of t.knownHookEvents)if(e in r.hooks){if(!d.default.array(r.hooks[e]))throw new TypeError(`Parameter \`${e}\` must be an Array, got ${d.default(r.hooks[e])}`);r.hooks[e]=[...r.hooks[e]]}else r.hooks[e]=[];if(i&&!C)for(const e of t.knownHookEvents){0!==i.hooks[e].length&&(r.hooks[e]=[...i.hooks[e],...r.hooks[e]])}if("followRedirects"in r)throw new TypeError("The `followRedirects` option does not exist. Use `followRedirect` instead.");if(r.agent)for(const e in r.agent)if("http"!==e&&"https"!==e&&"http2"!==e)throw new TypeError(`Expected the \`options.agent\` properties to be \`http\`, \`https\` or \`http2\`, got \`${e}\``);return r.maxRedirects=null!==(c=r.maxRedirects)&&void 0!==c?c:0,((e,t)=>{const r={};for(const t of e)if(t)for(const e of _)e in t&&(r[e]={writable:!0,configurable:!0,enumerable:!1,value:t[e]});Object.defineProperties(t,r)})([i,g],r),r}_lockWrite(){const e=()=>{throw new TypeError("The payload has been already provided")};this.write=e,this.end=e}_unlockWrite(){this.write=super.write,this.end=super.end}async _finalizeBody(){const{options:e}=this,{headers:r}=e,n=!d.default.undefined(e.form),A=!d.default.undefined(e.json),s=!d.default.undefined(e.body),a=n||A||s,c=t.withoutBody.has(e.method)&&!("GET"===e.method&&e.allowGetBody);if(this._cannotHaveBody=c,a){if(c)throw new TypeError(`The \`${e.method}\` method cannot be used with a body`);if([s,n,A].filter(e=>e).length>1)throw new TypeError("The `body`, `json` and `form` options are mutually exclusive");if(s&&!(e.body instanceof i.Readable)&&!d.default.string(e.body)&&!d.default.buffer(e.body)&&!E.default(e.body))throw new TypeError("The `body` option must be a stream.Readable, string or Buffer");if(n&&!d.default.object(e.form))throw new TypeError("The `form` option must be an Object");{const t=!d.default.string(r["content-type"]);s?(E.default(e.body)&&t&&(r["content-type"]="multipart/form-data; boundary="+e.body.getBoundary()),this[U]=e.body):n?(t&&(r["content-type"]="application/x-www-form-urlencoded"),this[U]=new o.URLSearchParams(e.form).toString()):(t&&(r["content-type"]="application/json"),this[U]=JSON.stringify(e.json));const i=await I.default(this[U],e.headers);d.default.undefined(r["content-length"])&&d.default.undefined(r["transfer-encoding"])&&(c||d.default.undefined(i)||(r["content-length"]=String(i)))}}else c?this._lockWrite():this._unlockWrite();this[k]=Number(r["content-length"])||void 0}async _onResponse(e){const{options:t}=this,{url:r}=t;this[O]=e,t.decompress&&(e=l(e));const n=e.statusCode,i=e;i.statusMessage=i.statusMessage?i.statusMessage:s.STATUS_CODES[n],i.url=t.url.toString(),i.requestUrl=this.requestUrl,i.redirectUrls=this.redirects,i.request=this,i.isFromCache=e.fromCache||!1,i.ip=this.ip,this[R]=i.isFromCache,this[D]=Number(e.headers["content-length"])||void 0,this[b]=e,e.once("end",()=>{this[D]=this[S],this.emit("downloadProgress",this.downloadProgress)}),e.once("error",t=>{e.destroy(),this._beforeError(new X(t,this))}),e.once("aborted",()=>{this.aborted||this._beforeError(new X({name:"Error",message:"The server aborted the pending request"},this))}),this.emit("downloadProgress",this.downloadProgress);const A=e.headers["set-cookie"];if(d.default.object(t.cookieJar)&&A){let e=A.map(async e=>t.cookieJar.setCookie(e,r.toString()));t.ignoreInvalidCookies&&(e=e.map(async e=>e.catch(()=>{})));try{await Promise.all(e)}catch(e){return void this._beforeError(e)}}if(t.followRedirect&&e.headers.location&&G.has(n)){e.resume(),this[v]&&(this[K](),delete this[v],this[N]());if(!(303===n&&"GET"!==t.method&&"HEAD"!==t.method)&&t.methodRewriting||(t.method="GET","body"in t&&delete t.body,"json"in t&&delete t.json,"form"in t&&delete t.form),this.redirects.length>=t.maxRedirects)return void this._beforeError(new J(this));try{const n=Buffer.from(e.headers.location,"binary").toString(),A=new o.URL(n,r),s=A.toString();decodeURI(s),A.hostname!==r.hostname&&("host"in t.headers&&delete t.headers.host,"cookie"in t.headers&&delete t.headers.cookie,"authorization"in t.headers&&delete t.headers.authorization,(t.username||t.password)&&(delete t.username,delete t.password)),this.redirects.push(s),t.url=A;for(const e of t.hooks.beforeRedirect)await e(t,i);this.emit("redirect",i,t),await this._makeRequest()}catch(e){return void this._beforeError(e)}return}const a=t.followRedirect?299:399,c=n>=200&&n<=a||304===n;if(!t.throwHttpErrors||c||(await this._beforeError(new q(i)),!this.destroyed)){e.on("readable",()=>{this[P]&&this._read()}),this.on("resume",()=>{e.resume()}),this.on("pause",()=>{e.pause()}),e.once("end",()=>{this.push(null)}),this.emit("response",e);for(const r of this[F])if(!r.headersSent){for(const n in e.headers){const i=!t.decompress||"content-encoding"!==n,A=e.headers[n];i&&r.setHeader(n,A)}r.statusCode=n}}}_onRequest(e){const{options:t}=this,{timeout:r,url:n}=t;g.default(e),this[K]=B.default(e,r,n);const i=t.cache?"cacheableResponse":"response";e.once(i,e=>{this._onResponse(e)}),e.once("error",t=>{e.destroy(),t=t instanceof B.TimeoutError?new V(t,this.timings,this):new H(t.message,t,this),this._beforeError(t)}),this[N]=m.default(e,this,$),this[v]=e,this.emit("uploadProgress",this.uploadProgress);const A=this[U],o=0===this.redirects.length?this:e;d.default.nodeStream(A)?(A.pipe(o),A.once("error",e=>{this._beforeError(new W(e,this))}),A.once("end",()=>{delete t.body})):(this._unlockWrite(),d.default.undefined(A)?(this._cannotHaveBody||this._noPipe)&&(o.end(),this._lockWrite()):(this._writeRequest(A,null,()=>{}),o.end(),this._lockWrite())),this.emit("request",e)}async _createCacheableRequest(e,t){return new Promise((r,n)=>{Object.assign(t,w.default(e)),delete t.url;const i=Y.get(t.cache)(t,e=>{const t=e,{req:n}=t;n&&n.emit("cacheableResponse",t),r(t)});t.url=e,i.once("error",n),i.once("request",r)})}async _makeRequest(){var e;const{options:t}=this,{url:r,headers:n,request:i,agent:A,timeout:o}=t;for(const e in n)if(d.default.undefined(n[e]))delete n[e];else if(d.default.null_(n[e]))throw new TypeError(`Use \`undefined\` instead of \`null\` to delete the \`${e}\` header`);if(t.decompress&&d.default.undefined(n["accept-encoding"])&&(n["accept-encoding"]=j?"gzip, deflate, br":"gzip, deflate"),t.cookieJar){const e=await t.cookieJar.getCookieString(t.url.toString());d.default.nonEmptyString(e)&&(t.headers.cookie=e)}for(const e of t.hooks.beforeRequest){const r=await e(t);if(!d.default.undefined(r)){t.request=()=>r;break}}if(t.dnsCache&&!("lookup"in t)&&(t.lookup=t.dnsCache.lookup),"unix"===r.hostname){const e=/(?.+?):(?.+)/.exec(`${r.pathname}${r.search}`);if(null==e?void 0:e.groups){const{socketPath:r,path:n}=e.groups;Object.assign(t,{socketPath:r,path:n,host:""})}}const a="https:"===r.protocol;let g;g=t.http2?f.auto:a?c.request:s.request;const l=null!==(e=t.request)&&void 0!==e?e:g,u=t.cache?this._createCacheableRequest:l;A&&!t.http2&&(t.agent=A[a?"https":"http"]),t[v]=l,delete t.request,delete t.timeout;try{let e=await u(r,t);d.default.undefined(e)&&(e=g(r,t)),t.request=i,t.timeout=o,t.agent=A,p=e,d.default.object(p)&&!("statusCode"in p)?this._onRequest(e):this.writable?(this.once("finish",()=>{this._onResponse(e)}),this._unlockWrite(),this.end(),this._lockWrite()):this._onResponse(e)}catch(e){if(e instanceof h.CacheError)throw new z(e,this);throw new H(e.message,e,this)}var p}async _beforeError(e){this[L]=!0,e instanceof H||(e=new H(e.message,e,this));try{const{response:t}=e;t&&(t.setEncoding(this._readableState.encoding),t.rawBody=await C.buffer(t),t.body=t.rawBody.toString())}catch(e){}try{for(const t of this.options.hooks.beforeError)e=await t(e)}catch(t){e=new H(t.message,t,this)}this.destroyed||this.destroy(e)}_read(){this[P]=!0;const e=this[b];if(e&&!this[L]){let t;for(e.readableLength&&(this[P]=!1);null!==(t=e.read());){this[S]+=t.length,this[x]=!0;const e=this.downloadProgress;e.percent<1&&this.emit("downloadProgress",e),this.push(t)}}}_write(e,t,r){const n=()=>{this._writeRequest(e,t,r)};this.requestInitialized?n():this[T].push(n)}_writeRequest(e,t,r){this._progressCallbacks.push(()=>{this[M]+=Buffer.byteLength(e,t);const r=this.uploadProgress;r.percent<1&&this.emit("uploadProgress",r)}),this[v].write(e,t,e=>{e||0===this._progressCallbacks.length||this._progressCallbacks.shift()(),r(e)})}_final(e){const t=()=>{for(;0!==this._progressCallbacks.length;)this._progressCallbacks.shift()();v in this?this[v].end(t=>{t||(this[k]=this[M],this.emit("uploadProgress",this.uploadProgress),this[v].emit("upload-complete")),e(t)}):e()};this.requestInitialized?t():this[T].push(t)}_destroy(e,t){var r;v in this&&(this[K](),(null===(r=this[b])||void 0===r?void 0:r.complete)||this[v].destroy()),null===e||d.default.undefined(e)||e instanceof H||(e=new H(e.message,e,this)),t(e)}get ip(){var e;return null===(e=this[v])||void 0===e?void 0:e.socket.remoteAddress}get aborted(){var e,t,r;return(null!==(t=null===(e=this[v])||void 0===e?void 0:e.destroyed)&&void 0!==t?t:this.destroyed)&&!(null===(r=this[O])||void 0===r?void 0:r.complete)}get socket(){var e;return null===(e=this[v])||void 0===e?void 0:e.socket}get downloadProgress(){let e;return e=this[D]?this[S]/this[D]:this[D]===this[S]?1:0,{percent:e,transferred:this[S],total:this[D]}}get uploadProgress(){let e;return e=this[k]?this[M]/this[k]:this[k]===this[M]?1:0,{percent:e,transferred:this[M],total:this[k]}}get timings(){var e;return null===(e=this[v])||void 0===e?void 0:e.timings}get isFromCache(){return this[R]}pipe(e,t){if(this[x])throw new Error("Failed to pipe. The response has been emitted already.");return e instanceof a.ServerResponse&&this[F].add(e),super.pipe(e,t)}unpipe(e){return e instanceof a.ServerResponse&&this[F].delete(e),super.unpipe(e),this}}t.default=ee},96596:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(35747),i=r(31669),A=r(8189),o=r(35637),s=i.promisify(n.stat);t.default=async(e,t)=>{if(t&&"content-length"in t)return Number(t["content-length"]);if(!e)return 0;if(A.default.string(e))return Buffer.byteLength(e);if(A.default.buffer(e))return e.length;if(o.default(e))return i.promisify(e.getLength.bind(e))();if(e instanceof n.ReadStream){const{size:t}=await s(e.path);return t}}},35637:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(8189);t.default=e=>n.default.nodeStream(e)&&n.default.function_(e.getBoundary)},80972:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(78835),i=["protocol","host","hostname","port","pathname","search"];t.default=(e,t)=>{var r,A;if(t.path){if(t.pathname)throw new TypeError("Parameters `path` and `pathname` are mutually exclusive.");if(t.search)throw new TypeError("Parameters `path` and `search` are mutually exclusive.");if(t.searchParams)throw new TypeError("Parameters `path` and `searchParams` are mutually exclusive.")}if(t.search&&t.searchParams)throw new TypeError("Parameters `search` and `searchParams` are mutually exclusive.");if(!e){if(!t.protocol)throw new TypeError("No URL protocol specified");e=`${t.protocol}//${null!==(A=null!==(r=t.hostname)&&void 0!==r?r:t.host)&&void 0!==A?A:""}`}const o=new n.URL(e);if(t.path){const e=t.path.indexOf("?");-1===e?t.pathname=t.path:(t.pathname=t.path.slice(0,e),t.search=t.path.slice(e+1)),delete t.path}for(const e of i)t[e]&&(o[e]=t[e].toString());return o}},63227:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t,r){const n={};for(const i of r)n[i]=(...e)=>{t.emit(i,...e)},e.on(i,n[i]);return()=>{for(const t of r)e.off(t,n[t])}}},32449:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(11631),i=r(46248),A=Symbol("reentry"),o=()=>{};class s extends Error{constructor(e,t){super(`Timeout awaiting '${t}' for ${e}ms`),this.event=t,this.name="TimeoutError",this.code="ETIMEDOUT"}}t.TimeoutError=s,t.default=(e,t,r)=>{if(A in e)return o;e[A]=!0;const a=[],{once:c,unhandleAll:g}=i.default(),l=(e,t,r)=>{var n;const i=setTimeout(t,e,e,r);null===(n=i.unref)||void 0===n||n.call(i);const A=()=>{clearTimeout(i)};return a.push(A),A},{host:u,hostname:h}=r,f=(t,r)=>{e.destroy(new s(t,r))},p=()=>{for(const e of a)e();g()};if(e.once("error",t=>{if(p(),0===e.listenerCount("error"))throw t}),e.once("close",p),c(e,"response",e=>{c(e,"end",p)}),void 0!==t.request&&l(t.request,f,"request"),void 0!==t.socket){const r=()=>{f(t.socket,"socket")};e.setTimeout(t.socket,r),a.push(()=>{e.removeListener("timeout",r)})}return c(e,"socket",i=>{var A;const{socketPath:o}=e;if(i.connecting){const e=Boolean(null!=o?o:0!==n.isIP(null!==(A=null!=h?h:u)&&void 0!==A?A:""));if(void 0!==t.lookup&&!e&&void 0===i.address().address){const e=l(t.lookup,f,"lookup");c(i,"lookup",e)}if(void 0!==t.connect){const r=()=>l(t.connect,f,"connect");e?c(i,"connect",r()):c(i,"lookup",e=>{null===e&&c(i,"connect",r())})}void 0!==t.secureConnect&&"https:"===r.protocol&&c(i,"connect",()=>{const e=l(t.secureConnect,f,"secureConnect");c(i,"secureConnect",e)})}if(void 0!==t.send){const r=()=>l(t.send,f,"send");i.connecting?c(i,"connect",()=>{c(e,"upload-complete",r())}):c(e,"upload-complete",r())}}),void 0!==t.response&&c(e,"upload-complete",()=>{const r=l(t.response,f,"response");c(e,"response",r)}),p}},46248:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=()=>{const e=[];return{once(t,r,n){t.once(r,n),e.push({origin:t,event:r,fn:n})},unhandleAll(){for(const t of e){const{origin:e,event:r,fn:n}=t;e.removeListener(r,n)}e.length=0}}}},13656:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(8189);t.default=e=>{const t={protocol:(e=e).protocol,hostname:n.default.string(e.hostname)&&e.hostname.startsWith("[")?e.hostname.slice(1,-1):e.hostname,host:e.host,hash:e.hash,search:e.search,pathname:e.pathname,href:e.href,path:`${e.pathname||""}${e.search||""}`};return n.default.string(e.port)&&0!==e.port.length&&(t.port=Number(e.port)),(e.username||e.password)&&(t.auth=`${e.username||""}:${e.password||""}`),t}},30291:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=class{constructor(){this.weakMap=new WeakMap,this.map=new Map}set(e,t){"object"==typeof e?this.weakMap.set(e,t):this.map.set(e,t)}get(e){return"object"==typeof e?this.weakMap.get(e):this.map.get(e)}has(e){return"object"==typeof e?this.weakMap.has(e):this.map.has(e)}}},88190:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(59351),i=r(8189),A=r(74850),o=r(57019),s=r(8859),a=r(5571),c={RequestError:A.RequestError,CacheError:A.CacheError,ReadError:A.ReadError,HTTPError:A.HTTPError,MaxRedirectsError:A.MaxRedirectsError,TimeoutError:A.TimeoutError,ParseError:A.ParseError,CancelError:n.CancelError,UnsupportedProtocolError:A.UnsupportedProtocolError,UploadError:A.UploadError},{normalizeArguments:g,mergeOptions:l}=A.PromisableRequest,u=e=>e.isStream?new s.default(e.url,e):A.default(e),h=e=>"defaults"in e&&"options"in e.defaults,f=["get","post","put","patch","head","delete"];t.defaultHandler=(e,t)=>t(e);const p=(e,t)=>{if(e)for(const r of e)r(t)},C=e=>{e._rawHandlers=e.handlers,e.handlers=e.handlers.map(e=>(t,r)=>{let n;const i=e(t,e=>(n=r(e),n));if(i!==n&&!t.isStream&&n){const e=i,{then:t,catch:r,finally:A}=e;Object.setPrototypeOf(e,Object.getPrototypeOf(n)),Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)),e.then=t,e.catch=r,e.finally=A}return i});const r=(t,r)=>{var n,a;let c=0;const l=t=>e.handlers[c++](t,c===e.handlers.length?u:l);i.default.plainObject(t)&&(r={...t,...r},t=void 0);try{let i;try{p(e.options.hooks.init,r),p(null===(n=null==r?void 0:r.hooks)||void 0===n?void 0:n.init,r)}catch(e){i=e}const o=g(t,r,e.options);if(o[s.kIsNormalizedAlready]=!0,i)throw new A.RequestError(i.message,i,o);return l(o)}catch(t){if(null==r?void 0:r.isStream)throw t;return o.default(t,e.options.hooks.beforeError,null===(a=null==r?void 0:r.hooks)||void 0===a?void 0:a.beforeError)}};r.extend=(...r)=>{const n=[e.options];let i,A=[...e._rawHandlers];for(const e of r)h(e)?(n.push(e.defaults.options),A.push(...e.defaults._rawHandlers),i=e.defaults.mutableDefaults):(n.push(e),"handlers"in e&&A.push(...e.handlers),i=e.mutableDefaults);return A=A.filter(e=>e!==t.defaultHandler),0===A.length&&A.push(t.defaultHandler),C({options:l(...n),handlers:A,mutableDefaults:Boolean(i)})},(r.paginate=async function*(t,n){let A=g(t,n,e.options);A.resolveBodyOnly=!1;const o=A.pagination;if(!i.default.object(o))throw new TypeError("`options.pagination` must be implemented");const s=[];let{countLimit:a}=o,c=0;for(;c{const n=[];for await(const i of r.paginate(e,t))n.push(i);return n},r.stream=(e,t)=>r(e,{...t,isStream:!0});for(const e of f)r[e]=(t,n)=>r(t,{...n,method:e}),r.stream[e]=(t,n)=>r(t,{...n,method:e,isStream:!0});return Object.assign(r,{...c,mergeOptions:l}),Object.defineProperty(r,"defaults",{value:e.mutableDefaults?e:a.default(e),writable:e.mutableDefaults,configurable:e.mutableDefaults,enumerable:!0}),r};t.default=C},22395:(e,t,r)=>{"use strict";function n(e){for(var r in e)t.hasOwnProperty(r)||(t[r]=e[r])}Object.defineProperty(t,"__esModule",{value:!0});const i=r(78835),A=r(88190),o={options:{method:"GET",retry:{limit:2,methods:["GET","PUT","HEAD","DELETE","OPTIONS","TRACE"],statusCodes:[408,413,429,500,502,503,504,521,522,524],errorCodes:["ETIMEDOUT","ECONNRESET","EADDRINUSE","ECONNREFUSED","EPIPE","ENOTFOUND","ENETUNREACH","EAI_AGAIN"],maxRetryAfter:void 0,calculateDelay:({computedValue:e})=>e},timeout:{},headers:{"user-agent":"got (https://github.com/sindresorhus/got)"},hooks:{init:[],beforeRequest:[],beforeRedirect:[],beforeRetry:[],beforeError:[],afterResponse:[]},cache:void 0,dnsCache:void 0,decompress:!0,throwHttpErrors:!0,followRedirect:!0,isStream:!1,responseType:"text",resolveBodyOnly:!1,maxRedirects:10,prefixUrl:"",methodRewriting:!0,ignoreInvalidCookies:!1,context:{},http2:!1,allowGetBody:!1,rejectUnauthorized:!0,pagination:{transform:e=>"json"===e.request.options.responseType?e.body:JSON.parse(e.body),paginate:e=>{if(!Reflect.has(e.headers,"link"))return!1;const t=e.headers.link.split(",");let r;for(const e of t){const t=e.split(";");if(t[1].includes("next")){r=t[0].trimStart().trim(),r=r.slice(1,-1);break}}if(r){return{url:new i.URL(r)}}return!1},filter:()=>!0,shouldContinue:()=>!0,countLimit:1/0,requestLimit:1e4,stackAllItems:!0}},handlers:[A.defaultHandler],mutableDefaults:!1},s=A.default(o);t.default=s,e.exports=s,e.exports.default=s,n(r(88190)),n(r(74850))},5571:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(8189);t.default=function e(t){for(const r of Object.values(t))(n.default.plainObject(r)||n.default.array(r))&&e(r);return Object.freeze(t)}},74988:e=>{e.exports&&(e.exports=function(){var e=3,t=4,r=12,n=13,i=16,A=17;function o(e,t){void 0===t&&(t=0);var r=e.charCodeAt(t);if(55296<=r&&r<=56319&&t=1){var i=r;return 55296<=(n=e.charCodeAt(t-1))&&n<=56319?1024*(n-55296)+(i-56320)+65536:i}return r}function s(o,s,a){var c=[o].concat(s).concat([a]),g=c[c.length-2],l=a,u=c.lastIndexOf(14);if(u>1&&c.slice(1,u).every((function(t){return t==e}))&&-1==[e,n,A].indexOf(o))return 2;var h=c.lastIndexOf(t);if(h>0&&c.slice(1,h).every((function(e){return e==t}))&&-1==[r,t].indexOf(g))return c.filter((function(e){return e==t})).length%2==1?3:4;if(0==g&&1==l)return 0;if(2==g||0==g||1==g)return 14==l&&s.every((function(t){return t==e}))?2:1;if(2==l||0==l||1==l)return 1;if(6==g&&(6==l||7==l||9==l||10==l))return 0;if(!(9!=g&&7!=g||7!=l&&8!=l))return 0;if((10==g||8==g)&&8==l)return 0;if(l==e||15==l)return 0;if(5==l)return 0;if(g==r)return 0;var f=-1!=c.indexOf(e)?c.lastIndexOf(e)-1:c.length-2;return-1!=[n,A].indexOf(c[f])&&c.slice(f+1,-1).every((function(t){return t==e}))&&14==l||15==g&&-1!=[i,A].indexOf(l)?0:-1!=s.indexOf(t)?2:g==t&&l==t?0:1}function a(o){return 1536<=o&&o<=1541||1757==o||1807==o||2274==o||3406==o||69821==o||70082<=o&&o<=70083||72250==o||72326<=o&&o<=72329||73030==o?r:13==o?0:10==o?1:0<=o&&o<=9||11<=o&&o<=12||14<=o&&o<=31||127<=o&&o<=159||173==o||1564==o||6158==o||8203==o||8206<=o&&o<=8207||8232==o||8233==o||8234<=o&&o<=8238||8288<=o&&o<=8292||8293==o||8294<=o&&o<=8303||55296<=o&&o<=57343||65279==o||65520<=o&&o<=65528||65529<=o&&o<=65531||113824<=o&&o<=113827||119155<=o&&o<=119162||917504==o||917505==o||917506<=o&&o<=917535||917632<=o&&o<=917759||918e3<=o&&o<=921599?2:768<=o&&o<=879||1155<=o&&o<=1159||1160<=o&&o<=1161||1425<=o&&o<=1469||1471==o||1473<=o&&o<=1474||1476<=o&&o<=1477||1479==o||1552<=o&&o<=1562||1611<=o&&o<=1631||1648==o||1750<=o&&o<=1756||1759<=o&&o<=1764||1767<=o&&o<=1768||1770<=o&&o<=1773||1809==o||1840<=o&&o<=1866||1958<=o&&o<=1968||2027<=o&&o<=2035||2070<=o&&o<=2073||2075<=o&&o<=2083||2085<=o&&o<=2087||2089<=o&&o<=2093||2137<=o&&o<=2139||2260<=o&&o<=2273||2275<=o&&o<=2306||2362==o||2364==o||2369<=o&&o<=2376||2381==o||2385<=o&&o<=2391||2402<=o&&o<=2403||2433==o||2492==o||2494==o||2497<=o&&o<=2500||2509==o||2519==o||2530<=o&&o<=2531||2561<=o&&o<=2562||2620==o||2625<=o&&o<=2626||2631<=o&&o<=2632||2635<=o&&o<=2637||2641==o||2672<=o&&o<=2673||2677==o||2689<=o&&o<=2690||2748==o||2753<=o&&o<=2757||2759<=o&&o<=2760||2765==o||2786<=o&&o<=2787||2810<=o&&o<=2815||2817==o||2876==o||2878==o||2879==o||2881<=o&&o<=2884||2893==o||2902==o||2903==o||2914<=o&&o<=2915||2946==o||3006==o||3008==o||3021==o||3031==o||3072==o||3134<=o&&o<=3136||3142<=o&&o<=3144||3146<=o&&o<=3149||3157<=o&&o<=3158||3170<=o&&o<=3171||3201==o||3260==o||3263==o||3266==o||3270==o||3276<=o&&o<=3277||3285<=o&&o<=3286||3298<=o&&o<=3299||3328<=o&&o<=3329||3387<=o&&o<=3388||3390==o||3393<=o&&o<=3396||3405==o||3415==o||3426<=o&&o<=3427||3530==o||3535==o||3538<=o&&o<=3540||3542==o||3551==o||3633==o||3636<=o&&o<=3642||3655<=o&&o<=3662||3761==o||3764<=o&&o<=3769||3771<=o&&o<=3772||3784<=o&&o<=3789||3864<=o&&o<=3865||3893==o||3895==o||3897==o||3953<=o&&o<=3966||3968<=o&&o<=3972||3974<=o&&o<=3975||3981<=o&&o<=3991||3993<=o&&o<=4028||4038==o||4141<=o&&o<=4144||4146<=o&&o<=4151||4153<=o&&o<=4154||4157<=o&&o<=4158||4184<=o&&o<=4185||4190<=o&&o<=4192||4209<=o&&o<=4212||4226==o||4229<=o&&o<=4230||4237==o||4253==o||4957<=o&&o<=4959||5906<=o&&o<=5908||5938<=o&&o<=5940||5970<=o&&o<=5971||6002<=o&&o<=6003||6068<=o&&o<=6069||6071<=o&&o<=6077||6086==o||6089<=o&&o<=6099||6109==o||6155<=o&&o<=6157||6277<=o&&o<=6278||6313==o||6432<=o&&o<=6434||6439<=o&&o<=6440||6450==o||6457<=o&&o<=6459||6679<=o&&o<=6680||6683==o||6742==o||6744<=o&&o<=6750||6752==o||6754==o||6757<=o&&o<=6764||6771<=o&&o<=6780||6783==o||6832<=o&&o<=6845||6846==o||6912<=o&&o<=6915||6964==o||6966<=o&&o<=6970||6972==o||6978==o||7019<=o&&o<=7027||7040<=o&&o<=7041||7074<=o&&o<=7077||7080<=o&&o<=7081||7083<=o&&o<=7085||7142==o||7144<=o&&o<=7145||7149==o||7151<=o&&o<=7153||7212<=o&&o<=7219||7222<=o&&o<=7223||7376<=o&&o<=7378||7380<=o&&o<=7392||7394<=o&&o<=7400||7405==o||7412==o||7416<=o&&o<=7417||7616<=o&&o<=7673||7675<=o&&o<=7679||8204==o||8400<=o&&o<=8412||8413<=o&&o<=8416||8417==o||8418<=o&&o<=8420||8421<=o&&o<=8432||11503<=o&&o<=11505||11647==o||11744<=o&&o<=11775||12330<=o&&o<=12333||12334<=o&&o<=12335||12441<=o&&o<=12442||42607==o||42608<=o&&o<=42610||42612<=o&&o<=42621||42654<=o&&o<=42655||42736<=o&&o<=42737||43010==o||43014==o||43019==o||43045<=o&&o<=43046||43204<=o&&o<=43205||43232<=o&&o<=43249||43302<=o&&o<=43309||43335<=o&&o<=43345||43392<=o&&o<=43394||43443==o||43446<=o&&o<=43449||43452==o||43493==o||43561<=o&&o<=43566||43569<=o&&o<=43570||43573<=o&&o<=43574||43587==o||43596==o||43644==o||43696==o||43698<=o&&o<=43700||43703<=o&&o<=43704||43710<=o&&o<=43711||43713==o||43756<=o&&o<=43757||43766==o||44005==o||44008==o||44013==o||64286==o||65024<=o&&o<=65039||65056<=o&&o<=65071||65438<=o&&o<=65439||66045==o||66272==o||66422<=o&&o<=66426||68097<=o&&o<=68099||68101<=o&&o<=68102||68108<=o&&o<=68111||68152<=o&&o<=68154||68159==o||68325<=o&&o<=68326||69633==o||69688<=o&&o<=69702||69759<=o&&o<=69761||69811<=o&&o<=69814||69817<=o&&o<=69818||69888<=o&&o<=69890||69927<=o&&o<=69931||69933<=o&&o<=69940||70003==o||70016<=o&&o<=70017||70070<=o&&o<=70078||70090<=o&&o<=70092||70191<=o&&o<=70193||70196==o||70198<=o&&o<=70199||70206==o||70367==o||70371<=o&&o<=70378||70400<=o&&o<=70401||70460==o||70462==o||70464==o||70487==o||70502<=o&&o<=70508||70512<=o&&o<=70516||70712<=o&&o<=70719||70722<=o&&o<=70724||70726==o||70832==o||70835<=o&&o<=70840||70842==o||70845==o||70847<=o&&o<=70848||70850<=o&&o<=70851||71087==o||71090<=o&&o<=71093||71100<=o&&o<=71101||71103<=o&&o<=71104||71132<=o&&o<=71133||71219<=o&&o<=71226||71229==o||71231<=o&&o<=71232||71339==o||71341==o||71344<=o&&o<=71349||71351==o||71453<=o&&o<=71455||71458<=o&&o<=71461||71463<=o&&o<=71467||72193<=o&&o<=72198||72201<=o&&o<=72202||72243<=o&&o<=72248||72251<=o&&o<=72254||72263==o||72273<=o&&o<=72278||72281<=o&&o<=72283||72330<=o&&o<=72342||72344<=o&&o<=72345||72752<=o&&o<=72758||72760<=o&&o<=72765||72767==o||72850<=o&&o<=72871||72874<=o&&o<=72880||72882<=o&&o<=72883||72885<=o&&o<=72886||73009<=o&&o<=73014||73018==o||73020<=o&&o<=73021||73023<=o&&o<=73029||73031==o||92912<=o&&o<=92916||92976<=o&&o<=92982||94095<=o&&o<=94098||113821<=o&&o<=113822||119141==o||119143<=o&&o<=119145||119150<=o&&o<=119154||119163<=o&&o<=119170||119173<=o&&o<=119179||119210<=o&&o<=119213||119362<=o&&o<=119364||121344<=o&&o<=121398||121403<=o&&o<=121452||121461==o||121476==o||121499<=o&&o<=121503||121505<=o&&o<=121519||122880<=o&&o<=122886||122888<=o&&o<=122904||122907<=o&&o<=122913||122915<=o&&o<=122916||122918<=o&&o<=122922||125136<=o&&o<=125142||125252<=o&&o<=125258||917536<=o&&o<=917631||917760<=o&&o<=917999?e:127462<=o&&o<=127487?t:2307==o||2363==o||2366<=o&&o<=2368||2377<=o&&o<=2380||2382<=o&&o<=2383||2434<=o&&o<=2435||2495<=o&&o<=2496||2503<=o&&o<=2504||2507<=o&&o<=2508||2563==o||2622<=o&&o<=2624||2691==o||2750<=o&&o<=2752||2761==o||2763<=o&&o<=2764||2818<=o&&o<=2819||2880==o||2887<=o&&o<=2888||2891<=o&&o<=2892||3007==o||3009<=o&&o<=3010||3014<=o&&o<=3016||3018<=o&&o<=3020||3073<=o&&o<=3075||3137<=o&&o<=3140||3202<=o&&o<=3203||3262==o||3264<=o&&o<=3265||3267<=o&&o<=3268||3271<=o&&o<=3272||3274<=o&&o<=3275||3330<=o&&o<=3331||3391<=o&&o<=3392||3398<=o&&o<=3400||3402<=o&&o<=3404||3458<=o&&o<=3459||3536<=o&&o<=3537||3544<=o&&o<=3550||3570<=o&&o<=3571||3635==o||3763==o||3902<=o&&o<=3903||3967==o||4145==o||4155<=o&&o<=4156||4182<=o&&o<=4183||4228==o||6070==o||6078<=o&&o<=6085||6087<=o&&o<=6088||6435<=o&&o<=6438||6441<=o&&o<=6443||6448<=o&&o<=6449||6451<=o&&o<=6456||6681<=o&&o<=6682||6741==o||6743==o||6765<=o&&o<=6770||6916==o||6965==o||6971==o||6973<=o&&o<=6977||6979<=o&&o<=6980||7042==o||7073==o||7078<=o&&o<=7079||7082==o||7143==o||7146<=o&&o<=7148||7150==o||7154<=o&&o<=7155||7204<=o&&o<=7211||7220<=o&&o<=7221||7393==o||7410<=o&&o<=7411||7415==o||43043<=o&&o<=43044||43047==o||43136<=o&&o<=43137||43188<=o&&o<=43203||43346<=o&&o<=43347||43395==o||43444<=o&&o<=43445||43450<=o&&o<=43451||43453<=o&&o<=43456||43567<=o&&o<=43568||43571<=o&&o<=43572||43597==o||43755==o||43758<=o&&o<=43759||43765==o||44003<=o&&o<=44004||44006<=o&&o<=44007||44009<=o&&o<=44010||44012==o||69632==o||69634==o||69762==o||69808<=o&&o<=69810||69815<=o&&o<=69816||69932==o||70018==o||70067<=o&&o<=70069||70079<=o&&o<=70080||70188<=o&&o<=70190||70194<=o&&o<=70195||70197==o||70368<=o&&o<=70370||70402<=o&&o<=70403||70463==o||70465<=o&&o<=70468||70471<=o&&o<=70472||70475<=o&&o<=70477||70498<=o&&o<=70499||70709<=o&&o<=70711||70720<=o&&o<=70721||70725==o||70833<=o&&o<=70834||70841==o||70843<=o&&o<=70844||70846==o||70849==o||71088<=o&&o<=71089||71096<=o&&o<=71099||71102==o||71216<=o&&o<=71218||71227<=o&&o<=71228||71230==o||71340==o||71342<=o&&o<=71343||71350==o||71456<=o&&o<=71457||71462==o||72199<=o&&o<=72200||72249==o||72279<=o&&o<=72280||72343==o||72751==o||72766==o||72873==o||72881==o||72884==o||94033<=o&&o<=94078||119142==o||119149==o?5:4352<=o&&o<=4447||43360<=o&&o<=43388?6:4448<=o&&o<=4519||55216<=o&&o<=55238?7:4520<=o&&o<=4607||55243<=o&&o<=55291?8:44032==o||44060==o||44088==o||44116==o||44144==o||44172==o||44200==o||44228==o||44256==o||44284==o||44312==o||44340==o||44368==o||44396==o||44424==o||44452==o||44480==o||44508==o||44536==o||44564==o||44592==o||44620==o||44648==o||44676==o||44704==o||44732==o||44760==o||44788==o||44816==o||44844==o||44872==o||44900==o||44928==o||44956==o||44984==o||45012==o||45040==o||45068==o||45096==o||45124==o||45152==o||45180==o||45208==o||45236==o||45264==o||45292==o||45320==o||45348==o||45376==o||45404==o||45432==o||45460==o||45488==o||45516==o||45544==o||45572==o||45600==o||45628==o||45656==o||45684==o||45712==o||45740==o||45768==o||45796==o||45824==o||45852==o||45880==o||45908==o||45936==o||45964==o||45992==o||46020==o||46048==o||46076==o||46104==o||46132==o||46160==o||46188==o||46216==o||46244==o||46272==o||46300==o||46328==o||46356==o||46384==o||46412==o||46440==o||46468==o||46496==o||46524==o||46552==o||46580==o||46608==o||46636==o||46664==o||46692==o||46720==o||46748==o||46776==o||46804==o||46832==o||46860==o||46888==o||46916==o||46944==o||46972==o||47e3==o||47028==o||47056==o||47084==o||47112==o||47140==o||47168==o||47196==o||47224==o||47252==o||47280==o||47308==o||47336==o||47364==o||47392==o||47420==o||47448==o||47476==o||47504==o||47532==o||47560==o||47588==o||47616==o||47644==o||47672==o||47700==o||47728==o||47756==o||47784==o||47812==o||47840==o||47868==o||47896==o||47924==o||47952==o||47980==o||48008==o||48036==o||48064==o||48092==o||48120==o||48148==o||48176==o||48204==o||48232==o||48260==o||48288==o||48316==o||48344==o||48372==o||48400==o||48428==o||48456==o||48484==o||48512==o||48540==o||48568==o||48596==o||48624==o||48652==o||48680==o||48708==o||48736==o||48764==o||48792==o||48820==o||48848==o||48876==o||48904==o||48932==o||48960==o||48988==o||49016==o||49044==o||49072==o||49100==o||49128==o||49156==o||49184==o||49212==o||49240==o||49268==o||49296==o||49324==o||49352==o||49380==o||49408==o||49436==o||49464==o||49492==o||49520==o||49548==o||49576==o||49604==o||49632==o||49660==o||49688==o||49716==o||49744==o||49772==o||49800==o||49828==o||49856==o||49884==o||49912==o||49940==o||49968==o||49996==o||50024==o||50052==o||50080==o||50108==o||50136==o||50164==o||50192==o||50220==o||50248==o||50276==o||50304==o||50332==o||50360==o||50388==o||50416==o||50444==o||50472==o||50500==o||50528==o||50556==o||50584==o||50612==o||50640==o||50668==o||50696==o||50724==o||50752==o||50780==o||50808==o||50836==o||50864==o||50892==o||50920==o||50948==o||50976==o||51004==o||51032==o||51060==o||51088==o||51116==o||51144==o||51172==o||51200==o||51228==o||51256==o||51284==o||51312==o||51340==o||51368==o||51396==o||51424==o||51452==o||51480==o||51508==o||51536==o||51564==o||51592==o||51620==o||51648==o||51676==o||51704==o||51732==o||51760==o||51788==o||51816==o||51844==o||51872==o||51900==o||51928==o||51956==o||51984==o||52012==o||52040==o||52068==o||52096==o||52124==o||52152==o||52180==o||52208==o||52236==o||52264==o||52292==o||52320==o||52348==o||52376==o||52404==o||52432==o||52460==o||52488==o||52516==o||52544==o||52572==o||52600==o||52628==o||52656==o||52684==o||52712==o||52740==o||52768==o||52796==o||52824==o||52852==o||52880==o||52908==o||52936==o||52964==o||52992==o||53020==o||53048==o||53076==o||53104==o||53132==o||53160==o||53188==o||53216==o||53244==o||53272==o||53300==o||53328==o||53356==o||53384==o||53412==o||53440==o||53468==o||53496==o||53524==o||53552==o||53580==o||53608==o||53636==o||53664==o||53692==o||53720==o||53748==o||53776==o||53804==o||53832==o||53860==o||53888==o||53916==o||53944==o||53972==o||54e3==o||54028==o||54056==o||54084==o||54112==o||54140==o||54168==o||54196==o||54224==o||54252==o||54280==o||54308==o||54336==o||54364==o||54392==o||54420==o||54448==o||54476==o||54504==o||54532==o||54560==o||54588==o||54616==o||54644==o||54672==o||54700==o||54728==o||54756==o||54784==o||54812==o||54840==o||54868==o||54896==o||54924==o||54952==o||54980==o||55008==o||55036==o||55064==o||55092==o||55120==o||55148==o||55176==o?9:44033<=o&&o<=44059||44061<=o&&o<=44087||44089<=o&&o<=44115||44117<=o&&o<=44143||44145<=o&&o<=44171||44173<=o&&o<=44199||44201<=o&&o<=44227||44229<=o&&o<=44255||44257<=o&&o<=44283||44285<=o&&o<=44311||44313<=o&&o<=44339||44341<=o&&o<=44367||44369<=o&&o<=44395||44397<=o&&o<=44423||44425<=o&&o<=44451||44453<=o&&o<=44479||44481<=o&&o<=44507||44509<=o&&o<=44535||44537<=o&&o<=44563||44565<=o&&o<=44591||44593<=o&&o<=44619||44621<=o&&o<=44647||44649<=o&&o<=44675||44677<=o&&o<=44703||44705<=o&&o<=44731||44733<=o&&o<=44759||44761<=o&&o<=44787||44789<=o&&o<=44815||44817<=o&&o<=44843||44845<=o&&o<=44871||44873<=o&&o<=44899||44901<=o&&o<=44927||44929<=o&&o<=44955||44957<=o&&o<=44983||44985<=o&&o<=45011||45013<=o&&o<=45039||45041<=o&&o<=45067||45069<=o&&o<=45095||45097<=o&&o<=45123||45125<=o&&o<=45151||45153<=o&&o<=45179||45181<=o&&o<=45207||45209<=o&&o<=45235||45237<=o&&o<=45263||45265<=o&&o<=45291||45293<=o&&o<=45319||45321<=o&&o<=45347||45349<=o&&o<=45375||45377<=o&&o<=45403||45405<=o&&o<=45431||45433<=o&&o<=45459||45461<=o&&o<=45487||45489<=o&&o<=45515||45517<=o&&o<=45543||45545<=o&&o<=45571||45573<=o&&o<=45599||45601<=o&&o<=45627||45629<=o&&o<=45655||45657<=o&&o<=45683||45685<=o&&o<=45711||45713<=o&&o<=45739||45741<=o&&o<=45767||45769<=o&&o<=45795||45797<=o&&o<=45823||45825<=o&&o<=45851||45853<=o&&o<=45879||45881<=o&&o<=45907||45909<=o&&o<=45935||45937<=o&&o<=45963||45965<=o&&o<=45991||45993<=o&&o<=46019||46021<=o&&o<=46047||46049<=o&&o<=46075||46077<=o&&o<=46103||46105<=o&&o<=46131||46133<=o&&o<=46159||46161<=o&&o<=46187||46189<=o&&o<=46215||46217<=o&&o<=46243||46245<=o&&o<=46271||46273<=o&&o<=46299||46301<=o&&o<=46327||46329<=o&&o<=46355||46357<=o&&o<=46383||46385<=o&&o<=46411||46413<=o&&o<=46439||46441<=o&&o<=46467||46469<=o&&o<=46495||46497<=o&&o<=46523||46525<=o&&o<=46551||46553<=o&&o<=46579||46581<=o&&o<=46607||46609<=o&&o<=46635||46637<=o&&o<=46663||46665<=o&&o<=46691||46693<=o&&o<=46719||46721<=o&&o<=46747||46749<=o&&o<=46775||46777<=o&&o<=46803||46805<=o&&o<=46831||46833<=o&&o<=46859||46861<=o&&o<=46887||46889<=o&&o<=46915||46917<=o&&o<=46943||46945<=o&&o<=46971||46973<=o&&o<=46999||47001<=o&&o<=47027||47029<=o&&o<=47055||47057<=o&&o<=47083||47085<=o&&o<=47111||47113<=o&&o<=47139||47141<=o&&o<=47167||47169<=o&&o<=47195||47197<=o&&o<=47223||47225<=o&&o<=47251||47253<=o&&o<=47279||47281<=o&&o<=47307||47309<=o&&o<=47335||47337<=o&&o<=47363||47365<=o&&o<=47391||47393<=o&&o<=47419||47421<=o&&o<=47447||47449<=o&&o<=47475||47477<=o&&o<=47503||47505<=o&&o<=47531||47533<=o&&o<=47559||47561<=o&&o<=47587||47589<=o&&o<=47615||47617<=o&&o<=47643||47645<=o&&o<=47671||47673<=o&&o<=47699||47701<=o&&o<=47727||47729<=o&&o<=47755||47757<=o&&o<=47783||47785<=o&&o<=47811||47813<=o&&o<=47839||47841<=o&&o<=47867||47869<=o&&o<=47895||47897<=o&&o<=47923||47925<=o&&o<=47951||47953<=o&&o<=47979||47981<=o&&o<=48007||48009<=o&&o<=48035||48037<=o&&o<=48063||48065<=o&&o<=48091||48093<=o&&o<=48119||48121<=o&&o<=48147||48149<=o&&o<=48175||48177<=o&&o<=48203||48205<=o&&o<=48231||48233<=o&&o<=48259||48261<=o&&o<=48287||48289<=o&&o<=48315||48317<=o&&o<=48343||48345<=o&&o<=48371||48373<=o&&o<=48399||48401<=o&&o<=48427||48429<=o&&o<=48455||48457<=o&&o<=48483||48485<=o&&o<=48511||48513<=o&&o<=48539||48541<=o&&o<=48567||48569<=o&&o<=48595||48597<=o&&o<=48623||48625<=o&&o<=48651||48653<=o&&o<=48679||48681<=o&&o<=48707||48709<=o&&o<=48735||48737<=o&&o<=48763||48765<=o&&o<=48791||48793<=o&&o<=48819||48821<=o&&o<=48847||48849<=o&&o<=48875||48877<=o&&o<=48903||48905<=o&&o<=48931||48933<=o&&o<=48959||48961<=o&&o<=48987||48989<=o&&o<=49015||49017<=o&&o<=49043||49045<=o&&o<=49071||49073<=o&&o<=49099||49101<=o&&o<=49127||49129<=o&&o<=49155||49157<=o&&o<=49183||49185<=o&&o<=49211||49213<=o&&o<=49239||49241<=o&&o<=49267||49269<=o&&o<=49295||49297<=o&&o<=49323||49325<=o&&o<=49351||49353<=o&&o<=49379||49381<=o&&o<=49407||49409<=o&&o<=49435||49437<=o&&o<=49463||49465<=o&&o<=49491||49493<=o&&o<=49519||49521<=o&&o<=49547||49549<=o&&o<=49575||49577<=o&&o<=49603||49605<=o&&o<=49631||49633<=o&&o<=49659||49661<=o&&o<=49687||49689<=o&&o<=49715||49717<=o&&o<=49743||49745<=o&&o<=49771||49773<=o&&o<=49799||49801<=o&&o<=49827||49829<=o&&o<=49855||49857<=o&&o<=49883||49885<=o&&o<=49911||49913<=o&&o<=49939||49941<=o&&o<=49967||49969<=o&&o<=49995||49997<=o&&o<=50023||50025<=o&&o<=50051||50053<=o&&o<=50079||50081<=o&&o<=50107||50109<=o&&o<=50135||50137<=o&&o<=50163||50165<=o&&o<=50191||50193<=o&&o<=50219||50221<=o&&o<=50247||50249<=o&&o<=50275||50277<=o&&o<=50303||50305<=o&&o<=50331||50333<=o&&o<=50359||50361<=o&&o<=50387||50389<=o&&o<=50415||50417<=o&&o<=50443||50445<=o&&o<=50471||50473<=o&&o<=50499||50501<=o&&o<=50527||50529<=o&&o<=50555||50557<=o&&o<=50583||50585<=o&&o<=50611||50613<=o&&o<=50639||50641<=o&&o<=50667||50669<=o&&o<=50695||50697<=o&&o<=50723||50725<=o&&o<=50751||50753<=o&&o<=50779||50781<=o&&o<=50807||50809<=o&&o<=50835||50837<=o&&o<=50863||50865<=o&&o<=50891||50893<=o&&o<=50919||50921<=o&&o<=50947||50949<=o&&o<=50975||50977<=o&&o<=51003||51005<=o&&o<=51031||51033<=o&&o<=51059||51061<=o&&o<=51087||51089<=o&&o<=51115||51117<=o&&o<=51143||51145<=o&&o<=51171||51173<=o&&o<=51199||51201<=o&&o<=51227||51229<=o&&o<=51255||51257<=o&&o<=51283||51285<=o&&o<=51311||51313<=o&&o<=51339||51341<=o&&o<=51367||51369<=o&&o<=51395||51397<=o&&o<=51423||51425<=o&&o<=51451||51453<=o&&o<=51479||51481<=o&&o<=51507||51509<=o&&o<=51535||51537<=o&&o<=51563||51565<=o&&o<=51591||51593<=o&&o<=51619||51621<=o&&o<=51647||51649<=o&&o<=51675||51677<=o&&o<=51703||51705<=o&&o<=51731||51733<=o&&o<=51759||51761<=o&&o<=51787||51789<=o&&o<=51815||51817<=o&&o<=51843||51845<=o&&o<=51871||51873<=o&&o<=51899||51901<=o&&o<=51927||51929<=o&&o<=51955||51957<=o&&o<=51983||51985<=o&&o<=52011||52013<=o&&o<=52039||52041<=o&&o<=52067||52069<=o&&o<=52095||52097<=o&&o<=52123||52125<=o&&o<=52151||52153<=o&&o<=52179||52181<=o&&o<=52207||52209<=o&&o<=52235||52237<=o&&o<=52263||52265<=o&&o<=52291||52293<=o&&o<=52319||52321<=o&&o<=52347||52349<=o&&o<=52375||52377<=o&&o<=52403||52405<=o&&o<=52431||52433<=o&&o<=52459||52461<=o&&o<=52487||52489<=o&&o<=52515||52517<=o&&o<=52543||52545<=o&&o<=52571||52573<=o&&o<=52599||52601<=o&&o<=52627||52629<=o&&o<=52655||52657<=o&&o<=52683||52685<=o&&o<=52711||52713<=o&&o<=52739||52741<=o&&o<=52767||52769<=o&&o<=52795||52797<=o&&o<=52823||52825<=o&&o<=52851||52853<=o&&o<=52879||52881<=o&&o<=52907||52909<=o&&o<=52935||52937<=o&&o<=52963||52965<=o&&o<=52991||52993<=o&&o<=53019||53021<=o&&o<=53047||53049<=o&&o<=53075||53077<=o&&o<=53103||53105<=o&&o<=53131||53133<=o&&o<=53159||53161<=o&&o<=53187||53189<=o&&o<=53215||53217<=o&&o<=53243||53245<=o&&o<=53271||53273<=o&&o<=53299||53301<=o&&o<=53327||53329<=o&&o<=53355||53357<=o&&o<=53383||53385<=o&&o<=53411||53413<=o&&o<=53439||53441<=o&&o<=53467||53469<=o&&o<=53495||53497<=o&&o<=53523||53525<=o&&o<=53551||53553<=o&&o<=53579||53581<=o&&o<=53607||53609<=o&&o<=53635||53637<=o&&o<=53663||53665<=o&&o<=53691||53693<=o&&o<=53719||53721<=o&&o<=53747||53749<=o&&o<=53775||53777<=o&&o<=53803||53805<=o&&o<=53831||53833<=o&&o<=53859||53861<=o&&o<=53887||53889<=o&&o<=53915||53917<=o&&o<=53943||53945<=o&&o<=53971||53973<=o&&o<=53999||54001<=o&&o<=54027||54029<=o&&o<=54055||54057<=o&&o<=54083||54085<=o&&o<=54111||54113<=o&&o<=54139||54141<=o&&o<=54167||54169<=o&&o<=54195||54197<=o&&o<=54223||54225<=o&&o<=54251||54253<=o&&o<=54279||54281<=o&&o<=54307||54309<=o&&o<=54335||54337<=o&&o<=54363||54365<=o&&o<=54391||54393<=o&&o<=54419||54421<=o&&o<=54447||54449<=o&&o<=54475||54477<=o&&o<=54503||54505<=o&&o<=54531||54533<=o&&o<=54559||54561<=o&&o<=54587||54589<=o&&o<=54615||54617<=o&&o<=54643||54645<=o&&o<=54671||54673<=o&&o<=54699||54701<=o&&o<=54727||54729<=o&&o<=54755||54757<=o&&o<=54783||54785<=o&&o<=54811||54813<=o&&o<=54839||54841<=o&&o<=54867||54869<=o&&o<=54895||54897<=o&&o<=54923||54925<=o&&o<=54951||54953<=o&&o<=54979||54981<=o&&o<=55007||55009<=o&&o<=55035||55037<=o&&o<=55063||55065<=o&&o<=55091||55093<=o&&o<=55119||55121<=o&&o<=55147||55149<=o&&o<=55175||55177<=o&&o<=55203?10:9757==o||9977==o||9994<=o&&o<=9997||127877==o||127938<=o&&o<=127940||127943==o||127946<=o&&o<=127948||128066<=o&&o<=128067||128070<=o&&o<=128080||128110==o||128112<=o&&o<=128120||128124==o||128129<=o&&o<=128131||128133<=o&&o<=128135||128170==o||128372<=o&&o<=128373||128378==o||128400==o||128405<=o&&o<=128406||128581<=o&&o<=128583||128587<=o&&o<=128591||128675==o||128692<=o&&o<=128694||128704==o||128716==o||129304<=o&&o<=129308||129310<=o&&o<=129311||129318==o||129328<=o&&o<=129337||129341<=o&&o<=129342||129489<=o&&o<=129501?n:127995<=o&&o<=127999?14:8205==o?15:9792==o||9794==o||9877<=o&&o<=9878||9992==o||10084==o||127752==o||127806==o||127859==o||127891==o||127908==o||127912==o||127979==o||127981==o||128139==o||128187<=o&&o<=128188||128295==o||128300==o||128488==o||128640==o||128658==o?i:128102<=o&&o<=128105?A:11}return this.nextBreak=function(e,t){if(void 0===t&&(t=0),t<0)return 0;if(t>=e.length-1)return e.length;for(var r,n,i=a(o(e,t)),A=[],c=t+1;c{"use strict";e.exports=(e,t=process.argv)=>{const r=e.startsWith("-")?"":1===e.length?"-":"--",n=t.indexOf(r+e),i=t.indexOf("--");return-1!==n&&(-1===i||n{"use strict";const t=[200,203,204,206,300,301,404,405,410,414,501],r=[200,203,204,300,301,302,303,307,308,404,405,410,414,501],n={date:!0,connection:!0,"keep-alive":!0,"proxy-authenticate":!0,"proxy-authorization":!0,te:!0,trailer:!0,"transfer-encoding":!0,upgrade:!0},i={"content-length":!0,"content-encoding":!0,"transfer-encoding":!0,"content-range":!0};function A(e){const t={};if(!e)return t;const r=e.trim().split(/\s*,\s*/);for(const e of r){const[r,n]=e.split(/\s*=\s*/,2);t[r]=void 0===n||n.replace(/^"|"$/g,"")}return t}function o(e){let t=[];for(const r in e){const n=e[r];t.push(!0===n?r:r+"="+n)}if(t.length)return t.join(", ")}e.exports=class{constructor(e,t,{shared:r,cacheHeuristic:n,immutableMinTimeToLive:i,ignoreCargoCult:s,trustServerDate:a,_fromObject:c}={}){if(c)this._fromObject(c);else{if(!t||!t.headers)throw Error("Response headers missing");this._assertRequestHasHeaders(e),this._responseTime=this.now(),this._isShared=!1!==r,this._trustServerDate=void 0===a||a,this._cacheHeuristic=void 0!==n?n:.1,this._immutableMinTtl=void 0!==i?i:864e5,this._status="status"in t?t.status:200,this._resHeaders=t.headers,this._rescc=A(t.headers["cache-control"]),this._method="method"in e?e.method:"GET",this._url=e.url,this._host=e.headers.host,this._noAuthorization=!e.headers.authorization,this._reqHeaders=t.headers.vary?e.headers:null,this._reqcc=A(e.headers["cache-control"]),s&&"pre-check"in this._rescc&&"post-check"in this._rescc&&(delete this._rescc["pre-check"],delete this._rescc["post-check"],delete this._rescc["no-cache"],delete this._rescc["no-store"],delete this._rescc["must-revalidate"],this._resHeaders=Object.assign({},this._resHeaders,{"cache-control":o(this._rescc)}),delete this._resHeaders.expires,delete this._resHeaders.pragma),!t.headers["cache-control"]&&/no-cache/.test(t.headers.pragma)&&(this._rescc["no-cache"]=!0)}}now(){return Date.now()}storable(){return!(this._reqcc["no-store"]||!("GET"===this._method||"HEAD"===this._method||"POST"===this._method&&this._hasExplicitExpiration())||-1===r.indexOf(this._status)||this._rescc["no-store"]||this._isShared&&this._rescc.private||this._isShared&&!this._noAuthorization&&!this._allowsStoringAuthenticated()||!(this._resHeaders.expires||this._rescc.public||this._rescc["max-age"]||this._rescc["s-maxage"]||-1!==t.indexOf(this._status)))}_hasExplicitExpiration(){return this._isShared&&this._rescc["s-maxage"]||this._rescc["max-age"]||this._resHeaders.expires}_assertRequestHasHeaders(e){if(!e||!e.headers)throw Error("Request headers missing")}satisfiesWithoutRevalidation(e){this._assertRequestHasHeaders(e);const t=A(e.headers["cache-control"]);if(t["no-cache"]||/no-cache/.test(e.headers.pragma))return!1;if(t["max-age"]&&this.age()>t["max-age"])return!1;if(t["min-fresh"]&&this.timeToLive()<1e3*t["min-fresh"])return!1;if(this.stale()){if(!(t["max-stale"]&&!this._rescc["must-revalidate"]&&(!0===t["max-stale"]||t["max-stale"]>this.age()-this.maxAge())))return!1}return this._requestMatches(e,!1)}_requestMatches(e,t){return(!this._url||this._url===e.url)&&this._host===e.headers.host&&(!e.method||this._method===e.method||t&&"HEAD"===e.method)&&this._varyMatches(e)}_allowsStoringAuthenticated(){return this._rescc["must-revalidate"]||this._rescc.public||this._rescc["s-maxage"]}_varyMatches(e){if(!this._resHeaders.vary)return!0;if("*"===this._resHeaders.vary)return!1;const t=this._resHeaders.vary.trim().toLowerCase().split(/\s*,\s*/);for(const r of t)if(e.headers[r]!==this._reqHeaders[r])return!1;return!0}_copyWithoutHopByHopHeaders(e){const t={};for(const r in e)n[r]||(t[r]=e[r]);if(e.connection){const r=e.connection.trim().split(/\s*,\s*/);for(const e of r)delete t[e]}if(t.warning){const e=t.warning.split(/,/).filter(e=>!/^\s*1[0-9][0-9]/.test(e));e.length?t.warning=e.join(",").trim():delete t.warning}return t}responseHeaders(){const e=this._copyWithoutHopByHopHeaders(this._resHeaders),t=this.age();return t>86400&&!this._hasExplicitExpiration()&&this.maxAge()>86400&&(e.warning=(e.warning?e.warning+", ":"")+'113 - "rfc7234 5.5.4"'),e.age=""+Math.round(t),e.date=new Date(this.now()).toUTCString(),e}date(){return this._trustServerDate?this._serverDate():this._responseTime}_serverDate(){const e=Date.parse(this._resHeaders.date);if(isFinite(e)){const t=288e5;if(Math.abs(this._responseTime-e)e&&(e=t)}return e+(this.now()-this._responseTime)/1e3}_ageValue(){const e=parseInt(this._resHeaders.age);return isFinite(e)?e:0}maxAge(){if(!this.storable()||this._rescc["no-cache"])return 0;if(this._isShared&&this._resHeaders["set-cookie"]&&!this._rescc.public&&!this._rescc.immutable)return 0;if("*"===this._resHeaders.vary)return 0;if(this._isShared){if(this._rescc["proxy-revalidate"])return 0;if(this._rescc["s-maxage"])return parseInt(this._rescc["s-maxage"],10)}if(this._rescc["max-age"])return parseInt(this._rescc["max-age"],10);const e=this._rescc.immutable?this._immutableMinTtl:0,t=this._serverDate();if(this._resHeaders.expires){const r=Date.parse(this._resHeaders.expires);return Number.isNaN(r)||rr)return Math.max(e,(t-r)/1e3*this._cacheHeuristic)}return e}timeToLive(){return 1e3*Math.max(0,this.maxAge()-this.age())}stale(){return this.maxAge()<=this.age()}static fromObject(e){return new this(void 0,void 0,{_fromObject:e})}_fromObject(e){if(this._responseTime)throw Error("Reinitialized");if(!e||1!==e.v)throw Error("Invalid serialization");this._responseTime=e.t,this._isShared=e.sh,this._cacheHeuristic=e.ch,this._immutableMinTtl=void 0!==e.imm?e.imm:864e5,this._status=e.st,this._resHeaders=e.resh,this._rescc=e.rescc,this._method=e.m,this._url=e.u,this._host=e.h,this._noAuthorization=e.a,this._reqHeaders=e.reqh,this._reqcc=e.reqcc}toObject(){return{v:1,t:this._responseTime,sh:this._isShared,ch:this._cacheHeuristic,imm:this._immutableMinTtl,st:this._status,resh:this._resHeaders,rescc:this._rescc,m:this._method,u:this._url,h:this._host,a:this._noAuthorization,reqh:this._reqHeaders,reqcc:this._reqcc}}revalidationHeaders(e){this._assertRequestHasHeaders(e);const t=this._copyWithoutHopByHopHeaders(e.headers);if(delete t["if-range"],!this._requestMatches(e,!0)||!this.storable())return delete t["if-none-match"],delete t["if-modified-since"],t;this._resHeaders.etag&&(t["if-none-match"]=t["if-none-match"]?`${t["if-none-match"]}, ${this._resHeaders.etag}`:this._resHeaders.etag);if(t["accept-ranges"]||t["if-match"]||t["if-unmodified-since"]||this._method&&"GET"!=this._method){if(delete t["if-modified-since"],t["if-none-match"]){const e=t["if-none-match"].split(/,/).filter(e=>!/^\s*W\//.test(e));e.length?t["if-none-match"]=e.join(",").trim():delete t["if-none-match"]}}else this._resHeaders["last-modified"]&&!t["if-modified-since"]&&(t["if-modified-since"]=this._resHeaders["last-modified"]);return t}revalidatedPolicy(e,t){if(this._assertRequestHasHeaders(e),!t||!t.headers)throw Error("Response headers missing");let r=!1;if(void 0!==t.status&&304!=t.status?r=!1:t.headers.etag&&!/^\s*W\//.test(t.headers.etag)?r=this._resHeaders.etag&&this._resHeaders.etag.replace(/^\s*W\//,"")===t.headers.etag:this._resHeaders.etag&&t.headers.etag?r=this._resHeaders.etag.replace(/^\s*W\//,"")===t.headers.etag.replace(/^\s*W\//,""):this._resHeaders["last-modified"]?r=this._resHeaders["last-modified"]===t.headers["last-modified"]:this._resHeaders.etag||this._resHeaders["last-modified"]||t.headers.etag||t.headers["last-modified"]||(r=!0),!r)return{policy:new this.constructor(e,t),modified:304!=t.status,matches:!1};const n={};for(const e in this._resHeaders)n[e]=e in t.headers&&!i[e]?t.headers[e]:this._resHeaders[e];const A=Object.assign({},t,{status:this._status,method:this._method,headers:n});return{policy:new this.constructor(e,A,{shared:this._isShared,cacheHeuristic:this._cacheHeuristic,immutableMinTimeToLive:this._immutableMinTtl,trustServerDate:this._trustServerDate}),modified:!1,matches:!0}}}},92967:(e,t,r)=>{"use strict";const n=r(28614),i=r(4016),A=r(97565),o=r(82905),s=Symbol("currentStreamsCount"),a=Symbol("request"),c=Symbol("cachedOriginSet"),g=["maxDeflateDynamicTableSize","maxSessionMemory","maxHeaderListPairs","maxOutstandingPings","maxReservedRemoteStreams","maxSendHeaderBlockLength","paddingStrategy","localAddress","path","rejectUnauthorized","minDHSize","ca","cert","clientCertEngine","ciphers","key","pfx","servername","minVersion","maxVersion","secureProtocol","crl","honorCipherOrder","ecdhCurve","dhparam","secureOptions","sessionIdContext"],l=(e,t,r)=>{if(t in e){const n=e[t].indexOf(r);if(-1!==n)return e[t].splice(n,1),0===e[t].length&&delete e[t],!0}return!1},u=(e,t,r)=>{t in e?e[t].push(r):e[t]=[r]},h=(e,t,r)=>t in e?e[t].filter(e=>!e.closed&&!e.destroyed&&e[c].includes(r)):[],f=(e,t,r)=>{if(t in e)for(const n of e[t])n[c].lengthr[c].includes(e))&&n[s]+r[s]<=r.remoteSettings.maxConcurrentStreams&&n.close()};class p extends n{constructor({timeout:e=6e4,maxSessions:t=1/0,maxFreeSessions:r=1,maxCachedTlsSessions:n=100}={}){super(),this.busySessions={},this.freeSessions={},this.queue={},this.timeout=e,this.maxSessions=t,this.maxFreeSessions=r,this.settings={enablePush:!1},this.tlsSessionCache=new o({maxSize:n})}static normalizeOrigin(e,t){return"string"==typeof e&&(e=new URL(e)),t&&e.hostname!==t&&(e.hostname=t),e.origin}normalizeOptions(e){let t="";if(e)for(const r of g)e[r]&&(t+=":"+e[r]);return t}_tryToCreateNewSession(e,t){if(!(e in this.queue)||!(t in this.queue[e]))return;const r=h(this.busySessions,e,t).length,n=this.queue[e][t];r{Array.isArray(r)?(r=[...r],n()):r=[{resolve:n,reject:i}];const o=this.normalizeOptions(t),g=p.normalizeOrigin(e,t&&t.servername);if(void 0===g){for(const{reject:e}of r)e(new TypeError("The `origin` argument needs to be a string or an URL object"));return}if(o in this.freeSessions){const e=h(this.freeSessions,o,g);if(0!==e.length){const t=e.reduce((e,t)=>t.remoteSettings.maxConcurrentStreams>=e.remoteSettings.maxConcurrentStreams&&t[s]>e[s]?t:e);for(const{resolve:e}of r)e(t);return}}if(o in this.queue){if(g in this.queue[o])return void this.queue[o][g].listeners.push(...r)}else this.queue[o]={};const f=()=>{o in this.queue&&this.queue[o][g]===C&&(delete this.queue[o][g],0===Object.keys(this.queue[o]).length&&delete this.queue[o])},C=()=>{const n=`${g}:${o}`;let i,p=!1;try{const d=this.tlsSessionCache.get(n),I=A.connect(e,{createConnection:this.createConnection,settings:this.settings,session:d?d.session:void 0,...t});I[s]=0;const E=()=>I[c].reduce((e,t)=>Math.min(e,h(this.freeSessions,o,t).length),1/0)I[s]{setImmediate(()=>{this.tlsSessionCache.set(n,{session:e,servername:i})})}),I.socket.once("secureConnect",()=>{i=I.socket.servername,!1===i&&void 0!==d&&void 0!==d.servername&&(I.socket.servername=d.servername)}),I.once("error",e=>{if(!p)for(const{reject:t}of r)t(e);this.tlsSessionCache.delete(n)}),I.setTimeout(this.timeout,()=>{I.destroy()}),I.once("close",()=>{if(!p){const e=new Error("Session closed without receiving a SETTINGS frame");for(const{reject:t}of r)t(e)}f(),l(this.freeSessions,o,I),this._tryToCreateNewSession(o,g)});const B=()=>{if(o in this.queue)for(const e of I[c])if(e in this.queue[o]){const{listeners:t}=this.queue[o][e];for(;0!==t.length&&m();)t.shift().resolve(I);if(0===this.queue[o][e].listeners.length&&(delete this.queue[o][e],0===Object.keys(this.queue[o]).length)){delete this.queue[o];break}if(!m())break}};I.once("origin",()=>{I[c]=I.originSet,m()&&(this._closeCoveredSessions(o,I),B(),I.on("remoteSettings",()=>{this._closeCoveredSessions(o,I)}))}),I.once("remoteSettings",()=>{if(C.destroyed){const e=new Error("Agent has been destroyed");for(const t of r)t.reject(e);I.destroy()}else I[c]=I.originSet,this.emit("session",I),E()?B():0===this.maxFreeSessions?(B(),setImmediate(()=>{I.close()})):I.close(),f(),0!==r.length&&(this.getSession(g,t,r),r.length=0),p=!0,I.on("remoteSettings",()=>{m()&&l(this.busySessions,o,I)&&(E()?B():u(this.busySessions,o,I))})}),I[a]=I.request,I.request=e=>{const t=I[a](e,{endStream:!1});return I.ref(),++I[s],!m()&&l(this.freeSessions,o,I)&&u(this.busySessions,o,I),t.once("close",()=>{--I[s],m()&&(0===I[s]&&I.unref(),!l(this.busySessions,o,I)||I.destroyed||I.closed||(E()?(this._closeCoveredSessions(o,I),B()):I.close())),I.destroyed||I.closed||((e,t,r)=>{if(t in e)for(const n of e[t])r[c].lengthn[c].includes(e))&&r[s]+n[s]<=n.remoteSettings.maxConcurrentStreams&&r.close()})(this.freeSessions,o,I)}),t}}catch(e){for(const t of r)t.reject(e);f()}};C.listeners=r,C.completed=!1,C.destroyed=!1,this.queue[o][g]=C,this._tryToCreateNewSession(o,g)})}request(e,t,r){return new Promise((n,i)=>{this.getSession(e,t,[{reject:i,resolve:e=>{n(e.request(r))}}])})}createConnection(e,t){return p.connect(e,t)}static connect(e,t){t.ALPNProtocols=["h2"];const r=e.port||443,n=e.hostname||e.host;return void 0===t.servername&&(t.servername=n),i.connect(r,n,t)}closeFreeSessions(){for(const e of Object.values(this.freeSessions))for(const t of e)0===t[s]&&t.close()}destroy(e){for(const t of Object.values(this.busySessions))for(const r of t)r.destroy(e);for(const t of Object.values(this.freeSessions))for(const r of t)r.destroy(e);for(const e of Object.values(this.queue))for(const t of Object.values(e))t.destroyed=!0;this.queue={}}}e.exports={Agent:p,globalAgent:new p}},89018:(e,t,r)=>{"use strict";const n=r(98605),i=r(57211),A=r(19476),o=r(82905),s=r(46889),a=r(44294),c=r(95581),g=new o({maxSize:100}),l=new Map,u=(e,t,r)=>{t._httpMessage={shouldKeepAlive:!0};const n=()=>{e.emit("free",t,r)};t.on("free",n);const i=()=>{e.removeSocket(t,r)};t.on("close",i);const A=()=>{e.removeSocket(t,r),t.off("close",i),t.off("free",n),t.off("agentRemove",A)};t.on("agentRemove",A),e.emit("free",t,r)};e.exports=async(e,t,r)=>{("string"==typeof e||e instanceof URL)&&(e=c(new URL(e))),"function"==typeof t&&(r=t,t=void 0);const o="https:"===(t={ALPNProtocols:["h2","http/1.1"],protocol:"https:",...e,...t,resolveSocket:!0}).protocol,h=t.agent;if(t.host=t.hostname||t.host||"localhost",t.session=t.tlsSession,t.servername=t.servername||a(t),t.port=t.port||(o?443:80),t._defaultAgent=o?i.globalAgent:n.globalAgent,h){if(h.addRequest)throw new Error("The `options.agent` object can contain only `http`, `https` or `http2` properties");t.agent=h[o?"https":"http"]}if(o){if("h2"===await(async e=>{const t=`${e.host}:${e.port}:${e.ALPNProtocols.sort()}`;if(!g.has(t)){if(l.has(t)){return(await l.get(t)).alpnProtocol}const{path:r,agent:n}=e;e.path=e.socketPath;const o=A(e);l.set(t,o);try{const{socket:A,alpnProtocol:s}=await o;if(g.set(t,s),e.path=r,"h2"===s)A.destroy();else{const{globalAgent:t}=i,r=i.Agent.prototype.createConnection;n?n.createConnection===r?u(n,A,e):A.destroy():t.createConnection===r?u(t,A,e):A.destroy()}return l.delete(t),s}catch(e){throw l.delete(t),e}}return g.get(t)})(t))return h&&(t.agent=h.http2),new s(t,r)}return n.request(t,r)},e.exports.protocolCache=g},46889:(e,t,r)=>{"use strict";const n=r(97565),{Writable:i}=r(92413),{Agent:A,globalAgent:o}=r(92967),s=r(75744),a=r(95581),c=r(17395),g=r(13110),{ERR_INVALID_ARG_TYPE:l,ERR_INVALID_PROTOCOL:u,ERR_HTTP_HEADERS_SENT:h,ERR_INVALID_HTTP_TOKEN:f,ERR_HTTP_INVALID_HEADER_VALUE:p,ERR_INVALID_CHAR:C}=r(91078),{HTTP2_HEADER_STATUS:d,HTTP2_HEADER_METHOD:I,HTTP2_HEADER_PATH:E,HTTP2_METHOD_CONNECT:m}=n.constants,B=Symbol("headers"),w=Symbol("origin"),y=Symbol("session"),Q=Symbol("options"),v=Symbol("flushedHeaders"),b=Symbol("jobs"),D=/^[\^_`a-zA-Z\-0-9!#$%&'*+.|~]+$/,S=/[^\t\u0020-\u007E\u0080-\u00FF]/;e.exports=class extends i{constructor(e,t,r){super({autoDestroy:!1});const n="string"==typeof e||e instanceof URL;if(n&&(e=a(e instanceof URL?e:new URL(e))),"function"==typeof t||void 0===t?(r=t,t=n?e:{...e}):t={...e,...t},t.h2session)this[y]=t.h2session;else if(!1===t.agent)this.agent=new A({maxFreeSessions:0});else if(void 0===t.agent||null===t.agent)"function"==typeof t.createConnection?(this.agent=new A({maxFreeSessions:0}),this.agent.createConnection=t.createConnection):this.agent=o;else{if("function"!=typeof t.agent.request)throw new l("options.agent",["Agent-like Object","undefined","false"],t.agent);this.agent=t.agent}if(t.port||(t.port=t.defaultPort||this.agent&&this.agent.defaultPort||443),t.host=t.hostname||t.host||"localhost",t.protocol&&"https:"!==t.protocol)throw new u(t.protocol,"https:");const{timeout:i}=t;if(t.timeout=void 0,this[B]=Object.create(null),this[b]=[],this.socket=null,this.connection=null,this.method=t.method,this.path=t.path,this.res=null,this.aborted=!1,this.reusedSocket=!1,t.headers)for(const[e,r]of Object.entries(t.headers))this.setHeader(e,r);t.auth&&!("authorization"in this[B])&&(this[B].authorization="Basic "+Buffer.from(t.auth).toString("base64")),t.session=t.tlsSession,t.path=t.socketPath,this[Q]=t,443===t.port?(t.origin="https://"+t.host,":authority"in this[B]||(this[B][":authority"]=t.host)):(t.origin=`https://${t.host}:${t.port}`,":authority"in this[B]||(this[B][":authority"]=`${t.host}:${t.port}`)),this[w]=t,i&&this.setTimeout(i),r&&this.once("response",r),this[v]=!1}get method(){return this[B][I]}set method(e){e&&(this[B][I]=e.toUpperCase())}get path(){return this[B][E]}set path(e){e&&(this[B][E]=e)}_write(e,t,r){this.flushHeaders();const n=()=>this._request.write(e,t,r);this._request?n():this[b].push(n)}_final(e){if(this.destroyed)return;this.flushHeaders();const t=()=>this._request.end(e);this._request?t():this[b].push(t)}abort(){this.res&&this.res.complete||(this.aborted||process.nextTick(()=>this.emit("abort")),this.aborted=!0,this.destroy())}_destroy(e,t){this.res&&this.res._dump(),this._request&&this._request.destroy(),t(e)}async flushHeaders(){if(this[v]||this.destroyed)return;this[v]=!0;const e=this.method===m,t=t=>{if(this._request=t,this.destroyed)return void t.destroy();e||c(t,this,["timeout","continue","close","error"]),t.once("response",(r,n,i)=>{const A=new s(this.socket,t.readableHighWaterMark);this.res=A,A.req=this,A.statusCode=r[d],A.headers=r,A.rawHeaders=i,A.once("end",()=>{this.aborted?(A.aborted=!0,A.emit("aborted")):(A.complete=!0,A.socket=null,A.connection=null)}),e?(A.upgrade=!0,this.emit("connect",A,t,Buffer.alloc(0))?this.emit("close"):t.destroy()):(t.on("data",e=>{A._dumped||A.push(e)||t.pause()}),t.once("end",()=>{A.push(null)}),this.emit("response",A)||A._dump())}),t.once("headers",e=>this.emit("information",{statusCode:e[d]})),t.once("trailers",(e,t,r)=>{const{res:n}=this;n.trailers=e,n.rawTrailers=r});const{socket:r}=t.session;this.socket=r,this.connection=r;for(const e of this[b])e();this.emit("socket",this.socket)};if(this[y])try{t(this[y].request(this[B],{endStream:!1}))}catch(e){this.emit("error",e)}else{this.reusedSocket=!0;try{t(await this.agent.request(this[w],this[Q],this[B]))}catch(e){this.emit("error",e)}}}getHeader(e){if("string"!=typeof e)throw new l("name","string",e);return this[B][e.toLowerCase()]}get headersSent(){return this[v]}removeHeader(e){if("string"!=typeof e)throw new l("name","string",e);if(this.headersSent)throw new h("remove");delete this[B][e.toLowerCase()]}setHeader(e,t){if(this.headersSent)throw new h("set");if("string"!=typeof e||!D.test(e)&&!g(e))throw new f("Header name",e);if(void 0===t)throw new p(t,e);if(S.test(t))throw new C("header content",e);this[B][e.toLowerCase()]=t}setNoDelay(){}setSocketKeepAlive(){}setTimeout(e,t){const r=()=>this._request.setTimeout(e,t);return this._request?r():this[b].push(r),this}get maxHeadersCount(){if(!this.destroyed&&this._request)return this._request.session.localSettings.maxHeaderListSize}set maxHeadersCount(e){}}},75744:(e,t,r)=>{"use strict";const{Readable:n}=r(92413);e.exports=class extends n{constructor(e,t){super({highWaterMark:t,autoDestroy:!1}),this.statusCode=null,this.statusMessage="",this.httpVersion="2.0",this.httpVersionMajor=2,this.httpVersionMinor=0,this.headers={},this.trailers={},this.req=null,this.aborted=!1,this.complete=!1,this.upgrade=null,this.rawHeaders=[],this.rawTrailers=[],this.socket=e,this.connection=e,this._dumped=!1}_destroy(e){this.req._request.destroy(e)}setTimeout(e,t){return this.req.setTimeout(e,t),this}_dump(){this._dumped||(this._dumped=!0,this.removeAllListeners("data"),this.resume())}_read(){this.req&&this.req._request.resume()}}},9453:(e,t,r)=>{"use strict";const n=r(97565),i=r(92967),A=r(46889),o=r(75744),s=r(89018);e.exports={...n,ClientRequest:A,IncomingMessage:o,...i,request:(e,t,r)=>new A(e,t,r),get:(e,t,r)=>{const n=new A(e,t,r);return n.end(),n},auto:s}},44294:(e,t,r)=>{"use strict";const n=r(11631);e.exports=e=>{let t=e.host;const r=e.headers&&e.headers.host;if(r)if(r.startsWith("[")){t=-1===r.indexOf("]")?r:r.slice(1,-1)}else t=r.split(":",1)[0];return n.isIP(t)?"":t}},91078:e=>{"use strict";const t=(t,r,n)=>{e.exports[r]=class extends t{constructor(...e){super("string"==typeof n?n:n(e)),this.name=`${super.name} [${r}]`,this.code=r}}};t(TypeError,"ERR_INVALID_ARG_TYPE",e=>{const t=e[0].includes(".")?"property":"argument";let r=e[1];const n=Array.isArray(r);return n&&(r=`${r.slice(0,-1).join(", ")} or ${r.slice(-1)}`),`The "${e[0]}" ${t} must be ${n?"one of":"of"} type ${r}. Received ${typeof e[2]}`}),t(TypeError,"ERR_INVALID_PROTOCOL",e=>`Protocol "${e[0]}" not supported. Expected "${e[1]}"`),t(Error,"ERR_HTTP_HEADERS_SENT",e=>`Cannot ${e[0]} headers after they are sent to the client`),t(TypeError,"ERR_INVALID_HTTP_TOKEN",e=>`${e[0]} must be a valid HTTP token [${e[1]}]`),t(TypeError,"ERR_HTTP_INVALID_HEADER_VALUE",e=>`Invalid value "${e[0]} for header "${e[1]}"`),t(TypeError,"ERR_INVALID_CHAR",e=>`Invalid character in ${e[0]} [${e[1]}]`)},13110:e=>{"use strict";e.exports=e=>{switch(e){case":method":case":scheme":case":authority":case":path":return!0;default:return!1}}},17395:e=>{"use strict";e.exports=(e,t,r)=>{for(const n of r)e.on(n,(...e)=>t.emit(n,...e))}},95581:e=>{"use strict";e.exports=e=>{const t={protocol:e.protocol,hostname:"string"==typeof e.hostname&&e.hostname.startsWith("[")?e.hostname.slice(1,-1):e.hostname,host:e.host,hash:e.hash,search:e.search,pathname:e.pathname,href:e.href,path:`${e.pathname||""}${e.search||""}`};return"string"==typeof e.port&&0!==e.port.length&&(t.port=Number(e.port)),(e.username||e.password)&&(t.auth=`${e.username||""}:${e.password||""}`),t}},46458:e=>{function t(e){return Array.isArray(e)?e:[e]}const r=/^\s+$/,n=/^\\!/,i=/^\\#/,A=/\r?\n/g,o=/^\.*\/|^\.+$/,s="undefined"!=typeof Symbol?Symbol.for("node-ignore"):"node-ignore",a=/([0-z])-([0-z])/g,c=[[/\\?\s+$/,e=>0===e.indexOf("\\")?" ":""],[/\\\s/g,()=>" "],[/[\\^$.|*+(){]/g,e=>"\\"+e],[/\[([^\]/]*)($|\])/g,(e,t,r)=>{return"]"===r?`[${n=t,n.replace(a,(e,t,r)=>t.charCodeAt(0)<=r.charCodeAt(0)?e:"")}]`:"\\"+e;var n}],[/(?!\\)\?/g,()=>"[^/]"],[/^\//,()=>"^"],[/\//g,()=>"\\/"],[/^\^*\\\*\\\*\\\//,()=>"^(?:.*\\/)?"],[/(?:[^*])$/,e=>/\/$/.test(e)?e+"$":e+"(?=$|\\/$)"],[/^(?=[^^])/,function(){return/\/(?!$)/.test(this)?"^":"(?:^|\\/)"}],[/\\\/\\\*\\\*(?=\\\/|$)/g,(e,t,r)=>t+6t+"[^\\/]*"],[/(\^|\\\/)?\\\*$/,(e,t)=>(t?t+"[^/]+":"[^/]*")+"(?=$|\\/$)"],[/\\\\\\/g,()=>"\\"]],g=Object.create(null),l=e=>"string"==typeof e;class u{constructor(e,t,r,n){this.origin=e,this.pattern=t,this.negative=r,this.regex=n}}const h=(e,t)=>{const r=e;let A=!1;0===e.indexOf("!")&&(A=!0,e=e.substr(1));const o=((e,t,r)=>{const n=g[e];if(n)return n;const i=c.reduce((t,r)=>t.replace(r[0],r[1].bind(e)),e);return g[e]=r?new RegExp(i,"i"):new RegExp(i)})(e=e.replace(n,"!").replace(i,"#"),0,t);return new u(r,e,A,o)},f=(e,t)=>{throw new t(e)},p=(e,t,r)=>{if(!l(e))return r(`path must be a string, but got \`${t}\``,TypeError);if(!e)return r("path must not be empty",TypeError);if(p.isNotRelative(e)){return r(`path should be a ${"`path.relative()`d"} string, but got "${t}"`,RangeError)}return!0},C=e=>o.test(e);p.isNotRelative=C,p.convert=e=>e;class d{constructor({ignorecase:e=!0}={}){var t,r,n;this._rules=[],this._ignorecase=e,t=this,r=s,n=!0,Object.defineProperty(t,r,{value:n}),this._initCache()}_initCache(){this._ignoreCache=Object.create(null),this._testCache=Object.create(null)}_addPattern(e){if(e&&e[s])return this._rules=this._rules.concat(e._rules),void(this._added=!0);if((e=>e&&l(e)&&!r.test(e)&&0!==e.indexOf("#"))(e)){const t=h(e,this._ignorecase);this._added=!0,this._rules.push(t)}}add(e){return this._added=!1,t(l(e)?(e=>e.split(A))(e):e).forEach(this._addPattern,this),this._added&&this._initCache(),this}addPattern(e){return this.add(e)}_testOne(e,t){let r=!1,n=!1;return this._rules.forEach(i=>{const{negative:A}=i;if(n===A&&r!==n||A&&!r&&!n&&!t)return;i.regex.test(e)&&(r=!A,n=A)}),{ignored:r,unignored:n}}_test(e,t,r,n){const i=e&&p.convert(e);return p(i,e,f),this._t(i,t,r,n)}_t(e,t,r,n){if(e in t)return t[e];if(n||(n=e.split("/")),n.pop(),!n.length)return t[e]=this._testOne(e,r);const i=this._t(n.join("/")+"/",t,r,n);return t[e]=i.ignored?i:this._testOne(e,r)}ignores(e){return this._test(e,this._ignoreCache,!1).ignored}createFilter(){return e=>!this.ignores(e)}filter(e){return t(e).filter(this.createFilter())}test(e){return this._test(e,this._testCache,!0)}}const I=e=>new d(e),E=()=>!1;if(I.isPathValid=e=>p(e&&p.convert(e),e,E),I.default=I,e.exports=I,"undefined"!=typeof process&&(process.env&&process.env.IGNORE_TEST_WIN32||"win32"===process.platform)){const e=e=>/^\\\\\?\\/.test(e)||/["<>|\u0000-\u001F]+/u.test(e)?e:e.replace(/\\/g,"/");p.convert=e;const t=/^[a-z]:\//i;p.isNotRelative=e=>t.test(e)||C(e)}},85870:(e,t,r)=>{try{var n=r(31669);if("function"!=typeof n.inherits)throw"";e.exports=n.inherits}catch(t){e.exports=r(48145)}},48145:e=>{"function"==typeof Object.create?e.exports=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(e,t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}},44486:e=>{ -/*! - * is-extglob - * - * Copyright (c) 2014-2016, Jon Schlinkert. - * Licensed under the MIT License. - */ -e.exports=function(e){if("string"!=typeof e||""===e)return!1;for(var t;t=/(\\).|([@?!+*]\(.*\))/g.exec(e);){if(t[2])return!0;e=e.slice(t.index+t[0].length)}return!1}},18193:(e,t,r)=>{ -/*! - * is-glob - * - * Copyright (c) 2014-2017, Jon Schlinkert. - * Released under the MIT License. - */ -var n=r(44486),i={"{":"}","(":")","[":"]"},A=/\\(.)|(^!|\*|[\].+)]\?|\[[^\\\]]+\]|\{[^\\}]+\}|\(\?[:!=][^\\)]+\)|\([^|]+\|[^\\)]+\))/,o=/\\(.)|(^!|[*?{}()[\]]|\(\?)/;e.exports=function(e,t){if("string"!=typeof e||""===e)return!1;if(n(e))return!0;var r,s=A;for(t&&!1===t.strict&&(s=o);r=s.exec(e);){if(r[2])return!0;var a=r.index+r[0].length,c=r[1],g=c?i[c]:null;if(c&&g){var l=e.indexOf(g,a);-1!==l&&(a=l+1)}e=e.slice(a)}return!1}},59235:e=>{"use strict"; -/*! - * is-number - * - * Copyright (c) 2014-present, Jon Schlinkert. - * Released under the MIT License. - */e.exports=function(e){return"number"==typeof e?e-e==0:"string"==typeof e&&""!==e.trim()&&(Number.isFinite?Number.isFinite(+e):isFinite(+e))}},97369:(e,t)=>{var r,n,i,A; -/*! - * is-windows - * - * Copyright © 2015-2018, Jon Schlinkert. - * Released under the MIT License. - */A=function(){"use strict";return function(){return process&&("win32"===process.platform||/^(msys|cygwin)$/.test(process.env.OSTYPE))}},t&&"object"==typeof t?e.exports=A():(n=[],void 0===(i="function"==typeof(r=A)?r.apply(t,n):r)||(e.exports=i))},64151:(e,t,r)=>{var n;r(35747);function i(e,t,r){if("function"==typeof t&&(r=t,t={}),!r){if("function"!=typeof Promise)throw new TypeError("callback not provided");return new Promise((function(r,n){i(e,t||{},(function(e,t){e?n(e):r(t)}))}))}n(e,t||{},(function(e,n){e&&("EACCES"===e.code||t&&t.ignoreErrors)&&(e=null,n=!1),r(e,n)}))}n="win32"===process.platform||global.TESTING_WINDOWS?r(3202):r(2151),e.exports=i,i.sync=function(e,t){try{return n.sync(e,t||{})}catch(e){if(t&&t.ignoreErrors||"EACCES"===e.code)return!1;throw e}}},2151:(e,t,r)=>{e.exports=i,i.sync=function(e,t){return A(n.statSync(e),t)};var n=r(35747);function i(e,t,r){n.stat(e,(function(e,n){r(e,!e&&A(n,t))}))}function A(e,t){return e.isFile()&&function(e,t){var r=e.mode,n=e.uid,i=e.gid,A=void 0!==t.uid?t.uid:process.getuid&&process.getuid(),o=void 0!==t.gid?t.gid:process.getgid&&process.getgid(),s=parseInt("100",8),a=parseInt("010",8),c=parseInt("001",8),g=s|a;return r&c||r&a&&i===o||r&s&&n===A||r&g&&0===A}(e,t)}},3202:(e,t,r)=>{e.exports=A,A.sync=function(e,t){return i(n.statSync(e),e,t)};var n=r(35747);function i(e,t,r){return!(!e.isSymbolicLink()&&!e.isFile())&&function(e,t){var r=void 0!==t.pathExt?t.pathExt:process.env.PATHEXT;if(!r)return!0;if(-1!==(r=r.split(";")).indexOf(""))return!0;for(var n=0;n{"use strict";var n=r(40744);e.exports=n},40744:(e,t,r)=>{"use strict";var n=r(55384),i=r(24129);function A(e){return function(){throw new Error("Function "+e+" is deprecated and cannot be used.")}}e.exports.Type=r(81704),e.exports.Schema=r(8212),e.exports.FAILSAFE_SCHEMA=r(44413),e.exports.JSON_SCHEMA=r(45247),e.exports.CORE_SCHEMA=r(8769),e.exports.DEFAULT_SAFE_SCHEMA=r(65483),e.exports.DEFAULT_FULL_SCHEMA=r(5235),e.exports.load=n.load,e.exports.loadAll=n.loadAll,e.exports.safeLoad=n.safeLoad,e.exports.safeLoadAll=n.safeLoadAll,e.exports.dump=i.dump,e.exports.safeDump=i.safeDump,e.exports.YAMLException=r(17345),e.exports.MINIMAL_SCHEMA=r(44413),e.exports.SAFE_SCHEMA=r(65483),e.exports.DEFAULT_SCHEMA=r(5235),e.exports.scan=A("scan"),e.exports.parse=A("parse"),e.exports.compose=A("compose"),e.exports.addConstructor=A("addConstructor")},28149:e=>{"use strict";function t(e){return null==e}e.exports.isNothing=t,e.exports.isObject=function(e){return"object"==typeof e&&null!==e},e.exports.toArray=function(e){return Array.isArray(e)?e:t(e)?[]:[e]},e.exports.repeat=function(e,t){var r,n="";for(r=0;r{"use strict";var n=r(28149),i=r(17345),A=r(5235),o=r(65483),s=Object.prototype.toString,a=Object.prototype.hasOwnProperty,c={0:"\\0",7:"\\a",8:"\\b",9:"\\t",10:"\\n",11:"\\v",12:"\\f",13:"\\r",27:"\\e",34:'\\"',92:"\\\\",133:"\\N",160:"\\_",8232:"\\L",8233:"\\P"},g=["y","Y","yes","Yes","YES","on","On","ON","n","N","no","No","NO","off","Off","OFF"];function l(e){var t,r,A;if(t=e.toString(16).toUpperCase(),e<=255)r="x",A=2;else if(e<=65535)r="u",A=4;else{if(!(e<=4294967295))throw new i("code point within a string may not be greater than 0xFFFFFFFF");r="U",A=8}return"\\"+r+n.repeat("0",A-t.length)+t}function u(e){this.schema=e.schema||A,this.indent=Math.max(1,e.indent||2),this.noArrayIndent=e.noArrayIndent||!1,this.skipInvalid=e.skipInvalid||!1,this.flowLevel=n.isNothing(e.flowLevel)?-1:e.flowLevel,this.styleMap=function(e,t){var r,n,i,A,o,s,c;if(null===t)return{};for(r={},i=0,A=(n=Object.keys(t)).length;in&&" "!==e[l+1],l=A);else if(!C(o))return 5;u=u&&d(o)}c=c||g&&A-l-1>n&&" "!==e[l+1]}return a||c?r>9&&I(e)?5:c?4:3:u&&!i(e)?1:2}function m(e,t,r,n){e.dump=function(){if(0===t.length)return"''";if(!e.noCompatMode&&-1!==g.indexOf(t))return"'"+t+"'";var A=e.indent*Math.max(1,r),o=-1===e.lineWidth?-1:Math.max(Math.min(e.lineWidth,40),e.lineWidth-A),s=n||e.flowLevel>-1&&r>=e.flowLevel;switch(E(t,s,e.indent,o,(function(t){return function(e,t){var r,n;for(r=0,n=e.implicitTypes.length;r"+B(t,e.indent)+w(h(function(e,t){var r,n,i=/(\n+)([^\n]*)/g,A=(s=e.indexOf("\n"),s=-1!==s?s:e.length,i.lastIndex=s,y(e.slice(0,s),t)),o="\n"===e[0]||" "===e[0];var s;for(;n=i.exec(e);){var a=n[1],c=n[2];r=" "===c[0],A+=a+(o||r||""===c?"":"\n")+y(c,t),o=r}return A}(t,o),A));case 5:return'"'+function(e){for(var t,r,n,i="",A=0;A=55296&&t<=56319&&(r=e.charCodeAt(A+1))>=56320&&r<=57343?(i+=l(1024*(t-55296)+r-56320+65536),A++):(n=c[t],i+=!n&&C(t)?e[A]:n||l(t));return i}(t)+'"';default:throw new i("impossible error: invalid scalar style")}}()}function B(e,t){var r=I(e)?String(t):"",n="\n"===e[e.length-1];return r+(n&&("\n"===e[e.length-2]||"\n"===e)?"+":n?"":"-")+"\n"}function w(e){return"\n"===e[e.length-1]?e.slice(0,-1):e}function y(e,t){if(""===e||" "===e[0])return e;for(var r,n,i=/ [^ ]/g,A=0,o=0,s=0,a="";r=i.exec(e);)(s=r.index)-A>t&&(n=o>A?o:s,a+="\n"+e.slice(A,n),A=n+1),o=s;return a+="\n",e.length-A>t&&o>A?a+=e.slice(A,o)+"\n"+e.slice(o+1):a+=e.slice(A),a.slice(1)}function Q(e,t,r){var n,A,o,c,g,l;for(o=0,c=(A=r?e.explicitTypes:e.implicitTypes).length;o tag resolver accepts not "'+l+'" style');n=g.represent[l](t,l)}e.dump=n}return!0}return!1}function v(e,t,r,n,A,o){e.tag=null,e.dump=r,Q(e,r,!1)||Q(e,r,!0);var a=s.call(e.dump);n&&(n=e.flowLevel<0||e.flowLevel>t);var c,g,l="[object Object]"===a||"[object Array]"===a;if(l&&(g=-1!==(c=e.duplicates.indexOf(r))),(null!==e.tag&&"?"!==e.tag||g||2!==e.indent&&t>0)&&(A=!1),g&&e.usedDuplicates[c])e.dump="*ref_"+c;else{if(l&&g&&!e.usedDuplicates[c]&&(e.usedDuplicates[c]=!0),"[object Object]"===a)n&&0!==Object.keys(e.dump).length?(!function(e,t,r,n){var A,o,s,a,c,g,l="",u=e.tag,h=Object.keys(r);if(!0===e.sortKeys)h.sort();else if("function"==typeof e.sortKeys)h.sort(e.sortKeys);else if(e.sortKeys)throw new i("sortKeys must be a boolean or a function");for(A=0,o=h.length;A1024)&&(e.dump&&10===e.dump.charCodeAt(0)?g+="?":g+="? "),g+=e.dump,c&&(g+=f(e,t)),v(e,t+1,a,!0,c)&&(e.dump&&10===e.dump.charCodeAt(0)?g+=":":g+=": ",l+=g+=e.dump));e.tag=u,e.dump=l||"{}"}(e,t,e.dump,A),g&&(e.dump="&ref_"+c+e.dump)):(!function(e,t,r){var n,i,A,o,s,a="",c=e.tag,g=Object.keys(r);for(n=0,i=g.length;n1024&&(s+="? "),s+=e.dump+(e.condenseFlow?'"':"")+":"+(e.condenseFlow?"":" "),v(e,t,o,!1,!1)&&(a+=s+=e.dump));e.tag=c,e.dump="{"+a+"}"}(e,t,e.dump),g&&(e.dump="&ref_"+c+" "+e.dump));else if("[object Array]"===a){var u=e.noArrayIndent&&t>0?t-1:t;n&&0!==e.dump.length?(!function(e,t,r,n){var i,A,o="",s=e.tag;for(i=0,A=r.length;i "+e.dump)}return!0}function b(e,t){var r,n,i=[],A=[];for(function e(t,r,n){var i,A,o;if(null!==t&&"object"==typeof t)if(-1!==(A=r.indexOf(t)))-1===n.indexOf(A)&&n.push(A);else if(r.push(t),Array.isArray(t))for(A=0,o=t.length;A{"use strict";function t(e,t){Error.call(this),this.name="YAMLException",this.reason=e,this.mark=t,this.message=(this.reason||"(unknown reason)")+(this.mark?" "+this.mark.toString():""),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack||""}t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t.prototype.toString=function(e){var t=this.name+": ";return t+=this.reason||"(unknown reason)",!e&&this.mark&&(t+=" "+this.mark.toString()),t},e.exports=t},55384:(e,t,r)=>{"use strict";var n=r(28149),i=r(17345),A=r(30399),o=r(65483),s=r(5235),a=Object.prototype.hasOwnProperty,c=/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,g=/[\x85\u2028\u2029]/,l=/[,\[\]\{\}]/,u=/^(?:!|!!|![a-z\-]+!)$/i,h=/^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;function f(e){return 10===e||13===e}function p(e){return 9===e||32===e}function C(e){return 9===e||32===e||10===e||13===e}function d(e){return 44===e||91===e||93===e||123===e||125===e}function I(e){var t;return 48<=e&&e<=57?e-48:97<=(t=32|e)&&t<=102?t-97+10:-1}function E(e){return 48===e?"\0":97===e?"":98===e?"\b":116===e||9===e?"\t":110===e?"\n":118===e?"\v":102===e?"\f":114===e?"\r":101===e?"":32===e?" ":34===e?'"':47===e?"/":92===e?"\\":78===e?"…":95===e?" ":76===e?"\u2028":80===e?"\u2029":""}function m(e){return e<=65535?String.fromCharCode(e):String.fromCharCode(55296+(e-65536>>10),56320+(e-65536&1023))}for(var B=new Array(256),w=new Array(256),y=0;y<256;y++)B[y]=E(y)?1:0,w[y]=E(y);function Q(e,t){this.input=e,this.filename=t.filename||null,this.schema=t.schema||s,this.onWarning=t.onWarning||null,this.legacy=t.legacy||!1,this.json=t.json||!1,this.listener=t.listener||null,this.implicitTypes=this.schema.compiledImplicit,this.typeMap=this.schema.compiledTypeMap,this.length=e.length,this.position=0,this.line=0,this.lineStart=0,this.lineIndent=0,this.documents=[]}function v(e,t){return new i(t,new A(e.filename,e.input,e.position,e.line,e.position-e.lineStart))}function b(e,t){throw v(e,t)}function D(e,t){e.onWarning&&e.onWarning.call(null,v(e,t))}var S={YAML:function(e,t,r){var n,i,A;null!==e.version&&b(e,"duplication of %YAML directive"),1!==r.length&&b(e,"YAML directive accepts exactly one argument"),null===(n=/^([0-9]+)\.([0-9]+)$/.exec(r[0]))&&b(e,"ill-formed argument of the YAML directive"),i=parseInt(n[1],10),A=parseInt(n[2],10),1!==i&&b(e,"unacceptable YAML version of the document"),e.version=r[0],e.checkLineBreaks=A<2,1!==A&&2!==A&&D(e,"unsupported YAML version of the document")},TAG:function(e,t,r){var n,i;2!==r.length&&b(e,"TAG directive accepts exactly two arguments"),n=r[0],i=r[1],u.test(n)||b(e,"ill-formed tag handle (first argument) of the TAG directive"),a.call(e.tagMap,n)&&b(e,'there is a previously declared suffix for "'+n+'" tag handle'),h.test(i)||b(e,"ill-formed tag prefix (second argument) of the TAG directive"),e.tagMap[n]=i}};function k(e,t,r,n){var i,A,o,s;if(t1&&(e.result+=n.repeat("\n",t-1))}function L(e,t){var r,n,i=e.tag,A=e.anchor,o=[],s=!1;for(null!==e.anchor&&(e.anchorMap[e.anchor]=o),n=e.input.charCodeAt(e.position);0!==n&&45===n&&C(e.input.charCodeAt(e.position+1));)if(s=!0,e.position++,R(e,!0,-1)&&e.lineIndent<=t)o.push(null),n=e.input.charCodeAt(e.position);else if(r=e.line,T(e,t,3,!1,!0),o.push(e.result),R(e,!0,-1),n=e.input.charCodeAt(e.position),(e.line===r||e.lineIndent>t)&&0!==n)b(e,"bad indentation of a sequence entry");else if(e.lineIndentt?y=1:e.lineIndent===t?y=0:e.lineIndentt?y=1:e.lineIndent===t?y=0:e.lineIndentt)&&(T(e,t,4,!0,i)&&(d?h=e.result:f=e.result),d||(F(e,g,l,u,h,f,A,o),u=h=f=null),R(e,!0,-1),s=e.input.charCodeAt(e.position)),e.lineIndent>t&&0!==s)b(e,"bad indentation of a mapping entry");else if(e.lineIndent=0))break;0===A?b(e,"bad explicit indentation width of a block scalar; it cannot be less than one"):g?b(e,"repeat of an indentation width identifier"):(l=t+A-1,g=!0)}if(p(o)){do{o=e.input.charCodeAt(++e.position)}while(p(o));if(35===o)do{o=e.input.charCodeAt(++e.position)}while(!f(o)&&0!==o)}for(;0!==o;){for(N(e),e.lineIndent=0,o=e.input.charCodeAt(e.position);(!g||e.lineIndentl&&(l=e.lineIndent),f(o))u++;else{if(e.lineIndent0){for(i=o,A=0;i>0;i--)(o=I(s=e.input.charCodeAt(++e.position)))>=0?A=(A<<4)+o:b(e,"expected hexadecimal character");e.result+=m(A),e.position++}else b(e,"unknown escape sequence");r=n=e.position}else f(s)?(k(e,r,n,!0),x(e,R(e,!1,t)),r=n=e.position):e.position===e.lineStart&&K(e)?b(e,"unexpected end of the document within a double quoted scalar"):(e.position++,n=e.position)}b(e,"unexpected end of the stream within a double quoted scalar")}(e,h)?v=!0:!function(e){var t,r,n;if(42!==(n=e.input.charCodeAt(e.position)))return!1;for(n=e.input.charCodeAt(++e.position),t=e.position;0!==n&&!C(n)&&!d(n);)n=e.input.charCodeAt(++e.position);return e.position===t&&b(e,"name of an alias node must contain at least one character"),r=e.input.slice(t,e.position),e.anchorMap.hasOwnProperty(r)||b(e,'unidentified alias "'+r+'"'),e.result=e.anchorMap[r],R(e,!0,-1),!0}(e)?function(e,t,r){var n,i,A,o,s,a,c,g,l=e.kind,u=e.result;if(C(g=e.input.charCodeAt(e.position))||d(g)||35===g||38===g||42===g||33===g||124===g||62===g||39===g||34===g||37===g||64===g||96===g)return!1;if((63===g||45===g)&&(C(n=e.input.charCodeAt(e.position+1))||r&&d(n)))return!1;for(e.kind="scalar",e.result="",i=A=e.position,o=!1;0!==g;){if(58===g){if(C(n=e.input.charCodeAt(e.position+1))||r&&d(n))break}else if(35===g){if(C(e.input.charCodeAt(e.position-1)))break}else{if(e.position===e.lineStart&&K(e)||r&&d(g))break;if(f(g)){if(s=e.line,a=e.lineStart,c=e.lineIndent,R(e,!1,-1),e.lineIndent>=t){o=!0,g=e.input.charCodeAt(e.position);continue}e.position=A,e.line=s,e.lineStart=a,e.lineIndent=c;break}}o&&(k(e,i,A,!1),x(e,e.line-s),i=A=e.position,o=!1),p(g)||(A=e.position+1),g=e.input.charCodeAt(++e.position)}return k(e,i,A,!1),!!e.result||(e.kind=l,e.result=u,!1)}(e,h,1===r)&&(v=!0,null===e.tag&&(e.tag="?")):(v=!0,null===e.tag&&null===e.anchor||b(e,"alias node should not have any properties")),null!==e.anchor&&(e.anchorMap[e.anchor]=e.result)):0===y&&(v=c&&L(e,E))),null!==e.tag&&"!"!==e.tag)if("?"===e.tag){for(g=0,l=e.implicitTypes.length;g tag; it should be "'+u.kind+'", not "'+e.kind+'"'),u.resolve(e.result)?(e.result=u.construct(e.result),null!==e.anchor&&(e.anchorMap[e.anchor]=e.result)):b(e,"cannot resolve a node with !<"+e.tag+"> explicit tag")):b(e,"unknown tag !<"+e.tag+">");return null!==e.listener&&e.listener("close",e),null!==e.tag||null!==e.anchor||v}function O(e){var t,r,n,i,A=e.position,o=!1;for(e.version=null,e.checkLineBreaks=e.legacy,e.tagMap={},e.anchorMap={};0!==(i=e.input.charCodeAt(e.position))&&(R(e,!0,-1),i=e.input.charCodeAt(e.position),!(e.lineIndent>0||37!==i));){for(o=!0,i=e.input.charCodeAt(++e.position),t=e.position;0!==i&&!C(i);)i=e.input.charCodeAt(++e.position);for(n=[],(r=e.input.slice(t,e.position)).length<1&&b(e,"directive name must not be less than one character in length");0!==i;){for(;p(i);)i=e.input.charCodeAt(++e.position);if(35===i){do{i=e.input.charCodeAt(++e.position)}while(0!==i&&!f(i));break}if(f(i))break;for(t=e.position;0!==i&&!C(i);)i=e.input.charCodeAt(++e.position);n.push(e.input.slice(t,e.position))}0!==i&&N(e),a.call(S,r)?S[r](e,r,n):D(e,'unknown document directive "'+r+'"')}R(e,!0,-1),0===e.lineIndent&&45===e.input.charCodeAt(e.position)&&45===e.input.charCodeAt(e.position+1)&&45===e.input.charCodeAt(e.position+2)?(e.position+=3,R(e,!0,-1)):o&&b(e,"directives end mark is expected"),T(e,e.lineIndent-1,4,!1,!0),R(e,!0,-1),e.checkLineBreaks&&g.test(e.input.slice(A,e.position))&&D(e,"non-ASCII line breaks are interpreted as content"),e.documents.push(e.result),e.position===e.lineStart&&K(e)?46===e.input.charCodeAt(e.position)&&(e.position+=3,R(e,!0,-1)):e.position{"use strict";var n=r(28149);function i(e,t,r,n,i){this.name=e,this.buffer=t,this.position=r,this.line=n,this.column=i}i.prototype.getSnippet=function(e,t){var r,i,A,o,s;if(!this.buffer)return null;for(e=e||4,t=t||75,r="",i=this.position;i>0&&-1==="\0\r\n…\u2028\u2029".indexOf(this.buffer.charAt(i-1));)if(i-=1,this.position-i>t/2-1){r=" ... ",i+=5;break}for(A="",o=this.position;ot/2-1){A=" ... ",o-=5;break}return s=this.buffer.slice(i,o),n.repeat(" ",e)+r+s+A+"\n"+n.repeat(" ",e+this.position-i+r.length)+"^"},i.prototype.toString=function(e){var t,r="";return this.name&&(r+='in "'+this.name+'" '),r+="at line "+(this.line+1)+", column "+(this.column+1),e||(t=this.getSnippet())&&(r+=":\n"+t),r},e.exports=i},8212:(e,t,r)=>{"use strict";var n=r(28149),i=r(17345),A=r(81704);function o(e,t,r){var n=[];return e.include.forEach((function(e){r=o(e,t,r)})),e[t].forEach((function(e){r.forEach((function(t,r){t.tag===e.tag&&t.kind===e.kind&&n.push(r)})),r.push(e)})),r.filter((function(e,t){return-1===n.indexOf(t)}))}function s(e){this.include=e.include||[],this.implicit=e.implicit||[],this.explicit=e.explicit||[],this.implicit.forEach((function(e){if(e.loadKind&&"scalar"!==e.loadKind)throw new i("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.")})),this.compiledImplicit=o(this,"implicit",[]),this.compiledExplicit=o(this,"explicit",[]),this.compiledTypeMap=function(){var e,t,r={scalar:{},sequence:{},mapping:{},fallback:{}};function n(e){r[e.kind][e.tag]=r.fallback[e.tag]=e}for(e=0,t=arguments.length;e{"use strict";var n=r(8212);e.exports=new n({include:[r(45247)]})},5235:(e,t,r)=>{"use strict";var n=r(8212);e.exports=n.DEFAULT=new n({include:[r(65483)],explicit:[r(61425),r(61872),r(79982)]})},65483:(e,t,r)=>{"use strict";var n=r(8212);e.exports=new n({include:[r(8769)],implicit:[r(83516),r(95441)],explicit:[r(34836),r(6847),r(65173),r(92025)]})},44413:(e,t,r)=>{"use strict";var n=r(8212);e.exports=new n({explicit:[r(19952),r(46557),r(90173)]})},45247:(e,t,r)=>{"use strict";var n=r(8212);e.exports=new n({include:[r(44413)],implicit:[r(40188),r(58357),r(82106),r(71945)]})},81704:(e,t,r)=>{"use strict";var n=r(17345),i=["kind","resolve","construct","instanceOf","predicate","represent","defaultStyle","styleAliases"],A=["scalar","sequence","mapping"];e.exports=function(e,t){var r,o;if(t=t||{},Object.keys(t).forEach((function(t){if(-1===i.indexOf(t))throw new n('Unknown option "'+t+'" is met in definition of "'+e+'" YAML type.')})),this.tag=e,this.kind=t.kind||null,this.resolve=t.resolve||function(){return!0},this.construct=t.construct||function(e){return e},this.instanceOf=t.instanceOf||null,this.predicate=t.predicate||null,this.represent=t.represent||null,this.defaultStyle=t.defaultStyle||null,this.styleAliases=(r=t.styleAliases||null,o={},null!==r&&Object.keys(r).forEach((function(e){r[e].forEach((function(t){o[String(t)]=e}))})),o),-1===A.indexOf(this.kind))throw new n('Unknown kind "'+this.kind+'" is specified for "'+e+'" YAML type.')}},34836:(e,t,r)=>{"use strict";var n;try{n=r(64293).Buffer}catch(e){}var i=r(81704),A="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n\r";e.exports=new i("tag:yaml.org,2002:binary",{kind:"scalar",resolve:function(e){if(null===e)return!1;var t,r,n=0,i=e.length,o=A;for(r=0;r64)){if(t<0)return!1;n+=6}return n%8==0},construct:function(e){var t,r,i=e.replace(/[\r\n=]/g,""),o=i.length,s=A,a=0,c=[];for(t=0;t>16&255),c.push(a>>8&255),c.push(255&a)),a=a<<6|s.indexOf(i.charAt(t));return 0===(r=o%4*6)?(c.push(a>>16&255),c.push(a>>8&255),c.push(255&a)):18===r?(c.push(a>>10&255),c.push(a>>2&255)):12===r&&c.push(a>>4&255),n?n.from?n.from(c):new n(c):c},predicate:function(e){return n&&n.isBuffer(e)},represent:function(e){var t,r,n="",i=0,o=e.length,s=A;for(t=0;t>18&63],n+=s[i>>12&63],n+=s[i>>6&63],n+=s[63&i]),i=(i<<8)+e[t];return 0===(r=o%3)?(n+=s[i>>18&63],n+=s[i>>12&63],n+=s[i>>6&63],n+=s[63&i]):2===r?(n+=s[i>>10&63],n+=s[i>>4&63],n+=s[i<<2&63],n+=s[64]):1===r&&(n+=s[i>>2&63],n+=s[i<<4&63],n+=s[64],n+=s[64]),n}})},58357:(e,t,r)=>{"use strict";var n=r(81704);e.exports=new n("tag:yaml.org,2002:bool",{kind:"scalar",resolve:function(e){if(null===e)return!1;var t=e.length;return 4===t&&("true"===e||"True"===e||"TRUE"===e)||5===t&&("false"===e||"False"===e||"FALSE"===e)},construct:function(e){return"true"===e||"True"===e||"TRUE"===e},predicate:function(e){return"[object Boolean]"===Object.prototype.toString.call(e)},represent:{lowercase:function(e){return e?"true":"false"},uppercase:function(e){return e?"TRUE":"FALSE"},camelcase:function(e){return e?"True":"False"}},defaultStyle:"lowercase"})},71945:(e,t,r)=>{"use strict";var n=r(28149),i=r(81704),A=new RegExp("^(?:[-+]?(?:0|[1-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\\.[0-9_]*|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$");var o=/^[-+]?[0-9]+e/;e.exports=new i("tag:yaml.org,2002:float",{kind:"scalar",resolve:function(e){return null!==e&&!(!A.test(e)||"_"===e[e.length-1])},construct:function(e){var t,r,n,i;return r="-"===(t=e.replace(/_/g,"").toLowerCase())[0]?-1:1,i=[],"+-".indexOf(t[0])>=0&&(t=t.slice(1)),".inf"===t?1===r?Number.POSITIVE_INFINITY:Number.NEGATIVE_INFINITY:".nan"===t?NaN:t.indexOf(":")>=0?(t.split(":").forEach((function(e){i.unshift(parseFloat(e,10))})),t=0,n=1,i.forEach((function(e){t+=e*n,n*=60})),r*t):r*parseFloat(t,10)},predicate:function(e){return"[object Number]"===Object.prototype.toString.call(e)&&(e%1!=0||n.isNegativeZero(e))},represent:function(e,t){var r;if(isNaN(e))switch(t){case"lowercase":return".nan";case"uppercase":return".NAN";case"camelcase":return".NaN"}else if(Number.POSITIVE_INFINITY===e)switch(t){case"lowercase":return".inf";case"uppercase":return".INF";case"camelcase":return".Inf"}else if(Number.NEGATIVE_INFINITY===e)switch(t){case"lowercase":return"-.inf";case"uppercase":return"-.INF";case"camelcase":return"-.Inf"}else if(n.isNegativeZero(e))return"-0.0";return r=e.toString(10),o.test(r)?r.replace("e",".e"):r},defaultStyle:"lowercase"})},82106:(e,t,r)=>{"use strict";var n=r(28149),i=r(81704);function A(e){return 48<=e&&e<=55}function o(e){return 48<=e&&e<=57}e.exports=new i("tag:yaml.org,2002:int",{kind:"scalar",resolve:function(e){if(null===e)return!1;var t,r,n=e.length,i=0,s=!1;if(!n)return!1;if("-"!==(t=e[i])&&"+"!==t||(t=e[++i]),"0"===t){if(i+1===n)return!0;if("b"===(t=e[++i])){for(i++;i=0?"0b"+e.toString(2):"-0b"+e.toString(2).slice(1)},octal:function(e){return e>=0?"0"+e.toString(8):"-0"+e.toString(8).slice(1)},decimal:function(e){return e.toString(10)},hexadecimal:function(e){return e>=0?"0x"+e.toString(16).toUpperCase():"-0x"+e.toString(16).toUpperCase().slice(1)}},defaultStyle:"decimal",styleAliases:{binary:[2,"bin"],octal:[8,"oct"],decimal:[10,"dec"],hexadecimal:[16,"hex"]}})},79982:(e,t,r)=>{"use strict";var n;try{n=r(Object(function(){var e=new Error("Cannot find module 'esprima'");throw e.code="MODULE_NOT_FOUND",e}()))}catch(e){"undefined"!=typeof window&&(n=window.esprima)}var i=r(81704);e.exports=new i("tag:yaml.org,2002:js/function",{kind:"scalar",resolve:function(e){if(null===e)return!1;try{var t="("+e+")",r=n.parse(t,{range:!0});return"Program"===r.type&&1===r.body.length&&"ExpressionStatement"===r.body[0].type&&("ArrowFunctionExpression"===r.body[0].expression.type||"FunctionExpression"===r.body[0].expression.type)}catch(e){return!1}},construct:function(e){var t,r="("+e+")",i=n.parse(r,{range:!0}),A=[];if("Program"!==i.type||1!==i.body.length||"ExpressionStatement"!==i.body[0].type||"ArrowFunctionExpression"!==i.body[0].expression.type&&"FunctionExpression"!==i.body[0].expression.type)throw new Error("Failed to resolve function");return i.body[0].expression.params.forEach((function(e){A.push(e.name)})),t=i.body[0].expression.body.range,"BlockStatement"===i.body[0].expression.body.type?new Function(A,r.slice(t[0]+1,t[1]-1)):new Function(A,"return "+r.slice(t[0],t[1]))},predicate:function(e){return"[object Function]"===Object.prototype.toString.call(e)},represent:function(e){return e.toString()}})},61872:(e,t,r)=>{"use strict";var n=r(81704);e.exports=new n("tag:yaml.org,2002:js/regexp",{kind:"scalar",resolve:function(e){if(null===e)return!1;if(0===e.length)return!1;var t=e,r=/\/([gim]*)$/.exec(e),n="";if("/"===t[0]){if(r&&(n=r[1]),n.length>3)return!1;if("/"!==t[t.length-n.length-1])return!1}return!0},construct:function(e){var t=e,r=/\/([gim]*)$/.exec(e),n="";return"/"===t[0]&&(r&&(n=r[1]),t=t.slice(1,t.length-n.length-1)),new RegExp(t,n)},predicate:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},represent:function(e){var t="/"+e.source+"/";return e.global&&(t+="g"),e.multiline&&(t+="m"),e.ignoreCase&&(t+="i"),t}})},61425:(e,t,r)=>{"use strict";var n=r(81704);e.exports=new n("tag:yaml.org,2002:js/undefined",{kind:"scalar",resolve:function(){return!0},construct:function(){},predicate:function(e){return void 0===e},represent:function(){return""}})},90173:(e,t,r)=>{"use strict";var n=r(81704);e.exports=new n("tag:yaml.org,2002:map",{kind:"mapping",construct:function(e){return null!==e?e:{}}})},95441:(e,t,r)=>{"use strict";var n=r(81704);e.exports=new n("tag:yaml.org,2002:merge",{kind:"scalar",resolve:function(e){return"<<"===e||null===e}})},40188:(e,t,r)=>{"use strict";var n=r(81704);e.exports=new n("tag:yaml.org,2002:null",{kind:"scalar",resolve:function(e){if(null===e)return!0;var t=e.length;return 1===t&&"~"===e||4===t&&("null"===e||"Null"===e||"NULL"===e)},construct:function(){return null},predicate:function(e){return null===e},represent:{canonical:function(){return"~"},lowercase:function(){return"null"},uppercase:function(){return"NULL"},camelcase:function(){return"Null"}},defaultStyle:"lowercase"})},6847:(e,t,r)=>{"use strict";var n=r(81704),i=Object.prototype.hasOwnProperty,A=Object.prototype.toString;e.exports=new n("tag:yaml.org,2002:omap",{kind:"sequence",resolve:function(e){if(null===e)return!0;var t,r,n,o,s,a=[],c=e;for(t=0,r=c.length;t{"use strict";var n=r(81704),i=Object.prototype.toString;e.exports=new n("tag:yaml.org,2002:pairs",{kind:"sequence",resolve:function(e){if(null===e)return!0;var t,r,n,A,o,s=e;for(o=new Array(s.length),t=0,r=s.length;t{"use strict";var n=r(81704);e.exports=new n("tag:yaml.org,2002:seq",{kind:"sequence",construct:function(e){return null!==e?e:[]}})},92025:(e,t,r)=>{"use strict";var n=r(81704),i=Object.prototype.hasOwnProperty;e.exports=new n("tag:yaml.org,2002:set",{kind:"mapping",resolve:function(e){if(null===e)return!0;var t,r=e;for(t in r)if(i.call(r,t)&&null!==r[t])return!1;return!0},construct:function(e){return null!==e?e:{}}})},19952:(e,t,r)=>{"use strict";var n=r(81704);e.exports=new n("tag:yaml.org,2002:str",{kind:"scalar",construct:function(e){return null!==e?e:""}})},83516:(e,t,r)=>{"use strict";var n=r(81704),i=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"),A=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:[Tt]|[ \\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\\.([0-9]*))?(?:[ \\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?$");e.exports=new n("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:function(e){return null!==e&&(null!==i.exec(e)||null!==A.exec(e))},construct:function(e){var t,r,n,o,s,a,c,g,l=0,u=null;if(null===(t=i.exec(e))&&(t=A.exec(e)),null===t)throw new Error("Date resolve error");if(r=+t[1],n=+t[2]-1,o=+t[3],!t[4])return new Date(Date.UTC(r,n,o));if(s=+t[4],a=+t[5],c=+t[6],t[7]){for(l=t[7].slice(0,3);l.length<3;)l+="0";l=+l}return t[9]&&(u=6e4*(60*+t[10]+ +(t[11]||0)),"-"===t[9]&&(u=-u)),g=new Date(Date.UTC(r,n,o,s,a,c,l)),u&&g.setTime(g.getTime()-u),g},instanceOf:Date,represent:function(e){return e.toISOString()}})},7427:(e,t)=>{t.stringify=function e(t){if(void 0===t)return t;if(t&&Buffer.isBuffer(t))return JSON.stringify(":base64:"+t.toString("base64"));if(t&&t.toJSON&&(t=t.toJSON()),t&&"object"==typeof t){var r="",n=Array.isArray(t);r=n?"[":"{";var i=!0;for(var A in t){var o="function"==typeof t[A]||!n&&void 0===t[A];Object.hasOwnProperty.call(t,A)&&!o&&(i||(r+=","),i=!1,n?null==t[A]?r+="null":r+=e(t[A]):void 0!==t[A]&&(r+=e(A)+":"+e(t[A])))}return r+=n?"]":"}"}return"string"==typeof t?JSON.stringify(/^:/.test(t)?":"+t:t):void 0===t?"null":JSON.stringify(t)},t.parse=function(e){return JSON.parse(e,(function(e,t){return"string"==typeof t?/^:base64:/.test(t)?Buffer.from(t.substring(8),"base64"):/^:/.test(t)?t.substring(1):t:t}))}},72515:(e,t,r)=>{"use strict";const n=r(28614),i=r(7427);e.exports=class extends n{constructor(e,t){if(super(),this.opts=Object.assign({namespace:"keyv",serialize:i.stringify,deserialize:i.parse},"string"==typeof e?{uri:e}:e,t),!this.opts.store){const e=Object.assign({},this.opts);this.opts.store=(e=>{const t={redis:"@keyv/redis",mongodb:"@keyv/mongo",mongo:"@keyv/mongo",sqlite:"@keyv/sqlite",postgresql:"@keyv/postgres",postgres:"@keyv/postgres",mysql:"@keyv/mysql"};if(e.adapter||e.uri){const n=e.adapter||/^[^:]*/.exec(e.uri)[0];return new(r(89112)(t[n]))(e)}return new Map})(e)}"function"==typeof this.opts.store.on&&this.opts.store.on("error",e=>this.emit("error",e)),this.opts.store.namespace=this.opts.namespace}_getKeyPrefix(e){return`${this.opts.namespace}:${e}`}get(e,t){e=this._getKeyPrefix(e);const{store:r}=this.opts;return Promise.resolve().then(()=>r.get(e)).then(e=>"string"==typeof e?this.opts.deserialize(e):e).then(r=>{if(void 0!==r){if(!("number"==typeof r.expires&&Date.now()>r.expires))return t&&t.raw?r:r.value;this.delete(e)}})}set(e,t,r){e=this._getKeyPrefix(e),void 0===r&&(r=this.opts.ttl),0===r&&(r=void 0);const{store:n}=this.opts;return Promise.resolve().then(()=>{const e="number"==typeof r?Date.now()+r:null;return t={value:t,expires:e},this.opts.serialize(t)}).then(t=>n.set(e,t,r)).then(()=>!0)}delete(e){e=this._getKeyPrefix(e);const{store:t}=this.opts;return Promise.resolve().then(()=>t.delete(e))}clear(){const{store:e}=this.opts;return Promise.resolve().then(()=>e.clear())}}},89112:e=>{function t(e){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}t.keys=()=>[],t.resolve=t,t.id=89112,e.exports=t},78962:(e,t,r)=>{var n=r(99513)(r(76169),"DataView");e.exports=n},72574:(e,t,r)=>{var n=r(31713),i=r(86688),A=r(45937),o=r(5017),s=r(79457);function a(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t{var n=r(14620),i=r(73682),A=r(43112),o=r(90640),s=r(9380);function a(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t{var n=r(99513)(r(76169),"Map");e.exports=n},75009:(e,t,r)=>{var n=r(18209),i=r(89706),A=r(43786),o=r(17926),s=r(87345);function a(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t{var n=r(99513)(r(76169),"Promise");e.exports=n},43231:(e,t,r)=>{var n=r(99513)(r(76169),"Set");e.exports=n},46235:(e,t,r)=>{var n=r(75009),i=r(74785),A=r(87760);function o(e){var t=-1,r=null==e?0:e.length;for(this.__data__=new n;++t{var n=r(29197),i=r(35678),A=r(33336),o=r(97163),s=r(43737),a=r(48548);function c(e){var t=this.__data__=new n(e);this.size=t.size}c.prototype.clear=i,c.prototype.delete=A,c.prototype.get=o,c.prototype.has=s,c.prototype.set=a,e.exports=c},69976:(e,t,r)=>{var n=r(76169).Symbol;e.exports=n},2740:(e,t,r)=>{var n=r(76169).Uint8Array;e.exports=n},47063:(e,t,r)=>{var n=r(99513)(r(76169),"WeakMap");e.exports=n},66636:e=>{e.exports=function(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}},33326:e=>{e.exports=function(e,t){for(var r=-1,n=null==e?0:e.length;++r{e.exports=function(e,t){for(var r=-1,n=null==e?0:e.length,i=0,A=[];++r{var n=r(7089),i=r(61771),A=r(82664),o=r(10667),s=r(98041),a=r(32565),c=Object.prototype.hasOwnProperty;e.exports=function(e,t){var r=A(e),g=!r&&i(e),l=!r&&!g&&o(e),u=!r&&!g&&!l&&a(e),h=r||g||l||u,f=h?n(e.length,String):[],p=f.length;for(var C in e)!t&&!c.call(e,C)||h&&("length"==C||l&&("offset"==C||"parent"==C)||u&&("buffer"==C||"byteLength"==C||"byteOffset"==C)||s(C,p))||f.push(C);return f}},60783:e=>{e.exports=function(e,t){for(var r=-1,n=null==e?0:e.length,i=Array(n);++r{e.exports=function(e,t){for(var r=-1,n=t.length,i=e.length;++r{e.exports=function(e,t,r,n){var i=-1,A=null==e?0:e.length;for(n&&A&&(r=e[++i]);++i{e.exports=function(e,t){for(var r=-1,n=null==e?0:e.length;++r{e.exports=function(e){return e.split("")}},11852:e=>{var t=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;e.exports=function(e){return e.match(t)||[]}},26943:(e,t,r)=>{var n=r(91198),i=r(71074);e.exports=function(e,t,r){(void 0!==r&&!i(e[t],r)||void 0===r&&!(t in e))&&n(e,t,r)}},65759:(e,t,r)=>{var n=r(91198),i=r(71074),A=Object.prototype.hasOwnProperty;e.exports=function(e,t,r){var o=e[t];A.call(e,t)&&i(o,r)&&(void 0!==r||t in e)||n(e,t,r)}},39836:(e,t,r)=>{var n=r(71074);e.exports=function(e,t){for(var r=e.length;r--;)if(n(e[r][0],t))return r;return-1}},28628:(e,t,r)=>{var n=r(75182),i=r(42185);e.exports=function(e,t){return e&&n(t,i(t),e)}},78707:(e,t,r)=>{var n=r(75182),i=r(24887);e.exports=function(e,t){return e&&n(t,i(t),e)}},91198:(e,t,r)=>{var n=r(65);e.exports=function(e,t,r){"__proto__"==t&&n?n(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}},41076:(e,t,r)=>{var n=r(22851),i=r(33326),A=r(65759),o=r(28628),s=r(78707),a=r(64266),c=r(87229),g=r(23105),l=r(60741),u=r(60753),h=r(64420),f=r(79435),p=r(27908),C=r(37836),d=r(88438),I=r(82664),E=r(10667),m=r(13349),B=r(46778),w=r(33931),y=r(42185),Q={};Q["[object Arguments]"]=Q["[object Array]"]=Q["[object ArrayBuffer]"]=Q["[object DataView]"]=Q["[object Boolean]"]=Q["[object Date]"]=Q["[object Float32Array]"]=Q["[object Float64Array]"]=Q["[object Int8Array]"]=Q["[object Int16Array]"]=Q["[object Int32Array]"]=Q["[object Map]"]=Q["[object Number]"]=Q["[object Object]"]=Q["[object RegExp]"]=Q["[object Set]"]=Q["[object String]"]=Q["[object Symbol]"]=Q["[object Uint8Array]"]=Q["[object Uint8ClampedArray]"]=Q["[object Uint16Array]"]=Q["[object Uint32Array]"]=!0,Q["[object Error]"]=Q["[object Function]"]=Q["[object WeakMap]"]=!1,e.exports=function e(t,r,v,b,D,S){var k,M=1&r,F=2&r,N=4&r;if(v&&(k=D?v(t,b,D,S):v(t)),void 0!==k)return k;if(!B(t))return t;var R=I(t);if(R){if(k=p(t),!M)return c(t,k)}else{var K=f(t),x="[object Function]"==K||"[object GeneratorFunction]"==K;if(E(t))return a(t,M);if("[object Object]"==K||"[object Arguments]"==K||x&&!D){if(k=F||x?{}:d(t),!M)return F?l(t,s(k,t)):g(t,o(k,t))}else{if(!Q[K])return D?t:{};k=C(t,K,M)}}S||(S=new n);var L=S.get(t);if(L)return L;S.set(t,k),w(t)?t.forEach((function(n){k.add(e(n,r,v,n,t,S))})):m(t)&&t.forEach((function(n,i){k.set(i,e(n,r,v,i,t,S))}));var P=N?F?h:u:F?keysIn:y,U=R?void 0:P(t);return i(U||t,(function(n,i){U&&(n=t[i=n]),A(k,i,e(n,r,v,i,t,S))})),k}},15178:(e,t,r)=>{var n=r(46778),i=Object.create,A=function(){function e(){}return function(t){if(!n(t))return{};if(i)return i(t);e.prototype=t;var r=new e;return e.prototype=void 0,r}}();e.exports=A},31689:(e,t,r)=>{var n=r(59907)();e.exports=n},62164:(e,t,r)=>{var n=r(31689),i=r(42185);e.exports=function(e,t){return e&&n(e,t,i)}},84173:(e,t,r)=>{var n=r(56725),i=r(49874);e.exports=function(e,t){for(var r=0,A=(t=n(t,e)).length;null!=e&&r{var n=r(40945),i=r(82664);e.exports=function(e,t,r){var A=t(e);return i(e)?A:n(A,r(e))}},52502:(e,t,r)=>{var n=r(69976),i=r(2854),A=r(87427),o=n?n.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":o&&o in Object(e)?i(e):A(e)}},95325:e=>{var t=Object.prototype.hasOwnProperty;e.exports=function(e,r){return null!=e&&t.call(e,r)}},3881:e=>{e.exports=function(e,t){return null!=e&&t in Object(e)}},76357:(e,t,r)=>{var n=r(52502),i=r(38496);e.exports=function(e){return i(e)&&"[object Arguments]"==n(e)}},74195:(e,t,r)=>{var n=r(48957),i=r(38496);e.exports=function e(t,r,A,o,s){return t===r||(null==t||null==r||!i(t)&&!i(r)?t!=t&&r!=r:n(t,r,A,o,e,s))}},48957:(e,t,r)=>{var n=r(22851),i=r(75500),A=r(28475),o=r(50245),s=r(79435),a=r(82664),c=r(10667),g=r(32565),l="[object Object]",u=Object.prototype.hasOwnProperty;e.exports=function(e,t,r,h,f,p){var C=a(e),d=a(t),I=C?"[object Array]":s(e),E=d?"[object Array]":s(t),m=(I="[object Arguments]"==I?l:I)==l,B=(E="[object Arguments]"==E?l:E)==l,w=I==E;if(w&&c(e)){if(!c(t))return!1;C=!0,m=!1}if(w&&!m)return p||(p=new n),C||g(e)?i(e,t,r,h,f,p):A(e,t,I,r,h,f,p);if(!(1&r)){var y=m&&u.call(e,"__wrapped__"),Q=B&&u.call(t,"__wrapped__");if(y||Q){var v=y?e.value():e,b=Q?t.value():t;return p||(p=new n),f(v,b,r,h,p)}}return!!w&&(p||(p=new n),o(e,t,r,h,f,p))}},55994:(e,t,r)=>{var n=r(79435),i=r(38496);e.exports=function(e){return i(e)&&"[object Map]"==n(e)}},66470:(e,t,r)=>{var n=r(22851),i=r(74195);e.exports=function(e,t,r,A){var o=r.length,s=o,a=!A;if(null==e)return!s;for(e=Object(e);o--;){var c=r[o];if(a&&c[2]?c[1]!==e[c[0]]:!(c[0]in e))return!1}for(;++o{var n=r(92533),i=r(15061),A=r(46778),o=r(76384),s=/^\[object .+?Constructor\]$/,a=Function.prototype,c=Object.prototype,g=a.toString,l=c.hasOwnProperty,u=RegExp("^"+g.call(l).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.exports=function(e){return!(!A(e)||i(e))&&(n(e)?u:s).test(o(e))}},28612:(e,t,r)=>{var n=r(79435),i=r(38496);e.exports=function(e){return i(e)&&"[object Set]"==n(e)}},98998:(e,t,r)=>{var n=r(52502),i=r(46369),A=r(38496),o={};o["[object Float32Array]"]=o["[object Float64Array]"]=o["[object Int8Array]"]=o["[object Int16Array]"]=o["[object Int32Array]"]=o["[object Uint8Array]"]=o["[object Uint8ClampedArray]"]=o["[object Uint16Array]"]=o["[object Uint32Array]"]=!0,o["[object Arguments]"]=o["[object Array]"]=o["[object ArrayBuffer]"]=o["[object Boolean]"]=o["[object DataView]"]=o["[object Date]"]=o["[object Error]"]=o["[object Function]"]=o["[object Map]"]=o["[object Number]"]=o["[object Object]"]=o["[object RegExp]"]=o["[object Set]"]=o["[object String]"]=o["[object WeakMap]"]=!1,e.exports=function(e){return A(e)&&i(e.length)&&!!o[n(e)]}},42208:(e,t,r)=>{var n=r(96962),i=r(90348),A=r(61977),o=r(82664),s=r(7430);e.exports=function(e){return"function"==typeof e?e:null==e?A:"object"==typeof e?o(e)?i(e[0],e[1]):n(e):s(e)}},50994:(e,t,r)=>{var n=r(89513),i=r(60657),A=Object.prototype.hasOwnProperty;e.exports=function(e){if(!n(e))return i(e);var t=[];for(var r in Object(e))A.call(e,r)&&"constructor"!=r&&t.push(r);return t}},8372:(e,t,r)=>{var n=r(46778),i=r(89513),A=r(95632),o=Object.prototype.hasOwnProperty;e.exports=function(e){if(!n(e))return A(e);var t=i(e),r=[];for(var s in e)("constructor"!=s||!t&&o.call(e,s))&&r.push(s);return r}},96962:(e,t,r)=>{var n=r(66470),i=r(98705),A=r(12757);e.exports=function(e){var t=i(e);return 1==t.length&&t[0][2]?A(t[0][0],t[0][1]):function(r){return r===e||n(r,e,t)}}},90348:(e,t,r)=>{var n=r(74195),i=r(44674),A=r(34878),o=r(70474),s=r(20925),a=r(12757),c=r(49874);e.exports=function(e,t){return o(e)&&s(t)?a(c(e),t):function(r){var o=i(r,e);return void 0===o&&o===t?A(r,e):n(t,o,3)}}},51264:(e,t,r)=>{var n=r(22851),i=r(26943),A=r(31689),o=r(16834),s=r(46778),a=r(24887),c=r(36883);e.exports=function e(t,r,g,l,u){t!==r&&A(r,(function(A,a){if(u||(u=new n),s(A))o(t,r,a,g,e,l,u);else{var h=l?l(c(t,a),A,a+"",t,r,u):void 0;void 0===h&&(h=A),i(t,a,h)}}),a)}},16834:(e,t,r)=>{var n=r(26943),i=r(64266),A=r(58042),o=r(87229),s=r(88438),a=r(61771),c=r(82664),g=r(16064),l=r(10667),u=r(92533),h=r(46778),f=r(11672),p=r(32565),C=r(36883),d=r(36506);e.exports=function(e,t,r,I,E,m,B){var w=C(e,r),y=C(t,r),Q=B.get(y);if(Q)n(e,r,Q);else{var v=m?m(w,y,r+"",e,t,B):void 0,b=void 0===v;if(b){var D=c(y),S=!D&&l(y),k=!D&&!S&&p(y);v=y,D||S||k?c(w)?v=w:g(w)?v=o(w):S?(b=!1,v=i(y,!0)):k?(b=!1,v=A(y,!0)):v=[]:f(y)||a(y)?(v=w,a(w)?v=d(w):h(w)&&!u(w)||(v=s(y))):b=!1}b&&(B.set(y,v),E(v,y,I,m,B),B.delete(y)),n(e,r,v)}}},35400:e=>{e.exports=function(e){return function(t){return null==t?void 0:t[e]}}},43018:(e,t,r)=>{var n=r(84173);e.exports=function(e){return function(t){return n(t,e)}}},51587:e=>{e.exports=function(e){return function(t){return null==e?void 0:e[t]}}},30383:(e,t,r)=>{var n=r(61977),i=r(44322),A=r(3111);e.exports=function(e,t){return A(i(e,t,n),e+"")}},10624:(e,t,r)=>{var n=r(65759),i=r(56725),A=r(98041),o=r(46778),s=r(49874);e.exports=function(e,t,r,a){if(!o(e))return e;for(var c=-1,g=(t=i(t,e)).length,l=g-1,u=e;null!=u&&++c{var n=r(4967),i=r(65),A=r(61977),o=i?function(e,t){return i(e,"toString",{configurable:!0,enumerable:!1,value:n(t),writable:!0})}:A;e.exports=o},27708:e=>{e.exports=function(e,t,r){var n=-1,i=e.length;t<0&&(t=-t>i?0:i+t),(r=r>i?i:r)<0&&(r+=i),i=t>r?0:r-t>>>0,t>>>=0;for(var A=Array(i);++n{e.exports=function(e,t){for(var r=-1,n=Array(e);++r{var n=r(69976),i=r(60783),A=r(82664),o=r(65558),s=n?n.prototype:void 0,a=s?s.toString:void 0;e.exports=function e(t){if("string"==typeof t)return t;if(A(t))return i(t,e)+"";if(o(t))return a?a.call(t):"";var r=t+"";return"0"==r&&1/t==-1/0?"-0":r}},73635:e=>{e.exports=function(e){return function(t){return e(t)}}},18290:(e,t,r)=>{var n=r(60783);e.exports=function(e,t){return n(t,(function(t){return e[t]}))}},93022:e=>{e.exports=function(e,t){return e.has(t)}},56725:(e,t,r)=>{var n=r(82664),i=r(70474),A=r(8689),o=r(33580);e.exports=function(e,t){return n(e)?e:i(e,t)?[e]:A(o(e))}},92568:(e,t,r)=>{var n=r(27708);e.exports=function(e,t,r){var i=e.length;return r=void 0===r?i:r,!t&&r>=i?e:n(e,t,r)}},76255:(e,t,r)=>{var n=r(2740);e.exports=function(e){var t=new e.constructor(e.byteLength);return new n(t).set(new n(e)),t}},64266:(e,t,r)=>{e=r.nmd(e);var n=r(76169),i=t&&!t.nodeType&&t,A=i&&e&&!e.nodeType&&e,o=A&&A.exports===i?n.Buffer:void 0,s=o?o.allocUnsafe:void 0;e.exports=function(e,t){if(t)return e.slice();var r=e.length,n=s?s(r):new e.constructor(r);return e.copy(n),n}},63749:(e,t,r)=>{var n=r(76255);e.exports=function(e,t){var r=t?n(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.byteLength)}},41705:e=>{var t=/\w*$/;e.exports=function(e){var r=new e.constructor(e.source,t.exec(e));return r.lastIndex=e.lastIndex,r}},25791:(e,t,r)=>{var n=r(69976),i=n?n.prototype:void 0,A=i?i.valueOf:void 0;e.exports=function(e){return A?Object(A.call(e)):{}}},58042:(e,t,r)=>{var n=r(76255);e.exports=function(e,t){var r=t?n(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}},87229:e=>{e.exports=function(e,t){var r=-1,n=e.length;for(t||(t=Array(n));++r{var n=r(65759),i=r(91198);e.exports=function(e,t,r,A){var o=!r;r||(r={});for(var s=-1,a=t.length;++s{var n=r(75182),i=r(68727);e.exports=function(e,t){return n(e,i(e),t)}},60741:(e,t,r)=>{var n=r(75182),i=r(35368);e.exports=function(e,t){return n(e,i(e),t)}},14429:(e,t,r)=>{var n=r(76169)["__core-js_shared__"];e.exports=n},27913:(e,t,r)=>{var n=r(30383),i=r(33193);e.exports=function(e){return n((function(t,r){var n=-1,A=r.length,o=A>1?r[A-1]:void 0,s=A>2?r[2]:void 0;for(o=e.length>3&&"function"==typeof o?(A--,o):void 0,s&&i(r[0],r[1],s)&&(o=A<3?void 0:o,A=1),t=Object(t);++n{e.exports=function(e){return function(t,r,n){for(var i=-1,A=Object(t),o=n(t),s=o.length;s--;){var a=o[e?s:++i];if(!1===r(A[a],a,A))break}return t}}},56989:(e,t,r)=>{var n=r(92568),i=r(93024),A=r(30475),o=r(33580);e.exports=function(e){return function(t){t=o(t);var r=i(t)?A(t):void 0,s=r?r[0]:t.charAt(0),a=r?n(r,1).join(""):t.slice(1);return s[e]()+a}}},30369:(e,t,r)=>{var n=r(66054),i=r(68968),A=r(97684),o=RegExp("['’]","g");e.exports=function(e){return function(t){return n(A(i(t).replace(o,"")),e,"")}}},69922:(e,t,r)=>{var n=r(51587)({À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"});e.exports=n},65:(e,t,r)=>{var n=r(99513),i=function(){try{var e=n(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();e.exports=i},75500:(e,t,r)=>{var n=r(46235),i=r(17765),A=r(93022);e.exports=function(e,t,r,o,s,a){var c=1&r,g=e.length,l=t.length;if(g!=l&&!(c&&l>g))return!1;var u=a.get(e);if(u&&a.get(t))return u==t;var h=-1,f=!0,p=2&r?new n:void 0;for(a.set(e,t),a.set(t,e);++h{var n=r(69976),i=r(2740),A=r(71074),o=r(75500),s=r(7877),a=r(7442),c=n?n.prototype:void 0,g=c?c.valueOf:void 0;e.exports=function(e,t,r,n,c,l,u){switch(r){case"[object DataView]":if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case"[object ArrayBuffer]":return!(e.byteLength!=t.byteLength||!l(new i(e),new i(t)));case"[object Boolean]":case"[object Date]":case"[object Number]":return A(+e,+t);case"[object Error]":return e.name==t.name&&e.message==t.message;case"[object RegExp]":case"[object String]":return e==t+"";case"[object Map]":var h=s;case"[object Set]":var f=1&n;if(h||(h=a),e.size!=t.size&&!f)return!1;var p=u.get(e);if(p)return p==t;n|=2,u.set(e,t);var C=o(h(e),h(t),n,c,l,u);return u.delete(e),C;case"[object Symbol]":if(g)return g.call(e)==g.call(t)}return!1}},50245:(e,t,r)=>{var n=r(60753),i=Object.prototype.hasOwnProperty;e.exports=function(e,t,r,A,o,s){var a=1&r,c=n(e),g=c.length;if(g!=n(t).length&&!a)return!1;for(var l=g;l--;){var u=c[l];if(!(a?u in t:i.call(t,u)))return!1}var h=s.get(e);if(h&&s.get(t))return h==t;var f=!0;s.set(e,t),s.set(t,e);for(var p=a;++l{var t="object"==typeof global&&global&&global.Object===Object&&global;e.exports=t},60753:(e,t,r)=>{var n=r(40104),i=r(68727),A=r(42185);e.exports=function(e){return n(e,A,i)}},64420:(e,t,r)=>{var n=r(40104),i=r(35368),A=r(24887);e.exports=function(e){return n(e,A,i)}},59253:(e,t,r)=>{var n=r(69448);e.exports=function(e,t){var r=e.__data__;return n(t)?r["string"==typeof t?"string":"hash"]:r.map}},98705:(e,t,r)=>{var n=r(20925),i=r(42185);e.exports=function(e){for(var t=i(e),r=t.length;r--;){var A=t[r],o=e[A];t[r]=[A,o,n(o)]}return t}},99513:(e,t,r)=>{var n=r(91686),i=r(98054);e.exports=function(e,t){var r=i(e,t);return n(r)?r:void 0}},41181:(e,t,r)=>{var n=r(64309)(Object.getPrototypeOf,Object);e.exports=n},2854:(e,t,r)=>{var n=r(69976),i=Object.prototype,A=i.hasOwnProperty,o=i.toString,s=n?n.toStringTag:void 0;e.exports=function(e){var t=A.call(e,s),r=e[s];try{e[s]=void 0;var n=!0}catch(e){}var i=o.call(e);return n&&(t?e[s]=r:delete e[s]),i}},68727:(e,t,r)=>{var n=r(9073),i=r(62162),A=Object.prototype.propertyIsEnumerable,o=Object.getOwnPropertySymbols,s=o?function(e){return null==e?[]:(e=Object(e),n(o(e),(function(t){return A.call(e,t)})))}:i;e.exports=s},35368:(e,t,r)=>{var n=r(40945),i=r(41181),A=r(68727),o=r(62162),s=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)n(t,A(e)),e=i(e);return t}:o;e.exports=s},79435:(e,t,r)=>{var n=r(78962),i=r(63603),A=r(5825),o=r(43231),s=r(47063),a=r(52502),c=r(76384),g=c(n),l=c(i),u=c(A),h=c(o),f=c(s),p=a;(n&&"[object DataView]"!=p(new n(new ArrayBuffer(1)))||i&&"[object Map]"!=p(new i)||A&&"[object Promise]"!=p(A.resolve())||o&&"[object Set]"!=p(new o)||s&&"[object WeakMap]"!=p(new s))&&(p=function(e){var t=a(e),r="[object Object]"==t?e.constructor:void 0,n=r?c(r):"";if(n)switch(n){case g:return"[object DataView]";case l:return"[object Map]";case u:return"[object Promise]";case h:return"[object Set]";case f:return"[object WeakMap]"}return t}),e.exports=p},98054:e=>{e.exports=function(e,t){return null==e?void 0:e[t]}},71507:(e,t,r)=>{var n=r(56725),i=r(61771),A=r(82664),o=r(98041),s=r(46369),a=r(49874);e.exports=function(e,t,r){for(var c=-1,g=(t=n(t,e)).length,l=!1;++c{var t=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");e.exports=function(e){return t.test(e)}},60466:e=>{var t=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;e.exports=function(e){return t.test(e)}},31713:(e,t,r)=>{var n=r(52437);e.exports=function(){this.__data__=n?n(null):{},this.size=0}},86688:e=>{e.exports=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}},45937:(e,t,r)=>{var n=r(52437),i=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;if(n){var r=t[e];return"__lodash_hash_undefined__"===r?void 0:r}return i.call(t,e)?t[e]:void 0}},5017:(e,t,r)=>{var n=r(52437),i=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return n?void 0!==t[e]:i.call(t,e)}},79457:(e,t,r)=>{var n=r(52437);e.exports=function(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=n&&void 0===t?"__lodash_hash_undefined__":t,this}},27908:e=>{var t=Object.prototype.hasOwnProperty;e.exports=function(e){var r=e.length,n=new e.constructor(r);return r&&"string"==typeof e[0]&&t.call(e,"index")&&(n.index=e.index,n.input=e.input),n}},37836:(e,t,r)=>{var n=r(76255),i=r(63749),A=r(41705),o=r(25791),s=r(58042);e.exports=function(e,t,r){var a=e.constructor;switch(t){case"[object ArrayBuffer]":return n(e);case"[object Boolean]":case"[object Date]":return new a(+e);case"[object DataView]":return i(e,r);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return s(e,r);case"[object Map]":return new a;case"[object Number]":case"[object String]":return new a(e);case"[object RegExp]":return A(e);case"[object Set]":return new a;case"[object Symbol]":return o(e)}}},88438:(e,t,r)=>{var n=r(15178),i=r(41181),A=r(89513);e.exports=function(e){return"function"!=typeof e.constructor||A(e)?{}:n(i(e))}},98041:e=>{var t=/^(?:0|[1-9]\d*)$/;e.exports=function(e,r){var n=typeof e;return!!(r=null==r?9007199254740991:r)&&("number"==n||"symbol"!=n&&t.test(e))&&e>-1&&e%1==0&&e{var n=r(71074),i=r(41929),A=r(98041),o=r(46778);e.exports=function(e,t,r){if(!o(r))return!1;var s=typeof t;return!!("number"==s?i(r)&&A(t,r.length):"string"==s&&t in r)&&n(r[t],e)}},70474:(e,t,r)=>{var n=r(82664),i=r(65558),A=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,o=/^\w*$/;e.exports=function(e,t){if(n(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!i(e))||(o.test(e)||!A.test(e)||null!=t&&e in Object(t))}},69448:e=>{e.exports=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},15061:(e,t,r)=>{var n,i=r(14429),A=(n=/[^.]+$/.exec(i&&i.keys&&i.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"";e.exports=function(e){return!!A&&A in e}},89513:e=>{var t=Object.prototype;e.exports=function(e){var r=e&&e.constructor;return e===("function"==typeof r&&r.prototype||t)}},20925:(e,t,r)=>{var n=r(46778);e.exports=function(e){return e==e&&!n(e)}},82262:e=>{e.exports=function(e){for(var t,r=[];!(t=e.next()).done;)r.push(t.value);return r}},14620:e=>{e.exports=function(){this.__data__=[],this.size=0}},73682:(e,t,r)=>{var n=r(39836),i=Array.prototype.splice;e.exports=function(e){var t=this.__data__,r=n(t,e);return!(r<0)&&(r==t.length-1?t.pop():i.call(t,r,1),--this.size,!0)}},43112:(e,t,r)=>{var n=r(39836);e.exports=function(e){var t=this.__data__,r=n(t,e);return r<0?void 0:t[r][1]}},90640:(e,t,r)=>{var n=r(39836);e.exports=function(e){return n(this.__data__,e)>-1}},9380:(e,t,r)=>{var n=r(39836);e.exports=function(e,t){var r=this.__data__,i=n(r,e);return i<0?(++this.size,r.push([e,t])):r[i][1]=t,this}},18209:(e,t,r)=>{var n=r(72574),i=r(29197),A=r(63603);e.exports=function(){this.size=0,this.__data__={hash:new n,map:new(A||i),string:new n}}},89706:(e,t,r)=>{var n=r(59253);e.exports=function(e){var t=n(this,e).delete(e);return this.size-=t?1:0,t}},43786:(e,t,r)=>{var n=r(59253);e.exports=function(e){return n(this,e).get(e)}},17926:(e,t,r)=>{var n=r(59253);e.exports=function(e){return n(this,e).has(e)}},87345:(e,t,r)=>{var n=r(59253);e.exports=function(e,t){var r=n(this,e),i=r.size;return r.set(e,t),this.size+=r.size==i?0:1,this}},7877:e=>{e.exports=function(e){var t=-1,r=Array(e.size);return e.forEach((function(e,n){r[++t]=[n,e]})),r}},12757:e=>{e.exports=function(e,t){return function(r){return null!=r&&(r[e]===t&&(void 0!==t||e in Object(r)))}}},31948:(e,t,r)=>{var n=r(74499);e.exports=function(e){var t=n(e,(function(e){return 500===r.size&&r.clear(),e})),r=t.cache;return t}},52437:(e,t,r)=>{var n=r(99513)(Object,"create");e.exports=n},60657:(e,t,r)=>{var n=r(64309)(Object.keys,Object);e.exports=n},95632:e=>{e.exports=function(e){var t=[];if(null!=e)for(var r in Object(e))t.push(r);return t}},26391:(e,t,r)=>{e=r.nmd(e);var n=r(68399),i=t&&!t.nodeType&&t,A=i&&e&&!e.nodeType&&e,o=A&&A.exports===i&&n.process,s=function(){try{var e=A&&A.require&&A.require("util").types;return e||o&&o.binding&&o.binding("util")}catch(e){}}();e.exports=s},87427:e=>{var t=Object.prototype.toString;e.exports=function(e){return t.call(e)}},64309:e=>{e.exports=function(e,t){return function(r){return e(t(r))}}},44322:(e,t,r)=>{var n=r(66636),i=Math.max;e.exports=function(e,t,r){return t=i(void 0===t?e.length-1:t,0),function(){for(var A=arguments,o=-1,s=i(A.length-t,0),a=Array(s);++o{var n=r(68399),i="object"==typeof self&&self&&self.Object===Object&&self,A=n||i||Function("return this")();e.exports=A},36883:e=>{e.exports=function(e,t){if(("constructor"!==t||"function"!=typeof e[t])&&"__proto__"!=t)return e[t]}},74785:e=>{e.exports=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this}},87760:e=>{e.exports=function(e){return this.__data__.has(e)}},7442:e=>{e.exports=function(e){var t=-1,r=Array(e.size);return e.forEach((function(e){r[++t]=e})),r}},3111:(e,t,r)=>{var n=r(4899),i=r(19908)(n);e.exports=i},19908:e=>{var t=Date.now;e.exports=function(e){var r=0,n=0;return function(){var i=t(),A=16-(i-n);if(n=i,A>0){if(++r>=800)return arguments[0]}else r=0;return e.apply(void 0,arguments)}}},35678:(e,t,r)=>{var n=r(29197);e.exports=function(){this.__data__=new n,this.size=0}},33336:e=>{e.exports=function(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r}},97163:e=>{e.exports=function(e){return this.__data__.get(e)}},43737:e=>{e.exports=function(e){return this.__data__.has(e)}},48548:(e,t,r)=>{var n=r(29197),i=r(63603),A=r(75009);e.exports=function(e,t){var r=this.__data__;if(r instanceof n){var o=r.__data__;if(!i||o.length<199)return o.push([e,t]),this.size=++r.size,this;r=this.__data__=new A(o)}return r.set(e,t),this.size=r.size,this}},30475:(e,t,r)=>{var n=r(1051),i=r(93024),A=r(297);e.exports=function(e){return i(e)?A(e):n(e)}},8689:(e,t,r)=>{var n=r(31948),i=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,A=/\\(\\)?/g,o=n((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(i,(function(e,r,n,i){t.push(n?i.replace(A,"$1"):r||e)})),t}));e.exports=o},49874:(e,t,r)=>{var n=r(65558);e.exports=function(e){if("string"==typeof e||n(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}},76384:e=>{var t=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return t.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},297:e=>{var t="[\\ud800-\\udfff]",r="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",n="\\ud83c[\\udffb-\\udfff]",i="[^\\ud800-\\udfff]",A="(?:\\ud83c[\\udde6-\\uddff]){2}",o="[\\ud800-\\udbff][\\udc00-\\udfff]",s="(?:"+r+"|"+n+")"+"?",a="[\\ufe0e\\ufe0f]?"+s+("(?:\\u200d(?:"+[i,A,o].join("|")+")[\\ufe0e\\ufe0f]?"+s+")*"),c="(?:"+[i+r+"?",r,A,o,t].join("|")+")",g=RegExp(n+"(?="+n+")|"+c+a,"g");e.exports=function(e){return e.match(g)||[]}},89887:e=>{var t="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",r="["+t+"]",n="\\d+",i="[\\u2700-\\u27bf]",A="[a-z\\xdf-\\xf6\\xf8-\\xff]",o="[^\\ud800-\\udfff"+t+n+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",s="(?:\\ud83c[\\udde6-\\uddff]){2}",a="[\\ud800-\\udbff][\\udc00-\\udfff]",c="[A-Z\\xc0-\\xd6\\xd8-\\xde]",g="(?:"+A+"|"+o+")",l="(?:"+c+"|"+o+")",u="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",h="[\\ufe0e\\ufe0f]?"+u+("(?:\\u200d(?:"+["[^\\ud800-\\udfff]",s,a].join("|")+")[\\ufe0e\\ufe0f]?"+u+")*"),f="(?:"+[i,s,a].join("|")+")"+h,p=RegExp([c+"?"+A+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[r,c,"$"].join("|")+")",l+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[r,c+g,"$"].join("|")+")",c+"?"+g+"+(?:['’](?:d|ll|m|re|s|t|ve))?",c+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",n,f].join("|"),"g");e.exports=function(e){return e.match(p)||[]}},89170:(e,t,r)=>{var n=r(61814),i=r(30369)((function(e,t,r){return t=t.toLowerCase(),e+(r?n(t):t)}));e.exports=i},61814:(e,t,r)=>{var n=r(33580),i=r(72609);e.exports=function(e){return i(n(e).toLowerCase())}},82558:(e,t,r)=>{var n=r(41076);e.exports=function(e){return n(e,5)}},26052:(e,t,r)=>{var n=r(41076);e.exports=function(e,t){return n(e,5,t="function"==typeof t?t:void 0)}},4967:e=>{e.exports=function(e){return function(){return e}}},68968:(e,t,r)=>{var n=r(69922),i=r(33580),A=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,o=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g");e.exports=function(e){return(e=i(e))&&e.replace(A,n).replace(o,"")}},71074:e=>{e.exports=function(e,t){return e===t||e!=e&&t!=t}},44674:(e,t,r)=>{var n=r(84173);e.exports=function(e,t,r){var i=null==e?void 0:n(e,t);return void 0===i?r:i}},15215:(e,t,r)=>{var n=r(95325),i=r(71507);e.exports=function(e,t){return null!=e&&i(e,t,n)}},34878:(e,t,r)=>{var n=r(3881),i=r(71507);e.exports=function(e,t){return null!=e&&i(e,t,n)}},61977:e=>{e.exports=function(e){return e}},61771:(e,t,r)=>{var n=r(76357),i=r(38496),A=Object.prototype,o=A.hasOwnProperty,s=A.propertyIsEnumerable,a=n(function(){return arguments}())?n:function(e){return i(e)&&o.call(e,"callee")&&!s.call(e,"callee")};e.exports=a},82664:e=>{var t=Array.isArray;e.exports=t},41929:(e,t,r)=>{var n=r(92533),i=r(46369);e.exports=function(e){return null!=e&&i(e.length)&&!n(e)}},16064:(e,t,r)=>{var n=r(41929),i=r(38496);e.exports=function(e){return i(e)&&n(e)}},10667:(e,t,r)=>{e=r.nmd(e);var n=r(76169),i=r(88988),A=t&&!t.nodeType&&t,o=A&&e&&!e.nodeType&&e,s=o&&o.exports===A?n.Buffer:void 0,a=(s?s.isBuffer:void 0)||i;e.exports=a},92533:(e,t,r)=>{var n=r(52502),i=r(46778);e.exports=function(e){if(!i(e))return!1;var t=n(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},46369:e=>{e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},13349:(e,t,r)=>{var n=r(55994),i=r(73635),A=r(26391),o=A&&A.isMap,s=o?i(o):n;e.exports=s},46778:e=>{e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},38496:e=>{e.exports=function(e){return null!=e&&"object"==typeof e}},11672:(e,t,r)=>{var n=r(52502),i=r(41181),A=r(38496),o=Function.prototype,s=Object.prototype,a=o.toString,c=s.hasOwnProperty,g=a.call(Object);e.exports=function(e){if(!A(e)||"[object Object]"!=n(e))return!1;var t=i(e);if(null===t)return!0;var r=c.call(t,"constructor")&&t.constructor;return"function"==typeof r&&r instanceof r&&a.call(r)==g}},33931:(e,t,r)=>{var n=r(28612),i=r(73635),A=r(26391),o=A&&A.isSet,s=o?i(o):n;e.exports=s},221:(e,t,r)=>{var n=r(52502),i=r(82664),A=r(38496);e.exports=function(e){return"string"==typeof e||!i(e)&&A(e)&&"[object String]"==n(e)}},65558:(e,t,r)=>{var n=r(52502),i=r(38496);e.exports=function(e){return"symbol"==typeof e||i(e)&&"[object Symbol]"==n(e)}},32565:(e,t,r)=>{var n=r(98998),i=r(73635),A=r(26391),o=A&&A.isTypedArray,s=o?i(o):n;e.exports=s},42185:(e,t,r)=>{var n=r(11886),i=r(50994),A=r(41929);e.exports=function(e){return A(e)?n(e):i(e)}},24887:(e,t,r)=>{var n=r(11886),i=r(8372),A=r(41929);e.exports=function(e){return A(e)?n(e,!0):i(e)}},5253:(e,t,r)=>{var n=r(91198),i=r(62164),A=r(42208);e.exports=function(e,t){var r={};return t=A(t,3),i(e,(function(e,i,A){n(r,t(e,i,A),e)})),r}},89612:(e,t,r)=>{var n=r(91198),i=r(62164),A=r(42208);e.exports=function(e,t){var r={};return t=A(t,3),i(e,(function(e,i,A){n(r,i,t(e,i,A))})),r}},74499:(e,t,r)=>{var n=r(75009);function i(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError("Expected a function");var r=function(){var n=arguments,i=t?t.apply(this,n):n[0],A=r.cache;if(A.has(i))return A.get(i);var o=e.apply(this,n);return r.cache=A.set(i,o)||A,o};return r.cache=new(i.Cache||n),r}i.Cache=n,e.exports=i},80305:(e,t,r)=>{var n=r(51264),i=r(27913)((function(e,t,r){n(e,t,r)}));e.exports=i},7430:(e,t,r)=>{var n=r(35400),i=r(43018),A=r(70474),o=r(49874);e.exports=function(e){return A(e)?n(o(e)):i(e)}},81534:(e,t,r)=>{var n=r(10624);e.exports=function(e,t,r){return null==e?e:n(e,t,r)}},36494:(e,t,r)=>{var n=r(30369)((function(e,t,r){return e+(r?"_":"")+t.toLowerCase()}));e.exports=n},62162:e=>{e.exports=function(){return[]}},88988:e=>{e.exports=function(){return!1}},78700:(e,t,r)=>{var n=r(69976),i=r(87229),A=r(79435),o=r(41929),s=r(221),a=r(82262),c=r(7877),g=r(7442),l=r(30475),u=r(24448),h=n?n.iterator:void 0;e.exports=function(e){if(!e)return[];if(o(e))return s(e)?l(e):i(e);if(h&&e[h])return a(e[h]());var t=A(e);return("[object Map]"==t?c:"[object Set]"==t?g:u)(e)}},36506:(e,t,r)=>{var n=r(75182),i=r(24887);e.exports=function(e){return n(e,i(e))}},33580:(e,t,r)=>{var n=r(35);e.exports=function(e){return null==e?"":n(e)}},72609:(e,t,r)=>{var n=r(56989)("toUpperCase");e.exports=n},24448:(e,t,r)=>{var n=r(18290),i=r(42185);e.exports=function(e){return null==e?[]:n(e,i(e))}},97684:(e,t,r)=>{var n=r(11852),i=r(60466),A=r(33580),o=r(89887);e.exports=function(e,t,r){return e=A(e),void 0===(t=r?void 0:t)?i(e)?o(e):n(e):e.match(t)||[]}},58708:(e,t,r)=>{var n,i=r(73789),A=r(5817),o=function(e,t){return t.description=e,t},s=function(e,t,r){return o(e,(function(e){return e instanceof t[r]}))};(n={}).isNumTerm=o("a NumTerm (non-zero integer)",(function(e){return e===(0|e)&&0!==e})),n.isNameTerm=o("a NameTerm (string)",(function(e){return"string"==typeof e&&!/^-*[0-9]*$/.test(e)})),n.isTerm=o("a Term (appropriate string or number)",(function(e){return n.isNumTerm(e)||n.isNameTerm(e)})),n.isWholeNumber=o("a whole number (integer >= 0)",(function(e){return e===(0|e)&&e>=0})),n.isFormula=s("a Formula",n,"Formula"),n.isClause=s("a Clause",n,"Clause"),n.isBits=s("a Bits",n,"Bits"),n._isInteger=o("an integer",(function(e){return e===(0|e)})),n._isFunction=o("a Function",(function(e){return"function"==typeof e})),n._isString=o("a String",(function(e){return"string"==typeof e})),n._isArrayWhere=function(e){var t="an array";return e.description&&(t+=" of "+e.description),o(t,(function(t){if(A.isArray(t)){for(var r=0;r=t.length)throw new Error("Bad variable num: "+e);return t[e]},n.Solver.prototype.toNumTerm=function(e,t){if(p&&p(e,n.isTerm),"number"==typeof e)return e;for(var r=!1;"-"===e.charAt(0);)e=e.slice(1),r=!r;var i=this.getVarNum(e,t);return i?r?-i:i:0},n.Solver.prototype.toNameTerm=function(e){if(p&&p(e,n.isTerm),"string"==typeof e){for(;"--"===e.slice(0,2);)e=e.slice(2);return e}var t=!1;return e<0&&(t=!0,e=-e),e=this.getVarName(e),t&&(e="-"+e),e},n.Solver.prototype._addClause=function(e,t,r){p&&p(e,n.isClause);var i=null;t&&(i=t,p&&p(i,l(n.isNumTerm)));var A=!1,o=!1,s=e.terms.length;i&&(e=e.append(i));for(var a=0;a=this._num2name.length)throw new Error("Bad variable number: "+g);a0,g=null;if(t?o=t:(g=[],o=function(e,t){g.push({clauses:e,extraTerms:t})}),c&&!a.occursPositively){a.occursPositively=!0;var l=r._generateFormula(!0,s);o(l,[-i])}else if(!c&&!a.occursNegatively){a.occursNegatively=!0;l=r._generateFormula(!1,s);o(l,[i])}if(a.occursPositively&&a.occursNegatively&&delete r._ungeneratedFormulas[i],g&&g.length)for(var u=function(e){r._useFormulaTerm(e,o)};g.length;){var h=g.pop();r._addClauses(h.clauses,h.extraTerms,u)}}},n.Solver.prototype._addClauses=function(e,t,r){p&&p(e,l(n.isClause));var i=this;A.each(e,(function(e){i._addClause(e,t,r)}))},n.Solver.prototype.require=function(){this._requireForbidImpl(!0,A.flatten(arguments))},n.Solver.prototype.forbid=function(){this._requireForbidImpl(!1,A.flatten(arguments))},n.Solver.prototype._requireForbidImpl=function(e,t){var r=this;p&&p(t,l(u)),A.each(t,(function(t){if(t instanceof n.NotFormula)r._requireForbidImpl(!e,[t.operand]);else if(t instanceof n.Formula){var i=r._getFormulaInfo(t);if(null!==i.varNum){var A=e?1:-1;r._addClause(new n.Clause(A*i.varNum))}else r._addClauses(r._generateFormula(e,t));e?i.isRequired=!0:i.isForbidden=!0}else r._addClauses(r._generateFormula(e,t))}))},n.Solver.prototype._generateFormula=function(e,t,r){if(p&&p(t,u),t instanceof n.NotFormula)return this._generateFormula(!e,t.operand);if(t instanceof n.Formula){var i=this._getFormulaInfo(t);if(e&&i.isRequired||!e&&i.isForbidden)return[];if(e&&i.isForbidden||!e&&i.isRequired)return[new n.Clause];var o=t.generateClauses(e,r||this._termifier);return A.isArray(o)?o:[o]}var s=this.toNumTerm(t),a=e?1:-1;return s===a*n.NUM_TRUE||s===-a*n.NUM_FALSE?[]:s===a*n.NUM_FALSE||s===-a*n.NUM_TRUE?[new n.Clause]:[new n.Clause(a*s)]},n.Solver.prototype._clauseData=function(){var e=A.pluck(this.clauses,"terms");return this._T_used||e.splice(1,1),this._F_used||e.splice(0,1),e},n.Solver.prototype._clauseStrings=function(){var e=this,t=e._clauseData();return A.map(t,(function(t){return A.map(t,(function(t){var r=e.toNameTerm(t);if(/\s/.test(r)){var n="";"-"===r.charAt(0)&&(n="-",r=r.slice(1)),r=n+'"'+r+'"'}return r})).join(" v ")}))},n.Solver.prototype._getFormulaInfo=function(e,t){var r=e.guid();if(!this._formulaInfo[r]){if(t)return null;this._formulaInfo[r]=new C}return this._formulaInfo[r]},n.Solver.prototype._formulaToTerm=function(e){if(A.isArray(e))return p&&p(e,l(u)),A.map(e,A.bind(this._formulaToTerm,this));if(p&&p(e,u),e instanceof n.NotFormula)return n.not(this._formulaToTerm(e.operand));if(e instanceof n.Formula){var t=this._getFormulaInfo(e);if(t.isRequired)return n.NUM_TRUE;if(t.isForbidden)return n.NUM_FALSE;if(null===t.varNum){var r=e.type;this._nextFormulaNumByType[r]||(this._nextFormulaNumByType[r]=1);var i=this._nextFormulaNumByType[r]++;t.varName="$"+e.type+i,t.varNum=this.getVarNum(t.varName,!1,!0),this._ungeneratedFormulas[t.varNum]=e}return t.varNum}return this.toNumTerm(e)},n.or=function(){var e=A.flatten(arguments);return 0===e.length?n.FALSE:1===e.length?(p&&p(e[0],u),e[0]):new n.OrFormula(e)},n.OrFormula=function(e){p&&p(e,l(u)),this.operands=e},n._defineFormula(n.OrFormula,"or",{generateClauses:function(e,t){if(e)return t.clause(this.operands);var r=[];return A.each(this.operands,(function(e){r.push.apply(r,t.generate(!1,e))})),r}}),n.NotFormula=function(e){p&&p(e,u),this.operand=e},n._defineFormula(n.NotFormula,"not"),n.and=function(){var e=A.flatten(arguments);return 0===e.length?n.TRUE:1===e.length?(p&&p(e[0],u),e[0]):new n.AndFormula(e)},n.AndFormula=function(e){p&&p(e,l(u)),this.operands=e},n._defineFormula(n.AndFormula,"and",{generateClauses:function(e,t){if(e){var r=[];return A.each(this.operands,(function(e){r.push.apply(r,t.generate(!0,e))})),r}return t.clause(A.map(this.operands,n.not))}});var d=function(e,t){for(var r=[],n=0;n3)return t.generate(e,n.xor(A.map(d(this.operands,3),(function(e){return n.xor(e)}))));if(e){if(0===r.length)return t.clause();if(1===r.length)return t.clause(r[0]);if(2===r.length){var o=r[0],s=r[1];return[t.clause(o,s),t.clause(i(o),i(s))]}if(3===r.length){o=r[0],s=r[1];var a=r[2];return[t.clause(o,s,a),t.clause(o,i(s),i(a)),t.clause(i(o),s,i(a)),t.clause(i(o),i(s),a)]}}else{if(0===r.length)return[];if(1===r.length)return t.clause(i(r[0]));if(2===r.length){o=r[0],s=r[1];return[t.clause(o,i(s)),t.clause(i(o),s)]}if(3===r.length){o=r[0],s=r[1],a=r[2];return[t.clause(i(o),i(s),i(a)),t.clause(i(o),s,a),t.clause(o,i(s),a),t.clause(o,s,i(a))]}}}}),n.atMostOne=function(){var e=A.flatten(arguments);return e.length<=1?n.TRUE:new n.AtMostOneFormula(e)},n.AtMostOneFormula=function(e){p&&p(e,l(u)),this.operands=e},n._defineFormula(n.AtMostOneFormula,"atMostOne",{generateClauses:function(e,t){var r=this.operands,i=n.not;if(r.length<=1)return[];if(2===r.length)return t.generate(e,n.not(n.and(r)));if(e&&3===r.length){for(var o=[],s=0;s>>=1;return new n.Bits(t)},n.variableBits=function(e,t){p&&p(t,n.isWholeNumber);for(var r=[],i=0;ia.length;){var c=s.pop();o.push(r.clause(n.not(c)))}for(var g=A.map(a,(function(e,t){return t=0;l--)o.push(r.clause(g.slice(l+1),n.not(s[l]),a[l]));return i&&o.push.apply(o,r.generate(!0,n.or(g))),o};n._defineFormula(n.LessThanOrEqualFormula,"lte",{generateClauses:function(e,t){return e?I(this.bits1,this.bits2,t,!1):I(this.bits2,this.bits1,t,!0)}}),n.lessThan=function(e,t){return new n.LessThanFormula(e,t)},n.LessThanFormula=function(e,t){p&&p(e,n.isBits),p&&p(t,n.isBits),p&&f(arguments.length,2,"Bits comparison function"),this.bits1=e,this.bits2=t},n._defineFormula(n.LessThanFormula,"lt",{generateClauses:function(e,t){return e?I(this.bits1,this.bits2,t,!0):I(this.bits2,this.bits1,t,!1)}}),n.greaterThan=function(e,t){return n.lessThan(t,e)},n.greaterThanOrEqual=function(e,t){return n.lessThanOrEqual(t,e)},n.equalBits=function(e,t){return new n.EqualBitsFormula(e,t)},n.EqualBitsFormula=function(e,t){p&&p(e,n.isBits),p&&p(t,n.isBits),p&&f(arguments.length,2,"Logic.equalBits"),this.bits1=e,this.bits2=t},n._defineFormula(n.EqualBitsFormula,"equalBits",{generateClauses:function(e,t){for(var r=this.bits1.bits,i=this.bits2.bits,A=Math.max(r.length,i.length),o=[],s=0;s=r.length?o.push(n.not(i[s])):s>=i.length?o.push(n.not(r[s])):o.push(n.equiv(r[s],i[s]));return t.generate(e,n.and(o))}}),n.HalfAdderSum=function(e,t){p&&p(e,u),p&&p(t,u),p&&f(arguments.length,2,"Logic.HalfAdderSum"),this.a=e,this.b=t},n._defineFormula(n.HalfAdderSum,"hsum",{generateClauses:function(e,t){return t.generate(e,n.xor(this.a,this.b))}}),n.HalfAdderCarry=function(e,t){p&&p(e,u),p&&p(t,u),p&&f(arguments.length,2,"Logic.HalfAdderCarry"),this.a=e,this.b=t},n._defineFormula(n.HalfAdderCarry,"hcarry",{generateClauses:function(e,t){return t.generate(e,n.and(this.a,this.b))}}),n.FullAdderSum=function(e,t,r){p&&p(e,u),p&&p(t,u),p&&p(r,u),p&&f(arguments.length,3,"Logic.FullAdderSum"),this.a=e,this.b=t,this.c=r},n._defineFormula(n.FullAdderSum,"fsum",{generateClauses:function(e,t){return t.generate(e,n.xor(this.a,this.b,this.c))}}),n.FullAdderCarry=function(e,t,r){p&&p(e,u),p&&p(t,u),p&&p(r,u),p&&f(arguments.length,3,"Logic.FullAdderCarry"),this.a=e,this.b=t,this.c=r},n._defineFormula(n.FullAdderCarry,"fcarry",{generateClauses:function(e,t){return t.generate(!e,n.atMostOne(this.a,this.b,this.c))}});var E=function(e){p&&p(e,l(l(u)));for(var t=A.map(e,A.clone),r=0,i=[];r=e.length;)e.push([]);e[t].push(r)},B=function(e,t){if(p&&p(e,l(u)),"number"==typeof t)p&&p(t,n.isWholeNumber);else if(p&&p(t,l(n.isWholeNumber)),e.length!==t.length)throw new Error("Formula array and weight array must be same length; they are "+e.length+" and "+t.length)};n.weightedSum=function(e,t){if(B(e,t),0===e.length)return new n.Bits([]);"number"==typeof t&&(t=A.map(e,(function(){return t})));var r=[];return A.each(e,(function(e,n){for(var i=t[n],A=0;i;)1&i&&m(r,A,e),i>>>=1,A++})),new n.Bits(E(r))},n.sum=function(){var e=A.flatten(arguments);p&&p(e,l(h));var t=[];return A.each(e,(function(e){e instanceof n.Bits?A.each(e.bits,(function(e,r){m(t,r,e)})):m(t,0,e)})),new n.Bits(E(t))},n.Solver.prototype.solve=function(e){if(void 0!==e&&!(e>=1))throw new Error("_assumpVar must be a variable number");if(this._unsat)return null;for(;this._numClausesAddedToMiniSat0))throw new Error("Assertion failure: not a positive numeric term");this._useFormulaTerm(r);var i=this.solve(r);return this._minisat.retireVar(r),i},n.Assumption=function(e){p&&p(e,u),this.formula=e},n._defineFormula(n.Assumption,"assump",{generateClauses:function(e,t){return e?t.clause(this.formula):t.clause(n.not(this.formula))}}),n.Solution=function(e,t){var r=this;r._solver=e,r._assignment=t,r._ungeneratedFormulas=A.clone(e._ungeneratedFormulas),r._formulaValueCache={},r._termifier=new n.Termifier(r._solver),r._termifier.term=function(e){return r.evaluate(e)?n.NUM_TRUE:n.NUM_FALSE},r._ignoreUnknownVariables=!1},n.Solution.prototype.ignoreUnknownVariables=function(){this._ignoreUnknownVariables=!0},n.Solution.prototype.getMap=function(){for(var e=this._solver,t=this._assignment,r={},n=1;n=s.length){C=d;if(d>=1&&d0){g&&g("trying",0);var h=null;u=w(r,i),(h=e.solveAssuming(n.not(n.or(u))))&&(s=h,a=0)}if(o&&"bottom-up"===l)for(var f=1;f0;){g&&g("improving",a);var C,d=(o?n.lessThan:n.greaterThan)(c,n.constantBits(a));if(!(C=e.solveAssuming(d)))break;e.require(d),a=(s=C).getWeightedSum(r,i)}return o&&0===a?(u||(u=w(r,i)),e.forbid(u)):e.require(n.equalBits(c,n.constantBits(a))),g&&g("finished",a),s};n.Solver.prototype.minimizeWeightedSum=function(e,t,r,n){return y(this,e,t,r,n,!0)},n.Solver.prototype.maximizeWeightedSum=function(e,t,r,n){return y(this,e,t,r,n,!1)},e.exports=n},98312:module=>{var C_MINISAT;C_MINISAT=function(){var module={},require=function(){},process={argv:["node","minisat"],on:function(){},stdout:{write:function(e){console.log("MINISAT-out:",e.replace(/\n$/,""))}},stderr:{write:function(e){console.log("MINISAT-err:",e.replace(/\n$/,""))}}},window=0,Module;Module||(Module=(void 0!==Module?Module:null)||{});var moduleOverrides={};for(var key in Module)Module.hasOwnProperty(key)&&(moduleOverrides[key]=Module[key]);var ENVIRONMENT_IS_NODE="object"==typeof process&&"function"==typeof require,ENVIRONMENT_IS_WEB="object"==typeof window,ENVIRONMENT_IS_WORKER="function"==typeof importScripts,ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;if(ENVIRONMENT_IS_NODE){Module.print||(Module.print=function(e){process.stdout.write(e+"\n")}),Module.printErr||(Module.printErr=function(e){process.stderr.write(e+"\n")});var nodeFS=require("fs"),nodePath=require("path");Module.read=function(e,t){e=nodePath.normalize(e);var r=nodeFS.readFileSync(e);return r||e==nodePath.resolve(e)||(e=path.join(__dirname,"..","src",e),r=nodeFS.readFileSync(e)),r&&!t&&(r=r.toString()),r},Module.readBinary=function(e){return Module.read(e,!0)},Module.load=function(e){globalEval(read(e))},process.argv.length>1?Module.thisProgram=process.argv[1].replace(/\\/g,"/"):Module.thisProgram="unknown-program",Module.arguments=process.argv.slice(2),void 0!==module&&(module.exports=Module),process.on("uncaughtException",(function(e){if(!(e instanceof ExitStatus))throw e}))}else if(ENVIRONMENT_IS_SHELL)Module.print||(Module.print=print),"undefined"!=typeof printErr&&(Module.printErr=printErr),"undefined"!=typeof read?Module.read=read:Module.read=function(){throw"no read() available (jsc?)"},Module.readBinary=function(e){if("function"==typeof readbuffer)return new Uint8Array(readbuffer(e));var t=read(e,"binary");return assert("object"==typeof t),t},"undefined"!=typeof scriptArgs?Module.arguments=scriptArgs:void 0!==arguments&&(Module.arguments=arguments),this.Module=Module;else{if(!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER)throw"Unknown runtime environment. Where are we?";if(Module.read=function(e){var t=new XMLHttpRequest;return t.open("GET",e,!1),t.send(null),t.responseText},void 0!==arguments&&(Module.arguments=arguments),"undefined"!=typeof console)Module.print||(Module.print=function(e){console.log(e)}),Module.printErr||(Module.printErr=function(e){console.log(e)});else{var TRY_USE_DUMP=!1;Module.print||(Module.print=TRY_USE_DUMP&&"undefined"!=typeof dump?function(e){dump(e)}:function(e){})}ENVIRONMENT_IS_WEB?window.Module=Module:Module.load=importScripts}function globalEval(e){eval.call(null,e)}for(var key in!Module.load&&Module.read&&(Module.load=function(e){globalEval(Module.read(e))}),Module.print||(Module.print=function(){}),Module.printErr||(Module.printErr=Module.print),Module.arguments||(Module.arguments=[]),Module.thisProgram||(Module.thisProgram="./this.program"),Module.print=Module.print,Module.printErr=Module.printErr,Module.preRun=[],Module.postRun=[],moduleOverrides)moduleOverrides.hasOwnProperty(key)&&(Module[key]=moduleOverrides[key]);var Runtime={setTempRet0:function(e){tempRet0=e},getTempRet0:function(){return tempRet0},stackSave:function(){return STACKTOP},stackRestore:function(e){STACKTOP=e},getNativeTypeSize:function(e){switch(e){case"i1":case"i8":return 1;case"i16":return 2;case"i32":return 4;case"i64":return 8;case"float":return 4;case"double":return 8;default:if("*"===e[e.length-1])return Runtime.QUANTUM_SIZE;if("i"===e[0]){var t=parseInt(e.substr(1));return assert(t%8==0),t/8}return 0}},getNativeFieldSize:function(e){return Math.max(Runtime.getNativeTypeSize(e),Runtime.QUANTUM_SIZE)},STACK_ALIGN:16,getAlignSize:function(e,t,r){return r||"i64"!=e&&"double"!=e?e?Math.min(t||(e?Runtime.getNativeFieldSize(e):0),Runtime.QUANTUM_SIZE):Math.min(t,8):8},dynCall:function(e,t,r){return r&&r.length?(r.splice||(r=Array.prototype.slice.call(r)),r.splice(0,0,t),Module["dynCall_"+e].apply(null,r)):Module["dynCall_"+e].call(null,t)},functionPointers:[],addFunction:function(e){for(var t=0;t0))return"";var n,i=e[0],A=e[1],o=e[2],s=e[3];if(2==e.length)n=String.fromCharCode((31&i)<<6|63&A);else if(3==e.length)n=String.fromCharCode((15&i)<<12|(63&A)<<6|63&o);else{var a=(7&i)<<18|(63&A)<<12|(63&o)<<6|63&s;n=String.fromCharCode(55296+((a-65536)/1024|0),(a-65536)%1024+56320)}return e.length=0,n},this.processJSString=function(e){e=unescape(encodeURIComponent(e));for(var t=[],r=0;r=TOTAL_MEMORY&&enlargeMemory(),t},alignMemory:function(e,t){return e=Math.ceil(e/(t||16))*(t||16)},makeBigInt:function(e,t,r){return r?+(e>>>0)+4294967296*+(t>>>0):+(e>>>0)+4294967296*+(0|t)},GLOBAL_BASE:8,QUANTUM_SIZE:4,__dummy__:0};Module.Runtime=Runtime;var __THREW__=0,ABORT=!1,EXITSTATUS=0,undef=0,tempValue,tempInt,tempBigInt,tempInt2,tempBigInt2,tempPair,tempBigIntI,tempBigIntR,tempBigIntS,tempBigIntP,tempBigIntD,tempDouble,tempFloat,tempI64,tempI64b,tempRet0,tempRet1,tempRet2,tempRet3,tempRet4,tempRet5,tempRet6,tempRet7,tempRet8,tempRet9;function assert(e,t){e||abort("Assertion failed: "+t)}var globalScope=this,cwrap,ccall;function getCFunc(ident){var func=Module["_"+ident];if(!func)try{func=eval("_"+ident)}catch(e){}return assert(func,"Cannot call unknown function "+ident+" (perhaps LLVM optimizations or closure removed it?)"),func}function setValue(e,t,r,n){switch("*"===(r=r||"i8").charAt(r.length-1)&&(r="i32"),r){case"i1":case"i8":HEAP8[e>>0]=t;break;case"i16":HEAP16[e>>1]=t;break;case"i32":HEAP32[e>>2]=t;break;case"i64":tempI64=[t>>>0,(tempDouble=t,+Math_abs(tempDouble)>=1?tempDouble>0?(0|Math_min(+Math_floor(tempDouble/4294967296),4294967295))>>>0:~~+Math_ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[e>>2]=tempI64[0],HEAP32[e+4>>2]=tempI64[1];break;case"float":HEAPF32[e>>2]=t;break;case"double":HEAPF64[e>>3]=t;break;default:abort("invalid type for setValue: "+r)}}function getValue(e,t,r){switch("*"===(t=t||"i8").charAt(t.length-1)&&(t="i32"),t){case"i1":case"i8":return HEAP8[e>>0];case"i16":return HEAP16[e>>1];case"i32":case"i64":return HEAP32[e>>2];case"float":return HEAPF32[e>>2];case"double":return HEAPF64[e>>3];default:abort("invalid type for setValue: "+t)}return null}!function(){var JSfuncs={stackSave:function(){Runtime.stackSave()},stackRestore:function(){Runtime.stackRestore()},arrayToC:function(e){var t=Runtime.stackAlloc(e.length);return writeArrayToMemory(e,t),t},stringToC:function(e){var t=0;return null!=e&&0!==e&&writeStringToMemory(e,t=Runtime.stackAlloc(1+(e.length<<2))),t}},toC={string:JSfuncs.stringToC,array:JSfuncs.arrayToC};ccall=function(e,t,r,n){var i=getCFunc(e),A=[],o=0;if(n)for(var s=0;s>2]=0;for(a=o+A;n>0]=0;return o}if("i8"===s)return e.subarray||e.slice?HEAPU8.set(e,o):HEAPU8.set(new Uint8Array(e),o),o;for(var c,g,l,u=0;u>0])>=128)n=!0;else if(0==r&&!t)break;if(i++,t&&i==t)break}t||(t=i);var A="";if(!n){for(var o;t>0;)o=String.fromCharCode.apply(String,HEAPU8.subarray(e,e+Math.min(t,1024))),A=A?A+o:o,e+=1024,t-=1024;return A}var s=new Runtime.UTF8Processor;for(i=0;i>0],A+=s.processCChar(r);return A}function UTF16ToString(e){for(var t=0,r="";;){var n=HEAP16[e+2*t>>1];if(0==n)return r;++t,r+=String.fromCharCode(n)}}function stringToUTF16(e,t){for(var r=0;r>1]=n}HEAP16[t+2*e.length>>1]=0}function UTF32ToString(e){for(var t=0,r="";;){var n=HEAP32[e+4*t>>2];if(0==n)return r;if(++t,n>=65536){var i=n-65536;r+=String.fromCharCode(55296|i>>10,56320|1023&i)}else r+=String.fromCharCode(n)}}function stringToUTF32(e,t){for(var r=0,n=0;n=55296&&i<=57343)i=65536+((1023&i)<<10)|1023&e.charCodeAt(++n);HEAP32[t+4*r>>2]=i,++r}HEAP32[t+4*r>>2]=0}function demangle(e){var t=!!Module.___cxa_demangle;if(t)try{var r=_malloc(e.length);writeStringToMemory(e.substr(1),r);var n=_malloc(4),i=Module.___cxa_demangle(r,0,0,n);if(0===getValue(n,"i32")&&i)return Pointer_stringify(i)}catch(e){}finally{r&&_free(r),n&&_free(n),i&&_free(i)}var A=3,o={v:"void",b:"bool",c:"char",s:"short",i:"int",l:"long",f:"float",d:"double",w:"wchar_t",a:"signed char",h:"unsigned char",t:"unsigned short",j:"unsigned int",m:"unsigned long",x:"long long",y:"unsigned long long",z:"..."},s=[],a=!0;var c=e;try{if("Object._main"==e||"_main"==e)return"main()";if("number"==typeof e&&(e=Pointer_stringify(e)),"_"!==e[0])return e;if("_"!==e[1])return e;if("Z"!==e[2])return e;switch(e[3]){case"n":return"operator new()";case"d":return"operator delete()"}c=function t(r,n,i){n=n||1/0;var c,g="",l=[];if("N"===e[A]){if(c=function(){A++,"K"===e[A]&&A++;for(var t=[];"E"!==e[A];)if("S"!==e[A])if("C"!==e[A]){var r=parseInt(e.substr(A)),n=r.toString().length;if(!r||!n){A--;break}var i=e.substr(A+n,r);t.push(i),s.push(i),A+=n+r}else t.push(t[t.length-1]),A+=2;else{A++;var o=e.indexOf("_",A),a=e.substring(A,o)||0;t.push(s[a]||"?"),A=o+1}return A++,t}().join("::"),0===--n)return r?[c]:c}else if(("K"===e[A]||a&&"L"===e[A])&&A++,p=parseInt(e.substr(A))){var u=p.toString().length;c=e.substr(A+u,p),A+=u+p}if(a=!1,"I"===e[A]){A++;var h=t(!0);g+=t(!0,1,!0)[0]+" "+c+"<"+h.join(", ")+">"}else g=c;e:for(;A0;){var f=e[A++];if(f in o)l.push(o[f]);else switch(f){case"P":l.push(t(!0,1,!0)[0]+"*");break;case"R":l.push(t(!0,1,!0)[0]+"&");break;case"L":A++;var p=e.indexOf("E",A)-A;l.push(e.substr(A,p)),A+=p+2;break;case"A":p=parseInt(e.substr(A));if(A+=p.toString().length,"_"!==e[A])throw"?";A++,l.push(t(!0,1,!0)[0]+" ["+p+"]");break;case"E":break e;default:g+="?"+f;break e}}return i||1!==l.length||"void"!==l[0]||(l=[]),r?(g&&l.push(g+"?"),l):g+"("+l.join(", ")+")"}()}catch(e){c+="?"}return c.indexOf("?")>=0&&!t&&Runtime.warnOnce("warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling"),c}function demangleAll(e){return e.replace(/__Z[\w\d_]+/g,(function(e){var t=demangle(e);return e===t?e:e+" ["+t+"]"}))}function jsStackTrace(){var e=new Error;if(!e.stack){try{throw new Error(0)}catch(t){e=t}if(!e.stack)return"(no stack trace available)"}return e.stack.toString()}function stackTrace(){return demangleAll(jsStackTrace())}Module.ALLOC_NORMAL=ALLOC_NORMAL,Module.ALLOC_STACK=ALLOC_STACK,Module.ALLOC_STATIC=ALLOC_STATIC,Module.ALLOC_DYNAMIC=ALLOC_DYNAMIC,Module.ALLOC_NONE=ALLOC_NONE,Module.allocate=allocate,Module.Pointer_stringify=Pointer_stringify,Module.UTF16ToString=UTF16ToString,Module.stringToUTF16=stringToUTF16,Module.UTF32ToString=UTF32ToString,Module.stringToUTF32=stringToUTF32,Module.stackTrace=stackTrace;var PAGE_SIZE=4096,HEAP,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function alignMemoryPage(e){return e+4095&-4096}var STATIC_BASE=0,STATICTOP=0,staticSealed=!1,STACK_BASE=0,STACKTOP=0,STACK_MAX=0,DYNAMIC_BASE=0,DYNAMICTOP=0;function enlargeMemory(){abort("Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value "+TOTAL_MEMORY+", (2) compile with ALLOW_MEMORY_GROWTH which adjusts the size at runtime but prevents some optimizations, or (3) set Module.TOTAL_MEMORY before the program runs.")}for(var TOTAL_STACK=Module.TOTAL_STACK||5242880,TOTAL_MEMORY=Module.TOTAL_MEMORY||67108864,FAST_MEMORY=Module.FAST_MEMORY||2097152,totalMemory=65536;totalMemory0;){var t=e.shift();if("function"!=typeof t){var r=t.func;"number"==typeof r?void 0===t.arg?Runtime.dynCall("v",r):Runtime.dynCall("vi",r,[t.arg]):r(void 0===t.arg?null:t.arg)}else t()}}HEAP8=new Int8Array(buffer),HEAP16=new Int16Array(buffer),HEAP32=new Int32Array(buffer),HEAPU8=new Uint8Array(buffer),HEAPU16=new Uint16Array(buffer),HEAPU32=new Uint32Array(buffer),HEAPF32=new Float32Array(buffer),HEAPF64=new Float64Array(buffer),HEAP32[0]=255,assert(255===HEAPU8[0]&&0===HEAPU8[3],"Typed arrays 2 must be run on a little-endian system"),Module.HEAP=HEAP,Module.buffer=buffer,Module.HEAP8=HEAP8,Module.HEAP16=HEAP16,Module.HEAP32=HEAP32,Module.HEAPU8=HEAPU8,Module.HEAPU16=HEAPU16,Module.HEAPU32=HEAPU32,Module.HEAPF32=HEAPF32,Module.HEAPF64=HEAPF64;var __ATPRERUN__=[],__ATINIT__=[],__ATMAIN__=[],__ATEXIT__=[],__ATPOSTRUN__=[],runtimeInitialized=!1,runtimeExited=!1;function preRun(){if(Module.preRun)for("function"==typeof Module.preRun&&(Module.preRun=[Module.preRun]);Module.preRun.length;)addOnPreRun(Module.preRun.shift());callRuntimeCallbacks(__ATPRERUN__)}function ensureInitRuntime(){runtimeInitialized||(runtimeInitialized=!0,callRuntimeCallbacks(__ATINIT__))}function preMain(){callRuntimeCallbacks(__ATMAIN__)}function exitRuntime(){callRuntimeCallbacks(__ATEXIT__),runtimeExited=!0}function postRun(){if(Module.postRun)for("function"==typeof Module.postRun&&(Module.postRun=[Module.postRun]);Module.postRun.length;)addOnPostRun(Module.postRun.shift());callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(e){__ATPRERUN__.unshift(e)}function addOnInit(e){__ATINIT__.unshift(e)}function addOnPreMain(e){__ATMAIN__.unshift(e)}function addOnExit(e){__ATEXIT__.unshift(e)}function addOnPostRun(e){__ATPOSTRUN__.unshift(e)}function intArrayFromString(e,t,r){var n=(new Runtime.UTF8Processor).processJSString(e);return r&&(n.length=r),t||n.push(0),n}function intArrayToString(e){for(var t=[],r=0;r255&&(n&=255),t.push(String.fromCharCode(n))}return t.join("")}function writeStringToMemory(e,t,r){for(var n=intArrayFromString(e,r),i=0;i>0]=A,i+=1}}function writeArrayToMemory(e,t){for(var r=0;r>0]=e[r]}function writeAsciiToMemory(e,t,r){for(var n=0;n>0]=e.charCodeAt(n);r||(HEAP8[t+e.length>>0]=0)}function unSign(e,t,r){return e>=0?e:t<=32?2*Math.abs(1<=n&&(t<=32||e>n)&&(e=-2*n+e),e}Module.addOnPreRun=Module.addOnPreRun=addOnPreRun,Module.addOnInit=Module.addOnInit=addOnInit,Module.addOnPreMain=Module.addOnPreMain=addOnPreMain,Module.addOnExit=Module.addOnExit=addOnExit,Module.addOnPostRun=Module.addOnPostRun=addOnPostRun,Module.intArrayFromString=intArrayFromString,Module.intArrayToString=intArrayToString,Module.writeStringToMemory=writeStringToMemory,Module.writeArrayToMemory=writeArrayToMemory,Module.writeAsciiToMemory=writeAsciiToMemory,Math.imul&&-5===Math.imul(4294967295,5)||(Math.imul=function(e,t){var r=65535&e,n=65535&t;return r*n+((e>>>16)*n+r*(t>>>16)<<16)|0}),Math.imul=Math.imul;var Math_abs=Math.abs,Math_cos=Math.cos,Math_sin=Math.sin,Math_tan=Math.tan,Math_acos=Math.acos,Math_asin=Math.asin,Math_atan=Math.atan,Math_atan2=Math.atan2,Math_exp=Math.exp,Math_log=Math.log,Math_sqrt=Math.sqrt,Math_ceil=Math.ceil,Math_floor=Math.floor,Math_pow=Math.pow,Math_imul=Math.imul,Math_fround=Math.fround,Math_min=Math.min,runDependencies=0,runDependencyWatcher=null,dependenciesFulfilled=null;function addRunDependency(e){runDependencies++,Module.monitorRunDependencies&&Module.monitorRunDependencies(runDependencies)}function removeRunDependency(e){if(runDependencies--,Module.monitorRunDependencies&&Module.monitorRunDependencies(runDependencies),0==runDependencies&&(null!==runDependencyWatcher&&(clearInterval(runDependencyWatcher),runDependencyWatcher=null),dependenciesFulfilled)){var t=dependenciesFulfilled;dependenciesFulfilled=null,t()}}Module.addRunDependency=addRunDependency,Module.removeRunDependency=removeRunDependency,Module.preloadedImages={},Module.preloadedAudios={};var memoryInitializer=null;STATIC_BASE=8,STATICTOP=STATIC_BASE+5664,__ATINIT__.push({func:function(){__GLOBAL__I_a()}},{func:function(){__GLOBAL__I_a127()}}),allocate([78,55,77,105,110,105,115,97,116,50,48,79,117,116,79,102,77,101,109,111,114,121,69,120,99,101,112,116,105,111,110,69,0,0,0,0,0,0,0,0,88,18,0,0,8,0,0,0,78,55,77,105,110,105,115,97,116,54,79,112,116,105,111,110,69,0,0,0,0,0,0,0,88,18,0,0,56,0,0,0,10,32,32,32,32,32,32,32,32,37,115,10,0,0,0,0,0,0,0,0,80,0,0,0,1,0,0,0,2,0,0,0,1,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,200,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,78,55,77,105,110,105,115,97,116,49,48,66,111,111,108,79,112,116,105,111,110,69,0,0,128,18,0,0,176,0,0,0,80,0,0,0,0,0,0,0,32,32,45,37,115,44,32,45,110,111,45,37,115,0,0,0,40,100,101,102,97,117,108,116,58,32,37,115,41,10,0,0,111,110,0,0,0,0,0,0,111,102,102,0,0,0,0,0,110,111,45,0,0,0,0,0,0,0,0,0,64,1,0,0,1,0,0,0,4,0,0,0,2,0,0,0,2,0,0,0,78,55,77,105,110,105,115,97,116,57,73,110,116,79,112,116,105,111,110,69,0,0,0,0,128,18,0,0,40,1,0,0,80,0,0,0,0,0,0,0,32,32,45,37,45,49,50,115,32,61,32,37,45,56,115,32,91,0,0,0,0,0,0,0,105,109,105,110,0,0,0,0,37,52,100,0,0,0,0,0,32,46,46,32,0,0,0,0,105,109,97,120,0,0,0,0,93,32,40,100,101,102,97,117,108,116,58,32,37,100,41,10,0,0,0,0,0,0,0,0,69,82,82,79,82,33,32,118,97,108,117,101,32,60,37,115,62,32,105,115,32,116,111,111,32,108,97,114,103,101,32,102,111,114,32,111,112,116,105,111,110,32,34,37,115,34,46,10,0,0,0,0,0,0,0,0,69,82,82,79,82,33,32,118,97,108,117,101,32,60,37,115,62,32,105,115,32,116,111,111,32,115,109,97,108,108,32,102,111,114,32,111,112,116,105,111,110,32,34,37,115,34,46,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,97,114,45,100,101,99,97,121,0,0,0,0,0,0,0,84,104,101,32,118,97,114,105,97,98,108,101,32,97,99,116,105,118,105,116,121,32,100,101,99,97,121,32,102,97,99,116,111,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,108,97,45,100,101,99,97,121,0,0,0,0,0,0,0,84,104,101,32,99,108,97,117,115,101,32,97,99,116,105,118,105,116,121,32,100,101,99,97,121,32,102,97,99,116,111,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,110,100,45,102,114,101,113,0,0,0,0,0,0,0,0,84,104,101,32,102,114,101,113,117,101,110,99,121,32,119,105,116,104,32,119,104,105,99,104,32,116,104,101,32,100,101,99,105,115,105,111,110,32,104,101,117,114,105,115,116,105,99,32,116,114,105,101,115,32,116,111,32,99,104,111,111,115,101,32,97,32,114,97,110,100,111,109,32,118,97,114,105,97,98,108,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,110,100,45,115,101,101,100,0,0,0,0,0,0,0,0,85,115,101,100,32,98,121,32,116,104,101,32,114,97,110,100,111,109,32,118,97,114,105,97,98,108,101,32,115,101,108,101,99,116,105,111,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,99,109,105,110,45,109,111,100,101,0,0,0,0,0,0,67,111,110,116,114,111,108,115,32,99,111,110,102,108,105,99,116,32,99,108,97,117,115,101,32,109,105,110,105,109,105,122,97,116,105,111,110,32,40,48,61,110,111,110,101,44,32,49,61,98,97,115,105,99,44,32,50,61,100,101,101,112,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,104,97,115,101,45,115,97,118,105,110,103,0,0,0,0,67,111,110,116,114,111,108,115,32,116,104,101,32,108,101,118,101,108,32,111,102,32,112,104,97,115,101,32,115,97,118,105,110,103,32,40,48,61,110,111,110,101,44,32,49,61,108,105,109,105,116,101,100,44,32,50,61,102,117,108,108,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,110,100,45,105,110,105,116,0,0,0,0,0,0,0,0,82,97,110,100,111,109,105,122,101,32,116,104,101,32,105,110,105,116,105,97,108,32,97,99,116,105,118,105,116,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,117,98,121,0,0,0,0,85,115,101,32,116,104,101,32,76,117,98,121,32,114,101,115,116,97,114,116,32,115,101,113,117,101,110,99,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,102,105,114,115,116,0,0,84,104,101,32,98,97,115,101,32,114,101,115,116,97,114,116,32,105,110,116,101,114,118,97,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,105,110,99,0,0,0,0,82,101,115,116,97,114,116,32,105,110,116,101,114,118,97,108,32,105,110,99,114,101,97,115,101,32,102,97,99,116,111,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,99,45,102,114,97,99,0,84,104,101,32,102,114,97,99,116,105,111,110,32,111,102,32,119,97,115,116,101,100,32,109,101,109,111,114,121,32,97,108,108,111,119,101,100,32,98,101,102,111,114,101,32,97,32,103,97,114,98,97,103,101,32,99,111,108,108,101,99,116,105,111,110,32,105,115,32,116,114,105,103,103,101,114,101,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,105,110,45,108,101,97,114,110,116,115,0,0,0,0,0,77,105,110,105,109,117,109,32,108,101,97,114,110,116,32,99,108,97,117,115,101,32,108,105,109,105,116,0,0,0,0,0,0,0,0,0,192,7,0,0,5,0,0,0,6,0,0,0,7,0,0,0,0,0,0,0,124,32,37,57,100,32,124,32,37,55,100,32,37,56,100,32,37,56,100,32,124,32,37,56,100,32,37,56,100,32,37,54,46,48,102,32,124,32,37,54,46,51,102,32,37,37,32,124,10,0,0,0,0,0,0,0,124,32,32,71,97,114,98,97,103,101,32,99,111,108,108,101,99,116,105,111,110,58,32,32,32,37,49,50,100,32,98,121,116,101,115,32,61,62,32,37,49,50,100,32,98,121,116,101,115,32,32,32,32,32,32,32,32,32,32,32,32,32,124,10,0,0,0,0,0,0,0,0,78,55,77,105,110,105,115,97,116,54,83,111,108,118,101,114,69,0,0,0,0,0,0,0,88,18,0,0,168,7,0,0,60,98,111,111,108,62,0,0,10,32,32,32,32,32,32,32,32,37,115,10,0,0,0,0,60,105,110,116,51,50,62,0,69,82,82,79,82,33,32,118,97,108,117,101,32,60,37,115,62,32,105,115,32,116,111,111,32,108,97,114,103,101,32,102,111,114,32,111,112,116,105,111,110,32,34,37,115,34,46,10,0,0,0,0,0,0,0,0,69,82,82,79,82,33,32,118,97,108,117,101,32,60,37,115,62,32,105,115,32,116,111,111,32,115,109,97,108,108,32,102,111,114,32,111,112,116,105,111,110,32,34,37,115,34,46,10,0,0,0,0,0,0,0,0,67,79,82,69,0,0,0,0,60,100,111,117,98,108,101,62,0,0,0,0,0,0,0,0,0,0,0,0,168,8,0,0,1,0,0,0,8,0,0,0,3,0,0,0,3,0,0,0,78,55,77,105,110,105,115,97,116,49,50,68,111,117,98,108,101,79,112,116,105,111,110,69,0,0,0,0,0,0,0,0,128,18,0,0,136,8,0,0,80,0,0,0,0,0,0,0,32,32,45,37,45,49,50,115,32,61,32,37,45,56,115,32,37,99,37,52,46,50,103,32,46,46,32,37,52,46,50,103,37,99,32,40,100,101,102,97,117,108,116,58,32,37,103,41,10,0,0,0,0,0,0,0,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,91,32,83,101,97,114,99,104,32,83,116,97,116,105,115,116,105,99,115,32,93,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,0,124,32,67,111,110,102,108,105,99,116,115,32,124,32,32,32,32,32,32,32,32,32,32,79,82,73,71,73,78,65,76,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,76,69,65,82,78,84,32,32,32,32,32,32,32,32,32,32,124,32,80,114,111,103,114,101,115,115,32,124,0,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,86,97,114,115,32,32,67,108,97,117,115,101,115,32,76,105,116,101,114,97,108,115,32,124,32,32,32,32,76,105,109,105,116,32,32,67,108,97,117,115,101,115,32,76,105,116,47,67,108,32,124,32,32,32,32,32,32,32,32,32,32,124,0,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,115,121,109,109,0,0,0,83,104,114,105,110,107,32,99,108,97,117,115,101,115,32,98,121,32,97,115,121,109,109,101,116,114,105,99,32,98,114,97,110,99,104,105,110,103,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,99,104,101,99,107,0,0,67,104,101,99,107,32,105,102,32,97,32,99,108,97,117,115,101,32,105,115,32,97,108,114,101,97,100,121,32,105,109,112,108,105,101,100,46,32,40,99,111,115,116,108,121,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,108,105,109,0,0,0,0,80,101,114,102,111,114,109,32,118,97,114,105,97,98,108,101,32,101,108,105,109,105,110,97,116,105,111,110,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,114,111,119,0,0,0,0,65,108,108,111,119,32,97,32,118,97,114,105,97,98,108,101,32,101,108,105,109,105,110,97,116,105,111,110,32,115,116,101,112,32,116,111,32,103,114,111,119,32,98,121,32,97,32,110,117,109,98,101,114,32,111,102,32,99,108,97,117,115,101,115,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,108,45,108,105,109,0,0,86,97,114,105,97,98,108,101,115,32,97,114,101,32,110,111,116,32,101,108,105,109,105,110,97,116,101,100,32,105,102,32,105,116,32,112,114,111,100,117,99,101,115,32,97,32,114,101,115,111,108,118,101,110,116,32,119,105,116,104,32,97,32,108,101,110,103,116,104,32,97,98,111,118,101,32,116,104,105,115,32,108,105,109,105,116,46,32,45,49,32,109,101,97,110,115,32,110,111,32,108,105,109,105,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,117,98,45,108,105,109,0,68,111,32,110,111,116,32,99,104,101,99,107,32,105,102,32,115,117,98,115,117,109,112,116,105,111,110,32,97,103,97,105,110,115,116,32,97,32,99,108,97,117,115,101,32,108,97,114,103,101,114,32,116,104,97,110,32,116,104,105,115,46,32,45,49,32,109,101,97,110,115,32,110,111,32,108,105,109,105,116,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,105,109,112,45,103,99,45,102,114,97,99,0,0,0,0,84,104,101,32,102,114,97,99,116,105,111,110,32,111,102,32,119,97,115,116,101,100,32,109,101,109,111,114,121,32,97,108,108,111,119,101,100,32,98,101,102,111,114,101,32,97,32,103,97,114,98,97,103,101,32,99,111,108,108,101,99,116,105,111,110,32,105,115,32,116,114,105,103,103,101,114,101,100,32,100,117,114,105,110,103,32,115,105,109,112,108,105,102,105,99,97,116,105,111,110,46,0,0,0,0,0,0,0,120,14,0,0,9,0,0,0,10,0,0,0,11,0,0,0,0,0,0,0,115,117,98,115,117,109,112,116,105,111,110,32,108,101,102,116,58,32,37,49,48,100,32,40,37,49,48,100,32,115,117,98,115,117,109,101,100,44,32,37,49,48,100,32,100,101,108,101,116,101,100,32,108,105,116,101,114,97,108,115,41,13,0,0,101,108,105,109,105,110,97,116,105,111,110,32,108,101,102,116,58,32,37,49,48,100,13,0,124,32,32,69,108,105,109,105,110,97,116,101,100,32,99,108,97,117,115,101,115,58,32,32,32,32,32,37,49,48,46,50,102,32,77,98,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,10,0,0,0,0,124,32,32,71,97,114,98,97,103,101,32,99,111,108,108,101,99,116,105,111,110,58,32,32,32,37,49,50,100,32,98,121,116,101,115,32,61,62,32,37,49,50,100,32,98,121,116,101,115,32,32,32,32,32,32,32,32,32,32,32,32,32,124,10,0,0,0,0,0,0,0,0,78,55,77,105,110,105,115,97,116,49,48,83,105,109,112,83,111,108,118,101,114,69,0,0,128,18,0,0,96,14,0,0,192,7,0,0,0,0,0,0,60,100,111,117,98,108,101,62,0,0,0,0,0,0,0,0,60,105,110,116,51,50,62,0,83,73,77,80,0,0,0,0,60,98,111,111,108,62,0,0,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,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,89,79,33,0,0,0,0,0,2,0,0,0,0,0,0,0,48,15,0,0,0,0,0,0,117,110,99,97,117,103,104,116,0,0,0,0,0,0,0,0,116,101,114,109,105,110,97,116,105,110,103,32,119,105,116,104,32,37,115,32,101,120,99,101,112,116,105,111,110,32,111,102,32,116,121,112,101,32,37,115,58,32,37,115,0,0,0,0,116,101,114,109,105,110,97,116,105,110,103,32,119,105,116,104,32,37,115,32,101,120,99,101,112,116,105,111,110,32,111,102,32,116,121,112,101,32,37,115,0,0,0,0,0,0,0,0,116,101,114,109,105,110,97,116,105,110,103,32,119,105,116,104,32,37,115,32,102,111,114,101,105,103,110,32,101,120,99,101,112,116,105,111,110,0,0,0,116,101,114,109,105,110,97,116,105,110,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,116,104,114,101,97,100,95,111,110,99,101,32,102,97,105,108,117,114,101,32,105,110,32,95,95,99,120,97,95,103,101,116,95,103,108,111,98,97,108,115,95,102,97,115,116,40,41,0,0,0,0,0,0,0,0,99,97,110,110,111,116,32,99,114,101,97,116,101,32,112,116,104,114,101,97,100,32,107,101,121,32,102,111,114,32,95,95,99,120,97,95,103,101,116,95,103,108,111,98,97,108,115,40,41,0,0,0,0,0,0,0,99,97,110,110,111,116,32,122,101,114,111,32,111,117,116,32,116,104,114,101,97,100,32,118,97,108,117,101,32,102,111,114,32,95,95,99,120,97,95,103,101,116,95,103,108,111,98,97,108,115,40,41,0,0,0,0,0,0,0,0,200,16,0,0,12,0,0,0,13,0,0,0,1,0,0,0,0,0,0,0,115,116,100,58,58,98,97,100,95,97,108,108,111,99,0,0,83,116,57,98,97,100,95,97,108,108,111,99,0,0,0,0,128,18,0,0,184,16,0,0,80,17,0,0,0,0,0,0,116,101,114,109,105,110,97,116,101,95,104,97,110,100,108,101,114,32,117,110,101,120,112,101,99,116,101,100,108,121,32,114,101,116,117,114,110,101,100,0,116,101,114,109,105,110,97,116,101,95,104,97,110,100,108,101,114,32,117,110,101,120,112,101,99,116,101,100,108,121,32,116,104,114,101,119,32,97,110,32,101,120,99,101,112,116,105,111,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,116,57,101,120,99,101,112,116,105,111,110,0,0,0,0,88,18,0,0,64,17,0,0,83,116,57,116,121,112,101,95,105,110,102,111,0,0,0,0,88,18,0,0,88,17,0,0,78,49,48,95,95,99,120,120,97,98,105,118,49,49,54,95,95,115,104,105,109,95,116,121,112,101,95,105,110,102,111,69,0,0,0,0,0,0,0,0,128,18,0,0,112,17,0,0,104,17,0,0,0,0,0,0,78,49,48,95,95,99,120,120,97,98,105,118,49,49,55,95,95,99,108,97,115,115,95,116,121,112,101,95,105,110,102,111,69,0,0,0,0,0,0,0,128,18,0,0,168,17,0,0,152,17,0,0,0,0,0,0,78,49,48,95,95,99,120,120,97,98,105,118,49,49,57,95,95,112,111,105,110,116,101,114,95,116,121,112,101,95,105,110,102,111,69,0,0,0,0,0,78,49,48,95,95,99,120,120,97,98,105,118,49,49,55,95,95,112,98,97,115,101,95,116,121,112,101,95,105,110,102,111,69,0,0,0,0,0,0,0,128,18,0,0,8,18,0,0,152,17,0,0,0,0,0,0,128,18,0,0,224,17,0,0,48,18,0,0,0,0,0,0,0,0,0,0,208,17,0,0,14,0,0,0,15,0,0,0,16,0,0,0,17,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,200,18,0,0,14,0,0,0,18,0,0,0,16,0,0,0,17,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,78,49,48,95,95,99,120,120,97,98,105,118,49,50,48,95,95,115,105,95,99,108,97,115,115,95,116,121,112,101,95,105,110,102,111,69,0,0,0,0,128,18,0,0,160,18,0,0,208,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,1,2,3,4,5,6,7,8,9,255,255,255,255,255,255,255,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,255,255,255,255,255,255,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,1,2,4,7,3,6,5,0,0,0,0,0,0,0,0,105,110,102,105,110,105,116,121,0,0,0,0,0,0,0,0,110,97,110,0,0,0,0,0,95,112,137,0,255,9,47,15,10,0,0,0,100,0,0,0,232,3,0,0,16,39,0,0,160,134,1,0,64,66,15,0,128,150,152,0,0,225,245,5],"i8",ALLOC_NONE,Runtime.GLOBAL_BASE);var tempDoublePtr=Runtime.alignMemory(allocate(12,"i8",ALLOC_STATIC),8);function copyTempFloat(e){HEAP8[tempDoublePtr]=HEAP8[e],HEAP8[tempDoublePtr+1]=HEAP8[e+1],HEAP8[tempDoublePtr+2]=HEAP8[e+2],HEAP8[tempDoublePtr+3]=HEAP8[e+3]}function copyTempDouble(e){HEAP8[tempDoublePtr]=HEAP8[e],HEAP8[tempDoublePtr+1]=HEAP8[e+1],HEAP8[tempDoublePtr+2]=HEAP8[e+2],HEAP8[tempDoublePtr+3]=HEAP8[e+3],HEAP8[tempDoublePtr+4]=HEAP8[e+4],HEAP8[tempDoublePtr+5]=HEAP8[e+5],HEAP8[tempDoublePtr+6]=HEAP8[e+6],HEAP8[tempDoublePtr+7]=HEAP8[e+7]}function _atexit(e,t){__ATEXIT__.unshift({func:e,arg:t})}function ___cxa_atexit(){return _atexit.apply(null,arguments)}assert(tempDoublePtr%8==0),Module._i64Subtract=_i64Subtract;var ___errno_state=0;function ___setErrNo(e){return HEAP32[___errno_state>>2]=e,e}var ERRNO_CODES={EPERM:1,ENOENT:2,ESRCH:3,EINTR:4,EIO:5,ENXIO:6,E2BIG:7,ENOEXEC:8,EBADF:9,ECHILD:10,EAGAIN:11,EWOULDBLOCK:11,ENOMEM:12,EACCES:13,EFAULT:14,ENOTBLK:15,EBUSY:16,EEXIST:17,EXDEV:18,ENODEV:19,ENOTDIR:20,EISDIR:21,EINVAL:22,ENFILE:23,EMFILE:24,ENOTTY:25,ETXTBSY:26,EFBIG:27,ENOSPC:28,ESPIPE:29,EROFS:30,EMLINK:31,EPIPE:32,EDOM:33,ERANGE:34,ENOMSG:42,EIDRM:43,ECHRNG:44,EL2NSYNC:45,EL3HLT:46,EL3RST:47,ELNRNG:48,EUNATCH:49,ENOCSI:50,EL2HLT:51,EDEADLK:35,ENOLCK:37,EBADE:52,EBADR:53,EXFULL:54,ENOANO:55,EBADRQC:56,EBADSLT:57,EDEADLOCK:35,EBFONT:59,ENOSTR:60,ENODATA:61,ETIME:62,ENOSR:63,ENONET:64,ENOPKG:65,EREMOTE:66,ENOLINK:67,EADV:68,ESRMNT:69,ECOMM:70,EPROTO:71,EMULTIHOP:72,EDOTDOT:73,EBADMSG:74,ENOTUNIQ:76,EBADFD:77,EREMCHG:78,ELIBACC:79,ELIBBAD:80,ELIBSCN:81,ELIBMAX:82,ELIBEXEC:83,ENOSYS:38,ENOTEMPTY:39,ENAMETOOLONG:36,ELOOP:40,EOPNOTSUPP:95,EPFNOSUPPORT:96,ECONNRESET:104,ENOBUFS:105,EAFNOSUPPORT:97,EPROTOTYPE:91,ENOTSOCK:88,ENOPROTOOPT:92,ESHUTDOWN:108,ECONNREFUSED:111,EADDRINUSE:98,ECONNABORTED:103,ENETUNREACH:101,ENETDOWN:100,ETIMEDOUT:110,EHOSTDOWN:112,EHOSTUNREACH:113,EINPROGRESS:115,EALREADY:114,EDESTADDRREQ:89,EMSGSIZE:90,EPROTONOSUPPORT:93,ESOCKTNOSUPPORT:94,EADDRNOTAVAIL:99,ENETRESET:102,EISCONN:106,ENOTCONN:107,ETOOMANYREFS:109,EUSERS:87,EDQUOT:122,ESTALE:116,ENOTSUP:95,ENOMEDIUM:123,EILSEQ:84,EOVERFLOW:75,ECANCELED:125,ENOTRECOVERABLE:131,EOWNERDEAD:130,ESTRPIPE:86};function _sysconf(e){switch(e){case 30:return PAGE_SIZE;case 132:case 133:case 12:case 137:case 138:case 15:case 235:case 16:case 17:case 18:case 19:case 20:case 149:case 13:case 10:case 236:case 153:case 9:case 21:case 22:case 159:case 154:case 14:case 77:case 78:case 139:case 80:case 81:case 79:case 82:case 68:case 67:case 164:case 11:case 29:case 47:case 48:case 95:case 52:case 51:case 46:return 200809;case 27:case 246:case 127:case 128:case 23:case 24:case 160:case 161:case 181:case 182:case 242:case 183:case 184:case 243:case 244:case 245:case 165:case 178:case 179:case 49:case 50:case 168:case 169:case 175:case 170:case 171:case 172:case 97:case 76:case 32:case 173:case 35:return-1;case 176:case 177:case 7:case 155:case 8:case 157:case 125:case 126:case 92:case 93:case 129:case 130:case 131:case 94:case 91:return 1;case 74:case 60:case 69:case 70:case 4:return 1024;case 31:case 42:case 72:return 32;case 87:case 26:case 33:return 2147483647;case 34:case 1:return 47839;case 38:case 36:return 99;case 43:case 37:return 2048;case 0:return 2097152;case 3:return 65536;case 28:return 32768;case 44:return 32767;case 75:return 16384;case 39:return 1e3;case 89:return 700;case 71:return 256;case 40:return 255;case 2:return 100;case 180:return 64;case 25:return 20;case 5:return 16;case 6:return 6;case 73:return 4;case 84:return"object"==typeof navigator&&navigator.hardwareConcurrency||1}return ___setErrNo(ERRNO_CODES.EINVAL),-1}function __ZSt18uncaught_exceptionv(){return!!__ZSt18uncaught_exceptionv.uncaught_exception}var EXCEPTIONS={last:0,caught:[],infos:{},deAdjust:function(e){if(!e||EXCEPTIONS.infos[e])return e;for(var t in EXCEPTIONS.infos){if(EXCEPTIONS.infos[t].adjusted===e)return t}return e},addRef:function(e){e&&EXCEPTIONS.infos[e].refcount++},decRef:function(e){if(e){var t=EXCEPTIONS.infos[e];assert(t.refcount>0),t.refcount--,0===t.refcount&&(t.destructor&&Runtime.dynCall("vi",t.destructor,[e]),delete EXCEPTIONS.infos[e],___cxa_free_exception(e))}},clearRef:function(e){e&&(EXCEPTIONS.infos[e].refcount=0)}};function ___resumeException(e){throw EXCEPTIONS.last||(EXCEPTIONS.last=e),EXCEPTIONS.clearRef(EXCEPTIONS.deAdjust(e)),e+" - Exception catching is disabled, this exception cannot be caught. Compile with -s DISABLE_EXCEPTION_CATCHING=0 or DISABLE_EXCEPTION_CATCHING=2 to catch."}function ___cxa_find_matching_catch(){var e=EXCEPTIONS.last;if(!e)return 0|(asm.setTempRet0(0),0);var t=EXCEPTIONS.infos[e],r=t.type;if(!r)return 0|(asm.setTempRet0(0),e);var n=Array.prototype.slice.call(arguments);Module.___cxa_is_pointer_type(r);___cxa_find_matching_catch.buffer||(___cxa_find_matching_catch.buffer=_malloc(4)),HEAP32[___cxa_find_matching_catch.buffer>>2]=e,e=___cxa_find_matching_catch.buffer;for(var i=0;i>2],t.adjusted=e,0|(asm.setTempRet0(n[i]),e);return e=HEAP32[e>>2],0|(asm.setTempRet0(r),e)}function ___cxa_throw(e,t,r){throw EXCEPTIONS.infos[e]={ptr:e,adjusted:e,type:t,destructor:r,refcount:0},EXCEPTIONS.last=e,"uncaught_exception"in __ZSt18uncaught_exceptionv?__ZSt18uncaught_exceptionv.uncaught_exception++:__ZSt18uncaught_exceptionv.uncaught_exception=1,e+" - Exception catching is disabled, this exception cannot be caught. Compile with -s DISABLE_EXCEPTION_CATCHING=0 or DISABLE_EXCEPTION_CATCHING=2 to catch."}function _abort(){Module.abort()}Module._memset=_memset,Module._bitshift64Shl=_bitshift64Shl;var FS=void 0,SOCKFS=void 0;function _send(e,t,r,n){return SOCKFS.getSocket(e)?_write(e,t,r):(___setErrNo(ERRNO_CODES.EBADF),-1)}function _pwrite(e,t,r,n){var i=FS.getStream(e);if(!i)return ___setErrNo(ERRNO_CODES.EBADF),-1;try{var A=HEAP8;return FS.write(i,A,t,r,n)}catch(e){return FS.handleFSError(e),-1}}function _write(e,t,r){var n=FS.getStream(e);if(!n)return ___setErrNo(ERRNO_CODES.EBADF),-1;try{var i=HEAP8;return FS.write(n,i,t,r)}catch(e){return FS.handleFSError(e),-1}}function _fileno(e){return(e=FS.getStreamFromPtr(e))?e.fd:-1}function _fwrite(e,t,r,n){var i=r*t;if(0==i)return 0;var A=_write(_fileno(n),e,i);if(-1==A){var o=FS.getStreamFromPtr(n);return o&&(o.error=!0),0}return A/t|0}function __reallyNegative(e){return e<0||0===e&&1/e==-1/0}function __formatString(e,t){var r=e,n=0;function i(e){var r;return"double"===e?(HEAP32[tempDoublePtr>>2]=HEAP32[t+n>>2],HEAP32[tempDoublePtr+4>>2]=HEAP32[t+(n+4)>>2],r=+HEAPF64[tempDoublePtr>>3]):"i64"==e?r=[HEAP32[t+n>>2],HEAP32[t+(n+4)>>2]]:(e="i32",r=HEAP32[t+n>>2]),n+=Runtime.getNativeFieldSize(e),r}for(var A,o,s=[];;){var a=r;if(0===(A=HEAP8[r>>0]))break;if(o=HEAP8[r+1>>0],37==A){var c=!1,g=!1,l=!1,u=!1,h=!1;e:for(;;){switch(o){case 43:c=!0;break;case 45:g=!0;break;case 35:l=!0;break;case 48:if(u)break e;u=!0;break;case 32:h=!0;break;default:break e}r++,o=HEAP8[r+1>>0]}var f=0;if(42==o)f=i("i32"),r++,o=HEAP8[r+1>>0];else for(;o>=48&&o<=57;)f=10*f+(o-48),r++,o=HEAP8[r+1>>0];var p,C=!1,d=-1;if(46==o){if(d=0,C=!0,r++,42==(o=HEAP8[r+1>>0]))d=i("i32"),r++;else for(;;){var I=HEAP8[r+1>>0];if(I<48||I>57)break;d=10*d+(I-48),r++}o=HEAP8[r+1>>0]}switch(d<0&&(d=6,C=!1),String.fromCharCode(o)){case"h":104==HEAP8[r+2>>0]?(r++,p=1):p=2;break;case"l":108==HEAP8[r+2>>0]?(r++,p=8):p=4;break;case"L":case"q":case"j":p=8;break;case"z":case"t":case"I":p=4;break;default:p=null}switch(p&&r++,o=HEAP8[r+1>>0],String.fromCharCode(o)){case"d":case"i":case"u":case"o":case"x":case"X":case"p":var E=100==o||105==o,m=D=i("i"+8*(p=p||4));if(8==p&&(D=Runtime.makeBigInt(D[0],D[1],117==o)),p<=4)D=(E?reSign:unSign)(D&Math.pow(256,p)-1,8*p);var B=Math.abs(D),w="";if(100==o||105==o)b=8==p&&i64Math?i64Math.stringify(m[0],m[1],null):reSign(D,8*p,1).toString(10);else if(117==o)b=8==p&&i64Math?i64Math.stringify(m[0],m[1],!0):unSign(D,8*p,1).toString(10),D=Math.abs(D);else if(111==o)b=(l?"0":"")+B.toString(8);else if(120==o||88==o){if(w=l&&0!=D?"0x":"",8==p&&i64Math)if(m[1]){b=(m[1]>>>0).toString(16);for(var y=(m[0]>>>0).toString(16);y.length<8;)y="0"+y;b+=y}else b=(m[0]>>>0).toString(16);else if(D<0){D=-D,b=(B-1).toString(16);for(var Q=[],v=0;v=0&&(c?w="+"+w:h&&(w=" "+w)),"-"==b.charAt(0)&&(w="-"+w,b=b.substr(1));w.length+b.lengthM&&M>=-4?(o=(103==o?"f":"F").charCodeAt(0),d-=M+1):(o=(103==o?"e":"E").charCodeAt(0),d--),k=Math.min(d,20)}101==o||69==o?(b=D.toExponential(k),/[eE][-+]\d$/.test(b)&&(b=b.slice(0,-1)+"0"+b.slice(-1))):102!=o&&70!=o||(b=D.toFixed(k),0===D&&__reallyNegative(D)&&(b="-"+b));var F=b.split("e");if(S&&!l)for(;F[0].length>1&&-1!=F[0].indexOf(".")&&("0"==F[0].slice(-1)||"."==F[0].slice(-1));)F[0]=F[0].slice(0,-1);else for(l&&-1==b.indexOf(".")&&(F[0]+=".");d>k++;)F[0]+="0";b=F[0]+(F.length>1?"e"+F[1]:""),69==o&&(b=b.toUpperCase()),D>=0&&(c?b="+"+b:h&&(b=" "+b))}else b=(D<0?"-":"")+"inf",u=!1;for(;b.length>0]);else s=s.concat(intArrayFromString("(null)".substr(0,R),!0));if(g)for(;R0;)s.push(32);g||s.push(i("i8"));break;case"n":var K=i("i32*");HEAP32[K>>2]=s.length;break;case"%":s.push(A);break;default:for(v=a;v>0])}r+=2}else s.push(A),r+=1}return s}function _fprintf(e,t,r){var n=__formatString(t,r),i=Runtime.stackSave(),A=_fwrite(allocate(n,"i8",ALLOC_STACK),1,n.length,e);return Runtime.stackRestore(i),A}function _printf(e,t){var r=__formatString(e,t),n=intArrayToString(r);return"\n"===n[n.length-1]&&(n=n.substr(0,n.length-1)),Module.print(n),r.length}function _pthread_once(e,t){_pthread_once.seen||(_pthread_once.seen={}),e in _pthread_once.seen||(Runtime.dynCall("v",t),_pthread_once.seen[e]=1)}function _fputc(e,t){var r=unSign(255&e);if(HEAP8[_fputc.ret>>0]=r,-1==_write(_fileno(t),_fputc.ret,1)){var n=FS.getStreamFromPtr(t);return n&&(n.error=!0),-1}return r}Module._strlen=_strlen;var PTHREAD_SPECIFIC={};function _pthread_getspecific(e){return PTHREAD_SPECIFIC[e]||0}function _fputs(e,t){return _write(_fileno(t),e,_strlen(e))}Module._i64Add=_i64Add;var _stdout=allocate(1,"i32*",ALLOC_STATIC);function _puts(e){var t=Pointer_stringify(e),r=t.substr(0);return"\n"===r[r.length-1]&&(r=r.substr(0,r.length-1)),Module.print(r),t.length}function _pthread_setspecific(e,t){return e in PTHREAD_SPECIFIC?(PTHREAD_SPECIFIC[e]=t,0):ERRNO_CODES.EINVAL}function __exit(e){Module.exit(e)}function _exit(e){__exit(e)}var _UItoD=!0;function _malloc(e){return Runtime.dynamicAlloc(e+8)+8&4294967288}function ___cxa_allocate_exception(e){return _malloc(e)}function _fmod(e,t){return e%t}function _fmodl(){return _fmod.apply(null,arguments)}function ___cxa_pure_virtual(){throw ABORT=!0,"Pure virtual function called!"}function _time(e){var t=Date.now()/1e3|0;return e&&(HEAP32[e>>2]=t),t}Module._malloc=_malloc,Module._bitshift64Lshr=_bitshift64Lshr;var PTHREAD_SPECIFIC_NEXT_KEY=1;function _pthread_key_create(e,t){return 0==e?ERRNO_CODES.EINVAL:(HEAP32[e>>2]=PTHREAD_SPECIFIC_NEXT_KEY,PTHREAD_SPECIFIC[PTHREAD_SPECIFIC_NEXT_KEY]=0,PTHREAD_SPECIFIC_NEXT_KEY++,0)}function ___cxa_guard_acquire(e){return HEAP8[e>>0]?0:(HEAP8[e>>0]=1,1)}function ___cxa_guard_release(){}function _vfprintf(e,t,r){return _fprintf(e,t,HEAP32[r>>2])}function ___cxa_begin_catch(e){return __ZSt18uncaught_exceptionv.uncaught_exception--,EXCEPTIONS.caught.push(e),EXCEPTIONS.addRef(EXCEPTIONS.deAdjust(e)),e}function _emscripten_memcpy_big(e,t,r){return HEAPU8.set(HEAPU8.subarray(t,t+r),e),e}Module._memcpy=_memcpy;var _llvm_pow_f64=Math_pow;function _sbrk(e){var t=_sbrk;t.called||(DYNAMICTOP=alignMemoryPage(DYNAMICTOP),t.called=!0,assert(Runtime.dynamicAlloc),t.alloc=Runtime.dynamicAlloc,Runtime.dynamicAlloc=function(){abort("cannot dynamically allocate, sbrk now has control")});var r=DYNAMICTOP;return 0!=e&&t.alloc(e),r}var _fabs=Math_abs;function ___errno_location(){return ___errno_state}var _BItoD=!0;function _copysign(e,t){return __reallyNegative(e)===__reallyNegative(t)?e:-e}function _copysignl(){return _copysign.apply(null,arguments)}var ___dso_handle=allocate(1,"i32*",ALLOC_STATIC),_stderr=allocate(1,"i32*",ALLOC_STATIC);___errno_state=Runtime.staticAlloc(4),HEAP32[___errno_state>>2]=0,_fputc.ret=allocate([0],"i8",ALLOC_STATIC),STACK_BASE=STACKTOP=Runtime.alignMemory(STATICTOP),staticSealed=!0,STACK_MAX=STACK_BASE+TOTAL_STACK,DYNAMIC_BASE=DYNAMICTOP=Runtime.alignMemory(STACK_MAX),assert(DYNAMIC_BASE>0]=n[e>>0];n[h+1>>0]=n[e+1>>0];n[h+2>>0]=n[e+2>>0];n[h+3>>0]=n[e+3>>0]}function ut(e){e=e|0;n[h>>0]=n[e>>0];n[h+1>>0]=n[e+1>>0];n[h+2>>0]=n[e+2>>0];n[h+3>>0]=n[e+3>>0];n[h+4>>0]=n[e+4>>0];n[h+5>>0]=n[e+5>>0];n[h+6>>0]=n[e+6>>0];n[h+7>>0]=n[e+7>>0]}function ht(e){e=e|0;K=e}function ft(){return K|0}function pt(e){e=e|0;Me(e|0)|0;pn()}function Ct(e){e=e|0;return}function dt(e,t,r,i,o){e=e|0;t=t|0;r=r|0;i=i|0;o=o|0;var s=0;s=l;A[e>>2]=112;A[e+4>>2]=t;A[e+8>>2]=r;A[e+12>>2]=i;A[e+16>>2]=o;if((n[144]|0)==0?(Be(144)|0)!=0:0){A[32]=0;A[33]=0;A[34]=0;He(19,128,d|0)|0;be(144)}o=A[33]|0;if((o|0)==(A[34]|0)){i=(o>>1)+2&-2;i=(i|0)<2?2:i;if((i|0)>(2147483647-o|0)){t=Qe(1)|0;ze(t|0,48,0)}r=A[32]|0;t=i+o|0;A[34]=t;t=jn(r,t<<2)|0;A[32]=t;if((t|0)==0?(A[(Ge()|0)>>2]|0)==12:0){t=Qe(1)|0;ze(t|0,48,0)}o=A[33]|0}A[33]=o+1;o=(A[32]|0)+(o<<2)|0;if(!o){l=s;return}A[o>>2]=e;l=s;return}function It(e){e=e|0;var t=0;t=l;gn(e);l=t;return}function Et(e){e=e|0;var t=0,r=0;t=l;r=A[e>>2]|0;if(!r){l=t;return}A[e+4>>2]=0;On(r);A[e>>2]=0;A[e+8>>2]=0;l=t;return}function mt(e){e=e|0;var t=0;t=l;gn(e);l=t;return}function Bt(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0;r=l;if((n[t>>0]|0)!=45){c=0;l=r;return c|0}i=t+1|0;o=110;a=i;c=0;while(1){s=c+1|0;if((n[a>>0]|0)!=o<<24>>24){o=1;break}a=t+(c+2)|0;if((s|0)==3){o=0;i=a;break}else{o=n[264+s>>0]|0;c=s}}if($n(i,A[e+4>>2]|0)|0){c=0;l=r;return c|0}n[e+20>>0]=o;c=1;l=r;return c|0}function wt(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0;s=l;l=l+16|0;r=s;i=A[I>>2]|0;o=e+4|0;a=A[o>>2]|0;A[r>>2]=a;A[r+4>>2]=a;et(i|0,216,r|0)|0;a=0;while(1){c=a>>>0<(32-((si(A[o>>2]|0)|0)<<1)|0)>>>0;qe(32,i|0)|0;if(c)a=a+1|0;else break}A[r>>2]=(n[e+20>>0]|0)!=0?248:256;et(i|0,232,r|0)|0;if(!t){l=s;return}A[r>>2]=A[e+8>>2];et(i|0,88,r|0)|0;qe(10,i|0)|0;l=s;return}function yt(e){e=e|0;var t=0;t=l;gn(e);l=t;return}function Qt(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0;r=l;l=l+16|0;s=r;o=r+8|0;if((n[t>>0]|0)!=45){h=0;l=r;return h|0}g=t+1|0;i=e+4|0;a=A[i>>2]|0;c=n[a>>0]|0;e:do{if(c<<24>>24){u=0;while(1){h=u;u=u+1|0;if((n[g>>0]|0)!=c<<24>>24){e=0;break}c=n[a+u>>0]|0;g=t+(h+2)|0;if(!(c<<24>>24))break e}l=r;return e|0}}while(0);if((n[g>>0]|0)!=61){h=0;l=r;return h|0}t=g+1|0;a=Zn(t,o,10)|0;if(!(A[o>>2]|0)){h=0;l=r;return h|0}if((a|0)>(A[e+24>>2]|0)){h=A[I>>2]|0;u=A[i>>2]|0;A[s>>2]=t;A[s+4>>2]=u;et(h|0,416,s|0)|0;nt(1)}if((a|0)<(A[e+20>>2]|0)){h=A[I>>2]|0;u=A[i>>2]|0;A[s>>2]=t;A[s+4>>2]=u;et(h|0,472,s|0)|0;nt(1)}A[e+28>>2]=a;h=1;l=r;return h|0}function vt(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0;r=l;l=l+16|0;n=r;i=A[I>>2]|0;o=A[e+16>>2]|0;A[n>>2]=A[e+4>>2];A[n+4>>2]=o;et(i|0,336,n|0)|0;o=A[e+20>>2]|0;if((o|0)==-2147483648)Ze(360,4,1,i|0)|0;else{A[n>>2]=o;et(i|0,368,n|0)|0}Ze(376,4,1,i|0)|0;o=A[e+24>>2]|0;if((o|0)==2147483647)Ze(384,4,1,i|0)|0;else{A[n>>2]=o;et(i|0,368,n|0)|0}A[n>>2]=A[e+28>>2];et(i|0,392,n|0)|0;if(!t){l=r;return}A[n>>2]=A[e+8>>2];et(i|0,88,n|0)|0;qe(10,i|0)|0;l=r;return}function bt(e){e=e|0;var t=0,r=0,i=0,o=0,s=0;o=l;A[e>>2]=1816;i=e+4|0;r=e+32|0;s=e+48|0;A[i+0>>2]=0;A[i+4>>2]=0;A[i+8>>2]=0;A[i+12>>2]=0;A[i+16>>2]=0;A[i+20>>2]=0;A[r+0>>2]=0;A[r+4>>2]=0;A[r+8>>2]=0;A[r+12>>2]=0;g[s>>3]=+g[75];g[e+56>>3]=+g[89];g[e+64>>3]=+g[103];g[e+72>>3]=+g[123];n[e+80>>0]=n[1364]|0;A[e+84>>2]=A[269];A[e+88>>2]=A[297];n[e+92>>0]=0;n[e+93>>0]=n[1292]|0;g[e+96>>3]=+g[204];A[e+104>>2]=A[439];A[e+108>>2]=A[359];g[e+112>>3]=+g[191];g[e+120>>3]=.3333333333333333;g[e+128>>3]=1.1;A[e+136>>2]=100;g[e+144>>3]=1.5;s=e+316|0;A[e+332>>2]=0;A[e+336>>2]=0;A[e+340>>2]=0;A[e+348>>2]=0;A[e+352>>2]=0;A[e+356>>2]=0;A[e+364>>2]=0;A[e+368>>2]=0;A[e+372>>2]=0;A[e+380>>2]=0;A[e+384>>2]=0;A[e+388>>2]=0;A[e+396>>2]=0;A[e+400>>2]=0;A[e+404>>2]=0;r=e+544|0;A[e+412>>2]=0;A[e+416>>2]=0;A[e+420>>2]=0;A[e+428>>2]=0;A[e+432>>2]=0;A[e+436>>2]=0;A[e+444>>2]=0;A[e+448>>2]=0;A[e+452>>2]=0;Ai(e+152|0,0,176)|0;A[e+456>>2]=r;i=e+460|0;A[i+0>>2]=0;A[i+4>>2]=0;A[i+8>>2]=0;A[i+12>>2]=0;A[i+16>>2]=0;A[i+20>>2]=0;A[e+488>>2]=s;n[e+492>>0]=1;g[e+496>>3]=1.0;g[e+504>>3]=1.0;A[e+512>>2]=0;A[e+516>>2]=-1;s=e+520|0;i=e+536|0;A[s+0>>2]=0;A[s+4>>2]=0;A[s+8>>2]=0;A[s+12>>2]=0;n[i>>0]=1;i=e+540|0;A[i+0>>2]=0;A[i+4>>2]=0;A[i+8>>2]=0;A[i+12>>2]=0;A[i+16>>2]=0;er(r,1048576);n[e+560>>0]=0;r=e+604|0;i=e+664|0;s=e+564|0;t=s+36|0;do{A[s>>2]=0;s=s+4|0}while((s|0)<(t|0));s=r+0|0;t=s+36|0;do{A[s>>2]=0;s=s+4|0}while((s|0)<(t|0));s=e+680|0;A[i+0>>2]=-1;A[i+4>>2]=-1;A[i+8>>2]=-1;A[i+12>>2]=-1;n[s>>0]=0;l=o;return}function Dt(e){e=e|0;var t=0;t=l;St(e);gn(e);l=t;return}function St(e){e=e|0;var t=0,r=0,n=0;t=l;A[e>>2]=1816;r=e+628|0;n=A[r>>2]|0;if(n){A[e+632>>2]=0;On(n);A[r>>2]=0;A[e+636>>2]=0}r=e+616|0;n=A[r>>2]|0;if(n){A[e+620>>2]=0;On(n);A[r>>2]=0;A[e+624>>2]=0}r=e+604|0;n=A[r>>2]|0;if(n){A[e+608>>2]=0;On(n);A[r>>2]=0;A[e+612>>2]=0}r=e+588|0;n=A[r>>2]|0;if(n){A[e+592>>2]=0;On(n);A[r>>2]=0;A[e+596>>2]=0}r=e+576|0;n=A[r>>2]|0;if(n){A[e+580>>2]=0;On(n);A[r>>2]=0;A[e+584>>2]=0}r=e+564|0;n=A[r>>2]|0;if(n){A[e+568>>2]=0;On(n);A[r>>2]=0;A[e+572>>2]=0}r=A[e+544>>2]|0;if(r)On(r);r=e+472|0;n=A[r>>2]|0;if(n){A[e+476>>2]=0;On(n);A[r>>2]=0;A[e+480>>2]=0}r=e+460|0;n=A[r>>2]|0;if(n){A[e+464>>2]=0;On(n);A[r>>2]=0;A[e+468>>2]=0}tr(e+412|0);r=e+396|0;n=A[r>>2]|0;if(n){A[e+400>>2]=0;On(n);A[r>>2]=0;A[e+404>>2]=0}r=e+380|0;n=A[r>>2]|0;if(n){A[e+384>>2]=0;On(n);A[r>>2]=0;A[e+388>>2]=0}n=e+364|0;r=A[n>>2]|0;if(r){A[e+368>>2]=0;On(r);A[n>>2]=0;A[e+372>>2]=0}r=e+348|0;n=A[r>>2]|0;if(n){A[e+352>>2]=0;On(n);A[r>>2]=0;A[e+356>>2]=0}r=e+332|0;n=A[r>>2]|0;if(n){A[e+336>>2]=0;On(n);A[r>>2]=0;A[e+340>>2]=0}r=e+316|0;n=A[r>>2]|0;if(n){A[e+320>>2]=0;On(n);A[r>>2]=0;A[e+324>>2]=0}r=e+304|0;n=A[r>>2]|0;if(n){A[e+308>>2]=0;On(n);A[r>>2]=0;A[e+312>>2]=0}r=e+292|0;n=A[r>>2]|0;if(n){A[e+296>>2]=0;On(n);A[r>>2]=0;A[e+300>>2]=0}r=e+280|0;n=A[r>>2]|0;if(n){A[e+284>>2]=0;On(n);A[r>>2]=0;A[e+288>>2]=0}r=e+268|0;n=A[r>>2]|0;if(n){A[e+272>>2]=0;On(n);A[r>>2]=0;A[e+276>>2]=0}r=e+256|0;n=A[r>>2]|0;if(n){A[e+260>>2]=0;On(n);A[r>>2]=0;A[e+264>>2]=0}r=e+32|0;n=A[r>>2]|0;if(n){A[e+36>>2]=0;On(n);A[r>>2]=0;A[e+40>>2]=0}r=e+16|0;n=A[r>>2]|0;if(n){A[e+20>>2]=0;On(n);A[r>>2]=0;A[e+24>>2]=0}n=e+4|0;r=A[n>>2]|0;if(!r){l=t;return}A[e+8>>2]=0;On(r);A[n>>2]=0;A[e+12>>2]=0;l=t;return}function kt(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,o=0,s=0,a=0,c=0.0,u=0,h=0,f=0,p=0,C=0,d=0;i=l;l=l+16|0;a=i+4|0;s=i;o=e+580|0;u=A[o>>2]|0;if((u|0)>0){f=u+-1|0;p=A[(A[e+576>>2]|0)+(f<<2)>>2]|0;A[o>>2]=f;o=p}else{p=e+540|0;o=A[p>>2]|0;A[p>>2]=o+1}u=e+412|0;p=o<<1;A[a>>2]=p;rr(u,a);A[s>>2]=p|1;rr(u,s);a=e+332|0;u=n[544]|0;s=o+1|0;nr(a,s);n[(A[a>>2]|0)+o>>0]=u;a=e+396|0;u=e+400|0;if((A[u>>2]|0)<(s|0)){f=e+404|0;p=A[f>>2]|0;if((p|0)<(s|0)){C=o+2-p&-2;h=(p>>1)+2&-2;h=(C|0)>(h|0)?C:h;if((h|0)>(2147483647-p|0)){C=Qe(1)|0;ze(C|0,48,0)}d=A[a>>2]|0;C=h+p|0;A[f>>2]=C;C=jn(d,C<<3)|0;A[a>>2]=C;if((C|0)==0?(A[(Ge()|0)>>2]|0)==12:0){d=Qe(1)|0;ze(d|0,48,0)}}f=A[u>>2]|0;if((f|0)<(s|0))do{h=(A[a>>2]|0)+(f<<3)|0;if(h){d=h;A[d>>2]=0;A[d+4>>2]=0}f=f+1|0}while((f|0)!=(s|0));A[u>>2]=s}u=(A[a>>2]|0)+(o<<3)|0;A[u>>2]=-1;A[u+4>>2]=0;u=e+316|0;if(!(n[e+93>>0]|0))c=0.0;else{d=e+72|0;c=+g[d>>3]*1389796.0;c=c-+(~~(c/2147483647.0)|0)*2147483647.0;g[d>>3]=c;c=c/2147483647.0*1.0e-5}a=e+320|0;if((A[a>>2]|0)<(s|0)){h=e+324|0;f=A[h>>2]|0;if((f|0)<(s|0)){d=o+2-f&-2;p=(f>>1)+2&-2;p=(d|0)>(p|0)?d:p;if((p|0)>(2147483647-f|0)){d=Qe(1)|0;ze(d|0,48,0)}C=A[u>>2]|0;d=p+f|0;A[h>>2]=d;d=jn(C,d<<3)|0;A[u>>2]=d;if((d|0)==0?(A[(Ge()|0)>>2]|0)==12:0){d=Qe(1)|0;ze(d|0,48,0)}}p=A[a>>2]|0;if((p|0)<(s|0)){h=A[u>>2]|0;do{f=h+(p<<3)|0;if(f)g[f>>3]=0.0;p=p+1|0}while((p|0)!=(s|0))}A[a>>2]=s}g[(A[u>>2]|0)+(o<<3)>>3]=c;ir(e+588|0,o,0);ir(e+348|0,o,1);a=e+364|0;t=n[t>>0]|0;nr(a,s);n[(A[a>>2]|0)+o>>0]=t;a=e+380|0;t=e+384|0;if((A[t>>2]|0)<(s|0)){u=e+388|0;f=A[u>>2]|0;if((f|0)<(s|0)){d=o+2-f&-2;h=(f>>1)+2&-2;h=(d|0)>(h|0)?d:h;if((h|0)>(2147483647-f|0)){d=Qe(1)|0;ze(d|0,48,0)}C=A[a>>2]|0;d=h+f|0;A[u>>2]=d;d=jn(C,d)|0;A[a>>2]=d;if((d|0)==0?(A[(Ge()|0)>>2]|0)==12:0){d=Qe(1)|0;ze(d|0,48,0)}}u=A[t>>2]|0;if((u|0)<(s|0))do{h=(A[a>>2]|0)+u|0;if(h)n[h>>0]=0;u=u+1|0}while((u|0)!=(s|0));A[t>>2]=s}t=e+288|0;a=A[t>>2]|0;if((a|0)<(s|0)){d=o+2-a&-2;s=(a>>1)+2&-2;s=(d|0)>(s|0)?d:s;if((s|0)>(2147483647-a|0)){d=Qe(1)|0;ze(d|0,48,0)}C=e+280|0;p=A[C>>2]|0;d=s+a|0;A[t>>2]=d;d=jn(p,d<<2)|0;A[C>>2]=d;if((d|0)==0?(A[(Ge()|0)>>2]|0)==12:0){d=Qe(1)|0;ze(d|0,48,0)}}s=e+380|0;t=(A[s>>2]|0)+o|0;a=(n[t>>0]|0)==0;if(r){if(a){d=e+200|0;C=d;C=ai(A[C>>2]|0,A[C+4>>2]|0,1,0)|0;A[d>>2]=C;A[d+4>>2]=K}}else if(!a){d=e+200|0;C=d;C=ai(A[C>>2]|0,A[C+4>>2]|0,-1,-1)|0;A[d>>2]=C;A[d+4>>2]=K}n[t>>0]=r&1;r=e+460|0;if((A[e+476>>2]|0)>(o|0)?(A[(A[e+472>>2]|0)+(o<<2)>>2]|0)>-1:0){l=i;return o|0}if(!(n[(A[s>>2]|0)+o>>0]|0)){l=i;return o|0}Ar(r,o);l=i;return o|0}function Mt(e,t){e=e|0;t=t|0;var r=0,i=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0;r=l;l=l+16|0;c=r+1|0;a=r;i=e+492|0;if(!(n[i>>0]|0)){I=0;l=r;return I|0}I=A[t>>2]|0;s=t+4|0;g=A[s>>2]|0;n[c+0>>0]=n[a+0>>0]|0;ar(I,g,c);g=A[s>>2]|0;e:do{if((g|0)>0){c=e+332|0;a=n[528]|0;u=0;h=0;p=-2;while(1){I=A[t>>2]|0;f=A[I+(u<<2)>>2]|0;d=o[(A[c>>2]|0)+(f>>1)>>0]|0;E=d^f&1;C=E&255;m=a&255;if((f|0)==(p^1|0)?1:(C<<24>>24==a<<24>>24&(m>>>1^1)|m&2&E|0)!=0){e=1;break}E=n[536]|0;m=E&255;if((f|0)!=(p|0)?((m>>>1^1)&C<<24>>24==E<<24>>24|d&2&m|0)==0:0){A[I+(h<<2)>>2]=f;g=A[s>>2]|0;h=h+1|0}else f=p;u=u+1|0;if((u|0)<(g|0))p=f;else break e}l=r;return e|0}else{u=0;h=0}}while(0);a=u-h|0;if((a|0)>0){g=g-a|0;A[s>>2]=g}if(!g){n[i>>0]=0;m=0;l=r;return m|0}else if((g|0)==1){E=A[A[t>>2]>>2]|0;I=E>>1;n[(A[e+332>>2]|0)+I>>0]=(E&1^1)&255^1;m=A[e+296>>2]|0;I=(A[e+396>>2]|0)+(I<<3)|0;A[I>>2]=-1;A[I+4>>2]=m;I=e+284|0;m=A[I>>2]|0;A[I>>2]=m+1;A[(A[e+280>>2]|0)+(m<<2)>>2]=E;m=(Nt(e)|0)==-1;n[i>>0]=m&1;l=r;return m|0}else{t=cr(e+544|0,t,0)|0;s=e+256|0;i=e+260|0;c=A[i>>2]|0;a=e+264|0;if((c|0)==(A[a>>2]|0)){g=(c>>1)+2&-2;g=(g|0)<2?2:g;if((g|0)>(2147483647-c|0)){m=Qe(1)|0;ze(m|0,48,0)}E=A[s>>2]|0;m=g+c|0;A[a>>2]=m;m=jn(E,m<<2)|0;A[s>>2]=m;if((m|0)==0?(A[(Ge()|0)>>2]|0)==12:0){m=Qe(1)|0;ze(m|0,48,0)}c=A[i>>2]|0}A[i>>2]=c+1;i=(A[s>>2]|0)+(c<<2)|0;if(i)A[i>>2]=t;Rt(e,t);m=1;l=r;return m|0}return 0}function Ft(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,o=0;i=A[t>>2]|0;t=i>>1;n[(A[e+332>>2]|0)+t>>0]=(i&1^1)&255^1;o=A[e+296>>2]|0;t=(A[e+396>>2]|0)+(t<<3)|0;A[t>>2]=r;A[t+4>>2]=o;r=e+284|0;t=A[r>>2]|0;A[r>>2]=t+1;A[(A[e+280>>2]|0)+(t<<2)>>2]=i;return}function Nt(e){e=e|0;var t=0,r=0,i=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0,y=0,Q=0,v=0,b=0,D=0,S=0,k=0,M=0,F=0,N=0,R=0,x=0,L=0,P=0,U=0,T=0,O=0,j=0;c=l;l=l+16|0;d=c;s=e+512|0;E=A[s>>2]|0;C=e+284|0;if((E|0)>=(A[C>>2]|0)){U=0;L=0;O=-1;T=e+184|0;R=T;P=R;P=A[P>>2]|0;R=R+4|0;R=A[R>>2]|0;R=ai(P|0,R|0,U|0,L|0)|0;P=K;x=T;A[x>>2]=R;T=T+4|0;A[T>>2]=P;T=e+520|0;P=T;x=P;x=A[x>>2]|0;P=P+4|0;P=A[P>>2]|0;L=ii(x|0,P|0,U|0,L|0)|0;U=K;P=T;A[P>>2]=L;T=T+4|0;A[T>>2]=U;l=c;return O|0}f=e+280|0;a=e+428|0;i=e+412|0;g=e+332|0;u=e+544|0;h=d+4|0;t=e+396|0;p=e+296|0;r=e+456|0;v=-1;I=0;do{A[s>>2]=E+1;w=A[(A[f>>2]|0)+(E<<2)>>2]|0;if(n[(A[a>>2]|0)+w>>0]|0){m=A[i>>2]|0;E=m+(w*12|0)+4|0;Q=A[E>>2]|0;if((Q|0)>0){m=m+(w*12|0)|0;B=0;y=0;do{D=A[m>>2]|0;b=D+(B<<3)|0;if((A[(A[A[r>>2]>>2]|0)+(A[b>>2]<<2)>>2]&3|0)!=1){T=b;O=A[T+4>>2]|0;Q=D+(y<<3)|0;A[Q>>2]=A[T>>2];A[Q+4>>2]=O;Q=A[E>>2]|0;y=y+1|0}B=B+1|0}while((B|0)<(Q|0))}else{B=0;y=0}m=B-y|0;if((m|0)>0)A[E>>2]=Q-m;n[(A[a>>2]|0)+w>>0]=0}E=A[i>>2]|0;I=I+1|0;m=A[E+(w*12|0)>>2]|0;E=E+(w*12|0)+4|0;y=A[E>>2]|0;B=m+(y<<3)|0;e:do{if(!y){B=m;Q=m}else{w=w^1;y=(y<<3)+-1|0;D=m;Q=m;while(1){while(1){t:while(1){N=A[D+4>>2]|0;O=o[(A[g>>2]|0)+(N>>1)>>0]^N&1;x=n[528]|0;R=x&255;L=R&2;R=R>>>1^1;if((O&255)<<24>>24==x<<24>>24&R|L&O){M=19;break}b=A[D>>2]|0;M=A[u>>2]|0;F=M+(b<<2)|0;S=M+(b+1<<2)|0;k=A[S>>2]|0;if((k|0)==(w|0)){O=M+(b+2<<2)|0;k=A[O>>2]|0;A[S>>2]=k;A[O>>2]=w}S=D+8|0;A[d>>2]=b;A[h>>2]=k;if((k|0)!=(N|0)?(O=o[(A[g>>2]|0)+(k>>1)>>0]^k&1,((O&255)<<24>>24==x<<24>>24&R|L&O|0)!=0):0){M=27;break}L=A[F>>2]|0;if(L>>>0<=95){M=31;break}R=A[g>>2]|0;x=n[536]|0;N=x&255;O=N&2;N=N>>>1^1;T=2;while(1){P=F+(T<<2)+4|0;U=A[P>>2]|0;j=o[R+(U>>1)>>0]^U&1;T=T+1|0;if(!((j&255)<<24>>24==x<<24>>24&N|O&j))break;if((T|0)>=(L>>>5|0)){M=32;break t}}j=M+(b+2<<2)|0;A[j>>2]=U;A[P>>2]=w;gr((A[i>>2]|0)+((A[j>>2]^1)*12|0)|0,d);if((S|0)==(B|0))break e;else D=S}if((M|0)==19){M=0;T=D;O=A[T+4>>2]|0;j=Q;A[j>>2]=A[T>>2];A[j+4>>2]=O;D=D+8|0;Q=Q+8|0}else if((M|0)==27){M=0;O=d;j=A[O+4>>2]|0;D=Q;A[D>>2]=A[O>>2];A[D+4>>2]=j;D=S;Q=Q+8|0}else if((M|0)==31){x=n[536]|0;M=32}if((M|0)==32){M=Q+8|0;F=d;R=A[F+4>>2]|0;N=Q;A[N>>2]=A[F>>2];A[N+4>>2]=R;N=k>>1;R=k&1;F=(A[g>>2]|0)+N|0;j=o[F>>0]^R;O=x&255;if((j&255)<<24>>24==x<<24>>24&(O>>>1^1)|O&2&j)break;n[F>>0]=(R^1)&255^1;Q=A[p>>2]|0;D=(A[t>>2]|0)+(N<<3)|0;A[D>>2]=b;A[D+4>>2]=Q;D=A[C>>2]|0;A[C>>2]=D+1;A[(A[f>>2]|0)+(D<<2)>>2]=k;D=S;Q=M}if((D|0)==(B|0))break e}A[s>>2]=A[C>>2];if(S>>>0>>0){v=(m+(y-S)|0)>>>3;while(1){T=S;S=S+8|0;O=A[T+4>>2]|0;j=M;A[j>>2]=A[T>>2];A[j+4>>2]=O;if(S>>>0>=B>>>0)break;else M=M+8|0}D=D+(v+2<<3)|0;Q=Q+(v+2<<3)|0}else{D=S;Q=M}if((D|0)==(B|0)){v=b;break}else v=b}}}while(0);m=B-Q|0;if((m|0)>0)A[E>>2]=(A[E>>2]|0)-(m>>3);E=A[s>>2]|0}while((E|0)<(A[C>>2]|0));T=I;P=((I|0)<0)<<31>>31;j=v;O=e+184|0;x=O;U=x;U=A[U>>2]|0;x=x+4|0;x=A[x>>2]|0;x=ai(U|0,x|0,T|0,P|0)|0;U=K;L=O;A[L>>2]=x;O=O+4|0;A[O>>2]=U;O=e+520|0;U=O;L=U;L=A[L>>2]|0;U=U+4|0;U=A[U>>2]|0;P=ii(L|0,U|0,T|0,P|0)|0;T=K;U=O;A[U>>2]=P;O=O+4|0;A[O>>2]=T;l=c;return j|0}function Rt(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0;r=l;l=l+16|0;c=r+8|0;i=r;o=A[e+544>>2]|0;n=o+(t<<2)|0;s=o+(t+1<<2)|0;a=e+412|0;g=(A[a>>2]|0)+((A[s>>2]^1)*12|0)|0;o=o+(t+2<<2)|0;u=A[o>>2]|0;A[c>>2]=t;A[c+4>>2]=u;gr(g,c);o=(A[a>>2]|0)+((A[o>>2]^1)*12|0)|0;s=A[s>>2]|0;A[i>>2]=t;A[i+4>>2]=s;gr(o,i);if(!(A[n>>2]&4)){u=e+208|0;g=u;g=ai(A[g>>2]|0,A[g+4>>2]|0,1,0)|0;A[u>>2]=g;A[u+4>>2]=K;u=e+224|0;g=u;g=ai((A[n>>2]|0)>>>5|0,0,A[g>>2]|0,A[g+4>>2]|0)|0;A[u>>2]=g;A[u+4>>2]=K;l=r;return}else{u=e+216|0;g=u;g=ai(A[g>>2]|0,A[g+4>>2]|0,1,0)|0;A[u>>2]=g;A[u+4>>2]=K;u=e+232|0;g=u;g=ai((A[n>>2]|0)>>>5|0,0,A[g>>2]|0,A[g+4>>2]|0)|0;A[u>>2]=g;A[u+4>>2]=K;l=r;return}}function Kt(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0;o=l;l=l+16|0;g=o+4|0;a=o;s=A[e+544>>2]|0;i=s+(t<<2)|0;c=A[s+(t+1<<2)>>2]^1;if(!r){A[g>>2]=c;r=e+428|0;u=A[r>>2]|0;c=u+c|0;if(!(n[c>>0]|0)){n[c>>0]=1;or(e+444|0,g);u=A[r>>2]|0}t=A[s+(t+2<<2)>>2]^1;A[a>>2]=t;t=u+t|0;if(!(n[t>>0]|0)){n[t>>0]=1;or(e+444|0,a)}}else{a=e+412|0;r=A[a>>2]|0;g=r+(c*12|0)|0;s=s+(t+2<<2)|0;c=r+(c*12|0)+4|0;u=A[c>>2]|0;e:do{if((u|0)>0){p=A[g>>2]|0;f=0;while(1){h=f+1|0;if((A[p+(f<<3)>>2]|0)==(t|0)){h=f;break e}if((h|0)<(u|0))f=h;else break}}else h=0}while(0);u=u+-1|0;if((h|0)<(u|0)){do{r=A[g>>2]|0;u=h;h=h+1|0;f=r+(h<<3)|0;p=A[f+4>>2]|0;u=r+(u<<3)|0;A[u>>2]=A[f>>2];A[u+4>>2]=p;u=(A[c>>2]|0)+-1|0}while((h|0)<(u|0));r=A[a>>2]|0}A[c>>2]=u;a=A[s>>2]^1;s=r+(a*12|0)|0;a=r+(a*12|0)+4|0;c=A[a>>2]|0;e:do{if((c|0)>0){r=A[s>>2]|0;u=0;while(1){g=u+1|0;if((A[r+(u<<3)>>2]|0)==(t|0)){g=u;break e}if((g|0)<(c|0))u=g;else break}}else g=0}while(0);t=c+-1|0;if((g|0)<(t|0))do{h=A[s>>2]|0;t=g;g=g+1|0;f=h+(g<<3)|0;p=A[f+4>>2]|0;t=h+(t<<3)|0;A[t>>2]=A[f>>2];A[t+4>>2]=p;t=(A[a>>2]|0)+-1|0}while((g|0)<(t|0));A[a>>2]=t}if(!(A[i>>2]&4)){p=e+208|0;f=p;f=ai(A[f>>2]|0,A[f+4>>2]|0,-1,-1)|0;A[p>>2]=f;A[p+4>>2]=K;p=e+224|0;f=p;f=ii(A[f>>2]|0,A[f+4>>2]|0,(A[i>>2]|0)>>>5|0,0)|0;A[p>>2]=f;A[p+4>>2]=K;l=o;return}else{p=e+216|0;f=p;f=ai(A[f>>2]|0,A[f+4>>2]|0,-1,-1)|0;A[p>>2]=f;A[p+4>>2]=K;p=e+232|0;f=p;f=ii(A[f>>2]|0,A[f+4>>2]|0,(A[i>>2]|0)>>>5|0,0)|0;A[p>>2]=f;A[p+4>>2]=K;l=o;return}}function xt(e,t){e=e|0;t=t|0;var r=0,i=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0;s=l;i=e+544|0;u=A[i>>2]|0;r=u+(t<<2)|0;Kt(e,t,0);u=A[u+(t+1<<2)>>2]|0;a=u>>1;u=(o[(A[e+332>>2]|0)+a>>0]|0)^u&1;f=n[528]|0;h=f&255;if((((u&255)<<24>>24==f<<24>>24&(h>>>1^1)|h&2&u|0)!=0?(c=(A[e+396>>2]|0)+(a<<3)|0,g=A[c>>2]|0,(g|0)!=-1):0)?((A[i>>2]|0)+(g<<2)|0)==(r|0):0)A[c>>2]=-1;A[r>>2]=A[r>>2]&-4|1;h=A[(A[i>>2]|0)+(t<<2)>>2]|0;f=e+556|0;A[f>>2]=((((h>>>3&1)+(h>>>5)<<2)+4|0)>>>2)+(A[f>>2]|0);l=s;return}function Lt(e,t){e=e|0;t=t|0;var r=0,i=0,s=0,a=0,c=0,g=0,u=0;r=l;i=A[t>>2]|0;if(i>>>0<=31){g=0;l=r;return g|0}s=A[e+332>>2]|0;a=n[528]|0;c=a&255;g=c&2;c=c>>>1^1;e=0;while(1){u=A[t+(e<<2)+4>>2]|0;u=(o[s+(u>>1)>>0]|0)^u&1;e=e+1|0;if((u&255)<<24>>24==a<<24>>24&c|g&u){i=1;t=5;break}if((e|0)>=(i>>>5|0)){i=0;t=5;break}}if((t|0)==5){l=r;return i|0}return 0}function Pt(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0;o=l;r=e+296|0;if((A[r>>2]|0)<=(t|0)){l=o;return}i=e+284|0;I=A[i>>2]|0;a=e+292|0;E=A[a>>2]|0;m=A[E+(t<<2)>>2]|0;if((I|0)>(m|0)){d=e+280|0;u=e+332|0;g=e+88|0;c=e+348|0;h=e+460|0;p=e+476|0;C=e+472|0;f=e+380|0;do{I=I+-1|0;m=A[(A[d>>2]|0)+(I<<2)>>2]>>1;n[(A[u>>2]|0)+m>>0]=n[544]|0;E=A[g>>2]|0;if((E|0)<=1){if((E|0)==1?(I|0)>(A[(A[a>>2]|0)+((A[r>>2]|0)+-1<<2)>>2]|0):0)s=7}else s=7;if((s|0)==7){s=0;n[(A[c>>2]|0)+m>>0]=A[(A[d>>2]|0)+(I<<2)>>2]&1}if(!((A[p>>2]|0)>(m|0)?(A[(A[C>>2]|0)+(m<<2)>>2]|0)>-1:0))s=11;if((s|0)==11?(s=0,(n[(A[f>>2]|0)+m>>0]|0)!=0):0)Ar(h,m);E=A[a>>2]|0;m=A[E+(t<<2)>>2]|0}while((I|0)>(m|0));I=A[i>>2]|0}A[e+512>>2]=m;e=A[E+(t<<2)>>2]|0;if((I-e|0)>0)A[i>>2]=e;if(((A[r>>2]|0)-t|0)<=0){l=o;return}A[r>>2]=t;l=o;return}function Ut(e){e=e|0;var t=0,r=0,i=0,o=0,s=0,a=0,c=0,u=0,h=0,f=0,p=0,C=0.0,d=0;t=l;i=e+72|0;C=+g[i>>3]*1389796.0;C=C-+(~~(C/2147483647.0)|0)*2147483647.0;g[i>>3]=C;c=e+464|0;if(C/2147483647.0<+g[e+64>>3]?(u=A[c>>2]|0,(u|0)!=0):0){C=C*1389796.0;C=C-+(~~(C/2147483647.0)|0)*2147483647.0;g[i>>3]=C;u=A[(A[e+460>>2]|0)+(~~(+(u|0)*(C/2147483647.0))<<2)>>2]|0;f=n[(A[e+332>>2]|0)+u>>0]|0;h=n[544]|0;p=h&255;if(((p>>>1^1)&f<<24>>24==h<<24>>24|f&2&p|0)!=0?(n[(A[e+380>>2]|0)+u>>0]|0)!=0:0){p=e+176|0;f=p;f=ai(A[f>>2]|0,A[f+4>>2]|0,1,0)|0;A[p>>2]=f;A[p+4>>2]=K}}else u=-1;h=e+460|0;p=e+332|0;f=e+380|0;while(1){if(((u|0)!=-1?(d=n[(A[p>>2]|0)+u>>0]|0,s=n[544]|0,r=s&255,o=r>>>1^1,(o&d<<24>>24==s<<24>>24|d&2&r|0)!=0):0)?(n[(A[f>>2]|0)+u>>0]|0)!=0:0)break;if(!(A[c>>2]|0)){r=-2;a=17;break}u=lr(h)|0}if((a|0)==17){l=t;return r|0}c=n[(A[e+364>>2]|0)+u>>0]|0;a=c&255;if(!(o&c<<24>>24==s<<24>>24|r&2&a)){p=n[528]|0;d=p&255;d=((d>>>1^1)&c<<24>>24==p<<24>>24|a&2&d|0)!=0|u<<1;l=t;return d|0}if(!(n[e+92>>0]|0)){d=(n[(A[e+348>>2]|0)+u>>0]|0)!=0|u<<1;l=t;return d|0}else{C=+g[i>>3]*1389796.0;C=C-+(~~(C/2147483647.0)|0)*2147483647.0;g[i>>3]=C;d=C/2147483647.0<.5|u<<1;l=t;return d|0}return 0}function Tt(e,t,r,i){e=e|0;t=t|0;r=r|0;i=i|0;var o=0,s=0,a=0,u=0,h=0,f=0,p=0,C=0,d=0.0,I=0,E=0,m=0,B=0,w=0,y=0,Q=0,v=0,b=0,D=0,S=0,k=0,M=0,F=0,N=0,R=0,x=0,L=0,P=0,U=0,T=0,O=0,j=0,Y=0,G=0,_=0,H=0.0,J=0;o=l;l=l+16|0;p=o+8|0;E=o+4|0;h=o;u=r+4|0;s=A[u>>2]|0;a=r+8|0;if((s|0)==(A[a>>2]|0)){C=(s>>1)+2&-2;C=(C|0)<2?2:C;if((C|0)>(2147483647-s|0)){_=Qe(1)|0;ze(_|0,48,0)}G=A[r>>2]|0;_=C+s|0;A[a>>2]=_;_=jn(G,_<<2)|0;A[r>>2]=_;if((_|0)==0?(A[(Ge()|0)>>2]|0)==12:0){_=Qe(1)|0;ze(_|0,48,0)}s=A[u>>2]|0}a=(A[r>>2]|0)+(s<<2)|0;if(a){A[a>>2]=0;s=A[u>>2]|0}A[u>>2]=s+1;C=e+544|0;N=e+280|0;s=e+588|0;a=e+396|0;S=e+504|0;M=e+316|0;k=e+540|0;D=e+476|0;b=e+472|0;v=e+460|0;Q=e+488|0;y=e+296|0;B=e+496|0;w=e+272|0;F=e+268|0;x=-2;R=(A[e+284>>2]|0)+-1|0;L=0;do{P=A[C>>2]|0;t=P+(t<<2)|0;U=A[t>>2]|0;if((U&4|0)!=0?(d=+g[B>>3],_=t+(U>>>5<<2)+4|0,H=d+ +c[_>>2],c[_>>2]=H,H>1.0e20):0){O=A[w>>2]|0;if((O|0)>0){T=A[F>>2]|0;U=0;do{_=P+(A[T+(U<<2)>>2]<<2)|0;_=_+((A[_>>2]|0)>>>5<<2)+4|0;c[_>>2]=+c[_>>2]*1.0e-20;U=U+1|0}while((U|0)!=(O|0))}g[B>>3]=d*1.0e-20}x=(x|0)!=-2&1;if(x>>>0<(A[t>>2]|0)>>>5>>>0)do{U=A[t+(x<<2)+4>>2]|0;A[E>>2]=U;U=U>>1;P=(A[s>>2]|0)+U|0;do{if((n[P>>0]|0)==0?(A[(A[a>>2]|0)+(U<<3)+4>>2]|0)>0:0){O=A[M>>2]|0;_=O+(U<<3)|0;H=+g[S>>3]+ +g[_>>3];g[_>>3]=H;if(H>1.0e+100){j=A[k>>2]|0;if((j|0)>0){T=0;do{_=O+(T<<3)|0;g[_>>3]=+g[_>>3]*1.0e-100;T=T+1|0}while((T|0)!=(j|0))}g[S>>3]=+g[S>>3]*1.0e-100}if((A[D>>2]|0)>(U|0)?(m=A[b>>2]|0,I=A[m+(U<<2)>>2]|0,(I|0)>-1):0){T=A[v>>2]|0;O=A[T+(I<<2)>>2]|0;e:do{if(!I)G=0;else{_=I;while(1){G=_;_=_+-1>>1;Y=T+(_<<2)|0;j=A[Y>>2]|0;J=A[A[Q>>2]>>2]|0;if(!(+g[J+(O<<3)>>3]>+g[J+(j<<3)>>3]))break e;A[T+(G<<2)>>2]=j;A[m+(A[Y>>2]<<2)>>2]=G;if(!_){G=0;break}}}}while(0);A[T+(G<<2)>>2]=O;A[m+(O<<2)>>2]=G}n[P>>0]=1;if((A[(A[a>>2]|0)+(U<<3)+4>>2]|0)<(A[y>>2]|0)){or(r,E);break}else{L=L+1|0;break}}}while(0);x=x+1|0}while((x|0)<((A[t>>2]|0)>>>5|0));t=A[N>>2]|0;P=A[s>>2]|0;do{x=R;R=R+-1|0;x=A[t+(x<<2)>>2]|0;T=x>>1;U=P+T|0}while((n[U>>0]|0)==0);t=A[(A[a>>2]|0)+(T<<3)>>2]|0;n[U>>0]=0;L=L+-1|0}while((L|0)>0);A[A[r>>2]>>2]=x^1;E=e+616|0;B=A[E>>2]|0;I=e+620|0;if(!B)w=A[I>>2]|0;else{A[I>>2]=0;w=0}m=A[u>>2]|0;if((w|0)<(m|0)){Q=e+624|0;y=A[Q>>2]|0;if((y|0)<(m|0)){J=m+1-y&-2;w=(y>>1)+2&-2;w=(J|0)>(w|0)?J:w;if((w|0)>(2147483647-y|0)){J=Qe(1)|0;ze(J|0,48,0)}J=w+y|0;A[Q>>2]=J;B=jn(B,J<<2)|0;A[E>>2]=B;if((B|0)==0?(A[(Ge()|0)>>2]|0)==12:0){J=Qe(1)|0;ze(J|0,48,0)}}w=A[I>>2]|0;e:do{if((w|0)<(m|0))while(1){B=B+(w<<2)|0;if(B)A[B>>2]=0;w=w+1|0;if((w|0)==(m|0))break e;B=A[E>>2]|0}}while(0);A[I>>2]=m;m=A[u>>2]|0}if((m|0)>0){w=A[E>>2]|0;B=A[r>>2]|0;y=0;do{A[w+(y<<2)>>2]=A[B+(y<<2)>>2];y=y+1|0;m=A[u>>2]|0}while((y|0)<(m|0))}B=A[e+84>>2]|0;if((B|0)==1)if((m|0)>1){h=A[r>>2]|0;f=1;B=1;while(1){m=A[h+(f<<2)>>2]|0;p=A[a>>2]|0;w=A[p+(m>>1<<3)>>2]|0;e:do{if((w|0)!=-1){y=(A[C>>2]|0)+(w<<2)|0;Q=A[y>>2]|0;if(Q>>>0>63){w=A[s>>2]|0;v=1;while(1){J=A[y+(v<<2)+4>>2]>>1;if((n[w+J>>0]|0)==0?(A[p+(J<<3)+4>>2]|0)>0:0)break;v=v+1|0;if((v|0)>=(Q>>>5|0))break e}A[h+(B<<2)>>2]=m;B=B+1|0}}else{A[h+(B<<2)>>2]=m;B=B+1|0}}while(0);f=f+1|0;p=A[u>>2]|0;if((f|0)>=(p|0)){h=p;break}}}else{h=m;f=1;B=1}else if((B|0)==2)if((m|0)>1){C=1;B=1;do{w=A[r>>2]|0;m=A[w+(C<<2)>>2]|0;if((A[(A[a>>2]|0)+(m>>1<<3)>>2]|0)!=-1){A[h>>2]=m;A[p+0>>2]=A[h+0>>2];if(!(Ot(e,p)|0)){m=A[r>>2]|0;w=m;m=A[m+(C<<2)>>2]|0;f=62}}else f=62;if((f|0)==62){f=0;A[w+(B<<2)>>2]=m;B=B+1|0}C=C+1|0;m=A[u>>2]|0}while((C|0)<(m|0));h=m;f=C}else{h=m;f=1;B=1}else{h=m;f=m;B=m}J=e+240|0;_=J;_=ai(A[_>>2]|0,A[_+4>>2]|0,h|0,((h|0)<0)<<31>>31|0)|0;A[J>>2]=_;A[J+4>>2]=K;f=f-B|0;if((f|0)>0){h=h-f|0;A[u>>2]=h}J=e+248|0;_=J;_=ai(A[_>>2]|0,A[_+4>>2]|0,h|0,((h|0)<0)<<31>>31|0)|0;A[J>>2]=_;A[J+4>>2]=K;if((h|0)==1)r=0;else{r=A[r>>2]|0;if((h|0)>2){e=A[a>>2]|0;u=2;f=1;do{f=(A[e+(A[r+(u<<2)>>2]>>1<<3)+4>>2]|0)>(A[e+(A[r+(f<<2)>>2]>>1<<3)+4>>2]|0)?u:f;u=u+1|0}while((u|0)<(h|0))}else f=1;_=r+(f<<2)|0;J=A[_>>2]|0;r=r+4|0;A[_>>2]=A[r>>2];A[r>>2]=J;r=A[(A[a>>2]|0)+(J>>1<<3)+4>>2]|0}A[i>>2]=r;if((A[I>>2]|0)>0)i=0;else{l=o;return}do{n[(A[s>>2]|0)+(A[(A[E>>2]|0)+(i<<2)>>2]>>1)>>0]=0;i=i+1|0}while((i|0)<(A[I>>2]|0));l=o;return}function Ot(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0;r=l;h=A[t>>2]|0;g=e+396|0;C=A[g>>2]|0;c=e+544|0;I=(A[c>>2]|0)+(A[C+(h>>1<<3)>>2]<<2)|0;s=e+604|0;i=e+608|0;if(A[s>>2]|0)A[i>>2]=0;o=e+588|0;a=e+612|0;e=e+616|0;f=1;while(1){if(f>>>0<(A[I>>2]|0)>>>5>>>0){d=A[I+(f<<2)+4>>2]|0;p=d>>1;if((A[C+(p<<3)+4>>2]|0)!=0?(u=n[(A[o>>2]|0)+p>>0]|0,(u+-1<<24>>24&255)>=2):0){I=A[i>>2]|0;E=(I|0)==(A[a>>2]|0);if(u<<24>>24==3?1:(A[C+(p<<3)>>2]|0)==-1){c=8;break}if(E){C=(I>>1)+2&-2;C=(C|0)<2?2:C;if((C|0)>(2147483647-I|0)){c=24;break}m=A[s>>2]|0;E=C+I|0;A[a>>2]=E;E=jn(m,E<<3)|0;A[s>>2]=E;if((E|0)==0?(A[(Ge()|0)>>2]|0)==12:0){c=24;break}I=A[i>>2]|0}A[i>>2]=I+1;C=(A[s>>2]|0)+(I<<3)|0;if(C){m=C;A[m>>2]=f;A[m+4>>2]=h}A[t>>2]=d;I=A[g>>2]|0;h=d;C=I;I=(A[c>>2]|0)+(A[I+(p<<3)>>2]<<2)|0;f=0}}else{h=(A[o>>2]|0)+(h>>1)|0;if(!(n[h>>0]|0)){n[h>>0]=2;or(e,t)}h=A[i>>2]|0;if(!h){i=1;c=34;break}m=h+-1|0;h=A[s>>2]|0;f=A[h+(m<<3)>>2]|0;h=A[h+(m<<3)+4>>2]|0;A[t>>2]=h;C=A[g>>2]|0;I=(A[c>>2]|0)+(A[C+(h>>1<<3)>>2]<<2)|0;A[i>>2]=m}f=f+1|0}if((c|0)==8){if(E){c=(I>>1)+2&-2;c=(c|0)<2?2:c;if((c|0)>(2147483647-I|0)){m=Qe(1)|0;ze(m|0,48,0)}E=A[s>>2]|0;m=c+I|0;A[a>>2]=m;m=jn(E,m<<3)|0;A[s>>2]=m;if((m|0)==0?(A[(Ge()|0)>>2]|0)==12:0){m=Qe(1)|0;ze(m|0,48,0)}I=A[i>>2]|0}a=I+1|0;A[i>>2]=a;c=(A[s>>2]|0)+(I<<3)|0;if(c){a=c;A[a>>2]=0;A[a+4>>2]=h;a=A[i>>2]|0}if((a|0)>0)c=0;else{m=0;l=r;return m|0}do{g=(A[o>>2]|0)+(A[(A[s>>2]|0)+(c<<3)+4>>2]>>1)|0;if(!(n[g>>0]|0)){n[g>>0]=3;or(e,(A[s>>2]|0)+(c<<3)+4|0);a=A[i>>2]|0}c=c+1|0}while((c|0)<(a|0));i=0;l=r;return i|0}else if((c|0)==24)ze(Qe(1)|0,48,0);else if((c|0)==34){l=r;return i|0}return 0}function jt(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0;a=l;l=l+32|0;s=a+16|0;o=a+12|0;c=a+8|0;i=a;h=r+20|0;g=r+16|0;if((A[h>>2]|0)>0){u=0;do{n[(A[r>>2]|0)+(A[(A[g>>2]|0)+(u<<2)>>2]|0)>>0]=0;u=u+1|0}while((u|0)<(A[h>>2]|0))}if(A[g>>2]|0)A[h>>2]=0;u=A[t>>2]|0;A[c>>2]=u;A[o>>2]=u;A[s+0>>2]=A[o+0>>2];ur(r,s,0);g=(A[r>>2]|0)+u|0;if(!(n[g>>0]|0)){n[g>>0]=1;or(r+16|0,c)}if(!(A[e+296>>2]|0)){l=a;return}t=u>>1;f=e+588|0;n[(A[f>>2]|0)+t>>0]=1;p=A[e+284>>2]|0;h=e+292|0;I=A[A[h>>2]>>2]|0;if((p|0)>(I|0)){c=e+280|0;g=e+396|0;u=r+16|0;e=e+544|0;do{p=p+-1|0;d=A[(A[c>>2]|0)+(p<<2)>>2]|0;C=d>>1;if(n[(A[f>>2]|0)+C>>0]|0){I=A[g>>2]|0;E=A[I+(C<<3)>>2]|0;e:do{if((E|0)==-1){d=d^1;A[i>>2]=d;A[o>>2]=d;A[s+0>>2]=A[o+0>>2];ur(r,s,0);d=(A[r>>2]|0)+d|0;if(!(n[d>>0]|0)){n[d>>0]=1;or(u,i)}}else{d=(A[e>>2]|0)+(E<<2)|0;E=A[d>>2]|0;if(E>>>0>63){m=1;while(1){B=A[d+(m<<2)+4>>2]>>1;if((A[I+(B<<3)+4>>2]|0)>0){n[(A[f>>2]|0)+B>>0]=1;E=A[d>>2]|0}m=m+1|0;if((m|0)>=(E>>>5|0))break e;I=A[g>>2]|0}}}}while(0);n[(A[f>>2]|0)+C>>0]=0;I=A[A[h>>2]>>2]|0}}while((p|0)>(I|0))}n[(A[f>>2]|0)+t>>0]=0;l=a;return}function Yt(e){e=e|0;var t=0,r=0,i=0,s=0,a=0,u=0,h=0.0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0,y=0,Q=0,v=0;r=l;l=l+16|0;p=r+4|0;m=r;t=e+272|0;w=A[t>>2]|0;h=+g[e+496>>3]/+(w|0);s=e+544|0;a=e+268|0;B=A[a>>2]|0;A[m>>2]=s;A[p+0>>2]=A[m+0>>2];hr(B,w,p);p=A[t>>2]|0;if((p|0)>0){u=e+332|0;f=e+396|0;C=0;B=0;do{E=A[a>>2]|0;m=A[E+(C<<2)>>2]|0;w=A[s>>2]|0;d=w+(m<<2)|0;I=A[d>>2]|0;do{if(I>>>0>95){y=A[w+(m+1<<2)>>2]|0;w=y>>1;y=(o[(A[u>>2]|0)+w>>0]|0)^y&1;v=n[528]|0;Q=v&255;if(((y&255)<<24>>24==v<<24>>24&(Q>>>1^1)|Q&2&y|0)!=0?(v=A[(A[f>>2]|0)+(w<<3)>>2]|0,(v|0)!=-1&(v|0)==(m|0)):0){i=9;break}if((C|0)>=((p|0)/2|0|0)?!(+c[d+(I>>>5<<2)+4>>2]>2]=m;B=B+1|0}C=C+1|0;p=A[t>>2]|0}while((C|0)<(p|0))}else{C=0;B=0}i=C-B|0;if((i|0)>0)A[t>>2]=p-i;if(!(+((A[e+556>>2]|0)>>>0)>+g[e+96>>3]*+((A[e+548>>2]|0)>>>0))){l=r;return}Yi[A[(A[e>>2]|0)+8>>2]&31](e);l=r;return}function Gt(e,t){e=e|0;t=t|0;var r=0,i=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0,y=0;r=l;i=t+4|0;u=A[i>>2]|0;if((u|0)>0){a=e+544|0;s=e+332|0;c=0;g=0;do{m=A[t>>2]|0;p=A[m+(c<<2)>>2]|0;u=(A[a>>2]|0)+(p<<2)|0;f=A[u>>2]|0;do{if(f>>>0>31){B=A[s>>2]|0;d=n[528]|0;C=d&255;w=C&2;C=C>>>1^1;I=f>>>5;E=0;do{y=A[u+(E<<2)+4>>2]|0;y=(o[B+(y>>1)>>0]|0)^y&1;E=E+1|0;if((y&255)<<24>>24==d<<24>>24&C|w&y){h=7;break}}while((E|0)<(I|0));if((h|0)==7){h=0;xt(e,p);break}if(f>>>0>95){h=n[536]|0;C=f>>>5;p=2;do{d=u+(p<<2)+4|0;y=A[d>>2]|0;y=(o[(A[s>>2]|0)+(y>>1)>>0]|0)^y&1;w=h&255;if((y&255)<<24>>24==h<<24>>24&(w>>>1^1)|w&2&y){A[d>>2]=A[u+(C+-1<<2)+4>>2];f=A[u>>2]|0;if(f&8){f=f>>>5;A[u+(f+-1<<2)+4>>2]=A[u+(f<<2)+4>>2];f=A[u>>2]|0}f=f+-32|0;A[u>>2]=f;p=p+-1|0}p=p+1|0;C=f>>>5}while((p|0)<(C|0));p=A[t>>2]|0;m=p;p=A[p+(c<<2)>>2]|0;h=16}else h=16}else h=16}while(0);if((h|0)==16){h=0;A[m+(g<<2)>>2]=p;g=g+1|0}c=c+1|0;u=A[i>>2]|0}while((c|0)<(u|0))}else{c=0;g=0}t=c-g|0;if((t|0)<=0){l=r;return}A[i>>2]=u-t;l=r;return}function _t(e){e=e|0;var t=0,r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0;o=l;l=l+16|0;r=o+4|0;s=o;A[r>>2]=0;t=r+4|0;A[t>>2]=0;i=r+8|0;A[i>>2]=0;A[s>>2]=0;a=e+540|0;h=A[a>>2]|0;if((h|0)>0){g=e+380|0;c=e+332|0;u=0;do{if((n[(A[g>>2]|0)+u>>0]|0)!=0?(p=n[(A[c>>2]|0)+u>>0]|0,C=n[544]|0,f=C&255,((f>>>1^1)&p<<24>>24==C<<24>>24|p&2&f|0)!=0):0){sr(r,s);h=A[a>>2]|0}u=u+1|0;A[s>>2]=u}while((u|0)<(h|0))}fr(e+460|0,r);e=A[r>>2]|0;if(!e){l=o;return}A[t>>2]=0;On(e);A[r>>2]=0;A[i>>2]=0;l=o;return}function Ht(e){e=e|0;var t=0,r=0,i=0,o=0,s=0,a=0,c=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0;t=l;i=e+492|0;if((n[i>>0]|0)!=0?(Nt(e)|0)==-1:0){i=e+284|0;o=e+516|0;if((A[i>>2]|0)==(A[o>>2]|0)){I=1;l=t;return I|0}s=e+520|0;I=s;d=A[I+4>>2]|0;if((d|0)>0|(d|0)==0&(A[I>>2]|0)>>>0>0){I=1;l=t;return I|0}Gt(e,e+268|0);if(n[e+536>>0]|0){Gt(e,e+256|0);c=e+564|0;a=e+568|0;if((A[a>>2]|0)>0){h=e+588|0;u=0;do{n[(A[h>>2]|0)+(A[(A[c>>2]|0)+(u<<2)>>2]|0)>>0]=1;u=u+1|0}while((u|0)<(A[a>>2]|0))}p=A[i>>2]|0;if((p|0)>0){u=A[e+280>>2]|0;h=A[e+588>>2]|0;C=0;f=0;do{d=A[u+(C<<2)>>2]|0;if(!(n[h+(d>>1)>>0]|0)){A[u+(f<<2)>>2]=d;p=A[i>>2]|0;f=f+1|0}C=C+1|0}while((C|0)<(p|0))}else{C=0;f=0}u=C-f|0;if((u|0)>0){p=p-u|0;A[i>>2]=p}A[e+512>>2]=p;e:do{if((A[a>>2]|0)>0){f=e+588|0;u=0;do{n[(A[f>>2]|0)+(A[(A[c>>2]|0)+(u<<2)>>2]|0)>>0]=0;u=u+1|0;h=A[a>>2]|0}while((u|0)<(h|0));if((h|0)>0){h=e+580|0;f=e+584|0;u=e+576|0;p=0;while(1){d=A[h>>2]|0;if((d|0)==(A[f>>2]|0)){C=(d>>1)+2&-2;C=(C|0)<2?2:C;if((C|0)>(2147483647-d|0)){r=28;break}I=A[u>>2]|0;C=C+d|0;A[f>>2]=C;C=jn(I,C<<2)|0;A[u>>2]=C;if((C|0)==0?(A[(Ge()|0)>>2]|0)==12:0){r=28;break}d=A[h>>2]|0}else C=A[u>>2]|0;I=C+(d<<2)|0;if(I){A[I>>2]=0;d=A[h>>2]|0}A[h>>2]=d+1;I=A[c>>2]|0;A[C+(d<<2)>>2]=A[I+(p<<2)>>2];p=p+1|0;if((p|0)>=(A[a>>2]|0))break e}if((r|0)==28)ze(Qe(1)|0,48,0)}else r=21}else r=21}while(0);if((r|0)==21)I=A[c>>2]|0;if(I)A[a>>2]=0}if(+((A[e+556>>2]|0)>>>0)>+g[e+96>>3]*+((A[e+548>>2]|0)>>>0))Yi[A[(A[e>>2]|0)+8>>2]&31](e);_t(e);A[o>>2]=A[i>>2];d=e+224|0;I=e+232|0;d=ai(A[I>>2]|0,A[I+4>>2]|0,A[d>>2]|0,A[d+4>>2]|0)|0;I=s;A[I>>2]=d;A[I+4>>2]=K;I=1;l=t;return I|0}n[i>>0]=0;I=0;l=t;return I|0}function Jt(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,s=0,a=0,u=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0,y=0,Q=0,v=0,b=0,D=0,S=0,k=0,M=0,F=0,N=0,R=0,x=0,L=0,P=0,U=0,T=0,O=0,j=0,Y=0,G=0,_=0,H=0,J=0,z=0,W=0,V=0,X=0,Z=0,$=0,ee=0,te=0,re=0,ne=0,ie=0,Ae=0.0,oe=0,se=0,ae=0,ce=0.0,ge=0,le=0,ue=0,he=0,fe=0,pe=0,Ce=0.0,de=0,Ie=0,Ee=0.0;u=l;l=l+64|0;Z=u;F=u+60|0;D=u+56|0;i=u+44|0;$=u+40|0;A[i>>2]=0;a=i+4|0;A[a>>2]=0;s=i+8|0;A[s>>2]=0;T=t+160|0;U=T;U=ai(A[U>>2]|0,A[U+4>>2]|0,1,0)|0;A[T>>2]=U;A[T+4>>2]=K;T=(r|0)<0;U=t+680|0;P=t+664|0;L=t+672|0;C=t+296|0;w=t+272|0;f=t+284|0;R=t+640|0;M=t+308|0;k=t+304|0;d=t+332|0;N=t+292|0;te=t+168|0;E=t+396|0;B=t+280|0;x=t+184|0;S=t+192|0;m=t+48|0;H=t+504|0;V=t+56|0;ee=t+496|0;re=t+656|0;O=t+144|0;j=t+648|0;Y=t+128|0;G=t+44|0;_=t+200|0;J=t+208|0;z=t+224|0;W=t+216|0;I=t+232|0;X=t+540|0;p=t+292|0;y=t+544|0;v=t+276|0;Q=t+268|0;b=t+268|0;ne=0;e:while(1){ie=T|(ne|0)<(r|0);while(1){oe=Nt(t)|0;if((oe|0)!=-1)break;if(!ie){oe=41;break e}if(n[U>>0]|0){oe=41;break e}oe=P;se=A[oe+4>>2]|0;if((se|0)>=0?(Ie=S,de=A[Ie+4>>2]|0,!(de>>>0>>0|((de|0)==(se|0)?(A[Ie>>2]|0)>>>0<(A[oe>>2]|0)>>>0:0))):0){oe=41;break e}oe=L;se=A[oe+4>>2]|0;if((se|0)>=0?(Ie=x,de=A[Ie+4>>2]|0,!(de>>>0>>0|((de|0)==(se|0)?(A[Ie>>2]|0)>>>0<(A[oe>>2]|0)>>>0:0))):0){oe=41;break e}if((A[C>>2]|0)==0?!(Ht(t)|0):0){oe=50;break e}if(+((A[w>>2]|0)-(A[f>>2]|0)|0)>=+g[R>>3])Yt(t);while(1){oe=A[C>>2]|0;if((oe|0)>=(A[M>>2]|0)){oe=59;break}ge=A[(A[k>>2]|0)+(oe<<2)>>2]|0;se=o[(A[d>>2]|0)+(ge>>1)>>0]|0;Ie=se^ge&1;ae=Ie&255;pe=n[528]|0;de=pe&255;if(!(ae<<24>>24==pe<<24>>24&(de>>>1^1)|de&2&Ie)){oe=56;break}A[F>>2]=A[f>>2];sr(N,F)}if((oe|0)==56){oe=0;de=n[536]|0;Ie=de&255;if((Ie>>>1^1)&ae<<24>>24==de<<24>>24|se&2&Ie){oe=57;break e}if((ge|0)==-2)oe=59}if((oe|0)==59){Ie=te;Ie=ai(A[Ie>>2]|0,A[Ie+4>>2]|0,1,0)|0;ge=te;A[ge>>2]=Ie;A[ge+4>>2]=K;ge=Ut(t)|0;if((ge|0)==-2){oe=60;break e}}A[Z>>2]=A[f>>2];sr(N,Z);Ie=ge>>1;n[(A[d>>2]|0)+Ie>>0]=(ge&1^1)&255^1;de=A[C>>2]|0;Ie=(A[E>>2]|0)+(Ie<<3)|0;A[Ie>>2]=-1;A[Ie+4>>2]=de;Ie=A[f>>2]|0;A[f>>2]=Ie+1;A[(A[B>>2]|0)+(Ie<<2)>>2]=ge}de=S;de=ai(A[de>>2]|0,A[de+4>>2]|0,1,0)|0;Ie=S;A[Ie>>2]=de;A[Ie+4>>2]=K;ne=ne+1|0;if(!(A[C>>2]|0)){oe=5;break}if(A[i>>2]|0)A[a>>2]=0;Tt(t,oe,i,D);Pt(t,A[D>>2]|0);if((A[a>>2]|0)==1){de=A[A[i>>2]>>2]|0;Ie=de>>1;n[(A[d>>2]|0)+Ie>>0]=(de&1^1)&255^1;pe=A[C>>2]|0;Ie=(A[E>>2]|0)+(Ie<<3)|0;A[Ie>>2]=-1;A[Ie+4>>2]=pe;Ie=A[f>>2]|0;A[f>>2]=Ie+1;A[(A[B>>2]|0)+(Ie<<2)>>2]=de}else{ie=cr(y,i,1)|0;oe=A[w>>2]|0;if((oe|0)==(A[v>>2]|0)){se=(oe>>1)+2&-2;se=(se|0)<2?2:se;if((se|0)>(2147483647-oe|0)){oe=14;break}de=A[Q>>2]|0;Ie=se+oe|0;A[v>>2]=Ie;Ie=jn(de,Ie<<2)|0;A[Q>>2]=Ie;if((Ie|0)==0?(A[(Ge()|0)>>2]|0)==12:0){oe=14;break}oe=A[w>>2]|0}A[w>>2]=oe+1;oe=(A[Q>>2]|0)+(oe<<2)|0;if(oe)A[oe>>2]=ie;Rt(t,ie);ae=A[y>>2]|0;Ie=ae+(ie<<2)|0;Ae=+g[ee>>3];Ie=Ie+((A[Ie>>2]|0)>>>5<<2)+4|0;Ee=Ae+ +c[Ie>>2];c[Ie>>2]=Ee;if(Ee>1.0e20){se=A[w>>2]|0;if((se|0)>0){oe=A[b>>2]|0;ge=0;do{Ie=ae+(A[oe+(ge<<2)>>2]<<2)|0;Ie=Ie+((A[Ie>>2]|0)>>>5<<2)+4|0;c[Ie>>2]=+c[Ie>>2]*1.0e-20;ge=ge+1|0}while((ge|0)!=(se|0))}g[ee>>3]=Ae*1.0e-20}de=A[A[i>>2]>>2]|0;Ie=de>>1;n[(A[d>>2]|0)+Ie>>0]=(de&1^1)&255^1;pe=A[C>>2]|0;Ie=(A[E>>2]|0)+(Ie<<3)|0;A[Ie>>2]=ie;A[Ie+4>>2]=pe;Ie=A[f>>2]|0;A[f>>2]=Ie+1;A[(A[B>>2]|0)+(Ie<<2)>>2]=de}g[H>>3]=1.0/+g[m>>3]*+g[H>>3];g[ee>>3]=1.0/+g[V>>3]*+g[ee>>3];Ie=(A[re>>2]|0)+-1|0;A[re>>2]=Ie;if(Ie)continue;Ae=+g[O>>3]*+g[j>>3];g[j>>3]=Ae;A[re>>2]=~~Ae;Ae=+g[Y>>3]*+g[R>>3];g[R>>3]=Ae;if((A[G>>2]|0)<=0)continue;oe=A[S>>2]|0;ie=A[_>>2]|0;fe=A[C>>2]|0;if(!fe)se=f;else se=A[p>>2]|0;se=A[se>>2]|0;he=A[J>>2]|0;ue=A[z>>2]|0;le=A[W>>2]|0;ge=I;ae=A[ge>>2]|0;ge=A[ge+4>>2]|0;ce=+(A[X>>2]|0);Ce=1.0/ce;if((fe|0)<0)Ee=0.0;else{pe=0;Ee=0.0;while(1){if(!pe)de=0;else de=A[(A[p>>2]|0)+(pe+-1<<2)>>2]|0;if((pe|0)==(fe|0))Ie=f;else Ie=(A[p>>2]|0)+(pe<<2)|0;Ee=Ee+ +q(+Ce,+ +(pe|0))*+((A[Ie>>2]|0)-de|0);if((pe|0)==(fe|0))break;else pe=pe+1|0}}A[Z>>2]=oe;A[Z+4>>2]=ie-se;A[Z+8>>2]=he;A[Z+12>>2]=ue;A[Z+16>>2]=~~Ae;A[Z+20>>2]=le;Ie=Z+24|0;g[h>>3]=(+(ae>>>0)+4294967296.0*+(ge>>>0))/+(le|0);A[Ie>>2]=A[h>>2];A[Ie+4>>2]=A[h+4>>2];Ie=Z+32|0;g[h>>3]=Ee/ce*100.0;A[Ie>>2]=A[h>>2];A[Ie+4>>2]=A[h+4>>2];Oe(1832,Z|0)|0}if((oe|0)==5)n[e>>0]=n[536]|0;else if((oe|0)==14)ze(Qe(1)|0,48,0);else if((oe|0)==41){Ae=+(A[X>>2]|0);ce=1.0/Ae;d=A[C>>2]|0;if((d|0)<0)Ce=0.0;else{C=0;Ce=0.0;while(1){if(!C)I=0;else I=A[(A[p>>2]|0)+(C+-1<<2)>>2]|0;if((C|0)==(d|0))E=f;else E=(A[p>>2]|0)+(C<<2)|0;Ce=Ce+ +q(+ce,+ +(C|0))*+((A[E>>2]|0)-I|0);if((C|0)==(d|0))break;else C=C+1|0}}g[t+528>>3]=Ce/Ae;Pt(t,0);n[e>>0]=n[544]|0}else if((oe|0)==50)n[e>>0]=n[536]|0;else if((oe|0)==57){A[$>>2]=ge^1;Ie=t+16|0;A[Z+0>>2]=A[$+0>>2];jt(t,Z,Ie);n[e>>0]=n[536]|0}else if((oe|0)==60)n[e>>0]=n[528]|0;e=A[i>>2]|0;if(!e){l=u;return}A[a>>2]=0;On(e);A[i>>2]=0;A[s>>2]=0;l=u;return}function qt(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0.0,w=0,y=0,Q=0,v=0.0,b=0,D=0;i=l;l=l+16|0;s=i;r=t+4|0;if(A[r>>2]|0)A[t+8>>2]=0;o=t+36|0;a=t+32|0;if((A[o>>2]|0)>0){c=t+16|0;u=0;do{n[(A[c>>2]|0)+(A[(A[a>>2]|0)+(u<<2)>>2]|0)>>0]=0;u=u+1|0}while((u|0)<(A[o>>2]|0))}if(A[a>>2]|0)A[o>>2]=0;a=t+492|0;if(!(n[a>>0]|0)){n[e>>0]=n[536]|0;l=i;return}c=t+152|0;Q=c;Q=ai(A[Q>>2]|0,A[Q+4>>2]|0,1,0)|0;A[c>>2]=Q;A[c+4>>2]=K;v=+g[t+120>>3]*+(A[t+208>>2]|0);c=t+640|0;g[c>>3]=v;B=+(A[t+104>>2]|0);if(v>3]=B;w=A[t+136>>2]|0;g[t+648>>3]=+(w|0);A[t+656>>2]=w;w=n[544]|0;c=t+44|0;if((A[c>>2]|0)>0){Te(2288)|0;Te(2368)|0;Te(2448)|0;Te(2528)|0;f=n[544]|0}else f=w;h=t+192|0;u=t+184|0;Q=f&255;e:do{if((Q>>>1^1)&w<<24>>24==f<<24>>24|w&2&Q){C=t+80|0;E=t+112|0;p=t+108|0;f=t+680|0;d=t+664|0;I=t+672|0;m=0;while(1){B=+g[E>>3];if(!(n[C>>0]|0))B=+q(+B,+ +(m|0));else{Q=m+1|0;if((m|0)>0){y=0;w=1;do{y=y+1|0;w=w<<1|1}while((w|0)<(Q|0));Q=w+-1|0}else{y=0;Q=0}if((Q|0)!=(m|0)){w=m;do{b=Q>>1;y=y+-1|0;w=(w|0)%(b|0)|0;Q=b+-1|0}while((Q|0)!=(w|0))}B=+q(+B,+ +(y|0))}Jt(s,t,~~(B*+(A[p>>2]|0)));w=n[s>>0]|0;if(n[f>>0]|0)break e;Q=d;y=A[Q+4>>2]|0;if((y|0)>=0?(b=h,D=A[b+4>>2]|0,!(D>>>0>>0|((D|0)==(y|0)?(A[b>>2]|0)>>>0<(A[Q>>2]|0)>>>0:0))):0)break e;Q=I;y=A[Q+4>>2]|0;if((y|0)>=0?(D=u,b=A[D+4>>2]|0,!(b>>>0>>0|((b|0)==(y|0)?(A[D>>2]|0)>>>0<(A[Q>>2]|0)>>>0:0))):0)break e;b=n[544]|0;D=b&255;if(!((D>>>1^1)&w<<24>>24==b<<24>>24|w&2&D))break;else m=m+1|0}}}while(0);if((A[c>>2]|0)>0)Te(2528)|0;b=n[528]|0;D=b&255;s=w&2;if(!((D>>>1^1)&w<<24>>24==b<<24>>24|s&D)){b=n[536]|0;D=b&255;if(((D>>>1^1)&w<<24>>24==b<<24>>24|s&D|0)!=0?(A[o>>2]|0)==0:0)n[a>>0]=0}else{o=t+540|0;nr(r,A[o>>2]|0);if((A[o>>2]|0)>0){s=t+332|0;a=0;do{n[(A[r>>2]|0)+a>>0]=n[(A[s>>2]|0)+a>>0]|0;a=a+1|0}while((a|0)<(A[o>>2]|0))}}Pt(t,0);n[e>>0]=w;l=i;return}function zt(e,t){e=e|0;t=t|0;var r=0,i=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0;r=l;s=e+412|0;pr(s);c=e+540|0;if((A[c>>2]|0)>0){a=e+544|0;i=0;do{g=i<<1;h=A[s>>2]|0;u=h+(g*12|0)+4|0;if((A[u>>2]|0)>0){p=h+(g*12|0)|0;f=0;do{I=(A[p>>2]|0)+(f<<3)|0;h=A[I>>2]|0;C=A[a>>2]|0;d=C+(h<<2)|0;if(!(A[d>>2]&16)){E=Cr(t,d)|0;A[I>>2]=E;A[d>>2]=A[d>>2]|16;A[C+(h+1<<2)>>2]=E}else A[I>>2]=A[C+(h+1<<2)>>2];f=f+1|0}while((f|0)<(A[u>>2]|0));u=A[s>>2]|0}else u=h;h=g|1;g=u+(h*12|0)+4|0;if((A[g>>2]|0)>0){d=u+(h*12|0)|0;C=0;do{u=(A[d>>2]|0)+(C<<3)|0;p=A[u>>2]|0;f=A[a>>2]|0;h=f+(p<<2)|0;if(!(A[h>>2]&16)){E=Cr(t,h)|0;A[u>>2]=E;A[h>>2]=A[h>>2]|16;A[f+(p+1<<2)>>2]=E}else A[u>>2]=A[f+(p+1<<2)>>2];C=C+1|0}while((C|0)<(A[g>>2]|0))}i=i+1|0}while((i|0)<(A[c>>2]|0))}i=e+284|0;if((A[i>>2]|0)>0){g=e+280|0;c=e+396|0;a=e+544|0;s=e+332|0;u=0;do{d=A[c>>2]|0;p=d+(A[(A[g>>2]|0)+(u<<2)>>2]>>1<<3)|0;C=A[p>>2]|0;do{if((C|0)!=-1){E=A[a>>2]|0;I=E+(C<<2)|0;f=(A[I>>2]&16|0)==0;if(f){m=A[E+(C+1<<2)>>2]|0;h=m>>1;m=(o[(A[s>>2]|0)+h>>0]|0)^m&1;w=n[528]|0;B=w&255;if(!((m&255)<<24>>24==w<<24>>24&(B>>>1^1)|B&2&m))break;w=A[d+(h<<3)>>2]|0;if(!((w|0)!=-1&(w|0)==(C|0)))break;if(f){w=Cr(t,I)|0;A[p>>2]=w;A[I>>2]=A[I>>2]|16;A[E+(C+1<<2)>>2]=w;break}}A[p>>2]=A[E+(C+1<<2)>>2]}}while(0);u=u+1|0}while((u|0)<(A[i>>2]|0))}i=e+272|0;h=A[i>>2]|0;if((h|0)>0){a=e+268|0;s=e+544|0;u=A[a>>2]|0;c=0;g=0;do{p=u+(c<<2)|0;f=A[p>>2]|0;d=A[s>>2]|0;C=d+(f<<2)|0;I=A[C>>2]|0;if((I&3|0)!=1){if(!(I&16)){h=Cr(t,C)|0;A[p>>2]=h;A[C>>2]=A[C>>2]|16;A[d+(f+1<<2)>>2]=h;h=A[a>>2]|0;u=h;h=A[h+(c<<2)>>2]|0}else{h=A[d+(f+1<<2)>>2]|0;A[p>>2]=h}A[u+(g<<2)>>2]=h;h=A[i>>2]|0;g=g+1|0}c=c+1|0}while((c|0)<(h|0))}else{c=0;g=0}s=c-g|0;if((s|0)>0)A[i>>2]=h-s;i=e+260|0;u=A[i>>2]|0;if((u|0)>0){s=e+256|0;e=e+544|0;g=A[s>>2]|0;a=0;c=0;do{h=g+(a<<2)|0;p=A[h>>2]|0;f=A[e>>2]|0;d=f+(p<<2)|0;C=A[d>>2]|0;if((C&3|0)!=1){if(!(C&16)){u=Cr(t,d)|0;A[h>>2]=u;A[d>>2]=A[d>>2]|16;A[f+(p+1<<2)>>2]=u;u=A[s>>2]|0;g=u;u=A[u+(a<<2)>>2]|0}else{u=A[f+(p+1<<2)>>2]|0;A[h>>2]=u}A[g+(c<<2)>>2]=u;u=A[i>>2]|0;c=c+1|0}a=a+1|0}while((a|0)<(u|0))}else{a=0;c=0}t=a-c|0;if((t|0)<=0){l=r;return}A[i>>2]=u-t;l=r;return}function Wt(e){e=e|0;var t=0,r=0,i=0,o=0,s=0,a=0,c=0;o=l;l=l+32|0;a=o;t=o+8|0;r=e+548|0;i=e+556|0;s=(A[r>>2]|0)-(A[i>>2]|0)|0;A[t+0>>2]=0;A[t+4>>2]=0;A[t+8>>2]=0;A[t+12>>2]=0;er(t,s);s=t+16|0;n[s>>0]=0;zt(e,t);if((A[e+44>>2]|0)>1){c=A[t+4>>2]<<2;A[a>>2]=A[r>>2]<<2;A[a+4>>2]=c;Oe(1888,a|0)|0}n[e+560>>0]=n[s>>0]|0;s=e+544|0;a=A[s>>2]|0;if(a)On(a);A[s>>2]=A[t>>2];A[r>>2]=A[t+4>>2];A[e+552>>2]=A[t+8>>2];A[i>>2]=A[t+12>>2];l=o;return}function Vt(){var e=0,t=0,r=0;e=l;l=l+16|0;t=e;n[528]=0;n[536]=1;n[544]=2;dt(552,608,624,2136,2144);A[138]=2168;g[72]=0.0;g[73]=1.0;n[592]=0;n[593]=0;i[297]=i[t+0>>1]|0;i[298]=i[t+2>>1]|0;i[299]=i[t+4>>1]|0;g[75]=.95;dt(664,720,736,2136,2144);A[166]=2168;g[86]=0.0;g[87]=1.0;n[704]=0;n[705]=0;i[353]=i[t+0>>1]|0;i[354]=i[t+2>>1]|0;i[355]=i[t+4>>1]|0;g[89]=.999;dt(776,832,848,2136,2144);A[194]=2168;g[100]=0.0;g[101]=1.0;n[816]=1;n[817]=1;i[409]=i[t+0>>1]|0;i[410]=i[t+2>>1]|0;i[411]=i[t+4>>1]|0;g[103]=0.0;dt(936,992,1008,2136,2144);A[234]=2168;g[120]=0.0;g[121]=Q;n[976]=0;n[977]=0;i[489]=i[t+0>>1]|0;i[490]=i[t+2>>1]|0;i[491]=i[t+4>>1]|0;g[123]=91648253.0;dt(1048,1080,1096,2136,2016);A[262]=280;r=1068|0;A[r>>2]=0;A[r+4>>2]=2;A[269]=2;dt(1160,1192,1208,2136,2016);A[290]=280;r=1180|0;A[r>>2]=0;A[r+4>>2]=2;A[297]=2;dt(1272,1296,1312,2136,1992);A[318]=160;n[1292]=0;dt(1344,1368,1376,2136,1992);A[336]=160;n[1364]=1;dt(1408,1440,1448,2136,2016);A[352]=280;r=1428|0;A[r>>2]=1;A[r+4>>2]=2147483647;A[359]=100;dt(1480,1536,1544,2136,2144);A[370]=2168;g[188]=1.0;g[189]=Q;n[1520]=0;n[1521]=0;i[761]=i[t+0>>1]|0;i[762]=i[t+2>>1]|0;i[763]=i[t+4>>1]|0;g[191]=2.0;dt(1584,1640,1648,2136,2144);A[396]=2168;g[201]=0.0;g[202]=Q;n[1624]=0;n[1625]=0;i[813]=i[t+0>>1]|0;i[814]=i[t+2>>1]|0;i[815]=i[t+4>>1]|0;g[204]=.2;dt(1728,1760,1776,2136,2016);A[432]=280;t=1748|0;A[t>>2]=0;A[t+4>>2]=2147483647;A[439]=0;l=e;return}function Xt(e){e=e|0;var t=0;t=l;gn(e);l=t;return}function Zt(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,u=0,h=0,f=0,p=0.0,C=0.0;r=l;l=l+16|0;s=r;o=r+8|0;if((n[t>>0]|0)!=45){f=0;l=r;return f|0}u=t+1|0;i=e+4|0;a=A[i>>2]|0;c=n[a>>0]|0;e:do{if(c<<24>>24){h=0;while(1){f=h;h=h+1|0;if((n[u>>0]|0)!=c<<24>>24){e=0;break}c=n[a+h>>0]|0;u=t+(f+2)|0;if(!(c<<24>>24))break e}l=r;return e|0}}while(0);if((n[u>>0]|0)!=61){f=0;l=r;return f|0}a=u+1|0;p=+Xn(a,o);if(!(A[o>>2]|0)){f=0;l=r;return f|0}C=+g[e+32>>3];if(p>=C?(n[e+41>>0]|0)==0|p!=C:0){f=A[I>>2]|0;h=A[i>>2]|0;A[s>>2]=a;A[s+4>>2]=h;et(f|0,2024,s|0)|0;nt(1)}C=+g[e+24>>3];if(p<=C?(n[e+40>>0]|0)==0|p!=C:0){f=A[I>>2]|0;h=A[i>>2]|0;A[s>>2]=a;A[s+4>>2]=h;et(f|0,2080,s|0)|0;nt(1)}g[e+48>>3]=p;f=1;l=r;return f|0}function $t(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0.0,c=0,u=0.0,f=0.0,p=0;r=l;l=l+48|0;i=r;o=A[I>>2]|0;p=A[e+16>>2]|0;c=(n[e+40>>0]|0)!=0?91:40;f=+g[e+24>>3];u=+g[e+32>>3];s=(n[e+41>>0]|0)!=0?93:41;a=+g[e+48>>3];A[i>>2]=A[e+4>>2];A[i+4>>2]=p;A[i+8>>2]=c;c=i+12|0;g[h>>3]=f;A[c>>2]=A[h>>2];A[c+4>>2]=A[h+4>>2];c=i+20|0;g[h>>3]=u;A[c>>2]=A[h>>2];A[c+4>>2]=A[h+4>>2];A[i+28>>2]=s;s=i+32|0;g[h>>3]=a;A[s>>2]=A[h>>2];A[s+4>>2]=A[h+4>>2];et(o|0,2232,i|0)|0;if(!t){l=r;return}A[i>>2]=A[e+8>>2];et(o|0,2e3,i|0)|0;qe(10,o|0)|0;l=r;return}function er(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0;r=l;n=e+8|0;i=A[n>>2]|0;if(i>>>0>>0)s=i;else{l=r;return}while(1){if(s>>>0>=t>>>0)break;s=((s>>>3)+2+(s>>>1)&-2)+s|0;A[n>>2]=s;if(s>>>0<=i>>>0){o=4;break}}if((o|0)==4)ze(Qe(1)|0,48,0);n=jn(A[e>>2]|0,s<<2)|0;if((n|0)==0?(A[(Ge()|0)>>2]|0)==12:0)ze(Qe(1)|0,48,0);A[e>>2]=n;l=r;return}function tr(e){e=e|0;var t=0,r=0,n=0,i=0,o=0,s=0,a=0;t=l;n=e+32|0;r=A[n>>2]|0;if(r){A[e+36>>2]=0;On(r);A[n>>2]=0;A[e+40>>2]=0}n=e+16|0;r=A[n>>2]|0;if(r){A[e+20>>2]=0;On(r);A[n>>2]=0;A[e+24>>2]=0}n=A[e>>2]|0;if(!n){l=t;return}r=e+4|0;o=A[r>>2]|0;if((o|0)>0){i=0;do{a=n+(i*12|0)|0;s=A[a>>2]|0;if(s){A[n+(i*12|0)+4>>2]=0;On(s);A[a>>2]=0;A[n+(i*12|0)+8>>2]=0;n=A[e>>2]|0;o=A[r>>2]|0}i=i+1|0}while((i|0)<(o|0))}A[r>>2]=0;On(n);A[e>>2]=0;A[e+8>>2]=0;l=t;return}function rr(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0;i=l;l=l+16|0;n=i+4|0;r=i;g=A[t>>2]|0;s=g+1|0;o=e+4|0;if((A[o>>2]|0)<(s|0)){c=e+8|0;a=A[c>>2]|0;if((a|0)<(s|0)){u=g+2-a&-2;g=(a>>1)+2&-2;g=(u|0)>(g|0)?u:g;if((g|0)>(2147483647-a|0)){u=Qe(1)|0;ze(u|0,48,0)}h=A[e>>2]|0;u=g+a|0;A[c>>2]=u;u=jn(h,u*12|0)|0;A[e>>2]=u;if((u|0)==0?(A[(Ge()|0)>>2]|0)==12:0){h=Qe(1)|0;ze(h|0,48,0)}}c=A[o>>2]|0;if((c|0)<(s|0)){a=A[e>>2]|0;do{g=a+(c*12|0)|0;if(g){A[g>>2]=0;A[a+(c*12|0)+4>>2]=0;A[a+(c*12|0)+8>>2]=0}c=c+1|0}while((c|0)!=(s|0))}A[o>>2]=s;g=A[t>>2]|0}o=A[e>>2]|0;if(!(A[o+(g*12|0)>>2]|0)){u=g;h=e+16|0;A[r>>2]=u;A[n+0>>2]=A[r+0>>2];ur(h,n,0);l=i;return}A[o+(g*12|0)+4>>2]=0;u=A[t>>2]|0;h=e+16|0;A[r>>2]=u;A[n+0>>2]=A[r+0>>2];ur(h,n,0);l=i;return}function nr(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0;i=l;r=e+4|0;if((A[r>>2]|0)>=(t|0)){l=i;return}s=e+8|0;o=A[s>>2]|0;if((o|0)<(t|0)){c=t+1-o&-2;a=(o>>1)+2&-2;a=(c|0)>(a|0)?c:a;if((a|0)>(2147483647-o|0)){c=Qe(1)|0;ze(c|0,48,0)}g=A[e>>2]|0;c=a+o|0;A[s>>2]=c;c=jn(g,c)|0;A[e>>2]=c;if((c|0)==0?(A[(Ge()|0)>>2]|0)==12:0){g=Qe(1)|0;ze(g|0,48,0)}}o=A[r>>2]|0;if((o|0)<(t|0)){e=A[e>>2]|0;do{s=e+o|0;if(s)n[s>>0]=0;o=o+1|0}while((o|0)!=(t|0))}A[r>>2]=t;l=i;return}function ir(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0;s=l;o=t+1|0;i=e+4|0;if((A[i>>2]|0)>=(o|0)){g=A[e>>2]|0;g=g+t|0;n[g>>0]=r;l=s;return}c=e+8|0;a=A[c>>2]|0;if((a|0)<(o|0)){u=t+2-a&-2;g=(a>>1)+2&-2;g=(u|0)>(g|0)?u:g;if((g|0)>(2147483647-a|0)){u=Qe(1)|0;ze(u|0,48,0)}h=A[e>>2]|0;u=g+a|0;A[c>>2]=u;u=jn(h,u)|0;A[e>>2]=u;if((u|0)==0?(A[(Ge()|0)>>2]|0)==12:0){h=Qe(1)|0;ze(h|0,48,0)}}a=A[i>>2]|0;if((a|0)<(o|0))do{c=(A[e>>2]|0)+a|0;if(c)n[c>>0]=0;a=a+1|0}while((a|0)!=(o|0));A[i>>2]=o;h=A[e>>2]|0;h=h+t|0;n[h>>0]=r;l=s;return}function Ar(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0,u=0,h=0,f=0;r=l;l=l+16|0;o=r;A[o>>2]=t;s=e+12|0;i=t+1|0;n=e+16|0;if((A[n>>2]|0)<(i|0)){c=e+20|0;a=A[c>>2]|0;if((a|0)<(i|0)){h=t+2-a&-2;u=(a>>1)+2&-2;u=(h|0)>(u|0)?h:u;if((u|0)>(2147483647-a|0)){h=Qe(1)|0;ze(h|0,48,0)}f=A[s>>2]|0;h=u+a|0;A[c>>2]=h;h=jn(f,h<<2)|0;A[s>>2]=h;if((h|0)==0?(A[(Ge()|0)>>2]|0)==12:0){f=Qe(1)|0;ze(f|0,48,0)}}a=A[n>>2]|0;if((i|0)>(a|0))Ai((A[s>>2]|0)+(a<<2)|0,-1,i-a<<2|0)|0;A[n>>2]=i}A[(A[s>>2]|0)+(t<<2)>>2]=A[e+4>>2];sr(e,o);n=A[s>>2]|0;o=A[n+(t<<2)>>2]|0;t=A[e>>2]|0;i=A[t+(o<<2)>>2]|0;if(!o){h=0;f=t+(h<<2)|0;A[f>>2]=i;f=n+(i<<2)|0;A[f>>2]=h;l=r;return}e=e+28|0;while(1){s=o;o=o+-1>>1;a=t+(o<<2)|0;c=A[a>>2]|0;f=A[A[e>>2]>>2]|0;if(!(+g[f+(i<<3)>>3]>+g[f+(c<<3)>>3])){e=14;break}A[t+(s<<2)>>2]=c;A[n+(A[a>>2]<<2)>>2]=s;if(!o){s=0;e=14;break}}if((e|0)==14){f=t+(s<<2)|0;A[f>>2]=i;f=n+(i<<2)|0;A[f>>2]=s;l=r;return}}function or(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0;r=l;n=e+4|0;i=A[n>>2]|0;o=e+8|0;s=A[o>>2]|0;if((i|0)==(s|0)&(s|0)<(i+1|0)){s=(i>>1)+2&-2;s=(s|0)<2?2:s;if((s|0)>(2147483647-i|0)){s=Qe(1)|0;ze(s|0,48,0)}a=A[e>>2]|0;i=s+i|0;A[o>>2]=i;i=jn(a,i<<2)|0;A[e>>2]=i;if((i|0)==0?(A[(Ge()|0)>>2]|0)==12:0){a=Qe(1)|0;ze(a|0,48,0)}}else i=A[e>>2]|0;a=A[n>>2]|0;A[n>>2]=a+1;n=i+(a<<2)|0;if(!n){l=r;return}A[n>>2]=A[t>>2];l=r;return}function sr(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0;r=l;n=e+4|0;i=A[n>>2]|0;o=e+8|0;s=A[o>>2]|0;if((i|0)==(s|0)&(s|0)<(i+1|0)){s=(i>>1)+2&-2;s=(s|0)<2?2:s;if((s|0)>(2147483647-i|0)){s=Qe(1)|0;ze(s|0,48,0)}a=A[e>>2]|0;i=s+i|0;A[o>>2]=i;i=jn(a,i<<2)|0;A[e>>2]=i;if((i|0)==0?(A[(Ge()|0)>>2]|0)==12:0){a=Qe(1)|0;ze(a|0,48,0)}}else i=A[e>>2]|0;a=A[n>>2]|0;A[n>>2]=a+1;n=i+(a<<2)|0;if(!n){l=r;return}A[n>>2]=A[t>>2];l=r;return}function ar(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0;r=l;l=l+16|0;i=r+2|0;s=r+1|0;o=r;if((t|0)<16){o=t+-1|0;if((o|0)>0)s=0;else{l=r;return}do{i=s;s=s+1|0;if((s|0)<(t|0)){c=i;a=s;do{c=(A[e+(a<<2)>>2]|0)<(A[e+(c<<2)>>2]|0)?a:c;a=a+1|0}while((a|0)!=(t|0))}else c=i;h=e+(i<<2)|0;f=A[h>>2]|0;p=e+(c<<2)|0;A[h>>2]=A[p>>2];A[p>>2]=f}while((s|0)!=(o|0));l=r;return}a=A[e+(((t|0)/2|0)<<2)>>2]|0;u=-1;h=t;while(1){do{u=u+1|0;g=e+(u<<2)|0;c=A[g>>2]|0}while((c|0)<(a|0));do{h=h+-1|0;f=e+(h<<2)|0;p=A[f>>2]|0}while((a|0)<(p|0));if((u|0)>=(h|0))break;A[g>>2]=p;A[f>>2]=c}n[i+0>>0]=n[s+0>>0]|0;ar(e,u,i);p=t-u|0;n[i+0>>0]=n[o+0>>0]|0;ar(g,p,i);l=r;return}function cr(e,t,r){e=e|0;t=t|0;r=r|0;var n=0,i=0,s=0,a=0,g=0,u=0;n=l;a=r&1;s=o[e+16>>0]|0|a;i=t+4|0;g=((s+(A[i>>2]|0)<<2)+4|0)>>>2;u=e+4|0;er(e,g+(A[u>>2]|0)|0);r=A[u>>2]|0;g=g+r|0;A[u>>2]=g;if(g>>>0>>0)ze(Qe(1)|0,48,0);e=(A[e>>2]|0)+(r<<2)|0;if(!e){l=n;return r|0}s=s<<3|a<<2;A[e>>2]=A[e>>2]&-32|s;s=A[i>>2]<<5|s;A[e>>2]=s;if((A[i>>2]|0)>0){s=A[t>>2]|0;t=0;do{A[e+(t<<2)+4>>2]=A[s+(t<<2)>>2];t=t+1|0}while((t|0)<(A[i>>2]|0));s=A[e>>2]|0}if(!(s&8)){l=n;return r|0}i=s>>>5;if(s&4){c[e+(i<<2)+4>>2]=0.0;l=n;return r|0}if(!i){i=0;s=0}else{s=0;t=0;do{s=1<<((A[e+(t<<2)+4>>2]|0)>>>1&31)|s;t=t+1|0}while((t|0)<(i|0))}A[e+(i<<2)+4>>2]=s;l=n;return r|0}function gr(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0;r=l;n=e+4|0;i=A[n>>2]|0;o=e+8|0;s=A[o>>2]|0;if((i|0)==(s|0)&(s|0)<(i+1|0)){s=(i>>1)+2&-2;s=(s|0)<2?2:s;if((s|0)>(2147483647-i|0)){s=Qe(1)|0;ze(s|0,48,0)}a=A[e>>2]|0;i=s+i|0;A[o>>2]=i;i=jn(a,i<<3)|0;A[e>>2]=i;if((i|0)==0?(A[(Ge()|0)>>2]|0)==12:0){a=Qe(1)|0;ze(a|0,48,0)}}else i=A[e>>2]|0;a=A[n>>2]|0;A[n>>2]=a+1;n=i+(a<<3)|0;if(!n){l=r;return}o=t;s=A[o+4>>2]|0;a=n;A[a>>2]=A[o>>2];A[a+4>>2]=s;l=r;return}function lr(e){e=e|0;var t=0,r=0,n=0,i=0,o=0,s=0,a=0,c=0,u=0,h=0,f=0,p=0,C=0.0,d=0.0,I=0;t=l;r=A[e>>2]|0;i=A[r>>2]|0;a=e+4|0;f=A[r+((A[a>>2]|0)+-1<<2)>>2]|0;A[r>>2]=f;n=A[e+12>>2]|0;A[n+(f<<2)>>2]=0;A[n+(i<<2)>>2]=-1;f=(A[a>>2]|0)+-1|0;A[a>>2]=f;if((f|0)<=1){l=t;return i|0}o=A[r>>2]|0;c=e+28|0;e=0;u=1;while(1){h=(e<<1)+2|0;if((h|0)<(f|0)){p=A[r+(h<<2)>>2]|0;I=A[r+(u<<2)>>2]|0;f=A[A[c>>2]>>2]|0;C=+g[f+(p<<3)>>3];d=+g[f+(I<<3)>>3];if(!(C>d)){p=I;C=d;s=6}}else{f=A[A[c>>2]>>2]|0;s=A[r+(u<<2)>>2]|0;p=s;C=+g[f+(s<<3)>>3];s=6}if((s|0)==6){s=0;h=u}if(!(C>+g[f+(o<<3)>>3]))break;A[r+(e<<2)>>2]=p;A[n+(p<<2)>>2]=e;u=h<<1|1;f=A[a>>2]|0;if((u|0)>=(f|0)){e=h;break}else e=h}A[r+(e<<2)>>2]=o;A[n+(o<<2)>>2]=e;l=t;return i|0}function ur(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,o=0,s=0,a=0,c=0,g=0,u=0;i=l;c=A[t>>2]|0;t=c+1|0;o=e+4|0;if((A[o>>2]|0)>=(t|0)){l=i;return}a=e+8|0;s=A[a>>2]|0;if((s|0)<(t|0)){g=c+2-s&-2;c=(s>>1)+2&-2;c=(g|0)>(c|0)?g:c;if((c|0)>(2147483647-s|0)){g=Qe(1)|0;ze(g|0,48,0)}u=A[e>>2]|0;g=c+s|0;A[a>>2]=g;g=jn(u,g)|0;A[e>>2]=g;if((g|0)==0?(A[(Ge()|0)>>2]|0)==12:0){u=Qe(1)|0;ze(u|0,48,0)}}s=A[o>>2]|0;if((s|0)<(t|0))do{n[(A[e>>2]|0)+s>>0]=r;s=s+1|0}while((s|0)!=(t|0));A[o>>2]=t;l=i;return}function hr(e,t,r){e=e|0;t=t|0;r=r|0;var n=0,i=0,o=0,s=0,a=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0;n=l;l=l+16|0;o=n+8|0;i=n+4|0;s=n;if((t|0)<16){i=t+-1|0;if((i|0)<=0){l=n;return}o=A[r>>2]|0;r=0;do{s=r;r=r+1|0;if((r|0)<(t|0)){a=A[o>>2]|0;u=s;g=r;do{h=a+(A[e+(g<<2)>>2]<<2)|0;m=A[h>>2]|0;C=m>>>5;if(m>>>0>95){f=a+(A[e+(u<<2)>>2]<<2)|0;p=(A[f>>2]|0)>>>5;if((p|0)==2)u=g;else u=+c[h+(C<<2)+4>>2]<+c[f+(p<<2)+4>>2]?g:u}g=g+1|0}while((g|0)!=(t|0))}else u=s;I=e+(s<<2)|0;E=A[I>>2]|0;m=e+(u<<2)|0;A[I>>2]=A[m>>2];A[m>>2]=E}while((r|0)!=(i|0));l=n;return}a=A[e+(((t|0)/2|0)<<2)>>2]|0;C=-1;f=t;while(1){E=C+1|0;p=e+(E<<2)|0;m=A[p>>2]|0;g=A[r>>2]|0;u=A[g>>2]|0;I=u+(m<<2)|0;d=A[I>>2]|0;C=u+(a<<2)|0;h=A[C>>2]|0;e:do{if(d>>>0>95)while(1){B=h>>>5;if((B|0)!=2?!(+c[I+(d>>>5<<2)+4>>2]<+c[C+(B<<2)+4>>2]):0){C=E;break e}E=E+1|0;p=e+(E<<2)|0;m=A[p>>2]|0;I=u+(m<<2)|0;d=A[I>>2]|0;if(d>>>0<=95){C=E;break}}else C=E}while(0);f=f+-1|0;I=e+(f<<2)|0;d=u+(a<<2)|0;e:do{if(h>>>0>95)while(1){E=u+(A[I>>2]<<2)|0;B=(A[E>>2]|0)>>>5;if((B|0)!=2?!(+c[d+(h>>>5<<2)+4>>2]<+c[E+(B<<2)+4>>2]):0)break e;B=f+-1|0;I=e+(B<<2)|0;f=B}}while(0);if((C|0)>=(f|0))break;A[p>>2]=A[I>>2];A[I>>2]=m}A[i>>2]=g;A[o+0>>2]=A[i+0>>2];hr(e,C,o);B=t-C|0;A[s>>2]=g;A[o+0>>2]=A[s+0>>2];hr(p,B,o);l=n;return}function fr(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0,u=0,h=0,f=0,p=0,C=0.0,d=0.0,I=0;n=l;i=e+4|0;s=A[i>>2]|0;o=A[e>>2]|0;if((s|0)>0){c=A[e+12>>2]|0;a=0;do{A[c+(A[o+(a<<2)>>2]<<2)>>2]=-1;a=a+1|0;s=A[i>>2]|0}while((a|0)<(s|0))}if(o){A[i>>2]=0;s=0}o=t+4|0;if((A[o>>2]|0)>0){a=e+12|0;s=0;do{I=(A[t>>2]|0)+(s<<2)|0;A[(A[a>>2]|0)+(A[I>>2]<<2)>>2]=s;sr(e,I);s=s+1|0}while((s|0)<(A[o>>2]|0));s=A[i>>2]|0}if((s|0)<=1){l=n;return}o=A[e>>2]|0;t=e+28|0;e=e+12|0;f=s;a=(s|0)/2|0;while(1){a=a+-1|0;s=A[o+(a<<2)>>2]|0;u=a<<1|1;e:do{if((u|0)<(f|0)){c=a;while(1){h=(c<<1)+2|0;if((h|0)<(f|0)){p=A[o+(h<<2)>>2]|0;I=A[o+(u<<2)>>2]|0;f=A[A[t>>2]>>2]|0;C=+g[f+(p<<3)>>3];d=+g[f+(I<<3)>>3];if(!(C>d)){p=I;C=d;r=16}}else{f=A[A[t>>2]>>2]|0;r=A[o+(u<<2)>>2]|0;p=r;C=+g[f+(r<<3)>>3];r=16}if((r|0)==16){r=0;h=u}if(!(C>+g[f+(s<<3)>>3]))break e;A[o+(c<<2)>>2]=p;A[(A[e>>2]|0)+(p<<2)>>2]=c;u=h<<1|1;f=A[i>>2]|0;if((u|0)>=(f|0)){c=h;break}else c=h}}else c=a}while(0);A[o+(c<<2)>>2]=s;A[(A[e>>2]|0)+(s<<2)>>2]=c;if((a|0)<=0)break;f=A[i>>2]|0}l=n;return}function pr(e){e=e|0;var t=0,r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0;r=l;t=e+36|0;g=A[t>>2]|0;i=e+32|0;h=A[i>>2]|0;if((g|0)>0){s=e+16|0;o=e+44|0;a=0;do{c=h+(a<<2)|0;u=A[c>>2]|0;if(n[(A[s>>2]|0)+u>>0]|0){h=A[e>>2]|0;g=h+(u*12|0)+4|0;p=A[g>>2]|0;if((p|0)>0){u=h+(u*12|0)|0;h=0;f=0;do{C=A[u>>2]|0;d=C+(h<<3)|0;if((A[(A[A[o>>2]>>2]|0)+(A[d>>2]<<2)>>2]&3|0)!=1){I=d;d=A[I+4>>2]|0;p=C+(f<<3)|0;A[p>>2]=A[I>>2];A[p+4>>2]=d;p=A[g>>2]|0;f=f+1|0}h=h+1|0}while((h|0)<(p|0))}else{h=0;f=0}u=h-f|0;if((u|0)>0)A[g>>2]=p-u;n[(A[s>>2]|0)+(A[c>>2]|0)>>0]=0;g=A[t>>2]|0;h=A[i>>2]|0}a=a+1|0}while((a|0)<(g|0))}if(!h){l=r;return}A[t>>2]=0;l=r;return}function Cr(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,s=0,a=0;n=l;s=A[t>>2]|0;i=s>>>2&1|(o[e+16>>0]|0);s=((i+(s>>>5)<<2)+4|0)>>>2;a=e+4|0;er(e,s+(A[a>>2]|0)|0);r=A[a>>2]|0;s=s+r|0;A[a>>2]=s;if(s>>>0>>0)ze(Qe(1)|0,48,0);e=(A[e>>2]|0)+(r<<2)|0;if(!e){l=n;return r|0}i=A[t>>2]&-9|i<<3;A[e>>2]=i;if((A[t>>2]|0)>>>0>31){i=0;do{A[e+(i<<2)+4>>2]=A[t+(i<<2)+4>>2];i=i+1|0}while((i|0)<((A[t>>2]|0)>>>5|0));i=A[e>>2]|0}if(!(i&8)){l=n;return r|0}s=i>>>5;t=t+(s<<2)+4|0;if(!(i&4)){A[e+(s<<2)+4>>2]=A[t>>2];l=n;return r|0}else{c[e+(s<<2)+4>>2]=+c[t>>2];l=n;return r|0}return 0}function dr(e){e=e|0;var t=0,r=0,i=0,o=0,s=0,a=0;t=l;l=l+16|0;o=t;bt(e);A[e>>2]=3424;A[e+684>>2]=A[719];A[e+688>>2]=A[747];A[e+692>>2]=A[785];g[e+696>>3]=+g[411];n[e+704>>0]=n[2652]|0;n[e+705>>0]=n[2724]|0;n[e+706>>0]=n[2804]|0;n[e+707>>0]=1;A[e+708>>2]=0;A[e+712>>2]=0;A[e+716>>2]=0;A[e+720>>2]=1;n[e+724>>0]=1;r=e+732|0;a=e+544|0;A[e+760>>2]=0;A[e+764>>2]=0;A[e+768>>2]=0;A[e+776>>2]=0;A[e+780>>2]=0;A[e+784>>2]=0;A[e+792>>2]=0;A[e+796>>2]=0;A[e+800>>2]=0;s=e+804|0;A[r+0>>2]=0;A[r+4>>2]=0;A[r+8>>2]=0;A[r+12>>2]=0;A[r+16>>2]=0;A[r+20>>2]=0;A[s>>2]=a;s=e+808|0;A[s>>2]=0;A[e+812>>2]=0;A[e+816>>2]=0;r=e+824|0;A[r+0>>2]=0;A[r+4>>2]=0;A[r+8>>2]=0;A[r+12>>2]=0;A[r+16>>2]=0;A[r+20>>2]=0;A[e+852>>2]=s;Lr(e+856|0,1);s=e+868|0;r=e+892|0;A[e+920>>2]=0;A[e+924>>2]=0;A[s+0>>2]=0;A[s+4>>2]=0;A[s+8>>2]=0;A[s+12>>2]=0;A[s+16>>2]=0;A[r+0>>2]=0;A[r+4>>2]=0;A[r+8>>2]=0;A[r+12>>2]=0;A[r+16>>2]=0;A[r+20>>2]=0;r=o+4|0;A[r>>2]=0;s=o+8|0;A[s>>2]=2;i=jn(0,8)|0;A[o>>2]=i;if((i|0)==0?(A[(Ge()|0)>>2]|0)==12:0)ze(Qe(1)|0,48,0);A[i>>2]=-2;A[r>>2]=1;n[e+560>>0]=1;A[e+928>>2]=cr(a,o,0)|0;n[e+536>>0]=0;if(!i){l=t;return}A[r>>2]=0;On(i);A[o>>2]=0;A[s>>2]=0;l=t;return}function Ir(e){e=e|0;var t=0;t=l;Er(e);gn(e);l=t;return}function Er(e){e=e|0;var t=0,r=0,n=0;t=l;A[e>>2]=3424;r=e+904|0;n=A[r>>2]|0;if(n){A[e+908>>2]=0;On(n);A[r>>2]=0;A[e+912>>2]=0}r=e+892|0;n=A[r>>2]|0;if(n){A[e+896>>2]=0;On(n);A[r>>2]=0;A[e+900>>2]=0}r=e+876|0;n=A[r>>2]|0;if(n){A[e+880>>2]=0;On(n);A[r>>2]=0;A[e+884>>2]=0}r=e+856|0;n=A[r>>2]|0;if(n){A[e+860>>2]=0;On(n);A[r>>2]=0;A[e+864>>2]=0}n=e+836|0;r=A[n>>2]|0;if(r){A[e+840>>2]=0;On(r);A[n>>2]=0;A[e+844>>2]=0}r=e+824|0;n=A[r>>2]|0;if(n){A[e+828>>2]=0;On(n);A[r>>2]=0;A[e+832>>2]=0}r=e+808|0;n=A[r>>2]|0;if(n){A[e+812>>2]=0;On(n);A[r>>2]=0;A[e+816>>2]=0}Pr(e+760|0);r=e+744|0;n=A[r>>2]|0;if(n){A[e+748>>2]=0;On(n);A[r>>2]=0;A[e+752>>2]=0}r=e+732|0;n=A[r>>2]|0;if(!n){St(e);l=t;return}A[e+736>>2]=0;On(n);A[r>>2]=0;A[e+740>>2]=0;St(e);l=t;return}function mr(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,o=0,s=0,a=0,c=0,g=0;i=l;l=l+32|0;s=i+12|0;c=i+8|0;g=i+16|0;o=i+4|0;a=i;n[g>>0]=n[t>>0]|0;n[s+0>>0]=n[g+0>>0]|0;r=kt(e,s,r)|0;A[c>>2]=r;ir(e+876|0,r,0);ir(e+904|0,r,0);if(!(n[e+724>>0]|0)){l=i;return r|0}g=e+808|0;t=r<<1;A[o>>2]=t;A[s+0>>2]=A[o+0>>2];Ur(g,s,0);A[a>>2]=t|1;A[s+0>>2]=A[a+0>>2];Ur(g,s,0);Tr(e+760|0,c);ir(e+744|0,r,0);Or(e+824|0,r);l=i;return r|0}function Br(e,t,r,i){e=e|0;t=t|0;r=r|0;i=i|0;var s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0,y=0;c=l;l=l+32|0;s=c+4|0;d=c;p=c+16|0;A[s>>2]=0;a=s+4|0;A[a>>2]=0;g=s+8|0;A[g>>2]=0;I=n[2608]|0;n[e>>0]=I;u=t+724|0;r=(o[u>>0]&(r&1)|0)!=0;if(r){m=t+308|0;y=A[m>>2]|0;if((y|0)>0){E=t+304|0;I=t+876|0;B=0;do{w=A[(A[E>>2]|0)+(B<<2)>>2]>>1;A[d>>2]=w;w=(A[I>>2]|0)+w|0;if(!(n[w>>0]|0)){n[w>>0]=1;sr(s,d);y=A[m>>2]|0}B=B+1|0}while((B|0)<(y|0))}d=(wr(t,i)|0)&1^1;n[e>>0]=d;i=n[2608]|0}else{i=I;d=I}y=i&255;if(!((y>>>1^1)&d<<24>>24==i<<24>>24|y&2&(d&255))){if((A[t+44>>2]|0)>0)Te(3760)|0}else{qt(p,t);d=n[p>>0]|0;n[e>>0]=d}w=n[2608]|0;y=w&255;if((((y>>>1^1)&d<<24>>24==w<<24>>24|y&2&(d&255)|0)!=0?(n[t+707>>0]|0)!=0:0)?(C=(A[t+736>>2]|0)+-1|0,(C|0)>0):0){e=t+732|0;p=t+4|0;do{i=A[e>>2]|0;m=A[i+(C<<2)>>2]|0;B=C+-1|0;w=A[i+(B<<2)>>2]|0;C=A[p>>2]|0;e:do{if((m|0)>1){I=n[2616]|0;d=I&255;E=d&2;d=d>>>1^1;y=B;while(1){w=o[C+(w>>1)>>0]^w&1;B=m+-1|0;if(!((w&255)<<24>>24==I<<24>>24&d|E&w))break e;m=y+-1|0;w=A[i+(m<<2)>>2]|0;if((B|0)>1){y=m;m=B}else{y=m;m=B;f=20;break}}}else{y=B;f=20}}while(0);if((f|0)==20){f=0;n[C+(w>>1)>>0]=(w&1^1)&255^1}C=y-m|0}while((C|0)>0)}if(r?(h=A[a>>2]|0,(h|0)>0):0){f=A[s>>2]|0;r=t+876|0;p=0;do{e=A[f+(p<<2)>>2]|0;n[(A[r>>2]|0)+e>>0]=0;if(n[u>>0]|0)jr(t,e);p=p+1|0}while((p|0)<(h|0))}t=A[s>>2]|0;if(!t){l=c;return}A[a>>2]=0;On(t);A[s>>2]=0;A[g>>2]=0;l=c;return}function wr(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,u=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0,y=0,Q=0,v=0,b=0,D=0,S=0,k=0,M=0,F=0,N=0,R=0,K=0,x=0;c=l;l=l+16|0;s=c;if(!(Ht(e)|0)){R=0;l=c;return R|0}a=e+724|0;if(!(n[a>>0]|0)){R=1;l=c;return R|0}y=e+924|0;B=e+872|0;w=e+868|0;m=e+860|0;d=e+680|0;Q=e+824|0;o=e+828|0;f=e+836|0;v=e+904|0;b=e+332|0;r=e+44|0;D=e+704|0;k=e+706|0;M=e+696|0;p=e+556|0;C=e+548|0;S=e+876|0;I=e+920|0;E=e+284|0;e:while(1){if(((A[y>>2]|0)<=0?(A[I>>2]|0)>=(A[E>>2]|0):0)?(A[o>>2]|0)<=0:0)break;Sr(e);N=A[B>>2]|0;R=A[w>>2]|0;F=N-R|0;if((N|0)<(R|0))F=(A[m>>2]|0)+F|0;if(!((F|0)<=0?(A[I>>2]|0)>=(A[E>>2]|0):0))u=11;if((u|0)==11?(u=0,!(kr(e,1)|0)):0){u=12;break}R=A[o>>2]|0;if(n[d>>0]|0){u=15;break}if(!R)continue;else F=0;while(1){x=A[Q>>2]|0;N=A[x>>2]|0;K=A[x+(R+-1<<2)>>2]|0;A[x>>2]=K;R=A[f>>2]|0;A[R+(K<<2)>>2]=0;A[R+(N<<2)>>2]=-1;R=(A[o>>2]|0)+-1|0;A[o>>2]=R;if((R|0)>1)Yr(Q,0);if(n[d>>0]|0)continue e;if((n[(A[v>>2]|0)+N>>0]|0)==0?(K=n[(A[b>>2]|0)+N>>0]|0,R=n[2624]|0,x=R&255,((x>>>1^1)&K<<24>>24==R<<24>>24|K&2&x|0)!=0):0){if((A[r>>2]|0)>1&((F|0)%100|0|0)==0){A[s>>2]=A[o>>2];Oe(3504,s|0)|0}if(n[D>>0]|0){x=(A[S>>2]|0)+N|0;R=n[x>>0]|0;n[x>>0]=1;if(!(Fr(e,N)|0)){u=29;break e}n[(A[S>>2]|0)+N>>0]=R<<24>>24!=0&1}if((((n[k>>0]|0)!=0?(K=n[(A[b>>2]|0)+N>>0]|0,R=n[2624]|0,x=R&255,((x>>>1^1)&K<<24>>24==R<<24>>24|K&2&x|0)!=0):0)?(n[(A[S>>2]|0)+N>>0]|0)==0:0)?!(Nr(e,N)|0):0){u=35;break e}if(+((A[p>>2]|0)>>>0)>+g[M>>3]*+((A[C>>2]|0)>>>0))Yi[A[(A[e>>2]|0)+8>>2]&31](e)}R=A[o>>2]|0;if(!R)continue e;else F=F+1|0}}do{if((u|0)==12)n[e+492>>0]=0;else if((u|0)==15){d=A[e+824>>2]|0;if((R|0)<=0){if(!d)break}else{E=A[f>>2]|0;I=0;do{A[E+(A[d+(I<<2)>>2]<<2)>>2]=-1;I=I+1|0}while((I|0)<(A[o>>2]|0))}A[o>>2]=0}else if((u|0)==29)n[e+492>>0]=0;else if((u|0)==35)n[e+492>>0]=0}while(0);if(!t){if(+((A[p>>2]|0)>>>0)>+g[e+96>>3]*+((A[C>>2]|0)>>>0))Yi[A[(A[e>>2]|0)+8>>2]&31](e)}else{t=e+744|0;p=A[t>>2]|0;if(p){A[e+748>>2]=0;On(p);A[t>>2]=0;A[e+752>>2]=0}Gr(e+760|0,1);t=e+808|0;p=A[t>>2]|0;if(p){A[e+812>>2]=0;On(p);A[t>>2]=0;A[e+816>>2]=0}p=e+824|0;t=A[p>>2]|0;if((A[o>>2]|0)<=0){if(t)u=48}else{u=A[f>>2]|0;f=0;do{A[u+(A[t+(f<<2)>>2]<<2)>>2]=-1;f=f+1|0}while((f|0)<(A[o>>2]|0));u=48}if((u|0)==48){A[o>>2]=0;On(t);A[p>>2]=0;A[e+832>>2]=0}_r(e+856|0,1);n[a>>0]=0;n[e+536>>0]=1;n[e+560>>0]=0;A[e+728>>2]=A[e+540>>2];_t(e);Yi[A[(A[e>>2]|0)+8>>2]&31](e)}if((A[r>>2]|0)>0?(i=A[e+736>>2]|0,(i|0)>0):0){g[h>>3]=+(i<<2>>>0)*9.5367431640625e-7;A[s>>2]=A[h>>2];A[s+4>>2]=A[h+4>>2];Oe(3528,s|0)|0}x=(n[e+492>>0]|0)!=0;l=c;return x|0}function yr(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0;r=l;l=l+16|0;o=r;a=e+256|0;c=e+260|0;s=A[c>>2]|0;if((n[e+705>>0]|0)!=0?Qr(e,t)|0:0){p=1;l=r;return p|0}if(!(Mt(e,t)|0)){p=0;l=r;return p|0}if(!(n[e+724>>0]|0)){p=1;l=r;return p|0}t=A[c>>2]|0;if((t|0)!=(s+1|0)){p=1;l=r;return p|0}p=A[(A[a>>2]|0)+(t+-1<<2)>>2]|0;A[o>>2]=p;u=(A[e+544>>2]|0)+(p<<2)|0;Hr(e+856|0,p);if((A[u>>2]|0)>>>0<=31){p=1;l=r;return p|0}g=e+760|0;c=e+808|0;a=e+744|0;s=e+924|0;t=e+824|0;h=e+840|0;e=e+836|0;f=0;do{p=u+(f<<2)+4|0;Jr((A[g>>2]|0)+((A[p>>2]>>1)*12|0)|0,o);C=(A[c>>2]|0)+(A[p>>2]<<2)|0;A[C>>2]=(A[C>>2]|0)+1;n[(A[a>>2]|0)+(A[p>>2]>>1)>>0]=1;A[s>>2]=(A[s>>2]|0)+1;p=A[p>>2]>>1;if((A[h>>2]|0)>(p|0)?(i=A[(A[e>>2]|0)+(p<<2)>>2]|0,(i|0)>-1):0)Yr(t,i);f=f+1|0}while((f|0)<((A[u>>2]|0)>>>5|0));i=1;l=r;return i|0}function Qr(e,t){e=e|0;t=t|0;var r=0,i=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0;c=l;l=l+16|0;s=c+8|0;a=c+4|0;i=c;A[a>>2]=A[e+284>>2];sr(e+292|0,a);a=t+4|0;u=A[a>>2]|0;e:do{if((u|0)>0){r=e+332|0;g=0;while(1){h=A[(A[t>>2]|0)+(g<<2)>>2]|0;p=o[(A[r>>2]|0)+(h>>1)>>0]|0;C=p^h&1;f=C&255;I=n[2608]|0;d=I&255;if(f<<24>>24==I<<24>>24&(d>>>1^1)|d&2&C)break;d=n[2616]|0;I=d&255;if(!((I>>>1^1)&f<<24>>24==d<<24>>24|p&2&I)){A[i>>2]=h^1;A[s+0>>2]=A[i+0>>2];Ft(e,s,-1);u=A[a>>2]|0}g=g+1|0;if((g|0)>=(u|0))break e}Pt(e,0);I=1;l=c;return I|0}}while(0);I=(Nt(e)|0)!=-1;Pt(e,0);l=c;return I|0}function vr(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0;r=l;l=l+16|0;o=r;i=(A[e+544>>2]|0)+(t<<2)|0;if(!(n[e+724>>0]|0)){xt(e,t);l=r;return}if((A[i>>2]|0)>>>0<=31){xt(e,t);l=r;return}a=e+808|0;c=e+776|0;s=e+792|0;g=0;do{u=i+(g<<2)+4|0;h=(A[a>>2]|0)+(A[u>>2]<<2)|0;A[h>>2]=(A[h>>2]|0)+-1;jr(e,A[u>>2]>>1);u=A[u>>2]>>1;A[o>>2]=u;u=(A[c>>2]|0)+u|0;if(!(n[u>>0]|0)){n[u>>0]=1;sr(s,o)}g=g+1|0}while((g|0)<((A[i>>2]|0)>>>5|0));xt(e,t);l=r;return}function br(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0;i=l;l=l+16|0;a=i+4|0;s=i;g=A[e+544>>2]|0;c=g+(t<<2)|0;Hr(e+856|0,t);if((A[c>>2]&-32|0)==64){vr(e,t);p=A[r>>2]|0;r=A[c>>2]|0;e:do{if(r>>>0>31){u=r>>>5;h=0;while(1){f=h+1|0;if((A[c+(h<<2)+4>>2]|0)==(p|0)){f=h;break e}if((f|0)<(u|0))h=f;else break}}else{u=0;f=0}}while(0);h=u+-1|0;if((f|0)<(h|0))do{r=f;f=f+1|0;A[c+(r<<2)+4>>2]=A[c+(f<<2)+4>>2];r=A[c>>2]|0;u=r>>>5;h=u+-1|0}while((f|0)<(h|0));if(r&8){A[c+(h<<2)+4>>2]=A[c+(u<<2)+4>>2];r=A[c>>2]|0}u=r+-32|0;A[c>>2]=u;u=u>>>5;if(!u){u=0;r=0}else{r=0;h=0;do{r=1<<((A[c+(h<<2)+4>>2]|0)>>>1&31)|r;h=h+1|0}while((h|0)<(u|0))}A[c+(u<<2)+4>>2]=r}else{Kt(e,t,1);r=A[r>>2]|0;h=A[c>>2]|0;e:do{if(h>>>0>31){u=h>>>5;f=0;while(1){p=f+1|0;if((A[c+(f<<2)+4>>2]|0)==(r|0)){p=f;break e}if((p|0)<(u|0))f=p;else break}}else{u=0;p=0}}while(0);f=u+-1|0;if((p|0)<(f|0))do{h=p;p=p+1|0;A[c+(h<<2)+4>>2]=A[c+(p<<2)+4>>2];h=A[c>>2]|0;u=h>>>5;f=u+-1|0}while((p|0)<(f|0));if(h&8){A[c+(f<<2)+4>>2]=A[c+(u<<2)+4>>2];h=A[c>>2]|0}f=h+-32|0;A[c>>2]=f;f=f>>>5;if(!f){f=0;u=0}else{u=0;h=0;do{u=1<<((A[c+(h<<2)+4>>2]|0)>>>1&31)|u;h=h+1|0}while((h|0)<(f|0))}A[c+(f<<2)+4>>2]=u;Rt(e,t);u=r>>1;h=A[e+760>>2]|0;f=h+(u*12|0)|0;h=h+(u*12|0)+4|0;p=A[h>>2]|0;e:do{if((p|0)>0){I=A[f>>2]|0;C=0;while(1){d=C+1|0;if((A[I+(C<<2)>>2]|0)==(t|0))break e;if((d|0)<(p|0))C=d;else{C=d;break}}}else C=0}while(0);p=p+-1|0;if((C|0)<(p|0)){f=A[f>>2]|0;do{p=C;C=C+1|0;A[f+(p<<2)>>2]=A[f+(C<<2)>>2];p=(A[h>>2]|0)+-1|0}while((C|0)<(p|0))}A[h>>2]=p;I=(A[e+808>>2]|0)+(r<<2)|0;A[I>>2]=(A[I>>2]|0)+-1;jr(e,u)}if((A[c>>2]&-32|0)!=32){I=1;l=i;return I|0}g=A[g+(t+1<<2)>>2]|0;c=o[(A[e+332>>2]|0)+(g>>1)>>0]|0;I=c^g&1;t=I&255;C=n[2624]|0;d=C&255;if(!(t<<24>>24==C<<24>>24&(d>>>1^1)|d&2&I)){d=n[2616]|0;I=d&255;if((I>>>1^1)&t<<24>>24==d<<24>>24|c&2&I){I=0;l=i;return I|0}}else{A[s>>2]=g;A[a+0>>2]=A[s+0>>2];Ft(e,a,-1)}I=(Nt(e)|0)==-1;l=i;return I|0}function Dr(e,t,r,n,i){e=e|0;t=t|0;r=r|0;n=n|0;i=i|0;var o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0;o=l;l=l+16|0;a=o+4|0;s=o;f=e+708|0;A[f>>2]=(A[f>>2]|0)+1;if(A[i>>2]|0)A[i+4>>2]=0;c=(A[t>>2]|0)>>>5>>>0<(A[r>>2]|0)>>>5>>>0;e=c?r:t;t=c?t:r;c=A[t>>2]|0;e:do{if(c>>>0>31){r=0;t:while(1){g=A[t+(r<<2)+4>>2]|0;r:do{if((g>>1|0)!=(n|0)){u=A[e>>2]|0;n:do{if(u>>>0>31){h=0;while(1){f=A[e+(h<<2)+4>>2]|0;h=h+1|0;if((g^f)>>>0<2)break;if((h|0)>=(u>>>5|0))break n}if((f|0)==(g^1|0)){i=0;break t}else break r}}while(0);A[a>>2]=g;or(i,a);c=A[t>>2]|0}}while(0);r=r+1|0;if((r|0)>=(c>>>5|0))break e}l=o;return i|0}}while(0);r=A[e>>2]|0;if(r>>>0<=31){f=1;l=o;return f|0}a=0;do{t=A[e+(a<<2)+4>>2]|0;if((t>>1|0)!=(n|0)){A[s>>2]=t;or(i,s);r=A[e>>2]|0}a=a+1|0}while((a|0)<(r>>>5|0));i=1;l=o;return i|0}function Sr(e){e=e|0;var t=0,r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0;t=l;c=e+924|0;if(!(A[c>>2]|0)){l=t;return}s=e+856|0;r=e+872|0;i=e+868|0;a=e+860|0;o=e+544|0;g=0;while(1){w=A[r>>2]|0;u=A[i>>2]|0;h=w-u|0;if((w|0)<(u|0))h=(A[a>>2]|0)+h|0;if((g|0)>=(h|0))break;h=(A[o>>2]|0)+(A[(A[s>>2]|0)+(((u+g|0)%(A[a>>2]|0)|0)<<2)>>2]<<2)|0;u=A[h>>2]|0;if(!(u&3))A[h>>2]=u&-4|2;g=g+1|0}g=e+540|0;C=A[g>>2]|0;if((C|0)>0){h=e+744|0;f=e+776|0;u=e+760|0;e=e+804|0;p=0;do{if(n[(A[h>>2]|0)+p>>0]|0){d=(A[f>>2]|0)+p|0;if(n[d>>0]|0){I=A[u>>2]|0;C=I+(p*12|0)+4|0;m=A[C>>2]|0;if((m|0)>0){I=A[I+(p*12|0)>>2]|0;B=0;E=0;do{w=A[I+(B<<2)>>2]|0;if((A[(A[A[e>>2]>>2]|0)+(w<<2)>>2]&3|0)!=1){A[I+(E<<2)>>2]=w;m=A[C>>2]|0;E=E+1|0}B=B+1|0}while((B|0)<(m|0))}else{B=0;E=0}I=B-E|0;if((I|0)>0)A[C>>2]=m-I;n[d>>0]=0}d=A[u>>2]|0;C=d+(p*12|0)+4|0;E=A[C>>2]|0;if((E|0)>0){d=d+(p*12|0)|0;I=0;do{m=A[(A[d>>2]|0)+(I<<2)>>2]|0;if(!(A[(A[o>>2]|0)+(m<<2)>>2]&3)){Hr(s,m);E=(A[o>>2]|0)+(A[(A[d>>2]|0)+(I<<2)>>2]<<2)|0;A[E>>2]=A[E>>2]&-4|2;E=A[C>>2]|0}I=I+1|0}while((I|0)<(E|0))}n[(A[h>>2]|0)+p>>0]=0;C=A[g>>2]|0}p=p+1|0}while((p|0)<(C|0));g=0}else g=0;while(1){w=A[r>>2]|0;u=A[i>>2]|0;h=w-u|0;if((w|0)<(u|0))h=(A[a>>2]|0)+h|0;if((g|0)>=(h|0))break;u=(A[o>>2]|0)+(A[(A[s>>2]|0)+(((u+g|0)%(A[a>>2]|0)|0)<<2)>>2]<<2)|0;h=A[u>>2]|0;if((h&3|0)==2)A[u>>2]=h&-4;g=g+1|0}A[c>>2]=0;l=t;return}function kr(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0,y=0,Q=0,v=0,b=0,D=0,S=0,k=0,M=0,F=0,N=0,R=0,K=0,x=0,L=0,P=0,U=0,T=0,O=0,j=0;r=l;l=l+16|0;u=r;y=r+12|0;o=e+856|0;g=e+872|0;C=e+868|0;a=e+860|0;m=e+680|0;i=e+920|0;s=e+284|0;E=e+280|0;d=e+544|0;I=e+928|0;f=e+44|0;h=e+776|0;B=e+692|0;p=e+804|0;c=e+760|0;S=0;F=0;k=0;e:while(1){M=A[C>>2]|0;do{b=A[g>>2]|0;D=(b|0)<(M|0);b=b-M|0;if(D)N=(A[a>>2]|0)+b|0;else N=b;if((N|0)<=0?(A[i>>2]|0)>=(A[s>>2]|0):0){i=1;a=53;break e}if(n[m>>0]|0){a=8;break e}if(D)b=(A[a>>2]|0)+b|0;if((b|0)==0?(v=A[i>>2]|0,(v|0)<(A[s>>2]|0)):0){A[i>>2]=v+1;A[(A[d>>2]|0)+((A[I>>2]|0)+1<<2)>>2]=A[(A[E>>2]|0)+(v<<2)>>2];b=(A[d>>2]|0)+(A[I>>2]<<2)|0;D=(A[b>>2]|0)>>>5;if(!D){D=0;N=0}else{N=0;M=0;do{N=1<<((A[b+(M<<2)+4>>2]|0)>>>1&31)|N;M=M+1|0}while((M|0)<(D|0))}A[b+(D<<2)+4>>2]=N;Hr(o,A[I>>2]|0);M=A[C>>2]|0}b=A[(A[o>>2]|0)+(M<<2)>>2]|0;M=M+1|0;x=A[a>>2]|0;M=(M|0)==(x|0)?0:M;A[C>>2]=M;N=A[d>>2]|0;D=N+(b<<2)|0;K=A[D>>2]|0}while((K&3|0)!=0);if(t?(A[f>>2]|0)>1:0){R=S+1|0;if(!((S|0)%1e3|0)){K=A[g>>2]|0;A[u>>2]=K-M+((K|0)<(M|0)?x:0);A[u+4>>2]=k;A[u+8>>2]=F;Oe(3440,u|0)|0;K=A[D>>2]|0;S=R}else S=R}M=N+(b+1<<2)|0;N=A[M>>2]>>1;if(K>>>0>63){R=A[c>>2]|0;K=K>>>5;x=1;do{j=A[D+(x<<2)+4>>2]>>1;N=(A[R+(j*12|0)+4>>2]|0)<(A[R+(N*12|0)+4>>2]|0)?j:N;x=x+1|0}while((x|0)<(K|0))}K=(A[h>>2]|0)+N|0;if(n[K>>0]|0){x=A[c>>2]|0;R=x+(N*12|0)+4|0;U=A[R>>2]|0;if((U|0)>0){x=A[x+(N*12|0)>>2]|0;P=0;L=0;do{T=A[x+(P<<2)>>2]|0;if((A[(A[A[p>>2]>>2]|0)+(T<<2)>>2]&3|0)!=1){A[x+(L<<2)>>2]=T;U=A[R>>2]|0;L=L+1|0}P=P+1|0}while((P|0)<(U|0))}else{P=0;L=0}x=P-L|0;if((x|0)>0)A[R>>2]=U-x;n[K>>0]=0}K=A[c>>2]|0;R=A[K+(N*12|0)>>2]|0;K=K+(N*12|0)+4|0;if((A[K>>2]|0)>0)x=0;else continue;while(1){T=A[D>>2]|0;if(T&3)continue e;L=A[R+(x<<2)>>2]|0;P=A[d>>2]|0;O=P+(L<<2)|0;U=A[O>>2]|0;t:do{if(((!((U&3|0)!=0|(L|0)==(b|0))?(j=A[B>>2]|0,Q=U>>>5,(j|0)==-1|(Q|0)<(j|0)):0)?(w=T>>>5,Q>>>0>=w>>>0):0)?(A[D+(w<<2)+4>>2]&~A[O+(Q<<2)+4>>2]|0)==0:0){P=P+(L+1<<2)|0;do{if(T>>>0>31){if(U>>>0>31){O=-2;U=0}else break t;while(1){T=A[M+(U<<2)>>2]|0;r:do{if((O|0)==-2){j=0;while(1){O=A[P+(j<<2)>>2]|0;if((T|0)==(O|0)){T=-2;break r}j=j+1|0;if((T|0)==(O^1|0))break r;if(j>>>0>=Q>>>0)break t}}else{j=0;while(1){if((T|0)==(A[P+(j<<2)>>2]|0)){T=O;break r}j=j+1|0;if(j>>>0>=Q>>>0)break t}}}while(0);U=U+1|0;if(U>>>0>=w>>>0)break;else O=T}if((T|0)==-2)break;else if((T|0)==-1)break t;A[y>>2]=T^1;A[u+0>>2]=A[y+0>>2];if(!(br(e,L,u)|0)){i=0;a=53;break e}F=F+1|0;x=(((T>>1|0)==(N|0))<<31>>31)+x|0;break t}}while(0);vr(e,L);k=k+1|0}}while(0);x=x+1|0;if((x|0)>=(A[K>>2]|0))continue e}}if((a|0)==8){_r(o,0);A[i>>2]=A[s>>2];j=1;l=r;return j|0}else if((a|0)==53){l=r;return i|0}return 0}function Mr(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0;s=l;l=l+16|0;i=s+12|0;u=s+8|0;c=s+4|0;a=s;g=(A[e+544>>2]|0)+(r<<2)|0;if(A[g>>2]&3){d=1;l=s;return d|0}if(Lt(e,g)|0){d=1;l=s;return d|0}A[u>>2]=A[e+284>>2];sr(e+292|0,u);p=A[g>>2]|0;if(p>>>0>31){u=e+332|0;h=0;f=-2;do{C=A[g+(h<<2)+4>>2]|0;d=C>>1;if((d|0)!=(t|0)?(d=(o[(A[u>>2]|0)+d>>0]|0)^C&1,E=n[2616]|0,I=E&255,((d&255)<<24>>24==E<<24>>24&(I>>>1^1)|I&2&d|0)==0):0){A[c>>2]=C^1;A[i+0>>2]=A[c+0>>2];Ft(e,i,-1);p=A[g>>2]|0}else f=C;h=h+1|0}while((h|0)<(p>>>5|0))}else f=-2;E=(Nt(e)|0)==-1;Pt(e,0);if(!E){E=e+712|0;A[E>>2]=(A[E>>2]|0)+1;A[a>>2]=f;A[i+0>>2]=A[a+0>>2];if(!(br(e,r,i)|0)){E=0;l=s;return E|0}}E=1;l=s;return E|0}function Fr(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0;r=l;s=(A[e+776>>2]|0)+t|0;i=e+760|0;if(n[s>>0]|0){c=A[i>>2]|0;o=c+(t*12|0)+4|0;h=A[o>>2]|0;if((h|0)>0){a=e+804|0;c=A[c+(t*12|0)>>2]|0;u=0;g=0;do{f=A[c+(u<<2)>>2]|0;if((A[(A[A[a>>2]>>2]|0)+(f<<2)>>2]&3|0)!=1){A[c+(g<<2)>>2]=f;h=A[o>>2]|0;g=g+1|0}u=u+1|0}while((u|0)<(h|0))}else{u=0;g=0}a=u-g|0;if((a|0)>0)A[o>>2]=h-a;n[s>>0]=0}o=A[i>>2]|0;h=n[(A[e+332>>2]|0)+t>>0]|0;u=n[2624]|0;f=u&255;if(!((f>>>1^1)&h<<24>>24==u<<24>>24|h&2&f)){f=1;l=r;return f|0}i=o+(t*12|0)+4|0;s=A[i>>2]|0;if(!s){f=1;l=r;return f|0}e:do{if((s|0)>0){o=o+(t*12|0)|0;s=0;while(1){if(!(Mr(e,t,A[(A[o>>2]|0)+(s<<2)>>2]|0)|0)){e=0;break}s=s+1|0;if((s|0)>=(A[i>>2]|0))break e}l=r;return e|0}}while(0);f=kr(e,0)|0;l=r;return f|0}function Nr(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0,y=0,Q=0,v=0,b=0,D=0,S=0,k=0,M=0,F=0,N=0,R=0,x=0,L=0,P=0,U=0,T=0,O=0,j=0,Y=0,G=0,_=0,H=0,J=0,q=0,z=0,W=0,V=0,X=0;r=l;l=l+48|0;I=r+36|0;d=r+32|0;E=r+28|0;m=r+24|0;i=r+12|0;o=r;h=(A[e+776>>2]|0)+t|0;u=e+760|0;if(n[h>>0]|0){C=A[u>>2]|0;f=C+(t*12|0)+4|0;Q=A[f>>2]|0;if((Q|0)>0){p=e+804|0;C=A[C+(t*12|0)>>2]|0;w=0;B=0;do{v=A[C+(w<<2)>>2]|0;if((A[(A[A[p>>2]>>2]|0)+(v<<2)>>2]&3|0)!=1){A[C+(B<<2)>>2]=v;Q=A[f>>2]|0;B=B+1|0}w=w+1|0}while((w|0)<(Q|0))}else{w=0;B=0}p=w-B|0;if((p|0)>0)A[f>>2]=Q-p;n[h>>0]=0}B=A[u>>2]|0;w=B+(t*12|0)|0;A[i>>2]=0;h=i+4|0;A[h>>2]=0;f=i+8|0;A[f>>2]=0;A[o>>2]=0;C=o+4|0;A[C>>2]=0;p=o+8|0;A[p>>2]=0;B=B+(t*12|0)+4|0;e:do{if((A[B>>2]|0)>0){Q=e+544|0;D=t<<1;b=0;do{S=(A[w>>2]|0)+(b<<2)|0;M=(A[Q>>2]|0)+(A[S>>2]<<2)|0;X=A[M>>2]|0;v=X>>>5;t:do{if(X>>>0>31){F=0;while(1){k=F+1|0;if((A[M+(F<<2)+4>>2]|0)==(D|0)){k=F;break t}if((k|0)<(v|0))F=k;else break}}else k=0}while(0);Jr((k|0)<(v|0)?i:o,S);b=b+1|0;v=A[B>>2]|0}while((b|0)<(v|0));Q=A[h>>2]|0;D=(Q|0)>0;if(D){S=A[C>>2]|0;L=(S|0)>0;x=e+544|0;k=A[i>>2]|0;b=A[o>>2]|0;M=e+708|0;R=e+684|0;N=e+688|0;j=0;F=0;while(1){if(L){U=k+(F<<2)|0;P=A[x>>2]|0;T=A[M>>2]|0;O=0;do{_=P+(A[U>>2]<<2)|0;J=P+(A[b+(O<<2)>>2]<<2)|0;T=T+1|0;A[M>>2]=T;Y=(A[_>>2]|0)>>>5>>>0<(A[J>>2]|0)>>>5>>>0;G=Y?J:_;J=Y?_:J;_=G+4|0;Y=J+4|0;G=A[G>>2]|0;H=G>>>5;z=H+-1|0;J=A[J>>2]|0;t:do{if(J>>>0>31){q=0;while(1){X=A[Y+(q<<2)>>2]|0;r:do{if((X>>1|0)!=(t|0)){n:do{if(G>>>0>31){V=0;while(1){W=A[_+(V<<2)>>2]|0;V=V+1|0;if((W^X)>>>0<2)break;if((V|0)>=(H|0))break n}if((W|0)==(X^1|0))break t;else break r}}while(0);z=z+1|0}}while(0);q=q+1|0;if((q|0)>=(J>>>5|0)){y=28;break}}}else y=28}while(0);if((y|0)==28){y=0;if((j|0)>=((A[R>>2]|0)+v|0)){e=1;break e}X=A[N>>2]|0;if((X|0)!=-1&(z|0)>(X|0)){e=1;break e}else j=j+1|0}O=O+1|0}while((O|0)<(S|0))}F=F+1|0;if((F|0)>=(Q|0)){y=32;break}}}else{D=0;y=32}}else{Q=0;D=0;y=32}}while(0);e:do{if((y|0)==32){n[(A[e+904>>2]|0)+t>>0]=1;v=e+380|0;b=(A[v>>2]|0)+t|0;if(n[b>>0]|0){X=e+200|0;V=X;V=ai(A[V>>2]|0,A[V+4>>2]|0,-1,-1)|0;A[X>>2]=V;A[X+4>>2]=K}n[b>>0]=0;b=e+460|0;if(!((A[e+476>>2]|0)>(t|0)?(A[(A[e+472>>2]|0)+(t<<2)>>2]|0)>-1:0))y=36;if((y|0)==36?(n[(A[v>>2]|0)+t>>0]|0)!=0:0)Ar(b,t);y=e+716|0;A[y>>2]=(A[y>>2]|0)+1;y=A[C>>2]|0;if((Q|0)>(y|0)){b=e+732|0;if((y|0)>0){m=e+544|0;E=A[o>>2]|0;M=e+736|0;k=0;do{S=(A[m>>2]|0)+(A[E+(k<<2)>>2]<<2)|0;v=A[M>>2]|0;if((A[S>>2]|0)>>>0>31){F=0;N=-1;do{X=S+(F<<2)+4|0;A[I>>2]=A[X>>2];Jr(b,I);N=(A[X>>2]>>1|0)==(t|0)?F+v|0:N;F=F+1|0}while((F|0)<((A[S>>2]|0)>>>5|0))}else N=-1;X=A[b>>2]|0;W=X+(N<<2)|0;V=A[W>>2]|0;X=X+(v<<2)|0;A[W>>2]=A[X>>2];A[X>>2]=V;A[d>>2]=(A[S>>2]|0)>>>5;Jr(b,d);k=k+1|0}while((k|0)<(y|0))}A[I>>2]=t<<1;Jr(b,I);A[d>>2]=1;Jr(b,d)}else{k=e+732|0;if(D){F=e+544|0;M=A[i>>2]|0;v=e+736|0;N=0;do{S=(A[F>>2]|0)+(A[M+(N<<2)>>2]<<2)|0;b=A[v>>2]|0;if((A[S>>2]|0)>>>0>31){R=0;x=-1;do{X=S+(R<<2)+4|0;A[I>>2]=A[X>>2];Jr(k,I);x=(A[X>>2]>>1|0)==(t|0)?R+b|0:x;R=R+1|0}while((R|0)<((A[S>>2]|0)>>>5|0))}else x=-1;X=A[k>>2]|0;W=X+(x<<2)|0;V=A[W>>2]|0;X=X+(b<<2)|0;A[W>>2]=A[X>>2];A[X>>2]=V;A[d>>2]=(A[S>>2]|0)>>>5;Jr(k,d);N=N+1|0}while((N|0)<(Q|0))}A[E>>2]=t<<1|1;Jr(k,E);A[m>>2]=1;Jr(k,m)}if((A[B>>2]|0)>0){d=0;do{vr(e,A[(A[w>>2]|0)+(d<<2)>>2]|0);d=d+1|0}while((d|0)<(A[B>>2]|0))}d=e+628|0;t:do{if(D){I=e+544|0;w=A[i>>2]|0;b=A[o>>2]|0;if((y|0)>0)B=0;else{d=0;while(1){d=d+1|0;if((d|0)>=(Q|0))break t}}do{m=w+(B<<2)|0;E=0;do{X=A[I>>2]|0;if(Dr(e,X+(A[m>>2]<<2)|0,X+(A[b+(E<<2)>>2]<<2)|0,t,d)|0?!(yr(e,d)|0):0){e=0;break e}E=E+1|0}while((E|0)<(y|0));B=B+1|0}while((B|0)<(Q|0))}}while(0);d=A[u>>2]|0;u=d+(t*12|0)|0;I=A[u>>2]|0;if(I){A[d+(t*12|0)+4>>2]=0;On(I);A[u>>2]=0;A[d+(t*12|0)+8>>2]=0}u=e+412|0;t=t<<1;I=A[u>>2]|0;d=I+(t*12|0)+4|0;if((A[d>>2]|0)==0?(g=I+(t*12|0)|0,c=A[g>>2]|0,(c|0)!=0):0){A[d>>2]=0;On(c);A[g>>2]=0;A[I+(t*12|0)+8>>2]=0;I=A[u>>2]|0}c=t|1;g=I+(c*12|0)+4|0;if((A[g>>2]|0)==0?(a=I+(c*12|0)|0,s=A[a>>2]|0,(s|0)!=0):0){A[g>>2]=0;On(s);A[a>>2]=0;A[I+(c*12|0)+8>>2]=0}e=kr(e,0)|0;b=A[o>>2]|0}}while(0);if(b){A[C>>2]=0;On(b);A[o>>2]=0;A[p>>2]=0}o=A[i>>2]|0;if(!o){l=r;return e|0}A[h>>2]=0;On(o);A[i>>2]=0;A[f>>2]=0;l=r;return e|0}function Rr(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0;r=l;if(!(n[e+724>>0]|0)){l=r;return}g=e+540|0;if((A[g>>2]|0)>0){a=e+760|0;i=e+804|0;o=e+776|0;c=e+544|0;s=0;do{h=A[a>>2]|0;u=h+(s*12|0)+4|0;p=A[u>>2]|0;if((p|0)>0){h=A[h+(s*12|0)>>2]|0;C=0;f=0;do{d=A[h+(C<<2)>>2]|0;if((A[(A[A[i>>2]>>2]|0)+(d<<2)>>2]&3|0)!=1){A[h+(f<<2)>>2]=d;p=A[u>>2]|0;f=f+1|0}C=C+1|0}while((C|0)<(p|0))}else{C=0;f=0}h=C-f|0;if((h|0)>0)A[u>>2]=p-h;n[(A[o>>2]|0)+s>>0]=0;h=A[a>>2]|0;u=h+(s*12|0)+4|0;if((A[u>>2]|0)>0){d=h+(s*12|0)|0;p=0;do{h=(A[d>>2]|0)+(p<<2)|0;f=A[h>>2]|0;C=A[c>>2]|0;I=C+(f<<2)|0;if(!(A[I>>2]&16)){E=Cr(t,I)|0;A[h>>2]=E;A[I>>2]=A[I>>2]|16;A[C+(f+1<<2)>>2]=E}else A[h>>2]=A[C+(f+1<<2)>>2];p=p+1|0}while((p|0)<(A[u>>2]|0))}s=s+1|0}while((s|0)<(A[g>>2]|0))}i=e+856|0;E=A[e+872>>2]|0;o=e+868|0;u=A[o>>2]|0;c=E-u|0;if((E|0)<(u|0))c=(A[e+860>>2]|0)+c|0;e:do{if((c|0)>0){s=e+860|0;a=e+544|0;while(1){g=A[(A[i>>2]|0)+(u<<2)>>2]|0;h=u+1|0;A[o>>2]=(h|0)==(A[s>>2]|0)?0:h;h=A[a>>2]|0;f=h+(g<<2)|0;u=A[f>>2]|0;if(!(u&3)){if(!(u&16)){E=Cr(t,f)|0;A[f>>2]=A[f>>2]|16;A[h+(g+1<<2)>>2]=E;g=E}else g=A[h+(g+1<<2)>>2]|0;Hr(i,g)}c=c+-1|0;if((c|0)<=0)break e;u=A[o>>2]|0}}else a=e+544|0}while(0);e=e+928|0;i=A[e>>2]|0;s=A[a>>2]|0;o=s+(i<<2)|0;if(!(A[o>>2]&16)){E=Cr(t,o)|0;A[e>>2]=E;A[o>>2]=A[o>>2]|16;A[s+(i+1<<2)>>2]=E;l=r;return}else{A[e>>2]=A[s+(i+1<<2)>>2];l=r;return}}function Kr(e){e=e|0;var t=0,r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0;s=l;l=l+32|0;g=s;t=s+8|0;r=e+544|0;i=e+548|0;o=e+556|0;a=(A[i>>2]|0)-(A[o>>2]|0)|0;A[t+0>>2]=0;A[t+4>>2]=0;A[t+8>>2]=0;A[t+12>>2]=0;er(t,a);a=t+16|0;c=e+560|0;n[a>>0]=n[c>>0]|0;Rr(e,t);zt(e,t);if((A[e+44>>2]|0)>1){u=A[t+4>>2]<<2;A[g>>2]=A[i>>2]<<2;A[g+4>>2]=u;Oe(3608,g|0)|0}n[c>>0]=n[a>>0]|0;a=A[r>>2]|0;if(a)On(a);A[r>>2]=A[t>>2];A[i>>2]=A[t+4>>2];A[e+552>>2]=A[t+8>>2];A[o>>2]=A[t+12>>2];l=s;return}function xr(){var e=0,t=0,r=0;e=l;l=l+16|0;t=e;n[2608]=0;n[2616]=1;n[2624]=2;dt(2632,2656,2664,3744,3752);A[658]=160;n[2652]=0;dt(2704,2728,2736,3744,3752);A[676]=160;n[2724]=0;dt(2784,2808,2816,3744,3752);A[696]=160;n[2804]=1;dt(2848,2880,2888,3744,3736);A[712]=280;r=2868|0;A[r>>2]=-2147483648;A[r+4>>2]=2147483647;A[719]=0;dt(2960,2992,3e3,3744,3736);A[740]=280;r=2980|0;A[r>>2]=-1;A[r+4>>2]=2147483647;A[747]=20;dt(3112,3144,3152,3744,3736);A[778]=280;r=3132|0;A[r>>2]=-1;A[r+4>>2]=2147483647;A[785]=1e3;dt(3240,3296,3312,3744,3720);A[810]=2168;g[408]=0.0;g[409]=Q;n[3280]=0;n[3281]=0;i[1641]=i[t+0>>1]|0;i[1642]=i[t+2>>1]|0;i[1643]=i[t+4>>1]|0;g[411]=.5;l=e;return}function Lr(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0;r=l;A[e>>2]=0;n=e+4|0;A[n>>2]=0;i=e+8|0;A[i>>2]=0;if((t|0)<=0){l=r;return}o=t+1&-2;o=(o|0)>2?o:2;A[i>>2]=o;i=jn(0,o<<2)|0;A[e>>2]=i;if((i|0)==0?(A[(Ge()|0)>>2]|0)==12:0)ze(Qe(1)|0,48,0);e=A[n>>2]|0;if((e|0)<(t|0))do{o=i+(e<<2)|0;if(o)A[o>>2]=0;e=e+1|0}while((e|0)!=(t|0));A[n>>2]=t;l=r;return}function Pr(e){e=e|0;var t=0,r=0,n=0,i=0,o=0,s=0,a=0;t=l;n=e+32|0;r=A[n>>2]|0;if(r){A[e+36>>2]=0;On(r);A[n>>2]=0;A[e+40>>2]=0}n=e+16|0;r=A[n>>2]|0;if(r){A[e+20>>2]=0;On(r);A[n>>2]=0;A[e+24>>2]=0}n=A[e>>2]|0;if(!n){l=t;return}r=e+4|0;o=A[r>>2]|0;if((o|0)>0){i=0;do{a=n+(i*12|0)|0;s=A[a>>2]|0;if(s){A[n+(i*12|0)+4>>2]=0;On(s);A[a>>2]=0;A[n+(i*12|0)+8>>2]=0;n=A[e>>2]|0;o=A[r>>2]|0}i=i+1|0}while((i|0)<(o|0))}A[r>>2]=0;On(n);A[e>>2]=0;A[e+8>>2]=0;l=t;return}function Ur(e,t,r){e=e|0;t=t|0;r=r|0;var n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0;n=l;t=A[t>>2]|0;o=t+1|0;i=e+4|0;if((A[i>>2]|0)>=(o|0)){c=A[e>>2]|0;c=c+(t<<2)|0;A[c>>2]=r;l=n;return}s=e+8|0;c=A[s>>2]|0;if((c|0)<(o|0)){g=t+2-c&-2;a=(c>>1)+2&-2;a=(g|0)>(a|0)?g:a;if((a|0)>(2147483647-c|0)){g=Qe(1)|0;ze(g|0,48,0)}u=A[e>>2]|0;g=a+c|0;A[s>>2]=g;g=jn(u,g<<2)|0;A[e>>2]=g;if((g|0)==0?(A[(Ge()|0)>>2]|0)==12:0){u=Qe(1)|0;ze(u|0,48,0)}}c=A[i>>2]|0;if((c|0)<(o|0)){s=A[e>>2]|0;do{a=s+(c<<2)|0;if(a)A[a>>2]=0;c=c+1|0}while((c|0)!=(o|0))}A[i>>2]=o;u=A[e>>2]|0;u=u+(t<<2)|0;A[u>>2]=r;l=n;return}function Tr(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0;r=l;c=A[t>>2]|0;o=c+1|0;i=e+4|0;if((A[i>>2]|0)<(o|0)){a=e+8|0;s=A[a>>2]|0;if((s|0)<(o|0)){g=c+2-s&-2;c=(s>>1)+2&-2;c=(g|0)>(c|0)?g:c;if((c|0)>(2147483647-s|0)){g=Qe(1)|0;ze(g|0,48,0)}u=A[e>>2]|0;g=c+s|0;A[a>>2]=g;g=jn(u,g*12|0)|0;A[e>>2]=g;if((g|0)==0?(A[(Ge()|0)>>2]|0)==12:0){u=Qe(1)|0;ze(u|0,48,0)}}a=A[i>>2]|0;if((a|0)<(o|0)){s=A[e>>2]|0;do{c=s+(a*12|0)|0;if(c){A[c>>2]=0;A[s+(a*12|0)+4>>2]=0;A[s+(a*12|0)+8>>2]=0}a=a+1|0}while((a|0)!=(o|0))}A[i>>2]=o;s=A[t>>2]|0}else s=c;i=A[e>>2]|0;if(A[i+(s*12|0)>>2]|0){A[i+(s*12|0)+4>>2]=0;s=A[t>>2]|0}t=e+16|0;i=s+1|0;o=e+20|0;if((A[o>>2]|0)>=(i|0)){l=r;return}a=e+24|0;e=A[a>>2]|0;if((e|0)<(i|0)){u=s+2-e&-2;s=(e>>1)+2&-2;s=(u|0)>(s|0)?u:s;if((s|0)>(2147483647-e|0)){u=Qe(1)|0;ze(u|0,48,0)}g=A[t>>2]|0;u=s+e|0;A[a>>2]=u;u=jn(g,u)|0;A[t>>2]=u;if((u|0)==0?(A[(Ge()|0)>>2]|0)==12:0){u=Qe(1)|0;ze(u|0,48,0)}}e=A[o>>2]|0;if((e|0)<(i|0))do{n[(A[t>>2]|0)+e>>0]=0;e=e+1|0}while((e|0)!=(i|0));A[o>>2]=i;l=r;return}function Or(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0;r=l;l=l+16|0;o=r;A[o>>2]=t;i=e+12|0;n=t+1|0;s=e+16|0;if((A[s>>2]|0)<(n|0)){c=e+20|0;a=A[c>>2]|0;if((a|0)<(n|0)){u=t+2-a&-2;g=(a>>1)+2&-2;g=(u|0)>(g|0)?u:g;if((g|0)>(2147483647-a|0)){u=Qe(1)|0;ze(u|0,48,0)}h=A[i>>2]|0;u=g+a|0;A[c>>2]=u;u=jn(h,u<<2)|0;A[i>>2]=u;if((u|0)==0?(A[(Ge()|0)>>2]|0)==12:0){h=Qe(1)|0;ze(h|0,48,0)}}a=A[s>>2]|0;if((n|0)>(a|0))Ai((A[i>>2]|0)+(a<<2)|0,-1,n-a<<2|0)|0;A[s>>2]=n}A[(A[i>>2]|0)+(t<<2)>>2]=A[e+4>>2];sr(e,o);n=A[i>>2]|0;a=A[n+(t<<2)>>2]|0;t=A[e>>2]|0;i=A[t+(a<<2)>>2]|0;if(!a){u=0;h=t+(u<<2)|0;A[h>>2]=i;h=n+(i<<2)|0;A[h>>2]=u;l=r;return}e=e+28|0;o=i<<1;s=o|1;while(1){u=a;a=a+-1>>1;g=t+(a<<2)|0;c=A[g>>2]|0;d=A[A[e>>2]>>2]|0;f=A[d+(o<<2)>>2]|0;C=A[d+(s<<2)>>2]|0;f=di(C|0,((C|0)<0)<<31>>31|0,f|0,((f|0)<0)<<31>>31|0)|0;C=K;p=c<<1;h=A[d+(p<<2)>>2]|0;p=A[d+((p|1)<<2)>>2]|0;h=di(p|0,((p|0)<0)<<31>>31|0,h|0,((h|0)<0)<<31>>31|0)|0;p=K;if(!(C>>>0

>>0|(C|0)==(p|0)&f>>>0>>0)){e=14;break}A[t+(u<<2)>>2]=c;A[n+(A[g>>2]<<2)>>2]=u;if(!a){u=0;e=14;break}}if((e|0)==14){d=t+(u<<2)|0;A[d>>2]=i;d=n+(i<<2)|0;A[d>>2]=u;l=r;return}}function jr(e,t){e=e|0;t=t|0;var r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0;r=l;s=e+824|0;g=(A[e+840>>2]|0)>(t|0);if(g?(A[(A[e+836>>2]|0)+(t<<2)>>2]|0)>-1:0)a=7;else a=3;do{if((a|0)==3){if(n[(A[e+876>>2]|0)+t>>0]|0){l=r;return}if(n[(A[e+904>>2]|0)+t>>0]|0){l=r;return}f=n[(A[e+332>>2]|0)+t>>0]|0;h=n[2624]|0;p=h&255;if((p>>>1^1)&f<<24>>24==h<<24>>24|f&2&p)if(g){a=7;break}else break;else{l=r;return}}}while(0);if((a|0)==7?(i=A[e+836>>2]|0,o=i+(t<<2)|0,c=A[o>>2]|0,(c|0)>-1):0){t=A[s>>2]|0;a=A[t+(c<<2)>>2]|0;e:do{if(!c)f=0;else{g=e+852|0;u=a<<1;e=u|1;while(1){f=c;c=c+-1>>1;p=t+(c<<2)|0;h=A[p>>2]|0;m=A[A[g>>2]>>2]|0;d=A[m+(u<<2)>>2]|0;E=A[m+(e<<2)>>2]|0;d=di(E|0,((E|0)<0)<<31>>31|0,d|0,((d|0)<0)<<31>>31|0)|0;E=K;I=h<<1;C=A[m+(I<<2)>>2]|0;I=A[m+((I|1)<<2)>>2]|0;C=di(I|0,((I|0)<0)<<31>>31|0,C|0,((C|0)<0)<<31>>31|0)|0;I=K;if(!(E>>>0>>0|(E|0)==(I|0)&d>>>0>>0))break e;A[t+(f<<2)>>2]=h;A[i+(A[p>>2]<<2)>>2]=f;if(!c){f=0;break}}}}while(0);A[t+(f<<2)>>2]=a;A[i+(a<<2)>>2]=f;Yr(s,A[o>>2]|0);l=r;return}Or(s,t);l=r;return}function Yr(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0;r=l;n=A[e>>2]|0;i=A[n+(t<<2)>>2]|0;u=t<<1|1;g=e+4|0;f=A[g>>2]|0;if((u|0)>=(f|0)){p=t;C=e+12|0;f=n+(p<<2)|0;A[f>>2]=i;C=A[C>>2]|0;C=C+(i<<2)|0;A[C>>2]=p;l=r;return}s=e+28|0;c=i<<1;a=c|1;e=e+12|0;while(1){h=(t<<1)+2|0;if((h|0)<(f|0)){p=A[n+(h<<2)>>2]|0;C=A[n+(u<<2)>>2]|0;m=p<<1;f=A[A[s>>2]>>2]|0;I=A[f+(m<<2)>>2]|0;m=A[f+((m|1)<<2)>>2]|0;I=di(m|0,((m|0)<0)<<31>>31|0,I|0,((I|0)<0)<<31>>31|0)|0;m=K;E=C<<1;d=A[f+(E<<2)>>2]|0;E=A[f+((E|1)<<2)>>2]|0;d=di(E|0,((E|0)<0)<<31>>31|0,d|0,((d|0)<0)<<31>>31|0)|0;E=K;if(!(m>>>0>>0|(m|0)==(E|0)&I>>>0>>0)){p=C;o=7}}else{p=A[n+(u<<2)>>2]|0;f=A[A[s>>2]>>2]|0;o=7}if((o|0)==7){o=0;h=u}d=p<<1;E=A[f+(d<<2)>>2]|0;d=A[f+((d|1)<<2)>>2]|0;E=di(d|0,((d|0)<0)<<31>>31|0,E|0,((E|0)<0)<<31>>31|0)|0;d=K;m=A[f+(c<<2)>>2]|0;I=A[f+(a<<2)>>2]|0;m=di(I|0,((I|0)<0)<<31>>31|0,m|0,((m|0)<0)<<31>>31|0)|0;I=K;if(!(d>>>0>>0|(d|0)==(I|0)&E>>>0>>0)){o=10;break}A[n+(t<<2)>>2]=p;A[(A[e>>2]|0)+(p<<2)>>2]=t;u=h<<1|1;f=A[g>>2]|0;if((u|0)>=(f|0)){t=h;o=10;break}else t=h}if((o|0)==10){m=n+(t<<2)|0;A[m>>2]=i;m=A[e>>2]|0;m=m+(i<<2)|0;A[m>>2]=t;l=r;return}}function Gr(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0;r=l;s=A[e>>2]|0;if(s){n=e+4|0;i=A[n>>2]|0;e:do{if((i|0)>0){o=0;while(1){a=s+(o*12|0)|0;c=A[a>>2]|0;if(c){A[s+(o*12|0)+4>>2]=0;On(c);A[a>>2]=0;A[s+(o*12|0)+8>>2]=0;i=A[n>>2]|0}o=o+1|0;if((o|0)>=(i|0))break e;s=A[e>>2]|0}}}while(0);A[n>>2]=0;if(t){On(A[e>>2]|0);A[e>>2]=0;A[e+8>>2]=0}}n=e+16|0;i=A[n>>2]|0;if((i|0)!=0?(A[e+20>>2]=0,t):0){On(i);A[n>>2]=0;A[e+24>>2]=0}i=e+32|0;n=A[i>>2]|0;if(!n){l=r;return}A[e+36>>2]=0;if(!t){l=r;return}On(n);A[i>>2]=0;A[e+40>>2]=0;l=r;return}function _r(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0;n=l;i=A[e>>2]|0;r=e+4|0;if(i){A[r>>2]=0;if(t){On(i);A[e>>2]=0;A[e+8>>2]=0;i=0}}else i=0;if((A[r>>2]|0)>=1){s=e+16|0;A[s>>2]=0;s=e+12|0;A[s>>2]=0;l=n;return}s=e+8|0;o=A[s>>2]|0;if((o|0)<1){a=2-o&-2;t=(o>>1)+2&-2;t=(a|0)>(t|0)?a:t;if((t|0)>(2147483647-o|0)){a=Qe(1)|0;ze(a|0,48,0)}a=t+o|0;A[s>>2]=a;i=jn(i,a<<2)|0;A[e>>2]=i;if((i|0)==0?(A[(Ge()|0)>>2]|0)==12:0){a=Qe(1)|0;ze(a|0,48,0)}}t=A[r>>2]|0;if((t|0)<1)while(1){o=i+(t<<2)|0;if(o)A[o>>2]=0;if(!t)break;else t=t+1|0}A[r>>2]=1;a=e+16|0;A[a>>2]=0;a=e+12|0;A[a>>2]=0;l=n;return}function Hr(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0;n=l;l=l+16|0;r=n;i=e+16|0;a=A[i>>2]|0;A[i>>2]=a+1;A[(A[e>>2]|0)+(a<<2)>>2]=t;a=A[i>>2]|0;t=e+4|0;s=A[t>>2]|0;if((a|0)==(s|0)){A[i>>2]=0;a=0}o=e+12|0;if((A[o>>2]|0)!=(a|0)){l=n;return}Lr(r,(s*3|0)+1>>1);g=A[o>>2]|0;u=A[t>>2]|0;if((g|0)<(u|0)){a=A[e>>2]|0;c=A[r>>2]|0;u=0;while(1){s=u+1|0;A[c+(u<<2)>>2]=A[a+(g<<2)>>2];g=g+1|0;u=A[t>>2]|0;if((g|0)>=(u|0)){c=s;break}else u=s}}else c=0;s=A[e>>2]|0;if((A[i>>2]|0)>0){a=A[r>>2]|0;g=0;while(1){A[a+(c<<2)>>2]=A[s+(g<<2)>>2];g=g+1|0;if((g|0)>=(A[i>>2]|0))break;else c=c+1|0}u=A[t>>2]|0}A[o>>2]=0;A[i>>2]=u;if(!s)i=e+8|0;else{A[t>>2]=0;On(s);A[e>>2]=0;i=e+8|0;A[i>>2]=0}A[e>>2]=A[r>>2];g=r+4|0;A[t>>2]=A[g>>2];u=r+8|0;A[i>>2]=A[u>>2];A[r>>2]=0;A[g>>2]=0;A[u>>2]=0;l=n;return}function Jr(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0;r=l;n=e+4|0;i=A[n>>2]|0;o=e+8|0;s=A[o>>2]|0;if((i|0)==(s|0)&(s|0)<(i+1|0)){s=(i>>1)+2&-2;s=(s|0)<2?2:s;if((s|0)>(2147483647-i|0)){s=Qe(1)|0;ze(s|0,48,0)}a=A[e>>2]|0;i=s+i|0;A[o>>2]=i;i=jn(a,i<<2)|0;A[e>>2]=i;if((i|0)==0?(A[(Ge()|0)>>2]|0)==12:0){a=Qe(1)|0;ze(a|0,48,0)}}else i=A[e>>2]|0;a=A[n>>2]|0;A[n>>2]=a+1;n=i+(a<<2)|0;if(!n){l=r;return}A[n>>2]=A[t>>2];l=r;return}function qr(){var e=0,t=0;t=l;Te(3864)|0;e=cn(936)|0;dr(e);l=t;return e|0}function zr(e){e=e|0;var t=0;t=l;if(!e){l=t;return}Yi[A[(A[e>>2]|0)+4>>2]&31](e);l=t;return}function Wr(){var e=0,t=0,r=0;e=l;l=l+16|0;t=e;r=cn(936)|0;dr(r);A[964]=r;wr(r,1)|0;r=A[964]|0;n[t+0>>0]=n[3840]|0;mr(r,t,1)|0;l=e;return}function Vr(e){e=e|0;var t=0,r=0,i=0;t=l;l=l+16|0;r=t;if((A[962]|0)>=(e|0)){l=t;return}do{i=A[964]|0;n[r+0>>0]=n[3840]|0;mr(i,r,1)|0;i=(A[962]|0)+1|0;A[962]=i}while((i|0)<(e|0));l=t;return}function Xr(e){e=e|0;var t=0,r=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0;o=l;l=l+32|0;s=o+16|0;r=o+4|0;a=o;A[r>>2]=0;i=r+4|0;A[i>>2]=0;t=r+8|0;A[t>>2]=0;c=A[e>>2]|0;if(c)do{g=(c|0)<0?0-c|0:c;if((A[962]|0)<(g|0))do{u=A[964]|0;n[s+0>>0]=n[3840]|0;mr(u,s,1)|0;u=(A[962]|0)+1|0;A[962]=u}while((u|0)<(g|0));A[a>>2]=g<<1|c>>>31;or(r,a);e=e+4|0;c=A[e>>2]|0}while((c|0)!=0);a=A[964]|0;s=a+628|0;on(r,s);s=yr(a,s)|0;a=A[r>>2]|0;if(!a){l=o;return s|0}A[i>>2]=0;On(a);A[r>>2]=0;A[t>>2]=0;l=o;return s|0}function Zr(){var e=0,t=0,r=0,i=0;t=l;l=l+16|0;e=t;r=A[964]|0;i=r+664|0;A[i+0>>2]=-1;A[i+4>>2]=-1;A[i+8>>2]=-1;A[i+12>>2]=-1;if(A[r+304>>2]|0)A[r+308>>2]=0;Br(e,r,1,0);l=t;return(n[e>>0]|0)==0|0}function $r(){return(A[(A[964]|0)+4>>2]|0)+1|0}function en(){return A[962]|0}function tn(e){e=e|0;var t=0,r=0,i=0,o=0,s=0,a=0;t=l;l=l+32|0;s=t+16|0;i=t+4|0;a=t;A[i>>2]=0;r=i+4|0;A[r>>2]=0;o=i+8|0;A[o>>2]=0;A[a>>2]=e<<1;or(i,a);e=A[964]|0;a=e+664|0;A[a+0>>2]=-1;A[a+4>>2]=-1;A[a+8>>2]=-1;A[a+12>>2]=-1;on(i,e+304|0);Br(s,e,1,0);e=(n[s>>0]|0)==0;s=A[i>>2]|0;if(!s){l=t;return e|0}A[r>>2]=0;On(s);A[i>>2]=0;A[o>>2]=0;l=t;return e|0}function rn(e){e=e|0;var t=0,r=0,n=0;t=l;l=l+16|0;n=t;r=A[964]|0;A[n>>2]=e<<1|1;e=r+628|0;if(A[e>>2]|0)A[r+632>>2]=0;or(e,n);yr(r,e)|0;l=t;return}function nn(){return A[(A[964]|0)+36>>2]|0}function An(){return A[(A[964]|0)+32>>2]|0}function on(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0;r=l;s=A[t>>2]|0;n=t+4|0;if(!s)a=A[n>>2]|0;else{A[n>>2]=0;a=0}n=e+4|0;i=A[n>>2]|0;o=t+4|0;if((a|0)<(i|0)){c=t+8|0;a=A[c>>2]|0;if((a|0)<(i|0)){u=i+1-a&-2;g=(a>>1)+2&-2;g=(u|0)>(g|0)?u:g;if((g|0)>(2147483647-a|0)){u=Qe(1)|0;ze(u|0,48,0)}u=g+a|0;A[c>>2]=u;s=jn(s,u<<2)|0;A[t>>2]=s;if((s|0)==0?(A[(Ge()|0)>>2]|0)==12:0){u=Qe(1)|0;ze(u|0,48,0)}}a=A[o>>2]|0;e:do{if((a|0)<(i|0))while(1){s=s+(a<<2)|0;if(s)A[s>>2]=0;a=a+1|0;if((a|0)==(i|0))break e;s=A[t>>2]|0}}while(0);A[o>>2]=i;i=A[n>>2]|0}if((i|0)<=0){l=r;return}t=A[t>>2]|0;e=A[e>>2]|0;i=0;do{A[t+(i<<2)>>2]=A[e+(i<<2)>>2];i=i+1|0}while((i|0)<(A[n>>2]|0));l=r;return}function sn(e,t){e=e|0;t=t|0;var r=0;r=l;l=l+16|0;A[r>>2]=t;t=A[I>>2]|0;ye(t|0,e|0,r|0)|0;qe(10,t|0)|0;Xe()}function an(){var e=0,t=0;e=l;l=l+16|0;if(!(Ue(4064,3)|0)){t=Le(A[1014]|0)|0;l=e;return t|0}else sn(4072,e);return 0}function cn(e){e=e|0;var t=0,r=0;t=l;e=(e|0)==0?1:e;r=Tn(e)|0;if(r){l=t;return r|0}while(1){r=Cn()|0;if(!r){e=4;break}Hi[r&3]();r=Tn(e)|0;if(r){e=5;break}}if((e|0)==4){r=Qe(4)|0;A[r>>2]=4248;ze(r|0,4296,12)}else if((e|0)==5){l=t;return r|0}return 0}function gn(e){e=e|0;var t=0;t=l;On(e);l=t;return}function ln(e){e=e|0;var t=0;t=l;gn(e);l=t;return}function un(e){e=e|0;return}function hn(e){e=e|0;return 4264}function fn(e){e=e|0;var t=0;t=l;l=l+16|0;Hi[e&3]();sn(4312,t)}function pn(){var e=0,t=0;t=an()|0;if(((t|0)!=0?(e=A[t>>2]|0,(e|0)!=0):0)?(t=e+48|0,(A[t>>2]&-256|0)==1126902528?(A[t+4>>2]|0)==1129074247:0):0)fn(A[e+12>>2]|0);t=A[968]|0;A[968]=t+0;fn(t)}function Cn(){var e=0;e=A[1102]|0;A[1102]=e+0;return e|0}function dn(e){e=e|0;return}function In(e){e=e|0;return}function En(e){e=e|0;return}function mn(e){e=e|0;return}function Bn(e){e=e|0;return}function wn(e){e=e|0;var t=0;t=l;gn(e);l=t;return}function yn(e){e=e|0;var t=0;t=l;gn(e);l=t;return}function Qn(e,t,r){e=e|0;t=t|0;r=r|0;var n=0,i=0,o=0,s=0;n=l;l=l+64|0;i=n;if((e|0)==(t|0)){s=1;l=n;return s|0}if(!t){s=0;l=n;return s|0}t=Sn(t,4504,4560,0)|0;if(!t){s=0;l=n;return s|0}s=i+0|0;o=s+56|0;do{A[s>>2]=0;s=s+4|0}while((s|0)<(o|0));A[i>>2]=t;A[i+8>>2]=e;A[i+12>>2]=-1;A[i+48>>2]=1;zi[A[(A[t>>2]|0)+28>>2]&3](t,i,A[r>>2]|0,1);if((A[i+24>>2]|0)!=1){s=0;l=n;return s|0}A[r>>2]=A[i+16>>2];s=1;l=n;return s|0}function vn(e,t,r,i){e=e|0;t=t|0;r=r|0;i=i|0;var o=0,s=0;e=l;o=t+16|0;s=A[o>>2]|0;if(!s){A[o>>2]=r;A[t+24>>2]=i;A[t+36>>2]=1;l=e;return}if((s|0)!=(r|0)){s=t+36|0;A[s>>2]=(A[s>>2]|0)+1;A[t+24>>2]=2;n[t+54>>0]=1;l=e;return}r=t+24|0;if((A[r>>2]|0)!=2){l=e;return}A[r>>2]=i;l=e;return}function bn(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;var i=0;i=l;if((A[t+8>>2]|0)!=(e|0)){l=i;return}vn(0,t,r,n);l=i;return}function Dn(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;var i=0;i=l;if((e|0)==(A[t+8>>2]|0)){vn(0,t,r,n);l=i;return}else{e=A[e+8>>2]|0;zi[A[(A[e>>2]|0)+28>>2]&3](e,t,r,n);l=i;return}}function Sn(e,t,r,o){e=e|0;t=t|0;r=r|0;o=o|0;var s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0;s=l;l=l+64|0;a=s;c=A[e>>2]|0;g=e+(A[c+-8>>2]|0)|0;c=A[c+-4>>2]|0;A[a>>2]=r;A[a+4>>2]=e;A[a+8>>2]=t;A[a+12>>2]=o;h=a+16|0;f=a+20|0;t=a+24|0;u=a+28|0;o=a+32|0;e=a+40|0;p=(c|0)==(r|0);C=h+0|0;r=C+36|0;do{A[C>>2]=0;C=C+4|0}while((C|0)<(r|0));i[h+36>>1]=0;n[h+38>>0]=0;if(p){A[a+48>>2]=1;Ji[A[(A[c>>2]|0)+20>>2]&3](c,a,g,g,1,0);C=(A[t>>2]|0)==1?g:0;l=s;return C|0}ji[A[(A[c>>2]|0)+24>>2]&3](c,a,g,1,0);a=A[a+36>>2]|0;if(!a){C=(A[e>>2]|0)==1&(A[u>>2]|0)==1&(A[o>>2]|0)==1?A[f>>2]|0:0;l=s;return C|0}else if((a|0)==1){if((A[t>>2]|0)!=1?!((A[e>>2]|0)==0&(A[u>>2]|0)==1&(A[o>>2]|0)==1):0){C=0;l=s;return C|0}C=A[h>>2]|0;l=s;return C|0}else{C=0;l=s;return C|0}return 0}function kn(e,t,r,i,o){e=e|0;t=t|0;r=r|0;i=i|0;o=o|0;var s=0;e=l;n[t+53>>0]=1;if((A[t+4>>2]|0)!=(i|0)){l=e;return}n[t+52>>0]=1;i=t+16|0;s=A[i>>2]|0;if(!s){A[i>>2]=r;A[t+24>>2]=o;A[t+36>>2]=1;if(!((o|0)==1?(A[t+48>>2]|0)==1:0)){l=e;return}n[t+54>>0]=1;l=e;return}if((s|0)!=(r|0)){s=t+36|0;A[s>>2]=(A[s>>2]|0)+1;n[t+54>>0]=1;l=e;return}r=t+24|0;i=A[r>>2]|0;if((i|0)==2)A[r>>2]=o;else o=i;if(!((o|0)==1?(A[t+48>>2]|0)==1:0)){l=e;return}n[t+54>>0]=1;l=e;return}function Mn(e,t,r,i,o){e=e|0;t=t|0;r=r|0;i=i|0;o=o|0;var s=0,a=0,c=0,g=0,u=0;s=l;if((e|0)==(A[t+8>>2]|0)){if((A[t+4>>2]|0)!=(r|0)){l=s;return}a=t+28|0;if((A[a>>2]|0)==1){l=s;return}A[a>>2]=i;l=s;return}if((e|0)!=(A[t>>2]|0)){g=A[e+8>>2]|0;ji[A[(A[g>>2]|0)+24>>2]&3](g,t,r,i,o);l=s;return}if((A[t+16>>2]|0)!=(r|0)?(c=t+20|0,(A[c>>2]|0)!=(r|0)):0){A[t+32>>2]=i;i=t+44|0;if((A[i>>2]|0)==4){l=s;return}g=t+52|0;n[g>>0]=0;u=t+53|0;n[u>>0]=0;e=A[e+8>>2]|0;Ji[A[(A[e>>2]|0)+20>>2]&3](e,t,r,r,1,o);if(n[u>>0]|0){if(!(n[g>>0]|0)){e=1;a=13}}else{e=0;a=13}do{if((a|0)==13){A[c>>2]=r;u=t+40|0;A[u>>2]=(A[u>>2]|0)+1;if((A[t+36>>2]|0)==1?(A[t+24>>2]|0)==2:0){n[t+54>>0]=1;if(e)break}else a=16;if((a|0)==16?e:0)break;A[i>>2]=4;l=s;return}}while(0);A[i>>2]=3;l=s;return}if((i|0)!=1){l=s;return}A[t+32>>2]=1;l=s;return}function Fn(e,t,r,i,o){e=e|0;t=t|0;r=r|0;i=i|0;o=o|0;var s=0;o=l;if((A[t+8>>2]|0)==(e|0)){if((A[t+4>>2]|0)!=(r|0)){l=o;return}t=t+28|0;if((A[t>>2]|0)==1){l=o;return}A[t>>2]=i;l=o;return}if((A[t>>2]|0)!=(e|0)){l=o;return}if((A[t+16>>2]|0)!=(r|0)?(s=t+20|0,(A[s>>2]|0)!=(r|0)):0){A[t+32>>2]=i;A[s>>2]=r;e=t+40|0;A[e>>2]=(A[e>>2]|0)+1;if((A[t+36>>2]|0)==1?(A[t+24>>2]|0)==2:0)n[t+54>>0]=1;A[t+44>>2]=4;l=o;return}if((i|0)!=1){l=o;return}A[t+32>>2]=1;l=o;return}function Nn(e,t,r,n,i,o){e=e|0;t=t|0;r=r|0;n=n|0;i=i|0;o=o|0;var s=0;s=l;if((e|0)==(A[t+8>>2]|0)){kn(0,t,r,n,i);l=s;return}else{e=A[e+8>>2]|0;Ji[A[(A[e>>2]|0)+20>>2]&3](e,t,r,n,i,o);l=s;return}}function Rn(e,t,r,n,i,o){e=e|0;t=t|0;r=r|0;n=n|0;i=i|0;o=o|0;o=l;if((A[t+8>>2]|0)!=(e|0)){l=o;return}kn(0,t,r,n,i);l=o;return}function Kn(e,t,r){e=e|0;t=t|0;r=r|0;var n=0,i=0;n=l;l=l+16|0;i=n;A[i>>2]=A[r>>2];e=Oi[A[(A[e>>2]|0)+16>>2]&1](e,t,i)|0;t=e&1;if(!e){l=n;return t|0}A[r>>2]=A[i>>2];l=n;return t|0}function xn(e){e=e|0;var t=0;t=l;if(!e)e=0;else e=(Sn(e,4504,4672,0)|0)!=0;l=t;return e&1|0}function Ln(){var e=0,t=0,r=0,n=0,i=0;e=l;l=l+16|0;t=e;e=e+12|0;r=an()|0;if(!r)sn(4040,t);r=A[r>>2]|0;if(!r)sn(4040,t);i=r+48|0;n=A[i>>2]|0;i=A[i+4>>2]|0;if(!((n&-256|0)==1126902528&(i|0)==1129074247)){A[t>>2]=A[970];sn(4e3,t)}if((n|0)==1126902529&(i|0)==1129074247)n=A[r+44>>2]|0;else n=r+80|0;A[e>>2]=n;i=A[r>>2]|0;r=A[i+4>>2]|0;if(Oi[A[(A[4432>>2]|0)+16>>2]&1](4432,i,e)|0){i=A[e>>2]|0;n=A[970]|0;i=_i[A[(A[i>>2]|0)+8>>2]&1](i)|0;A[t>>2]=n;A[t+4>>2]=r;A[t+8>>2]=i;sn(3904,t)}else{A[t>>2]=A[970];A[t+4>>2]=r;sn(3952,t)}}function Pn(){var e=0;e=l;l=l+16|0;if(!(je(4056,20)|0)){l=e;return}else sn(4128,e)}function Un(e){e=e|0;var t=0;t=l;l=l+16|0;On(e);if(!(_e(A[1014]|0,0)|0)){l=t;return}else sn(4184,t)}function Tn(e){e=e|0;var t=0,r=0,n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0,y=0,Q=0,v=0,b=0,D=0,S=0,k=0,M=0,F=0,N=0,R=0;t=l;do{if(e>>>0<245){if(e>>>0<11)e=16;else e=e+11&-8;y=e>>>3;p=A[1206]|0;w=p>>>y;if(w&3){o=(w&1^1)+y|0;i=o<<1;r=4864+(i<<2)|0;i=4864+(i+2<<2)|0;s=A[i>>2]|0;a=s+8|0;n=A[a>>2]|0;do{if((r|0)!=(n|0)){if(n>>>0<(A[1210]|0)>>>0)Xe();c=n+12|0;if((A[c>>2]|0)==(s|0)){A[c>>2]=r;A[i>>2]=n;break}else Xe()}else A[1206]=p&~(1<>2]=R|3;R=s+(R|4)|0;A[R>>2]=A[R>>2]|1;R=a;l=t;return R|0}B=A[1208]|0;if(e>>>0>B>>>0){if(w){s=2<>>12&16;s=s>>>r;a=s>>>5&8;s=s>>>a;i=s>>>2&4;s=s>>>i;o=s>>>1&2;s=s>>>o;n=s>>>1&1;n=(a|r|i|o|n)+(s>>>n)|0;s=n<<1;o=4864+(s<<2)|0;s=4864+(s+2<<2)|0;i=A[s>>2]|0;r=i+8|0;a=A[r>>2]|0;do{if((o|0)!=(a|0)){if(a>>>0<(A[1210]|0)>>>0)Xe();c=a+12|0;if((A[c>>2]|0)==(i|0)){A[c>>2]=o;A[s>>2]=a;M=A[1208]|0;break}else Xe()}else{A[1206]=p&~(1<>2]=e|3;o=i+e|0;A[i+(e|4)>>2]=n|1;A[i+R>>2]=n;if(M){i=A[1211]|0;g=M>>>3;a=g<<1;s=4864+(a<<2)|0;c=A[1206]|0;g=1<>2]|0;if(c>>>0<(A[1210]|0)>>>0)Xe();else{k=a;S=c}}else{A[1206]=c|g;k=4864+(a+2<<2)|0;S=s}A[k>>2]=i;A[S+12>>2]=i;A[i+8>>2]=S;A[i+12>>2]=s}A[1208]=n;A[1211]=o;R=r;l=t;return R|0}p=A[1207]|0;if(p){r=(p&0-p)+-1|0;N=r>>>12&16;r=r>>>N;F=r>>>5&8;r=r>>>F;R=r>>>2&4;r=r>>>R;i=r>>>1&2;r=r>>>i;n=r>>>1&1;n=A[5128+((F|N|R|i|n)+(r>>>n)<<2)>>2]|0;r=(A[n+4>>2]&-8)-e|0;i=n;while(1){o=A[i+16>>2]|0;if(!o){o=A[i+20>>2]|0;if(!o)break}i=(A[o+4>>2]&-8)-e|0;R=i>>>0>>0;r=R?i:r;i=o;n=R?o:n}s=A[1210]|0;if(n>>>0>>0)Xe();i=n+e|0;if(n>>>0>=i>>>0)Xe();o=A[n+24>>2]|0;c=A[n+12>>2]|0;do{if((c|0)==(n|0)){c=n+20|0;a=A[c>>2]|0;if(!a){c=n+16|0;a=A[c>>2]|0;if(!a){D=0;break}}while(1){g=a+20|0;u=A[g>>2]|0;if(u){a=u;c=g;continue}g=a+16|0;u=A[g>>2]|0;if(!u)break;else{a=u;c=g}}if(c>>>0>>0)Xe();else{A[c>>2]=0;D=a;break}}else{a=A[n+8>>2]|0;if(a>>>0>>0)Xe();s=a+12|0;if((A[s>>2]|0)!=(n|0))Xe();g=c+8|0;if((A[g>>2]|0)==(n|0)){A[s>>2]=c;A[g>>2]=a;D=c;break}else Xe()}}while(0);do{if(o){a=A[n+28>>2]|0;s=5128+(a<<2)|0;if((n|0)==(A[s>>2]|0)){A[s>>2]=D;if(!D){A[1207]=A[1207]&~(1<>>0<(A[1210]|0)>>>0)Xe();s=o+16|0;if((A[s>>2]|0)==(n|0))A[s>>2]=D;else A[o+20>>2]=D;if(!D)break}s=A[1210]|0;if(D>>>0>>0)Xe();A[D+24>>2]=o;o=A[n+16>>2]|0;do{if(o)if(o>>>0>>0)Xe();else{A[D+16>>2]=o;A[o+24>>2]=D;break}}while(0);o=A[n+20>>2]|0;if(o)if(o>>>0<(A[1210]|0)>>>0)Xe();else{A[D+20>>2]=o;A[o+24>>2]=D;break}}}while(0);if(r>>>0<16){R=r+e|0;A[n+4>>2]=R|3;R=n+(R+4)|0;A[R>>2]=A[R>>2]|1}else{A[n+4>>2]=e|3;A[n+(e|4)>>2]=r|1;A[n+(r+e)>>2]=r;s=A[1208]|0;if(s){o=A[1211]|0;c=s>>>3;g=c<<1;s=4864+(g<<2)|0;a=A[1206]|0;c=1<>2]|0;if(c>>>0<(A[1210]|0)>>>0)Xe();else{b=a;v=c}}else{A[1206]=a|c;b=4864+(g+2<<2)|0;v=s}A[b>>2]=o;A[v+12>>2]=o;A[o+8>>2]=v;A[o+12>>2]=s}A[1208]=r;A[1211]=i}R=n+8|0;l=t;return R|0}}}else if(e>>>0<=4294967231){v=e+11|0;e=v&-8;D=A[1207]|0;if(D){b=0-e|0;v=v>>>8;if(v)if(e>>>0>16777215)S=31;else{N=(v+1048320|0)>>>16&8;R=v<>>16&4;R=R<>>16&2;S=14-(F|N|S)+(R<>>15)|0;S=e>>>(S+7|0)&1|S<<1}else S=0;k=A[5128+(S<<2)>>2]|0;e:do{if(!k){F=0;v=0}else{if((S|0)==31)v=0;else v=25-(S>>>1)|0;F=0;M=e<>2]&-8;R=N-e|0;if(R>>>0>>0)if((N|0)==(e|0)){b=R;F=k;v=k;break e}else{b=R;v=k}R=A[k+20>>2]|0;k=A[k+(M>>>31<<2)+16>>2]|0;F=(R|0)==0|(R|0)==(k|0)?F:R;if(!k)break;else M=M<<1}}}while(0);if((F|0)==0&(v|0)==0){R=2<>>12&16;R=R>>>k;S=R>>>5&8;R=R>>>S;M=R>>>2&4;R=R>>>M;N=R>>>1&2;R=R>>>N;F=R>>>1&1;F=A[5128+((S|k|M|N|F)+(R>>>F)<<2)>>2]|0}if(F)while(1){R=(A[F+4>>2]&-8)-e|0;D=R>>>0>>0;b=D?R:b;v=D?F:v;D=A[F+16>>2]|0;if(D){F=D;continue}F=A[F+20>>2]|0;if(!F)break}if((v|0)!=0?b>>>0<((A[1208]|0)-e|0)>>>0:0){i=A[1210]|0;if(v>>>0>>0)Xe();r=v+e|0;if(v>>>0>=r>>>0)Xe();n=A[v+24>>2]|0;o=A[v+12>>2]|0;do{if((o|0)==(v|0)){s=v+20|0;o=A[s>>2]|0;if(!o){s=v+16|0;o=A[s>>2]|0;if(!o){y=0;break}}while(1){a=o+20|0;c=A[a>>2]|0;if(c){o=c;s=a;continue}a=o+16|0;c=A[a>>2]|0;if(!c)break;else{o=c;s=a}}if(s>>>0>>0)Xe();else{A[s>>2]=0;y=o;break}}else{s=A[v+8>>2]|0;if(s>>>0>>0)Xe();a=s+12|0;if((A[a>>2]|0)!=(v|0))Xe();i=o+8|0;if((A[i>>2]|0)==(v|0)){A[a>>2]=o;A[i>>2]=s;y=o;break}else Xe()}}while(0);do{if(n){i=A[v+28>>2]|0;o=5128+(i<<2)|0;if((v|0)==(A[o>>2]|0)){A[o>>2]=y;if(!y){A[1207]=A[1207]&~(1<>>0<(A[1210]|0)>>>0)Xe();i=n+16|0;if((A[i>>2]|0)==(v|0))A[i>>2]=y;else A[n+20>>2]=y;if(!y)break}i=A[1210]|0;if(y>>>0>>0)Xe();A[y+24>>2]=n;n=A[v+16>>2]|0;do{if(n)if(n>>>0>>0)Xe();else{A[y+16>>2]=n;A[n+24>>2]=y;break}}while(0);n=A[v+20>>2]|0;if(n)if(n>>>0<(A[1210]|0)>>>0)Xe();else{A[y+20>>2]=n;A[n+24>>2]=y;break}}}while(0);e:do{if(b>>>0>=16){A[v+4>>2]=e|3;A[v+(e|4)>>2]=b|1;A[v+(b+e)>>2]=b;i=b>>>3;if(b>>>0<256){s=i<<1;n=4864+(s<<2)|0;o=A[1206]|0;i=1<>2]|0;if(o>>>0>=(A[1210]|0)>>>0){w=i;B=o;break}Xe()}}while(0);A[w>>2]=r;A[B+12>>2]=r;A[v+(e+8)>>2]=B;A[v+(e+12)>>2]=n;break}n=b>>>8;if(n)if(b>>>0>16777215)n=31;else{N=(n+1048320|0)>>>16&8;R=n<>>16&4;R=R<>>16&2;n=14-(F|N|n)+(R<>>15)|0;n=b>>>(n+7|0)&1|n<<1}else n=0;i=5128+(n<<2)|0;A[v+(e+28)>>2]=n;A[v+(e+20)>>2]=0;A[v+(e+16)>>2]=0;o=A[1207]|0;s=1<>2]=r;A[v+(e+24)>>2]=i;A[v+(e+12)>>2]=r;A[v+(e+8)>>2]=r;break}s=A[i>>2]|0;if((n|0)==31)n=0;else n=25-(n>>>1)|0;t:do{if((A[s+4>>2]&-8|0)!=(b|0)){n=b<>>31<<2)+16|0;i=A[o>>2]|0;if(!i)break;if((A[i+4>>2]&-8|0)==(b|0)){p=i;break t}else{n=n<<1;s=i}}if(o>>>0<(A[1210]|0)>>>0)Xe();else{A[o>>2]=r;A[v+(e+24)>>2]=s;A[v+(e+12)>>2]=r;A[v+(e+8)>>2]=r;break e}}else p=s}while(0);i=p+8|0;n=A[i>>2]|0;R=A[1210]|0;if(p>>>0>=R>>>0&n>>>0>=R>>>0){A[n+12>>2]=r;A[i>>2]=r;A[v+(e+8)>>2]=n;A[v+(e+12)>>2]=p;A[v+(e+24)>>2]=0;break}else Xe()}else{R=b+e|0;A[v+4>>2]=R|3;R=v+(R+4)|0;A[R>>2]=A[R>>2]|1}}while(0);R=v+8|0;l=t;return R|0}}}else e=-1}while(0);p=A[1208]|0;if(p>>>0>=e>>>0){n=p-e|0;r=A[1211]|0;if(n>>>0>15){A[1211]=r+e;A[1208]=n;A[r+(e+4)>>2]=n|1;A[r+p>>2]=n;A[r+4>>2]=e|3}else{A[1208]=0;A[1211]=0;A[r+4>>2]=p|3;R=r+(p+4)|0;A[R>>2]=A[R>>2]|1}R=r+8|0;l=t;return R|0}p=A[1209]|0;if(p>>>0>e>>>0){N=p-e|0;A[1209]=N;R=A[1212]|0;A[1212]=R+e;A[R+(e+4)>>2]=N|1;A[R+4>>2]=e|3;R=R+8|0;l=t;return R|0}do{if(!(A[1324]|0)){p=xe(30)|0;if(!(p+-1&p)){A[1326]=p;A[1325]=p;A[1327]=-1;A[1328]=-1;A[1329]=0;A[1317]=0;A[1324]=($e(0)|0)&-16^1431655768;break}else Xe()}}while(0);y=e+48|0;p=A[1326]|0;w=e+47|0;b=p+w|0;p=0-p|0;B=b&p;if(B>>>0<=e>>>0){R=0;l=t;return R|0}v=A[1316]|0;if((v|0)!=0?(N=A[1314]|0,R=N+B|0,R>>>0<=N>>>0|R>>>0>v>>>0):0){R=0;l=t;return R|0}e:do{if(!(A[1317]&4)){D=A[1212]|0;t:do{if(D){v=5272|0;while(1){S=A[v>>2]|0;if(S>>>0<=D>>>0?(Q=v+4|0,(S+(A[Q>>2]|0)|0)>>>0>D>>>0):0)break;v=A[v+8>>2]|0;if(!v){f=181;break t}}if(v){b=b-(A[1209]|0)&p;if(b>>>0<2147483647){p=ke(b|0)|0;if((p|0)==((A[v>>2]|0)+(A[Q>>2]|0)|0)){v=b;f=190}else{v=b;f=191}}else v=0}else f=181}else f=181}while(0);do{if((f|0)==181){Q=ke(0)|0;if((Q|0)!=(-1|0)){b=Q;v=A[1325]|0;p=v+-1|0;if(!(p&b))v=B;else v=B-b+(p+b&0-v)|0;p=A[1314]|0;b=p+v|0;if(v>>>0>e>>>0&v>>>0<2147483647){R=A[1316]|0;if((R|0)!=0?b>>>0<=p>>>0|b>>>0>R>>>0:0){v=0;break}p=ke(v|0)|0;if((p|0)==(Q|0)){p=Q;f=190}else f=191}else v=0}else v=0}}while(0);t:do{if((f|0)==190){if((p|0)!=(-1|0)){C=v;f=201;break e}}else if((f|0)==191){f=0-v|0;do{if((p|0)!=(-1|0)&v>>>0<2147483647&y>>>0>v>>>0?(m=A[1326]|0,m=w-v+m&0-m,m>>>0<2147483647):0)if((ke(m|0)|0)==(-1|0)){ke(f|0)|0;v=0;break t}else{v=m+v|0;break}}while(0);if((p|0)==(-1|0))v=0;else{C=v;f=201;break e}}}while(0);A[1317]=A[1317]|4;f=198}else{v=0;f=198}}while(0);if((((f|0)==198?B>>>0<2147483647:0)?(E=ke(B|0)|0,I=ke(0)|0,(E|0)!=(-1|0)&(I|0)!=(-1|0)&E>>>0>>0):0)?(d=I-E|0,C=d>>>0>(e+40|0)>>>0,C):0){p=E;C=C?d:v;f=201}if((f|0)==201){d=(A[1314]|0)+C|0;A[1314]=d;if(d>>>0>(A[1315]|0)>>>0)A[1315]=d;d=A[1212]|0;e:do{if(d){E=5272|0;while(1){I=A[E>>2]|0;B=E+4|0;w=A[B>>2]|0;if((p|0)==(I+w|0)){f=213;break}m=A[E+8>>2]|0;if(!m)break;else E=m}if(((f|0)==213?(A[E+12>>2]&8|0)==0:0)?d>>>0>=I>>>0&d>>>0

>>0:0){A[B>>2]=w+C;r=(A[1209]|0)+C|0;n=d+8|0;if(!(n&7))n=0;else n=0-n&7;R=r-n|0;A[1212]=d+n;A[1209]=R;A[d+(n+4)>>2]=R|1;A[d+(r+4)>>2]=40;A[1213]=A[1328];break}I=A[1210]|0;if(p>>>0>>0){A[1210]=p;I=p}B=p+C|0;E=5272|0;while(1){if((A[E>>2]|0)==(B|0)){f=223;break}m=A[E+8>>2]|0;if(!m)break;else E=m}if((f|0)==223?(A[E+12>>2]&8|0)==0:0){A[E>>2]=p;s=E+4|0;A[s>>2]=(A[s>>2]|0)+C;s=p+8|0;if(!(s&7))s=0;else s=0-s&7;a=p+(C+8)|0;if(!(a&7))h=0;else h=0-a&7;f=p+(h+C)|0;c=s+e|0;a=p+c|0;u=f-(p+s)-e|0;A[p+(s+4)>>2]=e|3;t:do{if((f|0)!=(d|0)){if((f|0)==(A[1211]|0)){R=(A[1208]|0)+u|0;A[1208]=R;A[1211]=a;A[p+(c+4)>>2]=R|1;A[p+(R+c)>>2]=R;break}d=C+4|0;m=A[p+(d+h)>>2]|0;if((m&3|0)==1){e=m&-8;E=m>>>3;r:do{if(m>>>0>=256){g=A[p+((h|24)+C)>>2]|0;E=A[p+(C+12+h)>>2]|0;do{if((E|0)==(f|0)){B=h|16;m=p+(d+B)|0;E=A[m>>2]|0;if(!E){m=p+(B+C)|0;E=A[m>>2]|0;if(!E){o=0;break}}while(1){w=E+20|0;B=A[w>>2]|0;if(B){E=B;m=w;continue}w=E+16|0;B=A[w>>2]|0;if(!B)break;else{E=B;m=w}}if(m>>>0>>0)Xe();else{A[m>>2]=0;o=E;break}}else{m=A[p+((h|8)+C)>>2]|0;if(m>>>0>>0)Xe();B=m+12|0;if((A[B>>2]|0)!=(f|0))Xe();I=E+8|0;if((A[I>>2]|0)==(f|0)){A[B>>2]=E;A[I>>2]=m;o=E;break}else Xe()}}while(0);if(!g)break;I=A[p+(C+28+h)>>2]|0;E=5128+(I<<2)|0;do{if((f|0)!=(A[E>>2]|0)){if(g>>>0<(A[1210]|0)>>>0)Xe();I=g+16|0;if((A[I>>2]|0)==(f|0))A[I>>2]=o;else A[g+20>>2]=o;if(!o)break r}else{A[E>>2]=o;if(o)break;A[1207]=A[1207]&~(1<>>0>>0)Xe();A[o+24>>2]=g;I=h|16;g=A[p+(I+C)>>2]|0;do{if(g)if(g>>>0>>0)Xe();else{A[o+16>>2]=g;A[g+24>>2]=o;break}}while(0);g=A[p+(d+I)>>2]|0;if(!g)break;if(g>>>0<(A[1210]|0)>>>0)Xe();else{A[o+20>>2]=g;A[g+24>>2]=o;break}}else{o=A[p+((h|8)+C)>>2]|0;d=A[p+(C+12+h)>>2]|0;m=4864+(E<<1<<2)|0;do{if((o|0)!=(m|0)){if(o>>>0>>0)Xe();if((A[o+12>>2]|0)==(f|0))break;Xe()}}while(0);if((d|0)==(o|0)){A[1206]=A[1206]&~(1<>>0>>0)Xe();I=d+8|0;if((A[I>>2]|0)==(f|0)){g=I;break}Xe()}}while(0);A[o+12>>2]=d;A[g>>2]=o}}while(0);f=p+((e|h)+C)|0;u=e+u|0}o=f+4|0;A[o>>2]=A[o>>2]&-2;A[p+(c+4)>>2]=u|1;A[p+(u+c)>>2]=u;o=u>>>3;if(u>>>0<256){g=o<<1;r=4864+(g<<2)|0;u=A[1206]|0;o=1<>2]|0;if(o>>>0>=(A[1210]|0)>>>0){i=g;n=o;break}Xe()}}while(0);A[i>>2]=a;A[n+12>>2]=a;A[p+(c+8)>>2]=n;A[p+(c+12)>>2]=r;break}n=u>>>8;do{if(!n)n=0;else{if(u>>>0>16777215){n=31;break}N=(n+1048320|0)>>>16&8;R=n<>>16&4;R=R<>>16&2;n=14-(F|N|n)+(R<>>15)|0;n=u>>>(n+7|0)&1|n<<1}}while(0);g=5128+(n<<2)|0;A[p+(c+28)>>2]=n;A[p+(c+20)>>2]=0;A[p+(c+16)>>2]=0;o=A[1207]|0;i=1<>2]=a;A[p+(c+24)>>2]=g;A[p+(c+12)>>2]=a;A[p+(c+8)>>2]=a;break}i=A[g>>2]|0;if((n|0)==31)n=0;else n=25-(n>>>1)|0;r:do{if((A[i+4>>2]&-8|0)!=(u|0)){n=u<>>31<<2)+16|0;g=A[o>>2]|0;if(!g)break;if((A[g+4>>2]&-8|0)==(u|0)){r=g;break r}else{n=n<<1;i=g}}if(o>>>0<(A[1210]|0)>>>0)Xe();else{A[o>>2]=a;A[p+(c+24)>>2]=i;A[p+(c+12)>>2]=a;A[p+(c+8)>>2]=a;break t}}else r=i}while(0);n=r+8|0;i=A[n>>2]|0;R=A[1210]|0;if(r>>>0>=R>>>0&i>>>0>=R>>>0){A[i+12>>2]=a;A[n>>2]=a;A[p+(c+8)>>2]=i;A[p+(c+12)>>2]=r;A[p+(c+24)>>2]=0;break}else Xe()}else{R=(A[1209]|0)+u|0;A[1209]=R;A[1212]=a;A[p+(c+4)>>2]=R|1}}while(0);R=p+(s|8)|0;l=t;return R|0}n=5272|0;while(1){r=A[n>>2]|0;if(r>>>0<=d>>>0?(h=A[n+4>>2]|0,u=r+h|0,u>>>0>d>>>0):0)break;n=A[n+8>>2]|0}n=r+(h+-39)|0;if(!(n&7))n=0;else n=0-n&7;r=r+(h+-47+n)|0;r=r>>>0<(d+16|0)>>>0?d:r;n=r+8|0;i=p+8|0;if(!(i&7))i=0;else i=0-i&7;R=C+-40-i|0;A[1212]=p+i;A[1209]=R;A[p+(i+4)>>2]=R|1;A[p+(C+-36)>>2]=40;A[1213]=A[1328];A[r+4>>2]=27;A[n+0>>2]=A[1318];A[n+4>>2]=A[1319];A[n+8>>2]=A[1320];A[n+12>>2]=A[1321];A[1318]=p;A[1319]=C;A[1321]=0;A[1320]=n;n=r+28|0;A[n>>2]=7;if((r+32|0)>>>0>>0)do{R=n;n=n+4|0;A[n>>2]=7}while((R+8|0)>>>0>>0);if((r|0)!=(d|0)){r=r-d|0;n=d+(r+4)|0;A[n>>2]=A[n>>2]&-2;A[d+4>>2]=r|1;A[d+r>>2]=r;n=r>>>3;if(r>>>0<256){i=n<<1;r=4864+(i<<2)|0;o=A[1206]|0;n=1<>2]|0;if(n>>>0>=(A[1210]|0)>>>0){c=i;a=n;break}Xe()}}while(0);A[c>>2]=d;A[a+12>>2]=d;A[d+8>>2]=a;A[d+12>>2]=r;break}n=r>>>8;if(n)if(r>>>0>16777215)n=31;else{N=(n+1048320|0)>>>16&8;R=n<>>16&4;R=R<>>16&2;n=14-(F|N|n)+(R<>>15)|0;n=r>>>(n+7|0)&1|n<<1}else n=0;a=5128+(n<<2)|0;A[d+28>>2]=n;A[d+20>>2]=0;A[d+16>>2]=0;i=A[1207]|0;o=1<>2]=d;A[d+24>>2]=a;A[d+12>>2]=d;A[d+8>>2]=d;break}i=A[a>>2]|0;if((n|0)==31)n=0;else n=25-(n>>>1)|0;t:do{if((A[i+4>>2]&-8|0)!=(r|0)){n=r<>>31<<2)+16|0;o=A[i>>2]|0;if(!o)break;if((A[o+4>>2]&-8|0)==(r|0)){s=o;break t}else{n=n<<1;a=o}}if(i>>>0<(A[1210]|0)>>>0)Xe();else{A[i>>2]=d;A[d+24>>2]=a;A[d+12>>2]=d;A[d+8>>2]=d;break e}}else s=i}while(0);n=s+8|0;r=A[n>>2]|0;R=A[1210]|0;if(s>>>0>=R>>>0&r>>>0>=R>>>0){A[r+12>>2]=d;A[n>>2]=d;A[d+8>>2]=r;A[d+12>>2]=s;A[d+24>>2]=0;break}else Xe()}}else{R=A[1210]|0;if((R|0)==0|p>>>0>>0)A[1210]=p;A[1318]=p;A[1319]=C;A[1321]=0;A[1215]=A[1324];A[1214]=-1;r=0;do{R=r<<1;N=4864+(R<<2)|0;A[4864+(R+3<<2)>>2]=N;A[4864+(R+2<<2)>>2]=N;r=r+1|0}while((r|0)!=32);r=p+8|0;if(!(r&7))r=0;else r=0-r&7;R=C+-40-r|0;A[1212]=p+r;A[1209]=R;A[p+(r+4)>>2]=R|1;A[p+(C+-36)>>2]=40;A[1213]=A[1328]}}while(0);r=A[1209]|0;if(r>>>0>e>>>0){N=r-e|0;A[1209]=N;R=A[1212]|0;A[1212]=R+e;A[R+(e+4)>>2]=N|1;A[R+4>>2]=e|3;R=R+8|0;l=t;return R|0}}A[(Ge()|0)>>2]=12;R=0;l=t;return R|0}function On(e){e=e|0;var t=0,r=0,n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0,w=0;t=l;if(!e){l=t;return}C=e+-8|0;d=A[1210]|0;if(C>>>0>>0)Xe();h=A[e+-4>>2]|0;u=h&3;if((u|0)==1)Xe();a=h&-8;s=e+(a+-8)|0;do{if(!(h&1)){m=A[C>>2]|0;if(!u){l=t;return}C=-8-m|0;h=e+C|0;u=m+a|0;if(h>>>0>>0)Xe();if((h|0)==(A[1211]|0)){n=e+(a+-4)|0;f=A[n>>2]|0;if((f&3|0)!=3){n=h;f=u;break}A[1208]=u;A[n>>2]=f&-2;A[e+(C+4)>>2]=u|1;A[s>>2]=u;l=t;return}E=m>>>3;if(m>>>0<256){n=A[e+(C+8)>>2]|0;f=A[e+(C+12)>>2]|0;p=4864+(E<<1<<2)|0;if((n|0)!=(p|0)){if(n>>>0>>0)Xe();if((A[n+12>>2]|0)!=(h|0))Xe()}if((f|0)==(n|0)){A[1206]=A[1206]&~(1<>>0>>0)Xe();p=f+8|0;if((A[p>>2]|0)==(h|0))I=p;else Xe()}else I=f+8|0;A[n+12>>2]=f;A[I>>2]=n;n=h;f=u;break}I=A[e+(C+24)>>2]|0;E=A[e+(C+12)>>2]|0;do{if((E|0)==(h|0)){m=e+(C+20)|0;E=A[m>>2]|0;if(!E){m=e+(C+16)|0;E=A[m>>2]|0;if(!E){p=0;break}}while(1){B=E+20|0;w=A[B>>2]|0;if(w){E=w;m=B;continue}B=E+16|0;w=A[B>>2]|0;if(!w)break;else{E=w;m=B}}if(m>>>0>>0)Xe();else{A[m>>2]=0;p=E;break}}else{m=A[e+(C+8)>>2]|0;if(m>>>0>>0)Xe();d=m+12|0;if((A[d>>2]|0)!=(h|0))Xe();B=E+8|0;if((A[B>>2]|0)==(h|0)){A[d>>2]=E;A[B>>2]=m;p=E;break}else Xe()}}while(0);if(I){d=A[e+(C+28)>>2]|0;E=5128+(d<<2)|0;if((h|0)==(A[E>>2]|0)){A[E>>2]=p;if(!p){A[1207]=A[1207]&~(1<>>0<(A[1210]|0)>>>0)Xe();d=I+16|0;if((A[d>>2]|0)==(h|0))A[d>>2]=p;else A[I+20>>2]=p;if(!p){n=h;f=u;break}}d=A[1210]|0;if(p>>>0>>0)Xe();A[p+24>>2]=I;I=A[e+(C+16)>>2]|0;do{if(I)if(I>>>0>>0)Xe();else{A[p+16>>2]=I;A[I+24>>2]=p;break}}while(0);C=A[e+(C+20)>>2]|0;if(C)if(C>>>0<(A[1210]|0)>>>0)Xe();else{A[p+20>>2]=C;A[C+24>>2]=p;n=h;f=u;break}else{n=h;f=u}}else{n=h;f=u}}else{n=C;f=a}}while(0);if(n>>>0>=s>>>0)Xe();u=e+(a+-4)|0;h=A[u>>2]|0;if(!(h&1))Xe();if(!(h&2)){if((s|0)==(A[1212]|0)){w=(A[1209]|0)+f|0;A[1209]=w;A[1212]=n;A[n+4>>2]=w|1;if((n|0)!=(A[1211]|0)){l=t;return}A[1211]=0;A[1208]=0;l=t;return}if((s|0)==(A[1211]|0)){w=(A[1208]|0)+f|0;A[1208]=w;A[1211]=n;A[n+4>>2]=w|1;A[n+w>>2]=w;l=t;return}f=(h&-8)+f|0;u=h>>>3;do{if(h>>>0>=256){g=A[e+(a+16)>>2]|0;u=A[e+(a|4)>>2]|0;do{if((u|0)==(s|0)){h=e+(a+12)|0;u=A[h>>2]|0;if(!u){h=e+(a+8)|0;u=A[h>>2]|0;if(!u){c=0;break}}while(1){C=u+20|0;p=A[C>>2]|0;if(p){u=p;h=C;continue}p=u+16|0;C=A[p>>2]|0;if(!C)break;else{u=C;h=p}}if(h>>>0<(A[1210]|0)>>>0)Xe();else{A[h>>2]=0;c=u;break}}else{h=A[e+a>>2]|0;if(h>>>0<(A[1210]|0)>>>0)Xe();p=h+12|0;if((A[p>>2]|0)!=(s|0))Xe();C=u+8|0;if((A[C>>2]|0)==(s|0)){A[p>>2]=u;A[C>>2]=h;c=u;break}else Xe()}}while(0);if(g){u=A[e+(a+20)>>2]|0;h=5128+(u<<2)|0;if((s|0)==(A[h>>2]|0)){A[h>>2]=c;if(!c){A[1207]=A[1207]&~(1<>>0<(A[1210]|0)>>>0)Xe();u=g+16|0;if((A[u>>2]|0)==(s|0))A[u>>2]=c;else A[g+20>>2]=c;if(!c)break}s=A[1210]|0;if(c>>>0>>0)Xe();A[c+24>>2]=g;g=A[e+(a+8)>>2]|0;do{if(g)if(g>>>0>>0)Xe();else{A[c+16>>2]=g;A[g+24>>2]=c;break}}while(0);s=A[e+(a+12)>>2]|0;if(s)if(s>>>0<(A[1210]|0)>>>0)Xe();else{A[c+20>>2]=s;A[s+24>>2]=c;break}}}else{c=A[e+a>>2]|0;a=A[e+(a|4)>>2]|0;e=4864+(u<<1<<2)|0;if((c|0)!=(e|0)){if(c>>>0<(A[1210]|0)>>>0)Xe();if((A[c+12>>2]|0)!=(s|0))Xe()}if((a|0)==(c|0)){A[1206]=A[1206]&~(1<>>0<(A[1210]|0)>>>0)Xe();e=a+8|0;if((A[e>>2]|0)==(s|0))g=e;else Xe()}else g=a+8|0;A[c+12>>2]=a;A[g>>2]=c}}while(0);A[n+4>>2]=f|1;A[n+f>>2]=f;if((n|0)==(A[1211]|0)){A[1208]=f;l=t;return}}else{A[u>>2]=h&-2;A[n+4>>2]=f|1;A[n+f>>2]=f}s=f>>>3;if(f>>>0<256){a=s<<1;r=4864+(a<<2)|0;c=A[1206]|0;s=1<>2]|0;if(s>>>0<(A[1210]|0)>>>0)Xe();else{i=a;o=s}}else{A[1206]=c|s;i=4864+(a+2<<2)|0;o=r}A[i>>2]=n;A[o+12>>2]=n;A[n+8>>2]=o;A[n+12>>2]=r;l=t;return}i=f>>>8;if(i)if(f>>>0>16777215)i=31;else{B=(i+1048320|0)>>>16&8;w=i<>>16&4;w=w<>>16&2;i=14-(m|B|i)+(w<>>15)|0;i=f>>>(i+7|0)&1|i<<1}else i=0;o=5128+(i<<2)|0;A[n+28>>2]=i;A[n+20>>2]=0;A[n+16>>2]=0;a=A[1207]|0;s=1<>2]|0;if((i|0)==31)i=0;else i=25-(i>>>1)|0;t:do{if((A[o+4>>2]&-8|0)!=(f|0)){i=f<>>31<<2)+16|0;s=A[a>>2]|0;if(!s)break;if((A[s+4>>2]&-8|0)==(f|0)){r=s;break t}else{i=i<<1;o=s}}if(a>>>0<(A[1210]|0)>>>0)Xe();else{A[a>>2]=n;A[n+24>>2]=o;A[n+12>>2]=n;A[n+8>>2]=n;break e}}else r=o}while(0);o=r+8|0;i=A[o>>2]|0;w=A[1210]|0;if(r>>>0>=w>>>0&i>>>0>=w>>>0){A[i+12>>2]=n;A[o>>2]=n;A[n+8>>2]=i;A[n+12>>2]=r;A[n+24>>2]=0;break}else Xe()}else{A[1207]=a|s;A[o>>2]=n;A[n+24>>2]=o;A[n+12>>2]=n;A[n+8>>2]=n}}while(0);w=(A[1214]|0)+-1|0;A[1214]=w;if(!w)r=5280|0;else{l=t;return}while(1){r=A[r>>2]|0;if(!r)break;else r=r+8|0}A[1214]=-1;l=t;return}function jn(e,t){e=e|0;t=t|0;var r=0,n=0,i=0;r=l;do{if(e){if(t>>>0>4294967231){A[(Ge()|0)>>2]=12;n=0;break}if(t>>>0<11)n=16;else n=t+11&-8;n=ei(e+-8|0,n)|0;if(n){n=n+8|0;break}n=Tn(t)|0;if(!n)n=0;else{i=A[e+-4>>2]|0;i=(i&-8)-((i&3|0)==0?8:4)|0;gi(n|0,e|0,(i>>>0>>0?i:t)|0)|0;On(e)}}else n=Tn(t)|0}while(0);l=r;return n|0}function Yn(e){e=e|0;if((e|0)==32)e=1;else e=(e+-9|0)>>>0<5;return e&1|0}function Gn(e,t,r,i,s){e=e|0;t=t|0;r=r|0;i=i|0;s=s|0;var a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0;a=l;if(t>>>0>36){A[(Ge()|0)>>2]=22;I=0;E=0;K=I;l=a;return E|0}c=e+4|0;g=e+100|0;do{u=A[c>>2]|0;if(u>>>0<(A[g>>2]|0)>>>0){A[c>>2]=u+1;f=o[u>>0]|0}else f=Jn(e)|0}while((Yn(f)|0)!=0);do{if((f|0)==43|(f|0)==45){u=((f|0)==45)<<31>>31;h=A[c>>2]|0;if(h>>>0<(A[g>>2]|0)>>>0){A[c>>2]=h+1;f=o[h>>0]|0;break}else{f=Jn(e)|0;break}}else u=0}while(0);h=(t|0)==0;do{if((t&-17|0)==0&(f|0)==48){f=A[c>>2]|0;if(f>>>0<(A[g>>2]|0)>>>0){A[c>>2]=f+1;f=o[f>>0]|0}else f=Jn(e)|0;if((f|32|0)!=120)if(h){t=8;r=46;break}else{r=32;break}t=A[c>>2]|0;if(t>>>0<(A[g>>2]|0)>>>0){A[c>>2]=t+1;f=o[t>>0]|0}else f=Jn(e)|0;if((o[f+5321>>0]|0)>15){i=(A[g>>2]|0)==0;if(!i)A[c>>2]=(A[c>>2]|0)+-1;if(!r){Hn(e,0);I=0;E=0;K=I;l=a;return E|0}if(i){I=0;E=0;K=I;l=a;return E|0}A[c>>2]=(A[c>>2]|0)+-1;I=0;E=0;K=I;l=a;return E|0}else{t=16;r=46}}else{t=h?10:t;if((o[f+5321>>0]|0)>>>0>>0)r=32;else{if(A[g>>2]|0)A[c>>2]=(A[c>>2]|0)+-1;Hn(e,0);A[(Ge()|0)>>2]=22;I=0;E=0;K=I;l=a;return E|0}}}while(0);if((r|0)==32)if((t|0)==10){t=f+-48|0;if(t>>>0<10){h=0;do{h=(h*10|0)+t|0;t=A[c>>2]|0;if(t>>>0<(A[g>>2]|0)>>>0){A[c>>2]=t+1;f=o[t>>0]|0}else f=Jn(e)|0;t=f+-48|0}while(t>>>0<10&h>>>0<429496729);p=0}else{h=0;p=0}t=f+-48|0;if(t>>>0<10){do{C=di(h|0,p|0,10,0)|0;d=K;I=((t|0)<0)<<31>>31;E=~I;if(d>>>0>E>>>0|(d|0)==(E|0)&C>>>0>~t>>>0)break;h=ai(C|0,d|0,t|0,I|0)|0;p=K;t=A[c>>2]|0;if(t>>>0<(A[g>>2]|0)>>>0){A[c>>2]=t+1;f=o[t>>0]|0}else f=Jn(e)|0;t=f+-48|0}while(t>>>0<10&(p>>>0<429496729|(p|0)==429496729&h>>>0<2576980378));if(t>>>0<=9){t=10;r=72}}}else r=46;e:do{if((r|0)==46){if(!(t+-1&t)){r=n[5584+((t*23|0)>>>5&7)>>0]|0;d=n[f+5321>>0]|0;h=d&255;if(h>>>0>>0){f=h;h=0;do{h=f|h<>2]|0;if(f>>>0<(A[g>>2]|0)>>>0){A[c>>2]=f+1;I=o[f>>0]|0}else I=Jn(e)|0;d=n[I+5321>>0]|0;f=d&255}while(f>>>0>>0&h>>>0<134217728);p=0}else{p=0;h=0;I=f}f=ci(-1,-1,r|0)|0;C=K;if((d&255)>>>0>=t>>>0|(p>>>0>C>>>0|(p|0)==(C|0)&h>>>0>f>>>0)){f=I;r=72;break}while(1){h=oi(h|0,p|0,r|0)|0;p=K;h=d&255|h;d=A[c>>2]|0;if(d>>>0<(A[g>>2]|0)>>>0){A[c>>2]=d+1;I=o[d>>0]|0}else I=Jn(e)|0;d=n[I+5321>>0]|0;if((d&255)>>>0>=t>>>0|(p>>>0>C>>>0|(p|0)==(C|0)&h>>>0>f>>>0)){f=I;r=72;break e}}}d=n[f+5321>>0]|0;r=d&255;if(r>>>0>>0){h=0;do{h=r+(ie(h,t)|0)|0;r=A[c>>2]|0;if(r>>>0<(A[g>>2]|0)>>>0){A[c>>2]=r+1;C=o[r>>0]|0}else C=Jn(e)|0;d=n[C+5321>>0]|0;r=d&255}while(r>>>0>>0&h>>>0<119304647);p=0}else{h=0;p=0;C=f}if((d&255)>>>0>>0){r=Ii(-1,-1,t|0,0)|0;f=K;while(1){if(p>>>0>f>>>0|(p|0)==(f|0)&h>>>0>r>>>0){f=C;r=72;break e}I=di(h|0,p|0,t|0,0)|0;E=K;d=d&255;if(E>>>0>4294967295|(E|0)==-1&I>>>0>~d>>>0){f=C;r=72;break e}h=ai(d|0,0,I|0,E|0)|0;p=K;C=A[c>>2]|0;if(C>>>0<(A[g>>2]|0)>>>0){A[c>>2]=C+1;C=o[C>>0]|0}else C=Jn(e)|0;d=n[C+5321>>0]|0;if((d&255)>>>0>=t>>>0){f=C;r=72;break}}}else{f=C;r=72}}}while(0);if((r|0)==72)if((o[f+5321>>0]|0)>>>0>>0){do{r=A[c>>2]|0;if(r>>>0<(A[g>>2]|0)>>>0){A[c>>2]=r+1;r=o[r>>0]|0}else r=Jn(e)|0}while((o[r+5321>>0]|0)>>>0>>0);A[(Ge()|0)>>2]=34;p=s;h=i}if(A[g>>2]|0)A[c>>2]=(A[c>>2]|0)+-1;if(!(p>>>0>>0|(p|0)==(s|0)&h>>>0>>0)){if(!((i&1|0)!=0|0!=0|(u|0)!=0)){A[(Ge()|0)>>2]=34;E=ai(i|0,s|0,-1,-1)|0;I=K;K=I;l=a;return E|0}if(p>>>0>s>>>0|(p|0)==(s|0)&h>>>0>i>>>0){A[(Ge()|0)>>2]=34;I=s;E=i;K=I;l=a;return E|0}}E=((u|0)<0)<<31>>31;E=ii(h^u|0,p^E|0,u|0,E|0)|0;I=K;K=I;l=a;return E|0}function _n(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0.0,d=0,I=0,E=0,m=0,B=0,w=0,v=0,b=0,D=0,S=0,k=0,M=0,F=0.0,N=0,R=0.0,x=0.0,L=0.0,P=0.0;i=l;l=l+512|0;c=i;if(!t){t=24;a=-149}else if((t|0)==2){t=53;a=-1074}else if((t|0)==1){t=53;a=-1074}else{x=0.0;l=i;return+x}h=e+4|0;f=e+100|0;do{s=A[h>>2]|0;if(s>>>0<(A[f>>2]|0)>>>0){A[h>>2]=s+1;m=o[s>>0]|0}else m=Jn(e)|0}while((Yn(m)|0)!=0);do{if((m|0)==43|(m|0)==45){s=1-(((m|0)==45&1)<<1)|0;u=A[h>>2]|0;if(u>>>0<(A[f>>2]|0)>>>0){A[h>>2]=u+1;m=o[u>>0]|0;break}else{m=Jn(e)|0;break}}else s=1}while(0);d=0;do{if((m|32|0)!=(n[5600+d>>0]|0))break;do{if(d>>>0<7){u=A[h>>2]|0;if(u>>>0<(A[f>>2]|0)>>>0){A[h>>2]=u+1;m=o[u>>0]|0;break}else{m=Jn(e)|0;break}}}while(0);d=d+1|0}while(d>>>0<8);do{if((d|0)==3)p=23;else if((d|0)!=8){u=(r|0)!=0;if(d>>>0>3&u)if((d|0)==8)break;else{p=23;break}e:do{if(!d){d=0;do{if((m|32|0)!=(n[5616+d>>0]|0))break e;do{if(d>>>0<2){I=A[h>>2]|0;if(I>>>0<(A[f>>2]|0)>>>0){A[h>>2]=I+1;m=o[I>>0]|0;break}else{m=Jn(e)|0;break}}}while(0);d=d+1|0}while(d>>>0<3)}}while(0);if(!d){do{if((m|0)==48){u=A[h>>2]|0;if(u>>>0<(A[f>>2]|0)>>>0){A[h>>2]=u+1;u=o[u>>0]|0}else u=Jn(e)|0;if((u|32|0)!=120){if(!(A[f>>2]|0)){m=48;break}A[h>>2]=(A[h>>2]|0)+-1;m=48;break}c=A[h>>2]|0;if(c>>>0<(A[f>>2]|0)>>>0){A[h>>2]=c+1;v=o[c>>0]|0;B=0}else{v=Jn(e)|0;B=0}while(1){if((v|0)==46){p=70;break}else if((v|0)!=48){c=0;u=0;I=0;d=0;m=0;w=0;F=1.0;E=0;C=0.0;break}c=A[h>>2]|0;if(c>>>0<(A[f>>2]|0)>>>0){A[h>>2]=c+1;v=o[c>>0]|0;B=1;continue}else{v=Jn(e)|0;B=1;continue}}if((p|0)==70){c=A[h>>2]|0;if(c>>>0<(A[f>>2]|0)>>>0){A[h>>2]=c+1;v=o[c>>0]|0}else v=Jn(e)|0;if((v|0)==48){I=0;d=0;do{c=A[h>>2]|0;if(c>>>0<(A[f>>2]|0)>>>0){A[h>>2]=c+1;v=o[c>>0]|0}else v=Jn(e)|0;I=ai(I|0,d|0,-1,-1)|0;d=K}while((v|0)==48);c=0;u=0;B=1;m=1;w=0;F=1.0;E=0;C=0.0}else{c=0;u=0;I=0;d=0;m=1;w=0;F=1.0;E=0;C=0.0}}e:while(1){D=v+-48|0;do{if(D>>>0>=10){b=v|32;S=(v|0)==46;if(!((b+-97|0)>>>0<6|S))break e;if(S)if(!m){I=u;d=c;m=1;break}else{v=46;break e}else{D=(v|0)>57?b+-87|0:D;p=83;break}}else p=83}while(0);if((p|0)==83){p=0;do{if(!((c|0)<0|(c|0)==0&u>>>0<8)){if((c|0)<0|(c|0)==0&u>>>0<14){x=F*.0625;R=x;C=C+x*+(D|0);break}if((D|0)==0|(w|0)!=0)R=F;else{w=1;R=F;C=C+F*.5}}else{R=F;E=D+(E<<4)|0}}while(0);u=ai(u|0,c|0,1,0)|0;c=K;B=1;F=R}v=A[h>>2]|0;if(v>>>0<(A[f>>2]|0)>>>0){A[h>>2]=v+1;v=o[v>>0]|0;continue}else{v=Jn(e)|0;continue}}if(!B){t=(A[f>>2]|0)==0;if(!t)A[h>>2]=(A[h>>2]|0)+-1;if(r){if(!t?(g=A[h>>2]|0,A[h>>2]=g+-1,(m|0)!=0):0)A[h>>2]=g+-2}else Hn(e,0);x=+(s|0)*0.0;l=i;return+x}p=(m|0)==0;g=p?u:I;p=p?c:d;if((c|0)<0|(c|0)==0&u>>>0<8)do{E=E<<4;u=ai(u|0,c|0,1,0)|0;c=K}while((c|0)<0|(c|0)==0&u>>>0<8);do{if((v|32|0)==112){u=ri(e,r)|0;c=K;if((u|0)==0&(c|0)==-2147483648)if(!r){Hn(e,0);x=0.0;l=i;return+x}else{if(!(A[f>>2]|0)){u=0;c=0;break}A[h>>2]=(A[h>>2]|0)+-1;u=0;c=0;break}}else if(!(A[f>>2]|0)){u=0;c=0}else{A[h>>2]=(A[h>>2]|0)+-1;u=0;c=0}}while(0);g=oi(g|0,p|0,2)|0;g=ai(g|0,K|0,-32,-1)|0;c=ai(g|0,K|0,u|0,c|0)|0;g=K;if(!E){x=+(s|0)*0.0;l=i;return+x}if((g|0)>0|(g|0)==0&c>>>0>(0-a|0)>>>0){A[(Ge()|0)>>2]=34;x=+(s|0)*1.7976931348623157e+308*1.7976931348623157e+308;l=i;return+x}N=a+-106|0;M=((N|0)<0)<<31>>31;if((g|0)<(M|0)|(g|0)==(M|0)&c>>>0>>0){A[(Ge()|0)>>2]=34;x=+(s|0)*2.2250738585072014e-308*2.2250738585072014e-308;l=i;return+x}if((E|0)>-1)do{E=E<<1;if(!(C>=.5))F=C;else{F=C+-1.0;E=E|1}C=C+F;c=ai(c|0,g|0,-1,-1)|0;g=K}while((E|0)>-1);a=ii(32,0,a|0,((a|0)<0)<<31>>31|0)|0;a=ai(c|0,g|0,a|0,K|0)|0;N=K;if(0>(N|0)|0==(N|0)&t>>>0>a>>>0)if((a|0)<0){t=0;p=126}else{t=a;p=124}else p=124;if((p|0)==124)if((t|0)<53)p=126;else{a=t;F=+(s|0);R=0.0}if((p|0)==126){R=+(s|0);a=t;F=R;R=+Ve(+ +qn(1.0,84-t|0),+R)}N=(a|0)<32&C!=0.0&(E&1|0)==0;C=F*(N?0.0:C)+(R+F*+(((N&1)+E|0)>>>0))-R;if(!(C!=0.0))A[(Ge()|0)>>2]=34;x=+zn(C,c);l=i;return+x}}while(0);u=a+t|0;g=0-u|0;D=0;while(1){if((m|0)==46){p=137;break}else if((m|0)!=48){k=0;S=0;b=0;break}d=A[h>>2]|0;if(d>>>0<(A[f>>2]|0)>>>0){A[h>>2]=d+1;m=o[d>>0]|0;D=1;continue}else{m=Jn(e)|0;D=1;continue}}if((p|0)==137){p=A[h>>2]|0;if(p>>>0<(A[f>>2]|0)>>>0){A[h>>2]=p+1;m=o[p>>0]|0}else m=Jn(e)|0;if((m|0)==48){k=0;S=0;do{k=ai(k|0,S|0,-1,-1)|0;S=K;p=A[h>>2]|0;if(p>>>0<(A[f>>2]|0)>>>0){A[h>>2]=p+1;m=o[p>>0]|0}else m=Jn(e)|0}while((m|0)==48);D=1;b=1}else{k=0;S=0;b=1}}A[c>>2]=0;v=m+-48|0;M=(m|0)==46;e:do{if(v>>>0<10|M){p=c+496|0;w=0;B=0;E=0;I=0;d=0;t:while(1){do{if(M)if(!b){k=w;S=B;b=1}else break t;else{M=ai(w|0,B|0,1,0)|0;B=K;N=(m|0)!=48;if((I|0)>=125){if(!N){w=M;break}A[p>>2]=A[p>>2]|1;w=M;break}w=c+(I<<2)|0;if(E)v=m+-48+((A[w>>2]|0)*10|0)|0;A[w>>2]=v;E=E+1|0;v=(E|0)==9;w=M;D=1;E=v?0:E;I=(v&1)+I|0;d=N?M:d}}while(0);m=A[h>>2]|0;if(m>>>0<(A[f>>2]|0)>>>0){A[h>>2]=m+1;m=o[m>>0]|0}else m=Jn(e)|0;v=m+-48|0;M=(m|0)==46;if(!(v>>>0<10|M)){p=160;break e}}v=(D|0)!=0;p=168}else{w=0;B=0;E=0;I=0;d=0;p=160}}while(0);do{if((p|0)==160){v=(b|0)==0;k=v?w:k;S=v?B:S;v=(D|0)!=0;if(!(v&(m|32|0)==101))if((m|0)>-1){p=168;break}else{p=170;break}v=ri(e,r)|0;m=K;do{if((v|0)==0&(m|0)==-2147483648)if(!r){Hn(e,0);x=0.0;l=i;return+x}else{if(!(A[f>>2]|0)){v=0;m=0;break}A[h>>2]=(A[h>>2]|0)+-1;v=0;m=0;break}}while(0);e=ai(v|0,m|0,k|0,S|0)|0;S=K}}while(0);if((p|0)==168)if(A[f>>2]|0){A[h>>2]=(A[h>>2]|0)+-1;if(v)e=k;else p=171}else p=170;if((p|0)==170)if(v)e=k;else p=171;if((p|0)==171){A[(Ge()|0)>>2]=22;Hn(e,0);x=0.0;l=i;return+x}h=A[c>>2]|0;if(!h){x=+(s|0)*0.0;l=i;return+x}if((e|0)==(w|0)&(S|0)==(B|0)&((B|0)<0|(B|0)==0&w>>>0<10)?t>>>0>30|(h>>>t|0)==0:0){x=+(s|0)*+(h>>>0);l=i;return+x}N=(a|0)/-2|0;M=((N|0)<0)<<31>>31;if((S|0)>(M|0)|(S|0)==(M|0)&e>>>0>N>>>0){A[(Ge()|0)>>2]=34;x=+(s|0)*1.7976931348623157e+308*1.7976931348623157e+308;l=i;return+x}N=a+-106|0;M=((N|0)<0)<<31>>31;if((S|0)<(M|0)|(S|0)==(M|0)&e>>>0>>0){A[(Ge()|0)>>2]=34;x=+(s|0)*2.2250738585072014e-308*2.2250738585072014e-308;l=i;return+x}if(E){if((E|0)<9){h=c+(I<<2)|0;f=A[h>>2]|0;do{f=f*10|0;E=E+1|0}while((E|0)!=9);A[h>>2]=f}I=I+1|0}if((d|0)<9?(d|0)<=(e|0)&(e|0)<18:0){if((e|0)==9){x=+(s|0)*+((A[c>>2]|0)>>>0);l=i;return+x}if((e|0)<9){x=+(s|0)*+((A[c>>2]|0)>>>0)/+(A[5632+(8-e<<2)>>2]|0);l=i;return+x}N=t+27+(ie(e,-3)|0)|0;h=A[c>>2]|0;if((N|0)>30|(h>>>N|0)==0){x=+(s|0)*+(h>>>0)*+(A[5632+(e+-10<<2)>>2]|0);l=i;return+x}}h=(e|0)%9|0;if(!h){h=0;f=0}else{r=(e|0)>-1?h:h+9|0;p=A[5632+(8-r<<2)>>2]|0;if(I){d=1e9/(p|0)|0;h=0;f=0;E=0;do{k=c+(E<<2)|0;M=A[k>>2]|0;N=((M>>>0)/(p>>>0)|0)+f|0;A[k>>2]=N;f=ie((M>>>0)%(p>>>0)|0,d)|0;M=E;E=E+1|0;if((M|0)==(h|0)&(N|0)==0){h=E&127;e=e+-9|0}}while((E|0)!=(I|0));if(f){A[c+(I<<2)>>2]=f;I=I+1|0}}else{h=0;I=0}f=0;e=9-r+e|0}e:while(1){r=c+(h<<2)|0;if((e|0)<18){do{d=0;r=I+127|0;while(1){r=r&127;p=c+(r<<2)|0;E=oi(A[p>>2]|0,0,29)|0;E=ai(E|0,K|0,d|0,0)|0;d=K;if(d>>>0>0|(d|0)==0&E>>>0>1e9){N=Ii(E|0,d|0,1e9,0)|0;E=Ei(E|0,d|0,1e9,0)|0;d=N}else d=0;A[p>>2]=E;p=(r|0)==(h|0);if(!((r|0)!=(I+127&127|0)|p))I=(E|0)==0?r:I;if(p)break;else r=r+-1|0}f=f+-29|0}while((d|0)==0)}else{if((e|0)!=18)break;do{if((A[r>>2]|0)>>>0>=9007199){e=18;break e}d=0;p=I+127|0;while(1){p=p&127;E=c+(p<<2)|0;m=oi(A[E>>2]|0,0,29)|0;m=ai(m|0,K|0,d|0,0)|0;d=K;if(d>>>0>0|(d|0)==0&m>>>0>1e9){N=Ii(m|0,d|0,1e9,0)|0;m=Ei(m|0,d|0,1e9,0)|0;d=N}else d=0;A[E>>2]=m;E=(p|0)==(h|0);if(!((p|0)!=(I+127&127|0)|E))I=(m|0)==0?p:I;if(E)break;else p=p+-1|0}f=f+-29|0}while((d|0)==0)}h=h+127&127;if((h|0)==(I|0)){N=I+127&127;I=c+((I+126&127)<<2)|0;A[I>>2]=A[I>>2]|A[c+(N<<2)>>2];I=N}A[c+(h<<2)>>2]=d;e=e+9|0}e:while(1){r=I+1&127;p=c+((I+127&127)<<2)|0;while(1){E=(e|0)==18;d=(e|0)>27?9:1;while(1){m=0;while(1){B=m+h&127;if((B|0)==(I|0)){m=2;break}w=A[c+(B<<2)>>2]|0;v=A[5624+(m<<2)>>2]|0;if(w>>>0>>0){m=2;break}B=m+1|0;if(w>>>0>v>>>0)break;if((B|0)<2)m=B;else{m=B;break}}if((m|0)==2&E)break e;f=d+f|0;if((h|0)==(I|0))h=I;else break}E=(1<>>d;B=h;w=0;do{k=c+(h<<2)|0;M=A[k>>2]|0;N=(M>>>d)+w|0;A[k>>2]=N;w=ie(M&E,m)|0;N=(h|0)==(B|0)&(N|0)==0;h=h+1&127;e=N?e+-9|0:e;B=N?h:B}while((h|0)!=(I|0));if(!w){h=B;continue}if((r|0)!=(B|0))break;A[p>>2]=A[p>>2]|1;h=B}A[c+(I<<2)>>2]=w;h=B;I=r}e=h&127;if((e|0)==(I|0)){A[c+(r+-1<<2)>>2]=0;I=r}F=+((A[c+(e<<2)>>2]|0)>>>0);e=h+1&127;if((e|0)==(I|0)){I=I+1&127;A[c+(I+-1<<2)>>2]=0}C=+(s|0);R=C*(F*1.0e9+ +((A[c+(e<<2)>>2]|0)>>>0));s=f+53|0;a=s-a|0;if((a|0)<(t|0))if((a|0)<0){t=0;e=1;p=244}else{t=a;e=1;p=243}else{e=0;p=243}if((p|0)==243)if((t|0)<53)p=244;else{F=0.0;x=0.0}if((p|0)==244){P=+Ve(+ +qn(1.0,105-t|0),+R);L=+At(+R,+ +qn(1.0,53-t|0));F=P;x=L;R=P+(R-L)}r=h+2&127;do{if((r|0)!=(I|0)){c=A[c+(r<<2)>>2]|0;do{if(c>>>0>=5e8){if(c>>>0>5e8){x=C*.75+x;break}if((h+3&127|0)==(I|0)){x=C*.5+x;break}else{x=C*.75+x;break}}else{if((c|0)==0?(h+3&127|0)==(I|0):0)break;x=C*.25+x}}while(0);if((53-t|0)<=1)break;if(+At(+x,1.0)!=0.0)break;x=x+1.0}}while(0);C=R+x-F;do{if((s&2147483647|0)>(-2-u|0)){if(+H(+C)>=9007199254740992.0){e=(e|0)!=0&(t|0)==(a|0)?0:e;f=f+1|0;C=C*.5}if((f+50|0)<=(g|0)?!((e|0)!=0&x!=0.0):0)break;A[(Ge()|0)>>2]=34}}while(0);P=+zn(C,f);l=i;return+P}else if((d|0)==3){t=A[h>>2]|0;if(t>>>0<(A[f>>2]|0)>>>0){A[h>>2]=t+1;t=o[t>>0]|0}else t=Jn(e)|0;if((t|0)==40)t=1;else{if(!(A[f>>2]|0)){P=y;l=i;return+P}A[h>>2]=(A[h>>2]|0)+-1;P=y;l=i;return+P}while(1){s=A[h>>2]|0;if(s>>>0<(A[f>>2]|0)>>>0){A[h>>2]=s+1;s=o[s>>0]|0}else s=Jn(e)|0;if(!((s+-48|0)>>>0<10|(s+-65|0)>>>0<26)?!((s+-97|0)>>>0<26|(s|0)==95):0)break;t=t+1|0}if((s|0)==41){P=y;l=i;return+P}s=(A[f>>2]|0)==0;if(!s)A[h>>2]=(A[h>>2]|0)+-1;if(!u){A[(Ge()|0)>>2]=22;Hn(e,0);P=0.0;l=i;return+P}if((t|0)==0|s){P=y;l=i;return+P}do{t=t+-1|0;A[h>>2]=(A[h>>2]|0)+-1}while((t|0)!=0);C=y;l=i;return+C}else{if(A[f>>2]|0)A[h>>2]=(A[h>>2]|0)+-1;A[(Ge()|0)>>2]=22;Hn(e,0);P=0.0;l=i;return+P}}}while(0);if((p|0)==23){t=(A[f>>2]|0)==0;if(!t)A[h>>2]=(A[h>>2]|0)+-1;if(!(d>>>0<4|(r|0)==0|t))do{A[h>>2]=(A[h>>2]|0)+-1;d=d+-1|0}while(d>>>0>3)}P=+(s|0)*Q;l=i;return+P}function Hn(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0;r=l;A[e+104>>2]=t;i=A[e+8>>2]|0;n=A[e+4>>2]|0;o=i-n|0;A[e+108>>2]=o;if((t|0)!=0&(o|0)>(t|0)){A[e+100>>2]=n+t;l=r;return}else{A[e+100>>2]=i;l=r;return}}function Jn(e){e=e|0;var t=0,r=0,i=0,s=0,a=0,c=0,g=0;r=l;a=e+104|0;g=A[a>>2]|0;if(!((g|0)!=0?(A[e+108>>2]|0)>=(g|0):0))c=3;if((c|0)==3?(t=Vn(e)|0,(t|0)>=0):0){c=A[a>>2]|0;a=A[e+8>>2]|0;if((c|0)!=0?(i=A[e+4>>2]|0,s=c-(A[e+108>>2]|0)+-1|0,(a-i|0)>(s|0)):0)A[e+100>>2]=i+s;else A[e+100>>2]=a;i=A[e+4>>2]|0;if(a){g=e+108|0;A[g>>2]=a+1-i+(A[g>>2]|0)}e=i+-1|0;if((o[e>>0]|0|0)==(t|0)){g=t;l=r;return g|0}n[e>>0]=t;g=t;l=r;return g|0}A[e+100>>2]=0;g=-1;l=r;return g|0}function qn(e,t){e=+e;t=t|0;var r=0,n=0;r=l;if((t|0)>1023){e=e*8.98846567431158e+307;n=t+-1023|0;if((n|0)>1023){t=t+-2046|0;t=(t|0)>1023?1023:t;e=e*8.98846567431158e+307}else t=n}else if((t|0)<-1022){e=e*2.2250738585072014e-308;n=t+1022|0;if((n|0)<-1022){t=t+2044|0;t=(t|0)<-1022?-1022:t;e=e*2.2250738585072014e-308}else t=n}t=oi(t+1023|0,0,52)|0;n=K;A[h>>2]=t;A[h+4>>2]=n;e=e*+g[h>>3];l=r;return+e}function zn(e,t){e=+e;t=t|0;var r=0;r=l;e=+qn(e,t);l=r;return+e}function Wn(e){e=e|0;var t=0,r=0,i=0;r=l;i=e+74|0;t=n[i>>0]|0;n[i>>0]=t+255|t;i=e+20|0;t=e+44|0;if((A[i>>2]|0)>>>0>(A[t>>2]|0)>>>0)Oi[A[e+36>>2]&1](e,0,0)|0;A[e+16>>2]=0;A[e+28>>2]=0;A[i>>2]=0;i=A[e>>2]|0;if(!(i&20)){i=A[t>>2]|0;A[e+8>>2]=i;A[e+4>>2]=i;i=0;l=r;return i|0}if(!(i&4)){i=-1;l=r;return i|0}A[e>>2]=i|32;i=-1;l=r;return i|0}function Vn(e){e=e|0;var t=0,r=0;t=l;l=l+16|0;r=t;if((A[e+8>>2]|0)==0?(Wn(e)|0)!=0:0)e=-1;else if((Oi[A[e+32>>2]&1](e,r,1)|0)==1)e=o[r>>0]|0;else e=-1;l=t;return e|0}function Xn(e,t){e=e|0;t=t|0;var r=0,n=0,i=0.0,o=0,s=0;r=l;l=l+112|0;n=r;s=n+0|0;o=s+112|0;do{A[s>>2]=0;s=s+4|0}while((s|0)<(o|0));o=n+4|0;A[o>>2]=e;s=n+8|0;A[s>>2]=-1;A[n+44>>2]=e;A[n+76>>2]=-1;Hn(n,0);i=+_n(n,1,1);n=(A[o>>2]|0)-(A[s>>2]|0)+(A[n+108>>2]|0)|0;if(!t){l=r;return+i}if(n)e=e+n|0;A[t>>2]=e;l=r;return+i}function Zn(e,t,r){e=e|0;t=t|0;r=r|0;var n=0,i=0,o=0;n=l;l=l+112|0;o=n;A[o>>2]=0;i=o+4|0;A[i>>2]=e;A[o+44>>2]=e;if((e|0)<0)A[o+8>>2]=-1;else A[o+8>>2]=e+2147483647;A[o+76>>2]=-1;Hn(o,0);r=Gn(o,r,1,-2147483648,0)|0;if(!t){l=n;return r|0}A[t>>2]=e+((A[i>>2]|0)+(A[o+108>>2]|0)-(A[o+8>>2]|0));l=n;return r|0}function $n(e,t){e=e|0;t=t|0;var r=0,i=0,A=0;r=l;A=n[e>>0]|0;i=n[t>>0]|0;if(A<<24>>24==0?1:A<<24>>24!=i<<24>>24)t=A;else{do{e=e+1|0;t=t+1|0;A=n[e>>0]|0;i=n[t>>0]|0}while(!(A<<24>>24==0?1:A<<24>>24!=i<<24>>24));t=A}l=r;return(t&255)-(i&255)|0}function ei(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0;r=l;i=e+4|0;n=A[i>>2]|0;g=n&-8;a=e+g|0;u=A[1210]|0;s=n&3;if(!((s|0)!=1&e>>>0>=u>>>0&e>>>0>>0))Xe();o=e+(g|4)|0;p=A[o>>2]|0;if(!(p&1))Xe();if(!s){if(t>>>0<256){d=0;l=r;return d|0}if(g>>>0>=(t+4|0)>>>0?(g-t|0)>>>0<=A[1326]<<1>>>0:0){d=e;l=r;return d|0}d=0;l=r;return d|0}if(g>>>0>=t>>>0){s=g-t|0;if(s>>>0<=15){d=e;l=r;return d|0}A[i>>2]=n&1|t|2;A[e+(t+4)>>2]=s|3;A[o>>2]=A[o>>2]|1;ti(e+t|0,s);d=e;l=r;return d|0}if((a|0)==(A[1212]|0)){o=(A[1209]|0)+g|0;if(o>>>0<=t>>>0){d=0;l=r;return d|0}d=o-t|0;A[i>>2]=n&1|t|2;A[e+(t+4)>>2]=d|1;A[1212]=e+t;A[1209]=d;d=e;l=r;return d|0}if((a|0)==(A[1211]|0)){s=(A[1208]|0)+g|0;if(s>>>0>>0){d=0;l=r;return d|0}o=s-t|0;if(o>>>0>15){A[i>>2]=n&1|t|2;A[e+(t+4)>>2]=o|1;A[e+s>>2]=o;n=e+(s+4)|0;A[n>>2]=A[n>>2]&-2;n=e+t|0}else{A[i>>2]=n&1|s|2;n=e+(s+4)|0;A[n>>2]=A[n>>2]|1;n=0;o=0}A[1208]=o;A[1211]=n;d=e;l=r;return d|0}if(p&2){d=0;l=r;return d|0}o=(p&-8)+g|0;if(o>>>0>>0){d=0;l=r;return d|0}s=o-t|0;f=p>>>3;do{if(p>>>0>=256){h=A[e+(g+24)>>2]|0;f=A[e+(g+12)>>2]|0;do{if((f|0)==(a|0)){p=e+(g+20)|0;f=A[p>>2]|0;if(!f){p=e+(g+16)|0;f=A[p>>2]|0;if(!f){c=0;break}}while(1){d=f+20|0;C=A[d>>2]|0;if(C){f=C;p=d;continue}C=f+16|0;d=A[C>>2]|0;if(!d)break;else{f=d;p=C}}if(p>>>0>>0)Xe();else{A[p>>2]=0;c=f;break}}else{p=A[e+(g+8)>>2]|0;if(p>>>0>>0)Xe();u=p+12|0;if((A[u>>2]|0)!=(a|0))Xe();C=f+8|0;if((A[C>>2]|0)==(a|0)){A[u>>2]=f;A[C>>2]=p;c=f;break}else Xe()}}while(0);if(h){u=A[e+(g+28)>>2]|0;f=5128+(u<<2)|0;if((a|0)==(A[f>>2]|0)){A[f>>2]=c;if(!c){A[1207]=A[1207]&~(1<>>0<(A[1210]|0)>>>0)Xe();u=h+16|0;if((A[u>>2]|0)==(a|0))A[u>>2]=c;else A[h+20>>2]=c;if(!c)break}a=A[1210]|0;if(c>>>0>>0)Xe();A[c+24>>2]=h;u=A[e+(g+16)>>2]|0;do{if(u)if(u>>>0>>0)Xe();else{A[c+16>>2]=u;A[u+24>>2]=c;break}}while(0);a=A[e+(g+20)>>2]|0;if(a)if(a>>>0<(A[1210]|0)>>>0)Xe();else{A[c+20>>2]=a;A[a+24>>2]=c;break}}}else{c=A[e+(g+8)>>2]|0;g=A[e+(g+12)>>2]|0;p=4864+(f<<1<<2)|0;if((c|0)!=(p|0)){if(c>>>0>>0)Xe();if((A[c+12>>2]|0)!=(a|0))Xe()}if((g|0)==(c|0)){A[1206]=A[1206]&~(1<>>0>>0)Xe();u=g+8|0;if((A[u>>2]|0)==(a|0))h=u;else Xe()}else h=g+8|0;A[c+12>>2]=g;A[h>>2]=c}}while(0);if(s>>>0<16){A[i>>2]=o|n&1|2;d=e+(o|4)|0;A[d>>2]=A[d>>2]|1;d=e;l=r;return d|0}else{A[i>>2]=n&1|t|2;A[e+(t+4)>>2]=s|3;d=e+(o|4)|0;A[d>>2]=A[d>>2]|1;ti(e+t|0,s);d=e;l=r;return d|0}return 0}function ti(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,o=0,s=0,a=0,c=0,g=0,u=0,h=0,f=0,p=0,C=0,d=0,I=0,E=0,m=0,B=0;r=l;s=e+t|0;g=A[e+4>>2]|0;do{if(!(g&1)){p=A[e>>2]|0;if(!(g&3)){l=r;return}g=e+(0-p)|0;u=p+t|0;d=A[1210]|0;if(g>>>0>>0)Xe();if((g|0)==(A[1211]|0)){n=e+(t+4)|0;h=A[n>>2]|0;if((h&3|0)!=3){n=g;h=u;break}A[1208]=u;A[n>>2]=h&-2;A[e+(4-p)>>2]=u|1;A[s>>2]=u;l=r;return}I=p>>>3;if(p>>>0<256){n=A[e+(8-p)>>2]|0;h=A[e+(12-p)>>2]|0;f=4864+(I<<1<<2)|0;if((n|0)!=(f|0)){if(n>>>0>>0)Xe();if((A[n+12>>2]|0)!=(g|0))Xe()}if((h|0)==(n|0)){A[1206]=A[1206]&~(1<>>0>>0)Xe();f=h+8|0;if((A[f>>2]|0)==(g|0))C=f;else Xe()}else C=h+8|0;A[n+12>>2]=h;A[C>>2]=n;n=g;h=u;break}C=A[e+(24-p)>>2]|0;I=A[e+(12-p)>>2]|0;do{if((I|0)==(g|0)){m=16-p|0;E=e+(m+4)|0;I=A[E>>2]|0;if(!I){E=e+m|0;I=A[E>>2]|0;if(!I){f=0;break}}while(1){B=I+20|0;m=A[B>>2]|0;if(m){I=m;E=B;continue}m=I+16|0;B=A[m>>2]|0;if(!B)break;else{I=B;E=m}}if(E>>>0>>0)Xe();else{A[E>>2]=0;f=I;break}}else{E=A[e+(8-p)>>2]|0;if(E>>>0>>0)Xe();d=E+12|0;if((A[d>>2]|0)!=(g|0))Xe();m=I+8|0;if((A[m>>2]|0)==(g|0)){A[d>>2]=I;A[m>>2]=E;f=I;break}else Xe()}}while(0);if(C){I=A[e+(28-p)>>2]|0;d=5128+(I<<2)|0;if((g|0)==(A[d>>2]|0)){A[d>>2]=f;if(!f){A[1207]=A[1207]&~(1<>>0<(A[1210]|0)>>>0)Xe();d=C+16|0;if((A[d>>2]|0)==(g|0))A[d>>2]=f;else A[C+20>>2]=f;if(!f){n=g;h=u;break}}d=A[1210]|0;if(f>>>0>>0)Xe();A[f+24>>2]=C;p=16-p|0;C=A[e+p>>2]|0;do{if(C)if(C>>>0>>0)Xe();else{A[f+16>>2]=C;A[C+24>>2]=f;break}}while(0);p=A[e+(p+4)>>2]|0;if(p)if(p>>>0<(A[1210]|0)>>>0)Xe();else{A[f+20>>2]=p;A[p+24>>2]=f;n=g;h=u;break}else{n=g;h=u}}else{n=g;h=u}}else{n=e;h=t}}while(0);g=A[1210]|0;if(s>>>0>>0)Xe();u=e+(t+4)|0;f=A[u>>2]|0;if(!(f&2)){if((s|0)==(A[1212]|0)){B=(A[1209]|0)+h|0;A[1209]=B;A[1212]=n;A[n+4>>2]=B|1;if((n|0)!=(A[1211]|0)){l=r;return}A[1211]=0;A[1208]=0;l=r;return}if((s|0)==(A[1211]|0)){B=(A[1208]|0)+h|0;A[1208]=B;A[1211]=n;A[n+4>>2]=B|1;A[n+B>>2]=B;l=r;return}h=(f&-8)+h|0;u=f>>>3;do{if(f>>>0>=256){c=A[e+(t+24)>>2]|0;f=A[e+(t+12)>>2]|0;do{if((f|0)==(s|0)){f=e+(t+20)|0;u=A[f>>2]|0;if(!u){f=e+(t+16)|0;u=A[f>>2]|0;if(!u){a=0;break}}while(1){p=u+20|0;C=A[p>>2]|0;if(C){u=C;f=p;continue}C=u+16|0;p=A[C>>2]|0;if(!p)break;else{u=p;f=C}}if(f>>>0>>0)Xe();else{A[f>>2]=0;a=u;break}}else{u=A[e+(t+8)>>2]|0;if(u>>>0>>0)Xe();p=u+12|0;if((A[p>>2]|0)!=(s|0))Xe();g=f+8|0;if((A[g>>2]|0)==(s|0)){A[p>>2]=f;A[g>>2]=u;a=f;break}else Xe()}}while(0);if(c){u=A[e+(t+28)>>2]|0;g=5128+(u<<2)|0;if((s|0)==(A[g>>2]|0)){A[g>>2]=a;if(!a){A[1207]=A[1207]&~(1<>>0<(A[1210]|0)>>>0)Xe();g=c+16|0;if((A[g>>2]|0)==(s|0))A[g>>2]=a;else A[c+20>>2]=a;if(!a)break}s=A[1210]|0;if(a>>>0>>0)Xe();A[a+24>>2]=c;c=A[e+(t+16)>>2]|0;do{if(c)if(c>>>0>>0)Xe();else{A[a+16>>2]=c;A[c+24>>2]=a;break}}while(0);s=A[e+(t+20)>>2]|0;if(s)if(s>>>0<(A[1210]|0)>>>0)Xe();else{A[a+20>>2]=s;A[s+24>>2]=a;break}}}else{a=A[e+(t+8)>>2]|0;e=A[e+(t+12)>>2]|0;t=4864+(u<<1<<2)|0;if((a|0)!=(t|0)){if(a>>>0>>0)Xe();if((A[a+12>>2]|0)!=(s|0))Xe()}if((e|0)==(a|0)){A[1206]=A[1206]&~(1<>>0>>0)Xe();t=e+8|0;if((A[t>>2]|0)==(s|0))c=t;else Xe()}else c=e+8|0;A[a+12>>2]=e;A[c>>2]=a}}while(0);A[n+4>>2]=h|1;A[n+h>>2]=h;if((n|0)==(A[1211]|0)){A[1208]=h;l=r;return}}else{A[u>>2]=f&-2;A[n+4>>2]=h|1;A[n+h>>2]=h}t=h>>>3;if(h>>>0<256){e=t<<1;s=4864+(e<<2)|0;a=A[1206]|0;t=1<>2]|0;if(a>>>0<(A[1210]|0)>>>0)Xe();else{o=e;i=a}}else{A[1206]=a|t;o=4864+(e+2<<2)|0;i=s}A[o>>2]=n;A[i+12>>2]=n;A[n+8>>2]=i;A[n+12>>2]=s;l=r;return}i=h>>>8;if(i)if(h>>>0>16777215)i=31;else{m=(i+1048320|0)>>>16&8;B=i<>>16&4;B=B<>>16&2;i=14-(E|m|i)+(B<>>15)|0;i=h>>>(i+7|0)&1|i<<1}else i=0;o=5128+(i<<2)|0;A[n+28>>2]=i;A[n+20>>2]=0;A[n+16>>2]=0;e=A[1207]|0;s=1<>2]=n;A[n+24>>2]=o;A[n+12>>2]=n;A[n+8>>2]=n;l=r;return}o=A[o>>2]|0;if((i|0)==31)i=0;else i=25-(i>>>1)|0;e:do{if((A[o+4>>2]&-8|0)!=(h|0)){i=h<>>31<<2)+16|0;o=A[s>>2]|0;if(!o)break;if((A[o+4>>2]&-8|0)==(h|0))break e;else{i=i<<1;e=o}}if(s>>>0<(A[1210]|0)>>>0)Xe();A[s>>2]=n;A[n+24>>2]=e;A[n+12>>2]=n;A[n+8>>2]=n;l=r;return}}while(0);i=o+8|0;s=A[i>>2]|0;B=A[1210]|0;if(!(o>>>0>=B>>>0&s>>>0>=B>>>0))Xe();A[s+12>>2]=n;A[i>>2]=n;A[n+8>>2]=s;A[n+12>>2]=o;A[n+24>>2]=0;l=r;return}function ri(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,s=0,a=0,c=0;r=l;i=e+4|0;s=A[i>>2]|0;n=e+100|0;if(s>>>0<(A[n>>2]|0)>>>0){A[i>>2]=s+1;a=o[s>>0]|0}else a=Jn(e)|0;if((a|0)==43|(a|0)==45){c=A[i>>2]|0;s=(a|0)==45&1;if(c>>>0<(A[n>>2]|0)>>>0){A[i>>2]=c+1;a=o[c>>0]|0}else a=Jn(e)|0;if((a+-48|0)>>>0>9&(t|0)!=0?(A[n>>2]|0)!=0:0)A[i>>2]=(A[i>>2]|0)+-1}else s=0;if((a+-48|0)>>>0>9){if(!(A[n>>2]|0)){a=-2147483648;c=0;K=a;l=r;return c|0}A[i>>2]=(A[i>>2]|0)+-1;a=-2147483648;c=0;K=a;l=r;return c|0}else t=0;do{t=a+-48+(t*10|0)|0;a=A[i>>2]|0;if(a>>>0<(A[n>>2]|0)>>>0){A[i>>2]=a+1;a=o[a>>0]|0}else a=Jn(e)|0}while((a+-48|0)>>>0<10&(t|0)<214748364);c=((t|0)<0)<<31>>31;if((a+-48|0)>>>0<10)do{c=di(t|0,c|0,10,0)|0;t=K;a=ai(a|0,((a|0)<0)<<31>>31|0,-48,-1)|0;t=ai(a|0,K|0,c|0,t|0)|0;c=K;a=A[i>>2]|0;if(a>>>0<(A[n>>2]|0)>>>0){A[i>>2]=a+1;a=o[a>>0]|0}else a=Jn(e)|0}while((a+-48|0)>>>0<10&((c|0)<21474836|(c|0)==21474836&t>>>0<2061584302));if((a+-48|0)>>>0<10)do{a=A[i>>2]|0;if(a>>>0<(A[n>>2]|0)>>>0){A[i>>2]=a+1;a=o[a>>0]|0}else a=Jn(e)|0}while((a+-48|0)>>>0<10);if(A[n>>2]|0)A[i>>2]=(A[i>>2]|0)+-1;i=(s|0)!=0;s=ii(0,0,t|0,c|0)|0;a=i?K:c;c=i?s:t;K=a;l=r;return c|0}function ni(){}function ii(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;t=t-n-(r>>>0>e>>>0|0)>>>0;return(K=t,e-r>>>0|0)|0}function Ai(e,t,r){e=e|0;t=t|0;r=r|0;var i=0,o=0,s=0,a=0;i=e+r|0;if((r|0)>=20){t=t&255;a=e&3;s=t|t<<8|t<<16|t<<24;o=i&~3;if(a){a=e+4-a|0;while((e|0)<(a|0)){n[e>>0]=t;e=e+1|0}}while((e|0)<(o|0)){A[e>>2]=s;e=e+4|0}}while((e|0)<(i|0)){n[e>>0]=t;e=e+1|0}return e-r|0}function oi(e,t,r){e=e|0;t=t|0;r=r|0;if((r|0)<32){K=t<>>32-r;return e<>0]|0)t=t+1|0;return t-e|0}function ai(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;r=e+r>>>0;return(K=t+n+(r>>>0>>0|0)>>>0,r|0)|0}function ci(e,t,r){e=e|0;t=t|0;r=r|0;if((r|0)<32){K=t>>>r;return e>>>r|(t&(1<>>r-32|0}function gi(e,t,r){e=e|0;t=t|0;r=r|0;var i=0;if((r|0)>=4096)return Fe(e|0,t|0,r|0)|0;i=e|0;if((e&3)==(t&3)){while(e&3){if(!r)return i|0;n[e>>0]=n[t>>0]|0;e=e+1|0;t=t+1|0;r=r-1|0}while((r|0)>=4){A[e>>2]=A[t>>2];e=e+4|0;t=t+4|0;r=r-4|0}}while((r|0)>0){n[e>>0]=n[t>>0]|0;e=e+1|0;t=t+1|0;r=r-1|0}return i|0}function li(e,t,r){e=e|0;t=t|0;r=r|0;if((r|0)<32){K=t>>r;return e>>>r|(t&(1<>r-32|0}function ui(e){e=e|0;var t=0;t=n[C+(e>>>24)>>0]|0;if((t|0)<8)return t|0;t=n[C+(e>>16&255)>>0]|0;if((t|0)<8)return t+8|0;t=n[C+(e>>8&255)>>0]|0;if((t|0)<8)return t+16|0;return(n[C+(e&255)>>0]|0)+24|0}function hi(e){e=e|0;var t=0;t=n[p+(e&255)>>0]|0;if((t|0)<8)return t|0;t=n[p+(e>>8&255)>>0]|0;if((t|0)<8)return t+8|0;t=n[p+(e>>16&255)>>0]|0;if((t|0)<8)return t+16|0;return(n[p+(e>>>24)>>0]|0)+24|0}function fi(e,t){e=e|0;t=t|0;var r=0,n=0,i=0,A=0;A=e&65535;n=t&65535;r=ie(n,A)|0;i=e>>>16;n=(r>>>16)+(ie(n,i)|0)|0;t=t>>>16;e=ie(t,A)|0;return(K=(n>>>16)+(ie(t,i)|0)+(((n&65535)+e|0)>>>16)|0,n+e<<16|r&65535|0)|0}function pi(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;var i=0,A=0,o=0,s=0,a=0,c=0;c=t>>31|((t|0)<0?-1:0)<<1;a=((t|0)<0?-1:0)>>31|((t|0)<0?-1:0)<<1;A=n>>31|((n|0)<0?-1:0)<<1;i=((n|0)<0?-1:0)>>31|((n|0)<0?-1:0)<<1;s=ii(c^e,a^t,c,a)|0;o=K;t=A^c;e=i^a;e=ii((mi(s,o,ii(A^r,i^n,A,i)|0,K,0)|0)^t,K^e,t,e)|0;return e|0}function Ci(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;var i=0,o=0,s=0,a=0,c=0,g=0;i=l;l=l+8|0;a=i|0;s=t>>31|((t|0)<0?-1:0)<<1;o=((t|0)<0?-1:0)>>31|((t|0)<0?-1:0)<<1;g=n>>31|((n|0)<0?-1:0)<<1;c=((n|0)<0?-1:0)>>31|((n|0)<0?-1:0)<<1;t=ii(s^e,o^t,s,o)|0;e=K;mi(t,e,ii(g^r,c^n,g,c)|0,K,a)|0;e=ii(A[a>>2]^s,A[a+4>>2]^o,s,o)|0;t=K;l=i;return(K=t,e)|0}function di(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;var i=0,A=0;i=e;A=r;e=fi(i,A)|0;r=K;return(K=(ie(t,A)|0)+(ie(n,i)|0)+r|r&0,e|0|0)|0}function Ii(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;e=mi(e,t,r,n,0)|0;return e|0}function Ei(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;var i=0,o=0;o=l;l=l+8|0;i=o|0;mi(e,t,r,n,i)|0;l=o;return(K=A[i+4>>2]|0,A[i>>2]|0)|0}function mi(e,t,r,n,i){e=e|0;t=t|0;r=r|0;n=n|0;i=i|0;var o=0,s=0,a=0,c=0,g=0,l=0,u=0,h=0,f=0,p=0;s=e;c=t;a=c;l=r;o=n;g=o;if(!a){o=(i|0)!=0;if(!g){if(o){A[i>>2]=(s>>>0)%(l>>>0);A[i+4>>2]=0}g=0;u=(s>>>0)/(l>>>0)>>>0;return(K=g,u)|0}else{if(!o){l=0;u=0;return(K=l,u)|0}A[i>>2]=e|0;A[i+4>>2]=t&0;l=0;u=0;return(K=l,u)|0}}u=(g|0)==0;do{if(l){if(!u){g=(ui(g|0)|0)-(ui(a|0)|0)|0;if(g>>>0<=31){u=g+1|0;l=31-g|0;e=g-31>>31;c=u;t=s>>>(u>>>0)&e|a<>>(u>>>0)&e;g=0;l=s<>2]=e|0;A[i+4>>2]=c|t&0;l=0;u=0;return(K=l,u)|0}g=l-1|0;if(g&l){l=(ui(l|0)|0)+33-(ui(a|0)|0)|0;p=64-l|0;u=32-l|0;h=u>>31;f=l-32|0;e=f>>31;c=l;t=u-1>>31&a>>>(f>>>0)|(a<>>(l>>>0))&e;e=e&a>>>(l>>>0);g=s<>>(f>>>0))&h|s<>31;break}if(i){A[i>>2]=g&s;A[i+4>>2]=0}if((l|0)==1){f=c|t&0;p=e|0|0;return(K=f,p)|0}else{p=hi(l|0)|0;f=a>>>(p>>>0)|0;p=a<<32-p|s>>>(p>>>0)|0;return(K=f,p)|0}}else{if(u){if(i){A[i>>2]=(a>>>0)%(l>>>0);A[i+4>>2]=0}f=0;p=(a>>>0)/(l>>>0)>>>0;return(K=f,p)|0}if(!s){if(i){A[i>>2]=0;A[i+4>>2]=(a>>>0)%(g>>>0)}f=0;p=(a>>>0)/(g>>>0)>>>0;return(K=f,p)|0}l=g-1|0;if(!(l&g)){if(i){A[i>>2]=e|0;A[i+4>>2]=l&a|t&0}f=0;p=a>>>((hi(g|0)|0)>>>0);return(K=f,p)|0}g=(ui(g|0)|0)-(ui(a|0)|0)|0;if(g>>>0<=30){e=g+1|0;l=31-g|0;c=e;t=a<>>(e>>>0);e=a>>>(e>>>0);g=0;l=s<>2]=e|0;A[i+4>>2]=c|t&0;f=0;p=0;return(K=f,p)|0}}while(0);if(!c){o=l;n=0;a=0}else{s=r|0|0;o=o|n&0;n=ai(s,o,-1,-1)|0;r=K;a=0;do{u=l;l=g>>>31|l<<1;g=a|g<<1;u=t<<1|u>>>31|0;h=t>>>31|e<<1|0;ii(n,r,u,h)|0;p=K;f=p>>31|((p|0)<0?-1:0)<<1;a=f&1;t=ii(u,h,f&s,(((p|0)<0?-1:0)>>31|((p|0)<0?-1:0)<<1)&o)|0;e=K;c=c-1|0}while((c|0)!=0);o=l;n=0}s=0;if(i){A[i>>2]=t;A[i+4>>2]=e}f=(g|0)>>>31|(o|s)<<1|(s<<1|g>>>31)&0|n;p=(g<<1|0>>>31)&-2|a;return(K=f,p)|0}function Bi(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;return Oi[e&1](t|0,r|0,n|0)|0}function wi(e,t,r,n,i,A){e=e|0;t=t|0;r=r|0;n=n|0;i=i|0;A=A|0;ji[e&3](t|0,r|0,n|0,i|0,A|0)}function yi(e,t){e=e|0;t=t|0;Yi[e&31](t|0)}function Qi(e,t,r){e=e|0;t=t|0;r=r|0;Gi[e&3](t|0,r|0)}function vi(e,t){e=e|0;t=t|0;return _i[e&1](t|0)|0}function bi(e){e=e|0;Hi[e&3]()}function Di(e,t,r,n,i,A,o){e=e|0;t=t|0;r=r|0;n=n|0;i=i|0;A=A|0;o=o|0;Ji[e&3](t|0,r|0,n|0,i|0,A|0,o|0)}function Si(e,t,r){e=e|0;t=t|0;r=r|0;return qi[e&3](t|0,r|0)|0}function ki(e,t,r,n,i){e=e|0;t=t|0;r=r|0;n=n|0;i=i|0;zi[e&3](t|0,r|0,n|0,i|0)}function Mi(e,t,r){e=e|0;t=t|0;r=r|0;Ae(0);return 0}function Fi(e,t,r,n,i){e=e|0;t=t|0;r=r|0;n=n|0;i=i|0;Ae(1)}function Ni(e){e=e|0;Ae(2)}function Ri(e,t){e=e|0;t=t|0;Ae(3)}function Ki(e){e=e|0;Ae(4);return 0}function xi(){Ae(5)}function Li(){it()}function Pi(e,t,r,n,i,A){e=e|0;t=t|0;r=r|0;n=n|0;i=i|0;A=A|0;Ae(6)}function Ui(e,t){e=e|0;t=t|0;Ae(7);return 0}function Ti(e,t,r,n){e=e|0;t=t|0;r=r|0;n=n|0;Ae(8)}var Oi=[Mi,Qn];var ji=[Fi,Fn,Mn,Fi];var Yi=[Ni,Ct,It,mt,yt,St,Dt,Wt,Xt,Er,Ir,Kr,un,ln,En,wn,mn,Bn,yn,Et,Un,Ni,Ni,Ni,Ni,Ni,Ni,Ni,Ni,Ni,Ni,Ni];var Gi=[Ri,wt,vt,$t];var _i=[Ki,hn];var Hi=[xi,Li,Ln,Pn];var Ji=[Pi,Rn,Nn,Pi];var qi=[Ui,Bt,Qt,Zt];var zi=[Ti,bn,Dn,Ti];return{_yo:qr,_strlen:si,_retireVar:rn,_bitshift64Lshr:ci,_unyo:zr,_solve:Zr,_bitshift64Shl:oi,_getSolution:$r,___cxa_is_pointer_type:xn,_memset:Ai,_getNumVars:en,_memcpy:gi,_getConflictClauseSize:nn,_addClause:Xr,_i64Subtract:ii,_createTheSolver:Wr,_realloc:jn,_i64Add:ai,_solveAssuming:tn,___cxa_can_catch:Kn,_ensureVar:Vr,_getConflictClause:An,_free:On,_malloc:Tn,__GLOBAL__I_a:Vt,__GLOBAL__I_a127:xr,runPostSets:ni,stackAlloc:st,stackSave:at,stackRestore:ct,setThrew:gt,setTempRet0:ht,getTempRet0:ft,dynCall_iiii:Bi,dynCall_viiiii:wi,dynCall_vi:yi,dynCall_vii:Qi,dynCall_ii:vi,dynCall_v:bi,dynCall_viiiiii:Di,dynCall_iii:Si,dynCall_viiii:ki}}(Module.asmGlobalArg,Module.asmLibraryArg,buffer),_yo=Module._yo=asm._yo,_strlen=Module._strlen=asm._strlen,_retireVar=Module._retireVar=asm._retireVar,_bitshift64Lshr=Module._bitshift64Lshr=asm._bitshift64Lshr,_unyo=Module._unyo=asm._unyo,_solve=Module._solve=asm._solve,_bitshift64Shl=Module._bitshift64Shl=asm._bitshift64Shl,_getSolution=Module._getSolution=asm._getSolution,___cxa_is_pointer_type=Module.___cxa_is_pointer_type=asm.___cxa_is_pointer_type,_memset=Module._memset=asm._memset,_getNumVars=Module._getNumVars=asm._getNumVars,_memcpy=Module._memcpy=asm._memcpy,_getConflictClauseSize=Module._getConflictClauseSize=asm._getConflictClauseSize,_addClause=Module._addClause=asm._addClause,_i64Subtract=Module._i64Subtract=asm._i64Subtract,_createTheSolver=Module._createTheSolver=asm._createTheSolver,_realloc=Module._realloc=asm._realloc,_i64Add=Module._i64Add=asm._i64Add,_solveAssuming=Module._solveAssuming=asm._solveAssuming,___cxa_can_catch=Module.___cxa_can_catch=asm.___cxa_can_catch,_ensureVar=Module._ensureVar=asm._ensureVar,_getConflictClause=Module._getConflictClause=asm._getConflictClause,_free=Module._free=asm._free,_malloc=Module._malloc=asm._malloc,__GLOBAL__I_a=Module.__GLOBAL__I_a=asm.__GLOBAL__I_a,__GLOBAL__I_a127=Module.__GLOBAL__I_a127=asm.__GLOBAL__I_a127,runPostSets=Module.runPostSets=asm.runPostSets,dynCall_iiii=Module.dynCall_iiii=asm.dynCall_iiii,dynCall_viiiii=Module.dynCall_viiiii=asm.dynCall_viiiii,dynCall_vi=Module.dynCall_vi=asm.dynCall_vi,dynCall_vii=Module.dynCall_vii=asm.dynCall_vii,dynCall_ii=Module.dynCall_ii=asm.dynCall_ii,dynCall_v=Module.dynCall_v=asm.dynCall_v,dynCall_viiiiii=Module.dynCall_viiiiii=asm.dynCall_viiiiii,dynCall_iii=Module.dynCall_iii=asm.dynCall_iii,dynCall_viiii=Module.dynCall_viiii=asm.dynCall_viiii;Runtime.stackAlloc=asm.stackAlloc,Runtime.stackSave=asm.stackSave,Runtime.stackRestore=asm.stackRestore,Runtime.setTempRet0=asm.setTempRet0,Runtime.getTempRet0=asm.getTempRet0;var i64Math=function(){var e={math:{}};e.math.Long=function(e,t){this.low_=0|e,this.high_=0|t},e.math.Long.IntCache_={},e.math.Long.fromInt=function(t){if(-128<=t&&t<128){var r=e.math.Long.IntCache_[t];if(r)return r}var n=new e.math.Long(0|t,t<0?-1:0);return-128<=t&&t<128&&(e.math.Long.IntCache_[t]=n),n},e.math.Long.fromNumber=function(t){return isNaN(t)||!isFinite(t)?e.math.Long.ZERO:t<=-e.math.Long.TWO_PWR_63_DBL_?e.math.Long.MIN_VALUE:t+1>=e.math.Long.TWO_PWR_63_DBL_?e.math.Long.MAX_VALUE:t<0?e.math.Long.fromNumber(-t).negate():new e.math.Long(t%e.math.Long.TWO_PWR_32_DBL_|0,t/e.math.Long.TWO_PWR_32_DBL_|0)},e.math.Long.fromBits=function(t,r){return new e.math.Long(t,r)},e.math.Long.fromString=function(t,r){if(0==t.length)throw Error("number format error: empty string");var n=r||10;if(n<2||36=0)throw Error('number format error: interior "-" character: '+t);for(var i=e.math.Long.fromNumber(Math.pow(n,8)),A=e.math.Long.ZERO,o=0;o=0?this.low_:e.math.Long.TWO_PWR_32_DBL_+this.low_},e.math.Long.prototype.getNumBitsAbs=function(){if(this.isNegative())return this.equals(e.math.Long.MIN_VALUE)?64:this.negate().getNumBitsAbs();for(var t=0!=this.high_?this.high_:this.low_,r=31;r>0&&0==(t&1<0},e.math.Long.prototype.greaterThanOrEqual=function(e){return this.compare(e)>=0},e.math.Long.prototype.compare=function(e){if(this.equals(e))return 0;var t=this.isNegative(),r=e.isNegative();return t&&!r?-1:!t&&r?1:this.subtract(e).isNegative()?-1:1},e.math.Long.prototype.negate=function(){return this.equals(e.math.Long.MIN_VALUE)?e.math.Long.MIN_VALUE:this.not().add(e.math.Long.ONE)},e.math.Long.prototype.add=function(t){var r=this.high_>>>16,n=65535&this.high_,i=this.low_>>>16,A=65535&this.low_,o=t.high_>>>16,s=65535&t.high_,a=t.low_>>>16,c=0,g=0,l=0,u=0;return l+=(u+=A+(65535&t.low_))>>>16,u&=65535,g+=(l+=i+a)>>>16,l&=65535,c+=(g+=n+s)>>>16,g&=65535,c+=r+o,c&=65535,e.math.Long.fromBits(l<<16|u,c<<16|g)},e.math.Long.prototype.subtract=function(e){return this.add(e.negate())},e.math.Long.prototype.multiply=function(t){if(this.isZero())return e.math.Long.ZERO;if(t.isZero())return e.math.Long.ZERO;if(this.equals(e.math.Long.MIN_VALUE))return t.isOdd()?e.math.Long.MIN_VALUE:e.math.Long.ZERO;if(t.equals(e.math.Long.MIN_VALUE))return this.isOdd()?e.math.Long.MIN_VALUE:e.math.Long.ZERO;if(this.isNegative())return t.isNegative()?this.negate().multiply(t.negate()):this.negate().multiply(t).negate();if(t.isNegative())return this.multiply(t.negate()).negate();if(this.lessThan(e.math.Long.TWO_PWR_24_)&&t.lessThan(e.math.Long.TWO_PWR_24_))return e.math.Long.fromNumber(this.toNumber()*t.toNumber());var r=this.high_>>>16,n=65535&this.high_,i=this.low_>>>16,A=65535&this.low_,o=t.high_>>>16,s=65535&t.high_,a=t.low_>>>16,c=65535&t.low_,g=0,l=0,u=0,h=0;return u+=(h+=A*c)>>>16,h&=65535,l+=(u+=i*c)>>>16,u&=65535,l+=(u+=A*a)>>>16,u&=65535,g+=(l+=n*c)>>>16,l&=65535,g+=(l+=i*a)>>>16,l&=65535,g+=(l+=A*s)>>>16,l&=65535,g+=r*c+n*a+i*s+A*o,g&=65535,e.math.Long.fromBits(u<<16|h,g<<16|l)},e.math.Long.prototype.div=function(t){if(t.isZero())throw Error("division by zero");if(this.isZero())return e.math.Long.ZERO;if(this.equals(e.math.Long.MIN_VALUE)){if(t.equals(e.math.Long.ONE)||t.equals(e.math.Long.NEG_ONE))return e.math.Long.MIN_VALUE;if(t.equals(e.math.Long.MIN_VALUE))return e.math.Long.ONE;if((i=this.shiftRight(1).div(t).shiftLeft(1)).equals(e.math.Long.ZERO))return t.isNegative()?e.math.Long.ONE:e.math.Long.NEG_ONE;var r=this.subtract(t.multiply(i));return i.add(r.div(t))}if(t.equals(e.math.Long.MIN_VALUE))return e.math.Long.ZERO;if(this.isNegative())return t.isNegative()?this.negate().div(t.negate()):this.negate().div(t).negate();if(t.isNegative())return this.div(t.negate()).negate();var n=e.math.Long.ZERO;for(r=this;r.greaterThanOrEqual(t);){for(var i=Math.max(1,Math.floor(r.toNumber()/t.toNumber())),A=Math.ceil(Math.log(i)/Math.LN2),o=A<=48?1:Math.pow(2,A-48),s=e.math.Long.fromNumber(i),a=s.multiply(t);a.isNegative()||a.greaterThan(r);)i-=o,a=(s=e.math.Long.fromNumber(i)).multiply(t);s.isZero()&&(s=e.math.Long.ONE),n=n.add(s),r=r.subtract(a)}return n},e.math.Long.prototype.modulo=function(e){return this.subtract(this.div(e).multiply(e))},e.math.Long.prototype.not=function(){return e.math.Long.fromBits(~this.low_,~this.high_)},e.math.Long.prototype.and=function(t){return e.math.Long.fromBits(this.low_&t.low_,this.high_&t.high_)},e.math.Long.prototype.or=function(t){return e.math.Long.fromBits(this.low_|t.low_,this.high_|t.high_)},e.math.Long.prototype.xor=function(t){return e.math.Long.fromBits(this.low_^t.low_,this.high_^t.high_)},e.math.Long.prototype.shiftLeft=function(t){if(0==(t&=63))return this;var r=this.low_;if(t<32){var n=this.high_;return e.math.Long.fromBits(r<>>32-t)}return e.math.Long.fromBits(0,r<>>t|r<<32-t,r>>t)}return e.math.Long.fromBits(r>>t-32,r>=0?0:-1)},e.math.Long.prototype.shiftRightUnsigned=function(t){if(0==(t&=63))return this;var r=this.high_;if(t<32){var n=this.low_;return e.math.Long.fromBits(n>>>t|r<<32-t,r>>>t)}return 32==t?e.math.Long.fromBits(r,0):e.math.Long.fromBits(r>>>t-32,0)};var t,r="Modern Browser";function n(e,t,r){null!=e&&("number"==typeof e?this.fromNumber(e,t,r):null==t&&"string"!=typeof e?this.fromString(e,256):this.fromString(e,t))}function i(){return new n(null)}"Microsoft Internet Explorer"==r?(n.prototype.am=function(e,t,r,n,i,A){for(var o=32767&t,s=t>>15;--A>=0;){var a=32767&this[e],c=this[e++]>>15,g=s*a+c*o;i=((a=o*a+((32767&g)<<15)+r[n]+(1073741823&i))>>>30)+(g>>>15)+s*c+(i>>>30),r[n++]=1073741823&a}return i},t=30):"Netscape"!=r?(n.prototype.am=function(e,t,r,n,i,A){for(;--A>=0;){var o=t*this[e++]+r[n]+i;i=Math.floor(o/67108864),r[n++]=67108863&o}return i},t=26):(n.prototype.am=function(e,t,r,n,i,A){for(var o=16383&t,s=t>>14;--A>=0;){var a=16383&this[e],c=this[e++]>>14,g=s*a+c*o;i=((a=o*a+((16383&g)<<14)+r[n]+i)>>28)+(g>>14)+s*c,r[n++]=268435455&a}return i},t=28),n.prototype.DB=t,n.prototype.DM=(1<>>16)&&(e=t,r+=16),0!=(t=e>>8)&&(e=t,r+=8),0!=(t=e>>4)&&(e=t,r+=4),0!=(t=e>>2)&&(e=t,r+=2),0!=(t=e>>1)&&(e=t,r+=1),r}function u(e){this.m=e}function h(e){this.m=e,this.mp=e.invDigit(),this.mpl=32767&this.mp,this.mph=this.mp>>15,this.um=(1<=0?e.mod(this.m):e},u.prototype.revert=function(e){return e},u.prototype.reduce=function(e){e.divRemTo(this.m,null,e)},u.prototype.mulTo=function(e,t,r){e.multiplyTo(t,r),this.reduce(r)},u.prototype.sqrTo=function(e,t){e.squareTo(t),this.reduce(t)},h.prototype.convert=function(e){var t=i();return e.abs().dlShiftTo(this.m.t,t),t.divRemTo(this.m,null,t),e.s<0&&t.compareTo(n.ZERO)>0&&this.m.subTo(t,t),t},h.prototype.revert=function(e){var t=i();return e.copyTo(t),this.reduce(t),t},h.prototype.reduce=function(e){for(;e.t<=this.mt2;)e[e.t++]=0;for(var t=0;t>15)*this.mpl&this.um)<<15)&e.DM;for(e[r=t+this.m.t]+=this.m.am(0,n,e,t,0,this.m.t);e[r]>=e.DV;)e[r]-=e.DV,e[++r]++}e.clamp(),e.drShiftTo(this.m.t,e),e.compareTo(this.m)>=0&&e.subTo(this.m,e)},h.prototype.mulTo=function(e,t,r){e.multiplyTo(t,r),this.reduce(r)},h.prototype.sqrTo=function(e,t){e.squareTo(t),this.reduce(t)},n.prototype.copyTo=function(e){for(var t=this.t-1;t>=0;--t)e[t]=this[t];e.t=this.t,e.s=this.s},n.prototype.fromInt=function(e){this.t=1,this.s=e<0?-1:0,e>0?this[0]=e:e<-1?this[0]=e+DV:this.t=0},n.prototype.fromString=function(e,t){var r;if(16==t)r=4;else if(8==t)r=3;else if(256==t)r=8;else if(2==t)r=1;else if(32==t)r=5;else{if(4!=t)return void this.fromRadix(e,t);r=2}this.t=0,this.s=0;for(var i=e.length,A=!1,o=0;--i>=0;){var s=8==r?255&e[i]:c(e,i);s<0?"-"==e.charAt(i)&&(A=!0):(A=!1,0==o?this[this.t++]=s:o+r>this.DB?(this[this.t-1]|=(s&(1<>this.DB-o):this[this.t-1]|=s<=this.DB&&(o-=this.DB))}8==r&&0!=(128&e[0])&&(this.s=-1,o>0&&(this[this.t-1]|=(1<0&&this[this.t-1]==e;)--this.t},n.prototype.dlShiftTo=function(e,t){var r;for(r=this.t-1;r>=0;--r)t[r+e]=this[r];for(r=e-1;r>=0;--r)t[r]=0;t.t=this.t+e,t.s=this.s},n.prototype.drShiftTo=function(e,t){for(var r=e;r=0;--r)t[r+o+1]=this[r]>>i|s,s=(this[r]&A)<=0;--r)t[r]=0;t[o]=s,t.t=this.t+o+1,t.s=this.s,t.clamp()},n.prototype.rShiftTo=function(e,t){t.s=this.s;var r=Math.floor(e/this.DB);if(r>=this.t)t.t=0;else{var n=e%this.DB,i=this.DB-n,A=(1<>n;for(var o=r+1;o>n;n>0&&(t[this.t-r-1]|=(this.s&A)<>=this.DB;if(e.t>=this.DB;n+=this.s}else{for(n+=this.s;r>=this.DB;n-=e.s}t.s=n<0?-1:0,n<-1?t[r++]=this.DV+n:n>0&&(t[r++]=n),t.t=r,t.clamp()},n.prototype.multiplyTo=function(e,t){var r=this.abs(),i=e.abs(),A=r.t;for(t.t=A+i.t;--A>=0;)t[A]=0;for(A=0;A=0;)e[r]=0;for(r=0;r=t.DV&&(e[r+t.t]-=t.DV,e[r+t.t+1]=1)}e.t>0&&(e[e.t-1]+=t.am(r,t[r],e,2*r,0,1)),e.s=0,e.clamp()},n.prototype.divRemTo=function(e,t,r){var A=e.abs();if(!(A.t<=0)){var o=this.abs();if(o.t0?(A.lShiftTo(g,s),o.lShiftTo(g,r)):(A.copyTo(s),o.copyTo(r));var u=s.t,h=s[u-1];if(0!=h){var f=h*(1<1?s[u-2]>>this.F2:0),p=this.FV/f,C=(1<=0&&(r[r.t++]=1,r.subTo(m,r)),n.ONE.dlShiftTo(u,m),m.subTo(s,s);s.t=0;){var B=r[--I]==h?this.DM:Math.floor(r[I]*p+(r[I-1]+d)*C);if((r[I]+=s.am(0,B,r,E,0,u))0&&r.rShiftTo(g,r),a<0&&n.ZERO.subTo(r,r)}}},n.prototype.invDigit=function(){if(this.t<1)return 0;var e=this[0];if(0==(1&e))return 0;var t=3&e;return(t=(t=(t=(t=t*(2-(15&e)*t)&15)*(2-(255&e)*t)&255)*(2-((65535&e)*t&65535))&65535)*(2-e*t%this.DV)%this.DV)>0?this.DV-t:-t},n.prototype.isEven=function(){return 0==(this.t>0?1&this[0]:this.s)},n.prototype.exp=function(e,t){if(e>4294967295||e<1)return n.ONE;var r=i(),A=i(),o=t.convert(this),s=l(e)-1;for(o.copyTo(r);--s>=0;)if(t.sqrTo(r,A),(e&1<0)t.mulTo(A,o,r);else{var a=r;r=A,A=a}return t.revert(r)},n.prototype.toString=function(e){if(this.s<0)return"-"+this.negate().toString(e);var t;if(16==e)t=4;else if(8==e)t=3;else if(2==e)t=1;else if(32==e)t=5;else{if(4!=e)return this.toRadix(e);t=2}var r,n=(1<0)for(s>s)>0&&(i=!0,A=a(r));o>=0;)s>(s+=this.DB-t)):(r=this[o]>>(s-=t)&n,s<=0&&(s+=this.DB,--o)),r>0&&(i=!0),i&&(A+=a(r));return i?A:"0"},n.prototype.negate=function(){var e=i();return n.ZERO.subTo(this,e),e},n.prototype.abs=function(){return this.s<0?this.negate():this},n.prototype.compareTo=function(e){var t=this.s-e.s;if(0!=t)return t;var r=this.t;if(0!=(t=r-e.t))return this.s<0?-t:t;for(;--r>=0;)if(0!=(t=this[r]-e[r]))return t;return 0},n.prototype.bitLength=function(){return this.t<=0?0:this.DB*(this.t-1)+l(this[this.t-1]^this.s&this.DM)},n.prototype.mod=function(e){var t=i();return this.abs().divRemTo(e,null,t),this.s<0&&t.compareTo(n.ZERO)>0&&e.subTo(t,t),t},n.prototype.modPowInt=function(e,t){var r;return r=e<256||t.isEven()?new u(t):new h(t),this.exp(e,r)},n.ZERO=g(0),n.ONE=g(1),n.prototype.fromRadix=function(e,t){this.fromInt(0),null==t&&(t=10);for(var r=this.chunkSize(t),i=Math.pow(t,r),A=!1,o=0,s=0,a=0;a=r&&(this.dMultiply(i),this.dAddOffset(s,0),o=0,s=0))}o>0&&(this.dMultiply(Math.pow(t,o)),this.dAddOffset(s,0)),A&&n.ZERO.subTo(this,this)},n.prototype.chunkSize=function(e){return Math.floor(Math.LN2*this.DB/Math.log(e))},n.prototype.signum=function(){return this.s<0?-1:this.t<=0||1==this.t&&this[0]<=0?0:1},n.prototype.dMultiply=function(e){this[this.t]=this.am(0,e-1,this,0,0,this.t),++this.t,this.clamp()},n.prototype.dAddOffset=function(e,t){if(0!=e){for(;this.t<=t;)this[this.t++]=0;for(this[t]+=e;this[t]>=this.DV;)this[t]-=this.DV,++t>=this.t&&(this[this.t++]=0),++this[t]}},n.prototype.toRadix=function(e){if(null==e&&(e=10),0==this.signum()||e<2||e>36)return"0";var t=this.chunkSize(e),r=Math.pow(e,t),n=g(r),A=i(),o=i(),s="";for(this.divRemTo(n,A,o);A.signum()>0;)s=(r+o.intValue()).toString(e).substr(1)+s,A.divRemTo(n,A,o);return o.intValue().toString(e)+s},n.prototype.intValue=function(){if(this.s<0){if(1==this.t)return this[0]-this.DV;if(0==this.t)return-1}else{if(1==this.t)return this[0];if(0==this.t)return 0}return(this[1]&(1<<32-this.DB)-1)<>=this.DB;if(e.t>=this.DB;n+=this.s}else{for(n+=this.s;r>=this.DB;n+=e.s}t.s=n<0?-1:0,n>0?t[r++]=n:n<-1&&(t[r++]=this.DV+n),t.t=r,t.clamp()};var f={abs:function(t,r){var n,i=new e.math.Long(t,r);n=i.isNegative()?i.negate():i,HEAP32[tempDoublePtr>>2]=n.low_,HEAP32[tempDoublePtr+4>>2]=n.high_},ensureTemps:function(){f.ensuredTemps||(f.ensuredTemps=!0,f.two32=new n,f.two32.fromString("4294967296",10),f.two64=new n,f.two64.fromString("18446744073709551616",10),f.temp1=new n,f.temp2=new n)},lh2bignum:function(e,t){var r=new n;r.fromString(t.toString(),10);var i=new n;r.multiplyTo(f.two32,i);var A=new n;A.fromString(e.toString(),10);var o=new n;return A.addTo(i,o),o},stringify:function(t,r,i){var A=new e.math.Long(t,r).toString();if(i&&"-"==A[0]){f.ensureTemps();var o=new n;o.fromString(A,10),A=new n,f.two64.addTo(o,A),A=A.toString(10)}return A},fromString:function(t,r,i,A,o){f.ensureTemps();var s=new n;s.fromString(t,r);var a=new n;a.fromString(i,10);var c=new n;if(c.fromString(A,10),o&&s.compareTo(n.ZERO)<0){var g=new n;s.addTo(f.two64,g),s=g}var l=!1;s.compareTo(a)<0?(s=a,l=!0):s.compareTo(c)>0&&(s=c,l=!0);var u=e.math.Long.fromString(s.toString());if(HEAP32[tempDoublePtr>>2]=u.low_,HEAP32[tempDoublePtr+4>>2]=u.high_,l)throw"range error"}};return f}(),initialStackTop;if(memoryInitializer)if("function"==typeof Module.locateFile?memoryInitializer=Module.locateFile(memoryInitializer):Module.memoryInitializerPrefixURL&&(memoryInitializer=Module.memoryInitializerPrefixURL+memoryInitializer),ENVIRONMENT_IS_NODE||ENVIRONMENT_IS_SHELL){var data=Module.readBinary(memoryInitializer);HEAPU8.set(data,STATIC_BASE)}else addRunDependency("memory initializer"),Browser.asyncLoad(memoryInitializer,(function(e){HEAPU8.set(e,STATIC_BASE),removeRunDependency("memory initializer")}),(function(e){throw"could not load memory initializer "+memoryInitializer}));function ExitStatus(e){this.name="ExitStatus",this.message="Program terminated with exit("+e+")",this.status=e}ExitStatus.prototype=new Error,ExitStatus.prototype.constructor=ExitStatus;var preloadStartTime=null,calledMain=!1;function run(e){function t(){Module.calledRun||(Module.calledRun=!0,ABORT||(ensureInitRuntime(),preMain(),ENVIRONMENT_IS_WEB&&null!==preloadStartTime&&Module.printErr("pre-main prep time: "+(Date.now()-preloadStartTime)+" ms"),Module._main&&shouldRunNow&&Module.callMain(e),postRun()))}e=e||Module.arguments,null===preloadStartTime&&(preloadStartTime=Date.now()),runDependencies>0||(preRun(),runDependencies>0||Module.calledRun||(Module.setStatus?(Module.setStatus("Running..."),setTimeout((function(){setTimeout((function(){Module.setStatus("")}),1),t()}),1)):t()))}function exit(e){if(!Module.noExitRuntime)throw ABORT=!0,EXITSTATUS=e,STACKTOP=initialStackTop,exitRuntime(),ENVIRONMENT_IS_NODE?(process.stdout.once("drain",(function(){process.exit(e)})),console.log(" "),setTimeout((function(){process.exit(e)}),500)):ENVIRONMENT_IS_SHELL&&"function"==typeof quit&&quit(e),new ExitStatus(e)}function abort(e){e&&(Module.print(e),Module.printErr(e)),ABORT=!0,EXITSTATUS=1;throw"abort() at "+stackTrace()+"\nIf this abort() is unexpected, build with -s ASSERTIONS=1 which can give more information."}if(dependenciesFulfilled=function e(){!Module.calledRun&&shouldRunNow&&run(),Module.calledRun||(dependenciesFulfilled=e)},Module.callMain=Module.callMain=function(e){assert(0==runDependencies,"cannot call main when async dependencies remain! (listen on __ATMAIN__)"),assert(0==__ATPRERUN__.length,"cannot call main when preRun functions remain to be called"),e=e||[],ensureInitRuntime();var t=e.length+1;function r(){for(var e=0;e<3;e++)n.push(0)}var n=[allocate(intArrayFromString(Module.thisProgram),"i8",ALLOC_NORMAL)];r();for(var i=0;i0;)Module.preInit.pop()();var shouldRunNow=!0;Module.noInitialRun&&(shouldRunNow=!1),run();var origMalloc=Module._malloc,origFree=Module._free,MEMSTATS={totalMemory:Module.HEAPU8.length,heapUsed:0},MEMSTATS_DATA={pointerToSizeMap:{},getSizeOfPointer:function(e){return MEMSTATS_DATA.pointerToSizeMap[e]}};Module.MEMSTATS=MEMSTATS,Module.MEMSTATS_DATA=MEMSTATS_DATA;var hookedMalloc=function(e){var t=origMalloc(e);return t?(MEMSTATS.heapUsed+=e,MEMSTATS_DATA.pointerToSizeMap[t]=e,t):0},hookedFree=function(e){return e&&(MEMSTATS.heapUsed-=MEMSTATS_DATA.getSizeOfPointer(e)||0,delete MEMSTATS_DATA.pointerToSizeMap[e]),origFree(e)},setInnerMalloc,setInnerFree;return Module._malloc=hookedMalloc,Module._free=hookedFree,_malloc=hookedMalloc,_free=hookedFree,setInnerMalloc&&(setInnerMalloc(hookedMalloc),setInnerFree(hookedFree)),module.exports},module.exports=C_MINISAT},73789:(e,t,r)=>{var n,i=r(98312),A=r(5817);(n=function(){var e=this._C=i();this._native={getStackPointer:function(){return e.Runtime.stackSave()},setStackPointer:function(t){e.Runtime.stackRestore(t)},allocateBytes:function(t){return e.allocate(t,"i8",e.ALLOC_STACK)},pushString:function(t){return this.allocateBytes(e.intArrayFromString(t))},savingStack:function(t){var r=this.getStackPointer();try{return t(this,e)}finally{this.setStackPointer(r)}}},e._createTheSolver(),this._clauses=[]}).prototype.ensureVar=function(e){this._C._ensureVar(e)},n.prototype.addClause=function(e){return this._clauses.push(e),this._native.savingStack((function(t,r){var n=r.allocate(4*(e.length+1),"i32",r.ALLOC_STACK);return A.each(e,(function(e,t){r.setValue(n+4*t,e,"i32")})),r.setValue(n+4*e.length,0,"i32"),!!r._addClause(n)}))},n.prototype.solve=function(){return!!this._C._solve()},n.prototype.solveAssuming=function(e){return!!this._C._solveAssuming(e)},n.prototype.getSolution=function(){for(var e=[null],t=this._C,r=t._getNumVars(),n=t._getSolution(),i=0;i>>1,s=1&A?-1:1;n[i]=o*s}return n},e.exports=n},55737:e=>{"use strict";e.exports=e=>{const t={};for(const[r,n]of Object.entries(e))t[r.toLowerCase()]=n;return t}},46227:(e,t,r)=>{"use strict";const n=r(35747),i=r(85622),{promisify:A}=r(31669),o=r(95584).satisfies(process.version,">=10.12.0"),s=e=>{if("win32"===process.platform){if(/[<>:"|?*]/.test(e.replace(i.parse(e).root,""))){const t=new Error("Path contains invalid characters: "+e);throw t.code="EINVAL",t}}},a=e=>({...{mode:511,fs:n},...e}),c=e=>{const t=new Error(`operation not permitted, mkdir '${e}'`);return t.code="EPERM",t.errno=-4048,t.path=e,t.syscall="mkdir",t};e.exports=async(e,t)=>{s(e),t=a(t);const r=A(t.fs.mkdir),g=A(t.fs.stat);if(o&&t.fs.mkdir===n.mkdir){const n=i.resolve(e);return await r(n,{mode:t.mode,recursive:!0}),n}const l=async e=>{try{return await r(e,t.mode),e}catch(t){if("EPERM"===t.code)throw t;if("ENOENT"===t.code){if(i.dirname(e)===e)throw c(e);if(t.message.includes("null bytes"))throw t;return await l(i.dirname(e)),l(e)}try{if(!(await g(e)).isDirectory())throw new Error("The path is not a directory")}catch(e){throw t}return e}};return l(i.resolve(e))},e.exports.sync=(e,t)=>{if(s(e),t=a(t),o&&t.fs.mkdirSync===n.mkdirSync){const r=i.resolve(e);return n.mkdirSync(r,{mode:t.mode,recursive:!0}),r}const r=e=>{try{t.fs.mkdirSync(e,t.mode)}catch(n){if("EPERM"===n.code)throw n;if("ENOENT"===n.code){if(i.dirname(e)===e)throw c(e);if(n.message.includes("null bytes"))throw n;return r(i.dirname(e)),r(e)}try{if(!t.fs.statSync(e).isDirectory())throw new Error("The path is not a directory")}catch(e){throw n}}return e};return r(i.resolve(e))}},55598:(e,t,r)=>{"use strict";const n=r(92413).PassThrough,i=Array.prototype.slice;function A(e,t){if(Array.isArray(e))for(let r=0,n=e.length;r0||(t=!1,g())}function A(e){function t(){e.removeListener("merge2UnpipeEnd",t),e.removeListener("end",t),i()}if(e._readableState.endEmitted)return i();e.on("merge2UnpipeEnd",t),e.on("end",t),e.pipe(a,{end:!1}),e.resume()}for(let e=0;e{"use strict";const n=r(31669),i=r(12235),A=r(54722),o=r(3598),s=e=>"string"==typeof e&&(""===e||"./"===e),a=(e,t,r)=>{t=[].concat(t),e=[].concat(e);let n=new Set,i=new Set,o=new Set,s=0,a=e=>{o.add(e.output),r&&r.onResult&&r.onResult(e)};for(let o=0;o!n.has(e));if(r&&0===c.length){if(!0===r.failglob)throw new Error(`No matches found for "${t.join(", ")}"`);if(!0===r.nonull||!0===r.nullglob)return r.unescape?t.map(e=>e.replace(/\\/g,"")):t}return c};a.match=a,a.matcher=(e,t)=>A(e,t),a.any=a.isMatch=(e,t,r)=>A(t,r)(e),a.not=(e,t,r={})=>{t=[].concat(t).map(String);let n=new Set,i=[],A=a(e,t,{...r,onResult:e=>{r.onResult&&r.onResult(e),i.push(e.output)}});for(let e of i)A.includes(e)||n.add(e);return[...n]},a.contains=(e,t,r)=>{if("string"!=typeof e)throw new TypeError(`Expected a string: "${n.inspect(e)}"`);if(Array.isArray(t))return t.some(t=>a.contains(e,t,r));if("string"==typeof t){if(s(e)||s(t))return!1;if(e.includes(t)||e.startsWith("./")&&e.slice(2).includes(t))return!0}return a.isMatch(e,t,{...r,contains:!0})},a.matchKeys=(e,t,r)=>{if(!o.isObject(e))throw new TypeError("Expected the first argument to be an object");let n=a(Object.keys(e),t,r),i={};for(let t of n)i[t]=e[t];return i},a.some=(e,t,r)=>{let n=[].concat(e);for(let e of[].concat(t)){let t=A(String(e),r);if(n.some(e=>t(e)))return!0}return!1},a.every=(e,t,r)=>{let n=[].concat(e);for(let e of[].concat(t)){let t=A(String(e),r);if(!n.every(e=>t(e)))return!1}return!0},a.all=(e,t,r)=>{if("string"!=typeof e)throw new TypeError(`Expected a string: "${n.inspect(e)}"`);return[].concat(t).every(t=>A(t,r)(e))},a.capture=(e,t,r)=>{let n=o.isWindows(r),i=A.makeRe(String(e),{...r,capture:!0}).exec(n?o.toPosixSlashes(t):t);if(i)return i.slice(1).map(e=>void 0===e?"":e)},a.makeRe=(...e)=>A.makeRe(...e),a.scan=(...e)=>A.scan(...e),a.parse=(e,t)=>{let r=[];for(let n of[].concat(e||[]))for(let e of i(String(n),t))r.push(A.parse(e,t));return r},a.braces=(e,t)=>{if("string"!=typeof e)throw new TypeError("Expected a string");return t&&!0===t.nobrace||!/\{.*\}/.test(e)?[e]:i(e,t)},a.braceExpand=(e,t)=>{if("string"!=typeof e)throw new TypeError("Expected a string");return a.braces(e,{...t,expand:!0})},e.exports=a},65007:e=>{"use strict";const t=["destroy","setTimeout","socket","headers","trailers","rawHeaders","statusCode","httpVersion","httpVersionMinor","httpVersionMajor","rawTrailers","statusMessage"];e.exports=(e,r)=>{const n=new Set(Object.keys(e).concat(t));for(const t of n)t in r||(r[t]="function"==typeof e[t]?e[t].bind(e):e[t])}},60102:e=>{"use strict";const t=["aborted","complete","destroy","headers","httpVersion","httpVersionMinor","httpVersionMajor","method","rawHeaders","rawTrailers","setTimeout","socket","statusCode","statusMessage","trailers","url"];e.exports=(e,r)=>{const n=new Set(Object.keys(e).concat(t));for(const t of n)t in r||(r[t]="function"==typeof e[t]?e[t].bind(e):e[t])}},19793:(e,t,r)=>{"use strict";const n="undefined"==typeof URL?r(78835).URL:URL,i=(e,t)=>t.some(t=>t instanceof RegExp?t.test(e):t===e),A=(e,t)=>{if(t={defaultProtocol:"http:",normalizeProtocol:!0,forceHttp:!1,forceHttps:!1,stripAuthentication:!0,stripHash:!1,stripWWW:!0,removeQueryParameters:[/^utm_\w+/i],removeTrailingSlash:!0,removeDirectoryIndex:!1,sortQueryParameters:!0,...t},Reflect.has(t,"normalizeHttps"))throw new Error("options.normalizeHttps is renamed to options.forceHttp");if(Reflect.has(t,"normalizeHttp"))throw new Error("options.normalizeHttp is renamed to options.forceHttps");if(Reflect.has(t,"stripFragment"))throw new Error("options.stripFragment is renamed to options.stripHash");if(e=e.trim(),/^data:/i.test(e))return((e,{stripHash:t})=>{const r=e.match(/^data:(.*?),(.*?)(?:#(.*))?$/);if(!r)throw new Error("Invalid URL: "+e);const n=r[1].split(";"),i=r[2],A=t?"":r[3];let o=!1;"base64"===n[n.length-1]&&(n.pop(),o=!0);const s=(n.shift()||"").toLowerCase(),a=[...n.map(e=>{let[t,r=""]=e.split("=").map(e=>e.trim());return"charset"===t&&(r=r.toLowerCase(),"us-ascii"===r)?"":`${t}${r?"="+r:""}`}).filter(Boolean)];return o&&a.push("base64"),(0!==a.length||s&&"text/plain"!==s)&&a.unshift(s),`data:${a.join(";")},${o?i.trim():i}${A?"#"+A:""}`})(e,t);const r=e.startsWith("//");!r&&/^\.*\//.test(e)||(e=e.replace(/^(?!(?:\w+:)?\/\/)|^\/\//,t.defaultProtocol));const A=new n(e);if(t.forceHttp&&t.forceHttps)throw new Error("The `forceHttp` and `forceHttps` options cannot be used together");if(t.forceHttp&&"https:"===A.protocol&&(A.protocol="http:"),t.forceHttps&&"http:"===A.protocol&&(A.protocol="https:"),t.stripAuthentication&&(A.username="",A.password=""),t.stripHash&&(A.hash=""),A.pathname&&(A.pathname=A.pathname.replace(/((?!:).|^)\/{2,}/g,(e,t)=>/^(?!\/)/g.test(t)?t+"/":"/")),A.pathname&&(A.pathname=decodeURI(A.pathname)),!0===t.removeDirectoryIndex&&(t.removeDirectoryIndex=[/^index\.[a-z]+$/]),Array.isArray(t.removeDirectoryIndex)&&t.removeDirectoryIndex.length>0){let e=A.pathname.split("/");const r=e[e.length-1];i(r,t.removeDirectoryIndex)&&(e=e.slice(0,e.length-1),A.pathname=e.slice(1).join("/")+"/")}if(A.hostname&&(A.hostname=A.hostname.replace(/\.$/,""),t.stripWWW&&/^www\.([a-z\-\d]{2,63})\.([a-z.]{2,5})$/.test(A.hostname)&&(A.hostname=A.hostname.replace(/^www\./,""))),Array.isArray(t.removeQueryParameters))for(const e of[...A.searchParams.keys()])i(e,t.removeQueryParameters)&&A.searchParams.delete(e);return t.sortQueryParameters&&A.searchParams.sort(),t.removeTrailingSlash&&(A.pathname=A.pathname.replace(/\/$/,"")),e=A.toString(),!t.removeTrailingSlash&&"/"!==A.pathname||""!==A.hash||(e=e.replace(/\/$/,"")),r&&!t.normalizeProtocol&&(e=e.replace(/^http:\/\//,"//")),t.stripProtocol&&(e=e.replace(/^(?:https?:)?\/\//,"")),e};e.exports=A,e.exports.default=A},91162:(e,t,r)=>{var n=r(98984);function i(e){var t=function(){return t.called?t.value:(t.called=!0,t.value=e.apply(this,arguments))};return t.called=!1,t}e.exports=n(i),i.proto=i((function(){Object.defineProperty(Function.prototype,"once",{value:function(){return i(this)},configurable:!0})}))},27180:(e,t,r)=>{var n=r(98984);function i(e){var t=function(){return t.called?t.value:(t.called=!0,t.value=e.apply(this,arguments))};return t.called=!1,t}function A(e){var t=function(){if(t.called)throw new Error(t.onceError);return t.called=!0,t.value=e.apply(this,arguments)},r=e.name||"Function wrapped with `once`";return t.onceError=r+" shouldn't be called more than once",t.called=!1,t}e.exports=n(i),e.exports.strict=n(A),i.proto=i((function(){Object.defineProperty(Function.prototype,"once",{value:function(){return i(this)},configurable:!0}),Object.defineProperty(Function.prototype,"onceStrict",{value:function(){return A(this)},configurable:!0})}))},59351:e=>{"use strict";class t extends Error{constructor(e){super(e||"Promise was canceled"),this.name="CancelError"}get isCanceled(){return!0}}class r{static fn(e){return(...t)=>new r((r,n,i)=>{t.push(i),e(...t).then(r,n)})}constructor(e){this._cancelHandlers=[],this._isPending=!0,this._isCanceled=!1,this._rejectOnCancel=!0,this._promise=new Promise((t,r)=>{this._reject=r;const n=e=>{if(!this._isPending)throw new Error("The `onCancel` handler was attached after the promise settled.");this._cancelHandlers.push(e)};return Object.defineProperties(n,{shouldReject:{get:()=>this._rejectOnCancel,set:e=>{this._rejectOnCancel=e}}}),e(e=>{this._isPending=!1,t(e)},e=>{this._isPending=!1,r(e)},n)})}then(e,t){return this._promise.then(e,t)}catch(e){return this._promise.catch(e)}finally(e){return this._promise.finally(e)}cancel(e){if(this._isPending&&!this._isCanceled){if(this._cancelHandlers.length>0)try{for(const e of this._cancelHandlers)e()}catch(e){this._reject(e)}this._isCanceled=!0,this._rejectOnCancel&&this._reject(new t(e))}}get isCanceled(){return this._isCanceled}}Object.setPrototypeOf(r.prototype,Promise.prototype),e.exports=r,e.exports.CancelError=t},61578:(e,t,r)=>{"use strict";const n=r(60550),i=e=>{if(e<1)throw new TypeError("Expected `concurrency` to be a number from 1 and up");const t=[];let r=0;const i=()=>{r--,t.length>0&&t.shift()()},A=(e,t,...A)=>{r++;const o=n(e,...A);t(o),o.then(i,i)},o=(n,...i)=>new Promise(o=>((n,i,...o)=>{rr},pendingCount:{get:()=>t.length}}),o};e.exports=i,e.exports.default=i},60550:e=>{"use strict";e.exports=(e,...t)=>new Promise(r=>{r(e(...t))})},37127:e=>{"use strict";const t=(e={})=>{const t=e.env||process.env;return"win32"!==(e.platform||process.platform)?"PATH":Object.keys(t).reverse().find(e=>"PATH"===e.toUpperCase())||"Path"};e.exports=t,e.exports.default=t},5763:(e,t,r)=>{"use strict";const{promisify:n}=r(31669),i=r(35747);async function A(e,t,r){if("string"!=typeof r)throw new TypeError("Expected a string, got "+typeof r);try{return(await n(i[e])(r))[t]()}catch(e){if("ENOENT"===e.code)return!1;throw e}}function o(e,t,r){if("string"!=typeof r)throw new TypeError("Expected a string, got "+typeof r);try{return i[e](r)[t]()}catch(e){if("ENOENT"===e.code)return!1;throw e}}t.isFile=A.bind(null,"stat","isFile"),t.isDirectory=A.bind(null,"stat","isDirectory"),t.isSymlink=A.bind(null,"lstat","isSymbolicLink"),t.isFileSync=o.bind(null,"statSync","isFile"),t.isDirectorySync=o.bind(null,"statSync","isDirectory"),t.isSymlinkSync=o.bind(null,"lstatSync","isSymbolicLink")},54722:(e,t,r)=>{"use strict";e.exports=r(18828)},71086:(e,t,r)=>{"use strict";const n=r(85622),i={DOT_LITERAL:"\\.",PLUS_LITERAL:"\\+",QMARK_LITERAL:"\\?",SLASH_LITERAL:"\\/",ONE_CHAR:"(?=.)",QMARK:"[^/]",END_ANCHOR:"(?:\\/|$)",DOTS_SLASH:"\\.{1,2}(?:\\/|$)",NO_DOT:"(?!\\.)",NO_DOTS:"(?!(?:^|\\/)\\.{1,2}(?:\\/|$))",NO_DOT_SLASH:"(?!\\.{0,1}(?:\\/|$))",NO_DOTS_SLASH:"(?!\\.{1,2}(?:\\/|$))",QMARK_NO_DOT:"[^.\\/]",STAR:"[^/]*?",START_ANCHOR:"(?:^|\\/)"},A={...i,SLASH_LITERAL:"[\\\\/]",QMARK:"[^\\\\/]",STAR:"[^\\\\/]*?",DOTS_SLASH:"\\.{1,2}(?:[\\\\/]|$)",NO_DOT:"(?!\\.)",NO_DOTS:"(?!(?:^|[\\\\/])\\.{1,2}(?:[\\\\/]|$))",NO_DOT_SLASH:"(?!\\.{0,1}(?:[\\\\/]|$))",NO_DOTS_SLASH:"(?!\\.{1,2}(?:[\\\\/]|$))",QMARK_NO_DOT:"[^.\\\\/]",START_ANCHOR:"(?:^|[\\\\/])",END_ANCHOR:"(?:[\\\\/]|$)"};e.exports={MAX_LENGTH:65536,POSIX_REGEX_SOURCE:{alnum:"a-zA-Z0-9",alpha:"a-zA-Z",ascii:"\\x00-\\x7F",blank:" \\t",cntrl:"\\x00-\\x1F\\x7F",digit:"0-9",graph:"\\x21-\\x7E",lower:"a-z",print:"\\x20-\\x7E ",punct:"\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",space:" \\t\\r\\n\\v\\f",upper:"A-Z",word:"A-Za-z0-9_",xdigit:"A-Fa-f0-9"},REGEX_BACKSLASH:/\\(?![*+?^${}(|)[\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\].,$*+?^{}()|\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\?)((\W)(\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\[.*?[^\\]\]|\\(?=.))/g,REPLACEMENTS:{"***":"*","**/**":"**","**/**/**":"**"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,SEP:n.sep,extglobChars:e=>({"!":{type:"negate",open:"(?:(?!(?:",close:`))${e.STAR})`},"?":{type:"qmark",open:"(?:",close:")?"},"+":{type:"plus",open:"(?:",close:")+"},"*":{type:"star",open:"(?:",close:")*"},"@":{type:"at",open:"(?:",close:")"}}),globChars:e=>!0===e?A:i}},47974:(e,t,r)=>{"use strict";const n=r(71086),i=r(3598),{MAX_LENGTH:A,POSIX_REGEX_SOURCE:o,REGEX_NON_SPECIAL_CHARS:s,REGEX_SPECIAL_CHARS_BACKREF:a,REPLACEMENTS:c}=n,g=(e,t)=>{if("function"==typeof t.expandRange)return t.expandRange(...e,t);e.sort();const r=`[${e.join("-")}]`;try{new RegExp(r)}catch(t){return e.map(e=>i.escapeRegex(e)).join("..")}return r},l=(e,t)=>`Missing ${e}: "${t}" - use "\\\\${t}" to match literal characters`,u=(e,t)=>{if("string"!=typeof e)throw new TypeError("Expected a string");e=c[e]||e;const r={...t},u="number"==typeof r.maxLength?Math.min(A,r.maxLength):A;let h=e.length;if(h>u)throw new SyntaxError(`Input length: ${h}, exceeds maximum allowed length: ${u}`);const f={type:"bos",value:"",output:r.prepend||""},p=[f],C=r.capture?"":"?:",d=i.isWindows(t),I=n.globChars(d),E=n.extglobChars(I),{DOT_LITERAL:m,PLUS_LITERAL:B,SLASH_LITERAL:w,ONE_CHAR:y,DOTS_SLASH:Q,NO_DOT:v,NO_DOT_SLASH:b,NO_DOTS_SLASH:D,QMARK:S,QMARK_NO_DOT:k,STAR:M,START_ANCHOR:F}=I,N=e=>`(${C}(?:(?!${F}${e.dot?Q:m}).)*?)`,R=r.dot?"":v,K=r.dot?S:k;let x=!0===r.bash?N(r):M;r.capture&&(x=`(${x})`),"boolean"==typeof r.noext&&(r.noextglob=r.noext);const L={input:e,index:-1,start:0,dot:!0===r.dot,consumed:"",output:"",prefix:"",backtrack:!1,negated:!1,brackets:0,braces:0,parens:0,quotes:0,globstar:!1,tokens:p};e=i.removePrefix(e,L),h=e.length;const P=[],U=[],T=[];let O,j=f;const Y=()=>L.index===h-1,G=L.peek=(t=1)=>e[L.index+t],_=L.advance=()=>e[++L.index],H=()=>e.slice(L.index+1),J=(e="",t=0)=>{L.consumed+=e,L.index+=t},q=e=>{L.output+=null!=e.output?e.output:e.value,J(e.value)},z=()=>{let e=1;for(;"!"===G()&&("("!==G(2)||"?"===G(3));)_(),L.start++,e++;return e%2!=0&&(L.negated=!0,L.start++,!0)},W=e=>{L[e]++,T.push(e)},V=e=>{L[e]--,T.pop()},X=e=>{if("globstar"===j.type){const t=L.braces>0&&("comma"===e.type||"brace"===e.type),r=!0===e.extglob||P.length&&("pipe"===e.type||"paren"===e.type);"slash"===e.type||"paren"===e.type||t||r||(L.output=L.output.slice(0,-j.output.length),j.type="star",j.value="*",j.output=x,L.output+=j.output)}if(P.length&&"paren"!==e.type&&!E[e.value]&&(P[P.length-1].inner+=e.value),(e.value||e.output)&&q(e),j&&"text"===j.type&&"text"===e.type)return j.value+=e.value,void(j.output=(j.output||"")+e.value);e.prev=j,p.push(e),j=e},Z=(e,t)=>{const n={...E[t],conditions:1,inner:""};n.prev=j,n.parens=L.parens,n.output=L.output;const i=(r.capture?"(":"")+n.open;W("parens"),X({type:e,value:t,output:L.output?"":y}),X({type:"paren",extglob:!0,value:_(),output:i}),P.push(n)},$=e=>{let t=e.close+(r.capture?")":"");if("negate"===e.type){let n=x;e.inner&&e.inner.length>1&&e.inner.includes("/")&&(n=N(r)),(n!==x||Y()||/^\)+$/.test(H()))&&(t=e.close=")$))"+n),"bos"===e.prev.type&&Y()&&(L.negatedExtglob=!0)}X({type:"paren",extglob:!0,value:O,output:t}),V("parens")};if(!1!==r.fastpaths&&!/(^[*!]|[/()[\]{}"])/.test(e)){let n=!1,A=e.replace(a,(e,t,r,i,A,o)=>"\\"===i?(n=!0,e):"?"===i?t?t+i+(A?S.repeat(A.length):""):0===o?K+(A?S.repeat(A.length):""):S.repeat(r.length):"."===i?m.repeat(r.length):"*"===i?t?t+i+(A?x:""):x:t?e:"\\"+e);return!0===n&&(A=!0===r.unescape?A.replace(/\\/g,""):A.replace(/\\+/g,e=>e.length%2==0?"\\\\":e?"\\":"")),A===e&&!0===r.contains?(L.output=e,L):(L.output=i.wrapOutput(A,L,t),L)}for(;!Y();){if(O=_(),"\0"===O)continue;if("\\"===O){const e=G();if("/"===e&&!0!==r.bash)continue;if("."===e||";"===e)continue;if(!e){O+="\\",X({type:"text",value:O});continue}const t=/^\\+/.exec(H());let n=0;if(t&&t[0].length>2&&(n=t[0].length,L.index+=n,n%2!=0&&(O+="\\")),!0===r.unescape?O=_()||"":O+=_()||"",0===L.brackets){X({type:"text",value:O});continue}}if(L.brackets>0&&("]"!==O||"["===j.value||"[^"===j.value)){if(!1!==r.posix&&":"===O){const e=j.value.slice(1);if(e.includes("[")&&(j.posix=!0,e.includes(":"))){const e=j.value.lastIndexOf("["),t=j.value.slice(0,e),r=j.value.slice(e+2),n=o[r];if(n){j.value=t+n,L.backtrack=!0,_(),f.output||1!==p.indexOf(j)||(f.output=y);continue}}}("["===O&&":"!==G()||"-"===O&&"]"===G())&&(O="\\"+O),"]"!==O||"["!==j.value&&"[^"!==j.value||(O="\\"+O),!0===r.posix&&"!"===O&&"["===j.value&&(O="^"),j.value+=O,q({value:O});continue}if(1===L.quotes&&'"'!==O){O=i.escapeRegex(O),j.value+=O,q({value:O});continue}if('"'===O){L.quotes=1===L.quotes?0:1,!0===r.keepQuotes&&X({type:"text",value:O});continue}if("("===O){W("parens"),X({type:"paren",value:O});continue}if(")"===O){if(0===L.parens&&!0===r.strictBrackets)throw new SyntaxError(l("opening","("));const e=P[P.length-1];if(e&&L.parens===e.parens+1){$(P.pop());continue}X({type:"paren",value:O,output:L.parens?")":"\\)"}),V("parens");continue}if("["===O){if(!0!==r.nobracket&&H().includes("]"))W("brackets");else{if(!0!==r.nobracket&&!0===r.strictBrackets)throw new SyntaxError(l("closing","]"));O="\\"+O}X({type:"bracket",value:O});continue}if("]"===O){if(!0===r.nobracket||j&&"bracket"===j.type&&1===j.value.length){X({type:"text",value:O,output:"\\"+O});continue}if(0===L.brackets){if(!0===r.strictBrackets)throw new SyntaxError(l("opening","["));X({type:"text",value:O,output:"\\"+O});continue}V("brackets");const e=j.value.slice(1);if(!0===j.posix||"^"!==e[0]||e.includes("/")||(O="/"+O),j.value+=O,q({value:O}),!1===r.literalBrackets||i.hasRegexChars(e))continue;const t=i.escapeRegex(j.value);if(L.output=L.output.slice(0,-j.value.length),!0===r.literalBrackets){L.output+=t,j.value=t;continue}j.value=`(${C}${t}|${j.value})`,L.output+=j.value;continue}if("{"===O&&!0!==r.nobrace){W("braces");const e={type:"brace",value:O,output:"(",outputIndex:L.output.length,tokensIndex:L.tokens.length};U.push(e),X(e);continue}if("}"===O){const e=U[U.length-1];if(!0===r.nobrace||!e){X({type:"text",value:O,output:O});continue}let t=")";if(!0===e.dots){const e=p.slice(),n=[];for(let t=e.length-1;t>=0&&(p.pop(),"brace"!==e[t].type);t--)"dots"!==e[t].type&&n.unshift(e[t].value);t=g(n,r),L.backtrack=!0}if(!0!==e.comma&&!0!==e.dots){const r=L.output.slice(0,e.outputIndex),n=L.tokens.slice(e.tokensIndex);e.value=e.output="\\{",O=t="\\}",L.output=r;for(const e of n)L.output+=e.output||e.value}X({type:"brace",value:O,output:t}),V("braces"),U.pop();continue}if("|"===O){P.length>0&&P[P.length-1].conditions++,X({type:"text",value:O});continue}if(","===O){let e=O;const t=U[U.length-1];t&&"braces"===T[T.length-1]&&(t.comma=!0,e="|"),X({type:"comma",value:O,output:e});continue}if("/"===O){if("dot"===j.type&&L.index===L.start+1){L.start=L.index+1,L.consumed="",L.output="",p.pop(),j=f;continue}X({type:"slash",value:O,output:w});continue}if("."===O){if(L.braces>0&&"dot"===j.type){"."===j.value&&(j.output=m);const e=U[U.length-1];j.type="dots",j.output+=O,j.value+=O,e.dots=!0;continue}if(L.braces+L.parens===0&&"bos"!==j.type&&"slash"!==j.type){X({type:"text",value:O,output:m});continue}X({type:"dot",value:O,output:m});continue}if("?"===O){if(!(j&&"("===j.value)&&!0!==r.noextglob&&"("===G()&&"?"!==G(2)){Z("qmark",O);continue}if(j&&"paren"===j.type){const e=G();let t=O;if("<"===e&&!i.supportsLookbehinds())throw new Error("Node.js v10 or higher is required for regex lookbehinds");("("===j.value&&!/[!=<:]/.test(e)||"<"===e&&!/<([!=]|\w+>)/.test(H()))&&(t="\\"+O),X({type:"text",value:O,output:t});continue}if(!0!==r.dot&&("slash"===j.type||"bos"===j.type)){X({type:"qmark",value:O,output:k});continue}X({type:"qmark",value:O,output:S});continue}if("!"===O){if(!0!==r.noextglob&&"("===G()&&("?"!==G(2)||!/[!=<:]/.test(G(3)))){Z("negate",O);continue}if(!0!==r.nonegate&&0===L.index){z();continue}}if("+"===O){if(!0!==r.noextglob&&"("===G()&&"?"!==G(2)){Z("plus",O);continue}if(j&&"("===j.value||!1===r.regex){X({type:"plus",value:O,output:B});continue}if(j&&("bracket"===j.type||"paren"===j.type||"brace"===j.type)||L.parens>0){X({type:"plus",value:O});continue}X({type:"plus",value:B});continue}if("@"===O){if(!0!==r.noextglob&&"("===G()&&"?"!==G(2)){X({type:"at",extglob:!0,value:O,output:""});continue}X({type:"text",value:O});continue}if("*"!==O){"$"!==O&&"^"!==O||(O="\\"+O);const e=s.exec(H());e&&(O+=e[0],L.index+=e[0].length),X({type:"text",value:O});continue}if(j&&("globstar"===j.type||!0===j.star)){j.type="star",j.star=!0,j.value+=O,j.output=x,L.backtrack=!0,L.globstar=!0,J(O);continue}let t=H();if(!0!==r.noextglob&&/^\([^?]/.test(t)){Z("star",O);continue}if("star"===j.type){if(!0===r.noglobstar){J(O);continue}const n=j.prev,i=n.prev,A="slash"===n.type||"bos"===n.type,o=i&&("star"===i.type||"globstar"===i.type);if(!0===r.bash&&(!A||t[0]&&"/"!==t[0])){X({type:"star",value:O,output:""});continue}const s=L.braces>0&&("comma"===n.type||"brace"===n.type),a=P.length&&("pipe"===n.type||"paren"===n.type);if(!A&&"paren"!==n.type&&!s&&!a){X({type:"star",value:O,output:""});continue}for(;"/**"===t.slice(0,3);){const r=e[L.index+4];if(r&&"/"!==r)break;t=t.slice(3),J("/**",3)}if("bos"===n.type&&Y()){j.type="globstar",j.value+=O,j.output=N(r),L.output=j.output,L.globstar=!0,J(O);continue}if("slash"===n.type&&"bos"!==n.prev.type&&!o&&Y()){L.output=L.output.slice(0,-(n.output+j.output).length),n.output="(?:"+n.output,j.type="globstar",j.output=N(r)+(r.strictSlashes?")":"|$)"),j.value+=O,L.globstar=!0,L.output+=n.output+j.output,J(O);continue}if("slash"===n.type&&"bos"!==n.prev.type&&"/"===t[0]){const e=void 0!==t[1]?"|$":"";L.output=L.output.slice(0,-(n.output+j.output).length),n.output="(?:"+n.output,j.type="globstar",j.output=`${N(r)}${w}|${w}${e})`,j.value+=O,L.output+=n.output+j.output,L.globstar=!0,J(O+_()),X({type:"slash",value:"/",output:""});continue}if("bos"===n.type&&"/"===t[0]){j.type="globstar",j.value+=O,j.output=`(?:^|${w}|${N(r)}${w})`,L.output=j.output,L.globstar=!0,J(O+_()),X({type:"slash",value:"/",output:""});continue}L.output=L.output.slice(0,-j.output.length),j.type="globstar",j.output=N(r),j.value+=O,L.output+=j.output,L.globstar=!0,J(O);continue}const n={type:"star",value:O,output:x};!0!==r.bash?!j||"bracket"!==j.type&&"paren"!==j.type||!0!==r.regex?(L.index!==L.start&&"slash"!==j.type&&"dot"!==j.type||("dot"===j.type?(L.output+=b,j.output+=b):!0===r.dot?(L.output+=D,j.output+=D):(L.output+=R,j.output+=R),"*"!==G()&&(L.output+=y,j.output+=y)),X(n)):(n.output=O,X(n)):(n.output=".*?","bos"!==j.type&&"slash"!==j.type||(n.output=R+n.output),X(n))}for(;L.brackets>0;){if(!0===r.strictBrackets)throw new SyntaxError(l("closing","]"));L.output=i.escapeLast(L.output,"["),V("brackets")}for(;L.parens>0;){if(!0===r.strictBrackets)throw new SyntaxError(l("closing",")"));L.output=i.escapeLast(L.output,"("),V("parens")}for(;L.braces>0;){if(!0===r.strictBrackets)throw new SyntaxError(l("closing","}"));L.output=i.escapeLast(L.output,"{"),V("braces")}if(!0===r.strictSlashes||"star"!==j.type&&"bracket"!==j.type||X({type:"maybe_slash",value:"",output:w+"?"}),!0===L.backtrack){L.output="";for(const e of L.tokens)L.output+=null!=e.output?e.output:e.value,e.suffix&&(L.output+=e.suffix)}return L};u.fastpaths=(e,t)=>{const r={...t},o="number"==typeof r.maxLength?Math.min(A,r.maxLength):A,s=e.length;if(s>o)throw new SyntaxError(`Input length: ${s}, exceeds maximum allowed length: ${o}`);e=c[e]||e;const a=i.isWindows(t),{DOT_LITERAL:g,SLASH_LITERAL:l,ONE_CHAR:u,DOTS_SLASH:h,NO_DOT:f,NO_DOTS:p,NO_DOTS_SLASH:C,STAR:d,START_ANCHOR:I}=n.globChars(a),E=r.dot?p:f,m=r.dot?C:f,B=r.capture?"":"?:";let w=!0===r.bash?".*?":d;r.capture&&(w=`(${w})`);const y=e=>!0===e.noglobstar?w:`(${B}(?:(?!${I}${e.dot?h:g}).)*?)`,Q=e=>{switch(e){case"*":return`${E}${u}${w}`;case".*":return`${g}${u}${w}`;case"*.*":return`${E}${w}${g}${u}${w}`;case"*/*":return`${E}${w}${l}${u}${m}${w}`;case"**":return E+y(r);case"**/*":return`(?:${E}${y(r)}${l})?${m}${u}${w}`;case"**/*.*":return`(?:${E}${y(r)}${l})?${m}${w}${g}${u}${w}`;case"**/.*":return`(?:${E}${y(r)}${l})?${g}${u}${w}`;default:{const t=/^(.*?)\.(\w+)$/.exec(e);if(!t)return;const r=Q(t[1]);if(!r)return;return r+g+t[2]}}},v=i.removePrefix(e,{negated:!1,prefix:""});let b=Q(v);return b&&!0!==r.strictSlashes&&(b+=l+"?"),b},e.exports=u},18828:(e,t,r)=>{"use strict";const n=r(85622),i=r(95321),A=r(47974),o=r(3598),s=r(71086),a=(e,t,r=!1)=>{if(Array.isArray(e)){const n=e.map(e=>a(e,t,r));return e=>{for(const t of n){const r=t(e);if(r)return r}return!1}}const n=(i=e)&&"object"==typeof i&&!Array.isArray(i)&&e.tokens&&e.input;var i;if(""===e||"string"!=typeof e&&!n)throw new TypeError("Expected pattern to be a non-empty string");const A=t||{},s=o.isWindows(t),c=n?a.compileRe(e,t):a.makeRe(e,t,!1,!0),g=c.state;delete c.state;let l=()=>!1;if(A.ignore){const e={...t,ignore:null,onMatch:null,onResult:null};l=a(A.ignore,e,r)}const u=(r,n=!1)=>{const{isMatch:i,match:o,output:u}=a.test(r,c,t,{glob:e,posix:s}),h={glob:e,state:g,regex:c,posix:s,input:r,output:u,match:o,isMatch:i};return"function"==typeof A.onResult&&A.onResult(h),!1===i?(h.isMatch=!1,!!n&&h):l(r)?("function"==typeof A.onIgnore&&A.onIgnore(h),h.isMatch=!1,!!n&&h):("function"==typeof A.onMatch&&A.onMatch(h),!n||h)};return r&&(u.state=g),u};a.test=(e,t,r,{glob:n,posix:i}={})=>{if("string"!=typeof e)throw new TypeError("Expected input to be a string");if(""===e)return{isMatch:!1,output:""};const A=r||{},s=A.format||(i?o.toPosixSlashes:null);let c=e===n,g=c&&s?s(e):e;return!1===c&&(g=s?s(e):e,c=g===n),!1!==c&&!0!==A.capture||(c=!0===A.matchBase||!0===A.basename?a.matchBase(e,t,r,i):t.exec(g)),{isMatch:Boolean(c),match:c,output:g}},a.matchBase=(e,t,r,i=o.isWindows(r))=>(t instanceof RegExp?t:a.makeRe(t,r)).test(n.basename(e)),a.isMatch=(e,t,r)=>a(t,r)(e),a.parse=(e,t)=>Array.isArray(e)?e.map(e=>a.parse(e,t)):A(e,{...t,fastpaths:!1}),a.scan=(e,t)=>i(e,t),a.compileRe=(e,t,r=!1,n=!1)=>{if(!0===r)return e.output;const i=t||{},A=i.contains?"":"^",o=i.contains?"":"$";let s=`${A}(?:${e.output})${o}`;e&&!0===e.negated&&(s=`^(?!${s}).*$`);const c=a.toRegex(s,t);return!0===n&&(c.state=e),c},a.makeRe=(e,t,r=!1,n=!1)=>{if(!e||"string"!=typeof e)throw new TypeError("Expected a non-empty string");const i=t||{};let o,s={negated:!1,fastpaths:!0},c="";return e.startsWith("./")&&(e=e.slice(2),c=s.prefix="./"),!1===i.fastpaths||"."!==e[0]&&"*"!==e[0]||(o=A.fastpaths(e,t)),void 0===o?(s=A(e,t),s.prefix=c+(s.prefix||"")):s.output=o,a.compileRe(s,t,r,n)},a.toRegex=(e,t)=>{try{const r=t||{};return new RegExp(e,r.flags||(r.nocase?"i":""))}catch(e){if(t&&!0===t.debug)throw e;return/$^/}},a.constants=s,e.exports=a},95321:(e,t,r)=>{"use strict";const n=r(3598),{CHAR_ASTERISK:i,CHAR_AT:A,CHAR_BACKWARD_SLASH:o,CHAR_COMMA:s,CHAR_DOT:a,CHAR_EXCLAMATION_MARK:c,CHAR_FORWARD_SLASH:g,CHAR_LEFT_CURLY_BRACE:l,CHAR_LEFT_PARENTHESES:u,CHAR_LEFT_SQUARE_BRACKET:h,CHAR_PLUS:f,CHAR_QUESTION_MARK:p,CHAR_RIGHT_CURLY_BRACE:C,CHAR_RIGHT_PARENTHESES:d,CHAR_RIGHT_SQUARE_BRACKET:I}=r(71086),E=e=>e===g||e===o,m=e=>{!0!==e.isPrefix&&(e.depth=e.isGlobstar?1/0:1)};e.exports=(e,t)=>{const r=t||{},B=e.length-1,w=!0===r.parts||!0===r.scanToEnd,y=[],Q=[],v=[];let b,D,S=e,k=-1,M=0,F=0,N=!1,R=!1,K=!1,x=!1,L=!1,P=!1,U=!1,T=!1,O=!1,j=0,Y={value:"",depth:0,isGlob:!1};const G=()=>k>=B,_=()=>(b=D,S.charCodeAt(++k));for(;k0&&(J=S.slice(0,M),S=S.slice(M),F-=M),H&&!0===K&&F>0?(H=S.slice(0,F),q=S.slice(F)):!0===K?(H="",q=S):H=S,H&&""!==H&&"/"!==H&&H!==S&&E(H.charCodeAt(H.length-1))&&(H=H.slice(0,-1)),!0===r.unescape&&(q&&(q=n.removeBackslashes(q)),H&&!0===U&&(H=n.removeBackslashes(H)));const z={prefix:J,input:e,start:M,base:H,glob:q,isBrace:N,isBracket:R,isGlob:K,isExtglob:x,isGlobstar:L,negated:T};if(!0===r.tokens&&(z.maxDepth=0,E(D)||Q.push(Y),z.tokens=Q),!0===r.parts||!0===r.tokens){let t;for(let n=0;n{"use strict";const n=r(85622),i="win32"===process.platform,{REGEX_BACKSLASH:A,REGEX_REMOVE_BACKSLASH:o,REGEX_SPECIAL_CHARS:s,REGEX_SPECIAL_CHARS_GLOBAL:a}=r(71086);t.isObject=e=>null!==e&&"object"==typeof e&&!Array.isArray(e),t.hasRegexChars=e=>s.test(e),t.isRegexChar=e=>1===e.length&&t.hasRegexChars(e),t.escapeRegex=e=>e.replace(a,"\\$1"),t.toPosixSlashes=e=>e.replace(A,"/"),t.removeBackslashes=e=>e.replace(o,e=>"\\"===e?"":e),t.supportsLookbehinds=()=>{const e=process.version.slice(1).split(".").map(Number);return 3===e.length&&e[0]>=9||8===e[0]&&e[1]>=10},t.isWindows=e=>e&&"boolean"==typeof e.windows?e.windows:!0===i||"\\"===n.sep,t.escapeLast=(e,r,n)=>{const i=e.lastIndexOf(r,n);return-1===i?e:"\\"===e[i-1]?t.escapeLast(e,r,i-1):`${e.slice(0,i)}\\${e.slice(i)}`},t.removePrefix=(e,t={})=>{let r=e;return r.startsWith("./")&&(r=r.slice(2),t.prefix="./"),r},t.wrapOutput=(e,t={},r={})=>{let n=`${r.contains?"":"^"}(?:${e})${r.contains?"":"$"}`;return!0===t.negated&&(n=`(?:^(?!${n}).*$)`),n}},79588:e=>{"use strict";function t(e){this._maxSize=e,this.clear()}t.prototype.clear=function(){this._size=0,this._values={}},t.prototype.get=function(e){return this._values[e]},t.prototype.set=function(e,t){return this._size>=this._maxSize&&this.clear(),this._values.hasOwnProperty(e)||this._size++,this._values[e]=t};var r=/[^.^\]^[]+|(?=\[\]|\.\.)/g,n=/^\d+$/,i=/^\d/,A=/[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/g,o=/^\s*(['"]?)(.*?)(\1)\s*$/,s=!1,a=new t(512),c=new t(512),g=new t(512);try{new Function("")}catch(e){s=!0}function l(e){return a.get(e)||a.set(e,u(e).map((function(e){return e.replace(o,"$2")})))}function u(e){return e.match(r)}function h(e,t,r){return"string"==typeof t&&(r=t,t=!1),r=r||"data",(e=e||"")&&"["!==e.charAt(0)&&(e="."+e),t?function(e,t){var r,n=t,i=u(e);return f(i,(function(e,t,i,A,o){r=A===o.length-1,n+=(e=t||i?"["+e+"]":"."+e)+(r?")":" || {})")})),new Array(i.length+1).join("(")+n}(e,r):r+e}function f(e,t,r){var n,i,A,o,s=e.length;for(i=0;i{var n=r(91162),i=r(97681),A=r(35747),o=function(){},s=/^v?\.0/.test(process.version),a=function(e){return"function"==typeof e},c=function(e,t,r,c){c=n(c);var g=!1;e.on("close",(function(){g=!0})),i(e,{readable:t,writable:r},(function(e){if(e)return c(e);g=!0,c()}));var l=!1;return function(t){if(!g&&!l)return l=!0,function(e){return!!s&&(!!A&&((e instanceof(A.ReadStream||o)||e instanceof(A.WriteStream||o))&&a(e.close)))}(e)?e.close(o):function(e){return e.setHeader&&a(e.abort)}(e)?e.abort():a(e.destroy)?e.destroy():void c(t||new Error("stream was destroyed"))}},g=function(e){e()},l=function(e,t){return e.pipe(t)};e.exports=function(){var e,t=Array.prototype.slice.call(arguments),r=a(t[t.length-1]||o)&&t.pop()||o;if(Array.isArray(t[0])&&(t=t[0]),t.length<2)throw new Error("pump requires two streams per minimum");var n=t.map((function(i,A){var o=A0,(function(t){e||(e=t),t&&n.forEach(g),o||(n.forEach(g),r(e))}))}));return t.reduce(l)}},82905:e=>{"use strict";class t{constructor(e={}){if(!(e.maxSize&&e.maxSize>0))throw new TypeError("`maxSize` must be a number greater than 0");this.maxSize=e.maxSize,this.onEviction=e.onEviction,this.cache=new Map,this.oldCache=new Map,this._size=0}_set(e,t){if(this.cache.set(e,t),this._size++,this._size>=this.maxSize){if(this._size=0,"function"==typeof this.onEviction)for(const[e,t]of this.oldCache.entries())this.onEviction(e,t);this.oldCache=this.cache,this.cache=new Map}}get(e){if(this.cache.has(e))return this.cache.get(e);if(this.oldCache.has(e)){const t=this.oldCache.get(e);return this.oldCache.delete(e),this._set(e,t),t}}set(e,t){return this.cache.has(e)?this.cache.set(e,t):this._set(e,t),this}has(e){return this.cache.has(e)||this.oldCache.has(e)}peek(e){return this.cache.has(e)?this.cache.get(e):this.oldCache.has(e)?this.oldCache.get(e):void 0}delete(e){const t=this.cache.delete(e);return t&&this._size--,this.oldCache.delete(e)||t}clear(){this.cache.clear(),this.oldCache.clear(),this._size=0}*keys(){for(const[e]of this)yield e}*values(){for(const[,e]of this)yield e}*[Symbol.iterator](){for(const e of this.cache)yield e;for(const e of this.oldCache){const[t]=e;this.cache.has(t)||(yield e)}}get size(){let e=0;for(const t of this.oldCache.keys())this.cache.has(t)||e++;return Math.min(this._size+e,this.maxSize)}}e.exports=t},20663:e=>{"use strict";const t={};function r(e,r,n){n||(n=Error);class i extends n{constructor(e,t,n){super(function(e,t,n){return"string"==typeof r?r:r(e,t,n)}(e,t,n))}}i.prototype.name=n.name,i.prototype.code=e,t[e]=i}function n(e,t){if(Array.isArray(e)){const r=e.length;return e=e.map(e=>String(e)),r>2?`one of ${t} ${e.slice(0,r-1).join(", ")}, or `+e[r-1]:2===r?`one of ${t} ${e[0]} or ${e[1]}`:`of ${t} ${e[0]}`}return`of ${t} ${String(e)}`}r("ERR_INVALID_OPT_VALUE",(function(e,t){return'The value "'+t+'" is invalid for option "'+e+'"'}),TypeError),r("ERR_INVALID_ARG_TYPE",(function(e,t,r){let i;var A,o;let s;if("string"==typeof t&&(A="not ",t.substr(!o||o<0?0:+o,A.length)===A)?(i="must not be",t=t.replace(/^not /,"")):i="must be",function(e,t,r){return(void 0===r||r>e.length)&&(r=e.length),e.substring(r-t.length,r)===t}(e," argument"))s=`The ${e} ${i} ${n(t,"type")}`;else{s=`The "${e}" ${function(e,t,r){return"number"!=typeof r&&(r=0),!(r+t.length>e.length)&&-1!==e.indexOf(t,r)}(e,".")?"property":"argument"} ${i} ${n(t,"type")}`}return s+=". Received type "+typeof r,s}),TypeError),r("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),r("ERR_METHOD_NOT_IMPLEMENTED",(function(e){return"The "+e+" method is not implemented"})),r("ERR_STREAM_PREMATURE_CLOSE","Premature close"),r("ERR_STREAM_DESTROYED",(function(e){return"Cannot call "+e+" after a stream was destroyed"})),r("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),r("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),r("ERR_STREAM_WRITE_AFTER_END","write after end"),r("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),r("ERR_UNKNOWN_ENCODING",(function(e){return"Unknown encoding: "+e}),TypeError),r("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),e.exports.q=t},39138:e=>{"use strict";var t=new Set;e.exports.emitExperimentalWarning=process.emitWarning?function(e){if(!t.has(e)){var r=e+" is an experimental feature. This feature could change at any time";t.add(e),process.emitWarning(r,"ExperimentalWarning")}}:function(){}},72434:(e,t,r)=>{"use strict";var n=Object.keys||function(e){var t=[];for(var r in e)t.push(r);return t};e.exports=c;var i=r(58020),A=r(6729);r(85870)(c,i);for(var o=n(A.prototype),s=0;s{"use strict";e.exports=i;var n=r(54801);function i(e){if(!(this instanceof i))return new i(e);n.call(this,e)}r(85870)(i,n),i.prototype._transform=function(e,t,r){r(null,e)}},58020:(e,t,r)=>{"use strict";var n;e.exports=y,y.ReadableState=w;r(28614).EventEmitter;var i=function(e,t){return e.listeners(t).length},A=r(49298),o=r(64293).Buffer,s=global.Uint8Array||function(){};var a,c=r(31669);a=c&&c.debuglog?c.debuglog("stream"):function(){};var g,l,u=r(43117),h=r(32340),f=r(77433).getHighWaterMark,p=r(20663).q,C=p.ERR_INVALID_ARG_TYPE,d=p.ERR_STREAM_PUSH_AFTER_EOF,I=p.ERR_METHOD_NOT_IMPLEMENTED,E=p.ERR_STREAM_UNSHIFT_AFTER_END_EVENT,m=r(39138).emitExperimentalWarning;r(85870)(y,A);var B=["error","close","destroy","pause","resume"];function w(e,t,i){n=n||r(72434),e=e||{},"boolean"!=typeof i&&(i=t instanceof n),this.objectMode=!!e.objectMode,i&&(this.objectMode=this.objectMode||!!e.readableObjectMode),this.highWaterMark=f(this,e,"readableHighWaterMark",i),this.buffer=new u,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==e.emitClose,this.destroyed=!1,this.defaultEncoding=e.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,e.encoding&&(g||(g=r(69538).s),this.decoder=new g(e.encoding),this.encoding=e.encoding)}function y(e){if(n=n||r(72434),!(this instanceof y))return new y(e);var t=this instanceof n;this._readableState=new w(e,this,t),this.readable=!0,e&&("function"==typeof e.read&&(this._read=e.read),"function"==typeof e.destroy&&(this._destroy=e.destroy)),A.call(this)}function Q(e,t,r,n,i){a("readableAddChunk",t);var A,c=e._readableState;if(null===t)c.reading=!1,function(e,t){if(t.ended)return;if(t.decoder){var r=t.decoder.end();r&&r.length&&(t.buffer.push(r),t.length+=t.objectMode?1:r.length)}t.ended=!0,t.sync?D(e):(t.needReadable=!1,t.emittedReadable||(t.emittedReadable=!0,S(e)))}(e,c);else if(i||(A=function(e,t){var r;n=t,o.isBuffer(n)||n instanceof s||"string"==typeof t||void 0===t||e.objectMode||(r=new C("chunk",["string","Buffer","Uint8Array"],t));var n;return r}(c,t)),A)e.emit("error",A);else if(c.objectMode||t&&t.length>0)if("string"==typeof t||c.objectMode||Object.getPrototypeOf(t)===o.prototype||(t=function(e){return o.from(e)}(t)),n)c.endEmitted?e.emit("error",new E):v(e,c,t,!0);else if(c.ended)e.emit("error",new d);else{if(c.destroyed)return!1;c.reading=!1,c.decoder&&!r?(t=c.decoder.write(t),c.objectMode||0!==t.length?v(e,c,t,!1):k(e,c)):v(e,c,t,!1)}else n||(c.reading=!1,k(e,c));return!c.ended&&(c.lengtht.highWaterMark&&(t.highWaterMark=function(e){return e>=8388608?e=8388608:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function D(e){var t=e._readableState;t.needReadable=!1,t.emittedReadable||(a("emitReadable",t.flowing),t.emittedReadable=!0,process.nextTick(S,e))}function S(e){var t=e._readableState;a("emitReadable_",t.destroyed,t.length,t.ended),t.destroyed||!t.length&&!t.ended||e.emit("readable"),t.needReadable=!t.flowing&&!t.ended&&t.length<=t.highWaterMark,K(e)}function k(e,t){t.readingMore||(t.readingMore=!0,process.nextTick(M,e,t))}function M(e,t){for(var r=t.length;!t.reading&&!t.ended&&t.length0,t.resumeScheduled&&!t.paused?t.flowing=!0:e.listenerCount("data")>0&&e.resume()}function N(e){a("readable nexttick read 0"),e.read(0)}function R(e,t){a("resume",t.reading),t.reading||e.read(0),t.resumeScheduled=!1,e.emit("resume"),K(e),t.flowing&&!t.reading&&e.read(0)}function K(e){var t=e._readableState;for(a("flow",t.flowing);t.flowing&&null!==e.read(););}function x(e,t){return 0===t.length?null:(t.objectMode?r=t.buffer.shift():!e||e>=t.length?(r=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.first():t.buffer.concat(t.length),t.buffer.clear()):r=t.buffer.consume(e,t.decoder),r);var r}function L(e){var t=e._readableState;a("endReadable",t.endEmitted),t.endEmitted||(t.ended=!0,process.nextTick(P,t,e))}function P(e,t){a("endReadableNT",e.endEmitted,e.length),e.endEmitted||0!==e.length||(e.endEmitted=!0,t.readable=!1,t.emit("end"))}function U(e,t){for(var r=0,n=e.length;r=t.highWaterMark:t.length>0)||t.ended))return a("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?L(this):D(this),null;if(0===(e=b(e,t))&&t.ended)return 0===t.length&&L(this),null;var n,i=t.needReadable;return a("need readable",i),(0===t.length||t.length-e0?x(e,t):null)?(t.needReadable=!0,e=0):(t.length-=e,t.awaitDrain=0),0===t.length&&(t.ended||(t.needReadable=!0),r!==e&&t.ended&&L(this)),null!==n&&this.emit("data",n),n},y.prototype._read=function(e){this.emit("error",new I("_read()"))},y.prototype.pipe=function(e,t){var r=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=e;break;case 1:n.pipes=[n.pipes,e];break;default:n.pipes.push(e)}n.pipesCount+=1,a("pipe count=%d opts=%j",n.pipesCount,t);var A=(!t||!1!==t.end)&&e!==process.stdout&&e!==process.stderr?s:p;function o(t,i){a("onunpipe"),t===r&&i&&!1===i.hasUnpiped&&(i.hasUnpiped=!0,a("cleanup"),e.removeListener("close",h),e.removeListener("finish",f),e.removeListener("drain",c),e.removeListener("error",u),e.removeListener("unpipe",o),r.removeListener("end",s),r.removeListener("end",p),r.removeListener("data",l),g=!0,!n.awaitDrain||e._writableState&&!e._writableState.needDrain||c())}function s(){a("onend"),e.end()}n.endEmitted?process.nextTick(A):r.once("end",A),e.on("unpipe",o);var c=function(e){return function(){var t=e._readableState;a("pipeOnDrain",t.awaitDrain),t.awaitDrain&&t.awaitDrain--,0===t.awaitDrain&&i(e,"data")&&(t.flowing=!0,K(e))}}(r);e.on("drain",c);var g=!1;function l(t){a("ondata");var i=e.write(t);a("dest.write",i),!1===i&&((1===n.pipesCount&&n.pipes===e||n.pipesCount>1&&-1!==U(n.pipes,e))&&!g&&(a("false write response, pause",n.awaitDrain),n.awaitDrain++),r.pause())}function u(t){a("onerror",t),p(),e.removeListener("error",u),0===i(e,"error")&&e.emit("error",t)}function h(){e.removeListener("finish",f),p()}function f(){a("onfinish"),e.removeListener("close",h),p()}function p(){a("unpipe"),r.unpipe(e)}return r.on("data",l),function(e,t,r){if("function"==typeof e.prependListener)return e.prependListener(t,r);e._events&&e._events[t]?Array.isArray(e._events[t])?e._events[t].unshift(r):e._events[t]=[r,e._events[t]]:e.on(t,r)}(e,"error",u),e.once("close",h),e.once("finish",f),e.emit("pipe",r),n.flowing||(a("pipe resume"),r.resume()),e},y.prototype.unpipe=function(e){var t=this._readableState,r={hasUnpiped:!1};if(0===t.pipesCount)return this;if(1===t.pipesCount)return e&&e!==t.pipes||(e||(e=t.pipes),t.pipes=null,t.pipesCount=0,t.flowing=!1,e&&e.emit("unpipe",this,r)),this;if(!e){var n=t.pipes,i=t.pipesCount;t.pipes=null,t.pipesCount=0,t.flowing=!1;for(var A=0;A0,!1!==n.flowing&&this.resume()):"readable"===e&&(n.endEmitted||n.readableListening||(n.readableListening=n.needReadable=!0,n.flowing=!1,n.emittedReadable=!1,a("on readable",n.length,n.reading),n.length?D(this):n.reading||process.nextTick(N,this))),r},y.prototype.addListener=y.prototype.on,y.prototype.removeListener=function(e,t){var r=A.prototype.removeListener.call(this,e,t);return"readable"===e&&process.nextTick(F,this),r},y.prototype.removeAllListeners=function(e){var t=A.prototype.removeAllListeners.apply(this,arguments);return"readable"!==e&&void 0!==e||process.nextTick(F,this),t},y.prototype.resume=function(){var e=this._readableState;return e.flowing||(a("resume"),e.flowing=!e.readableListening,function(e,t){t.resumeScheduled||(t.resumeScheduled=!0,process.nextTick(R,e,t))}(this,e)),e.paused=!1,this},y.prototype.pause=function(){return a("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(a("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},y.prototype.wrap=function(e){var t=this,r=this._readableState,n=!1;for(var i in e.on("end",(function(){if(a("wrapped end"),r.decoder&&!r.ended){var e=r.decoder.end();e&&e.length&&t.push(e)}t.push(null)})),e.on("data",(function(i){(a("wrapped data"),r.decoder&&(i=r.decoder.write(i)),r.objectMode&&null==i)||(r.objectMode||i&&i.length)&&(t.push(i)||(n=!0,e.pause()))})),e)void 0===this[i]&&"function"==typeof e[i]&&(this[i]=function(t){return function(){return e[t].apply(e,arguments)}}(i));for(var A=0;A{"use strict";e.exports=g;var n=r(20663).q,i=n.ERR_METHOD_NOT_IMPLEMENTED,A=n.ERR_MULTIPLE_CALLBACK,o=n.ERR_TRANSFORM_ALREADY_TRANSFORMING,s=n.ERR_TRANSFORM_WITH_LENGTH_0,a=r(72434);function c(e,t){var r=this._transformState;r.transforming=!1;var n=r.writecb;if(null===n)return this.emit("error",new A);r.writechunk=null,r.writecb=null,null!=t&&this.push(t),n(e);var i=this._readableState;i.reading=!1,(i.needReadable||i.length{"use strict";function n(e){var t=this;this.next=null,this.entry=null,this.finish=function(){!function(e,t,r){var n=e.entry;e.entry=null;for(;n;){var i=n.callback;t.pendingcb--,i(r),n=n.next}t.corkedRequestsFree.next=e}(t,e)}}var i;e.exports=y,y.WritableState=w;var A={deprecate:r(73212)},o=r(49298),s=r(64293).Buffer,a=global.Uint8Array||function(){};var c,g=r(32340),l=r(77433).getHighWaterMark,u=r(20663).q,h=u.ERR_INVALID_ARG_TYPE,f=u.ERR_METHOD_NOT_IMPLEMENTED,p=u.ERR_MULTIPLE_CALLBACK,C=u.ERR_STREAM_CANNOT_PIPE,d=u.ERR_STREAM_DESTROYED,I=u.ERR_STREAM_NULL_VALUES,E=u.ERR_STREAM_WRITE_AFTER_END,m=u.ERR_UNKNOWN_ENCODING;function B(){}function w(e,t,A){i=i||r(72434),e=e||{},"boolean"!=typeof A&&(A=t instanceof i),this.objectMode=!!e.objectMode,A&&(this.objectMode=this.objectMode||!!e.writableObjectMode),this.highWaterMark=l(this,e,"writableHighWaterMark",A),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var o=!1===e.decodeStrings;this.decodeStrings=!o,this.defaultEncoding=e.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(e){!function(e,t){var r=e._writableState,n=r.sync,i=r.writecb;if("function"!=typeof i)throw new p;if(function(e){e.writing=!1,e.writecb=null,e.length-=e.writelen,e.writelen=0}(r),t)!function(e,t,r,n,i){--t.pendingcb,r?(process.nextTick(i,n),process.nextTick(k,e,t),e._writableState.errorEmitted=!0,e.emit("error",n)):(i(n),e._writableState.errorEmitted=!0,e.emit("error",n),k(e,t))}(e,r,n,t,i);else{var A=D(r)||e.destroyed;A||r.corked||r.bufferProcessing||!r.bufferedRequest||b(e,r),n?process.nextTick(v,e,r,A,i):v(e,r,A,i)}}(t,e)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==e.emitClose,this.bufferedRequestCount=0,this.corkedRequestsFree=new n(this)}function y(e){var t=this instanceof(i=i||r(72434));if(!t&&!c.call(y,this))return new y(e);this._writableState=new w(e,this,t),this.writable=!0,e&&("function"==typeof e.write&&(this._write=e.write),"function"==typeof e.writev&&(this._writev=e.writev),"function"==typeof e.destroy&&(this._destroy=e.destroy),"function"==typeof e.final&&(this._final=e.final)),o.call(this)}function Q(e,t,r,n,i,A,o){t.writelen=n,t.writecb=o,t.writing=!0,t.sync=!0,t.destroyed?t.onwrite(new d("write")):r?e._writev(i,t.onwrite):e._write(i,A,t.onwrite),t.sync=!1}function v(e,t,r,n){r||function(e,t){0===t.length&&t.needDrain&&(t.needDrain=!1,e.emit("drain"))}(e,t),t.pendingcb--,n(),k(e,t)}function b(e,t){t.bufferProcessing=!0;var r=t.bufferedRequest;if(e._writev&&r&&r.next){var i=t.bufferedRequestCount,A=new Array(i),o=t.corkedRequestsFree;o.entry=r;for(var s=0,a=!0;r;)A[s]=r,r.isBuf||(a=!1),r=r.next,s+=1;A.allBuffers=a,Q(e,t,!0,t.length,A,"",o.finish),t.pendingcb++,t.lastBufferedRequest=null,o.next?(t.corkedRequestsFree=o.next,o.next=null):t.corkedRequestsFree=new n(t),t.bufferedRequestCount=0}else{for(;r;){var c=r.chunk,g=r.encoding,l=r.callback;if(Q(e,t,!1,t.objectMode?1:c.length,c,g,l),r=r.next,t.bufferedRequestCount--,t.writing)break}null===r&&(t.lastBufferedRequest=null)}t.bufferedRequest=r,t.bufferProcessing=!1}function D(e){return e.ending&&0===e.length&&null===e.bufferedRequest&&!e.finished&&!e.writing}function S(e,t){e._final((function(r){t.pendingcb--,r&&e.emit("error",r),t.prefinished=!0,e.emit("prefinish"),k(e,t)}))}function k(e,t){var r=D(t);return r&&(!function(e,t){t.prefinished||t.finalCalled||("function"!=typeof e._final||t.destroyed?(t.prefinished=!0,e.emit("prefinish")):(t.pendingcb++,t.finalCalled=!0,process.nextTick(S,e,t)))}(e,t),0===t.pendingcb&&(t.finished=!0,e.emit("finish"))),r}r(85870)(y,o),w.prototype.getBuffer=function(){for(var e=this.bufferedRequest,t=[];e;)t.push(e),e=e.next;return t},function(){try{Object.defineProperty(w.prototype,"buffer",{get:A.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(e){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(c=Function.prototype[Symbol.hasInstance],Object.defineProperty(y,Symbol.hasInstance,{value:function(e){return!!c.call(this,e)||this===y&&(e&&e._writableState instanceof w)}})):c=function(e){return e instanceof this},y.prototype.pipe=function(){this.emit("error",new C)},y.prototype.write=function(e,t,r){var n,i=this._writableState,A=!1,o=!i.objectMode&&(n=e,s.isBuffer(n)||n instanceof a);return o&&!s.isBuffer(e)&&(e=function(e){return s.from(e)}(e)),"function"==typeof t&&(r=t,t=null),o?t="buffer":t||(t=i.defaultEncoding),"function"!=typeof r&&(r=B),i.ending?function(e,t){var r=new E;e.emit("error",r),process.nextTick(t,r)}(this,r):(o||function(e,t,r,n){var i;return null===r?i=new I:"string"==typeof r||t.objectMode||(i=new h("chunk",["string","Buffer"],r)),!i||(e.emit("error",i),process.nextTick(n,i),!1)}(this,i,e,r))&&(i.pendingcb++,A=function(e,t,r,n,i,A){if(!r){var o=function(e,t,r){e.objectMode||!1===e.decodeStrings||"string"!=typeof t||(t=s.from(t,r));return t}(t,n,i);n!==o&&(r=!0,i="buffer",n=o)}var a=t.objectMode?1:n.length;t.length+=a;var c=t.length-1))throw new m(e);return this._writableState.defaultEncoding=e,this},Object.defineProperty(y.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(y.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),y.prototype._write=function(e,t,r){r(new f("_write()"))},y.prototype._writev=null,y.prototype.end=function(e,t,r){var n=this._writableState;return"function"==typeof e?(r=e,e=null,t=null):"function"==typeof t&&(r=t,t=null),null!=e&&this.write(e,t),n.corked&&(n.corked=1,this.uncork()),n.ending||function(e,t,r){t.ending=!0,k(e,t),r&&(t.finished?process.nextTick(r):e.once("finish",r));t.ended=!0,e.writable=!1}(this,n,r),this},Object.defineProperty(y.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(y.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}}),y.prototype.destroy=g.destroy,y.prototype._undestroy=g.undestroy,y.prototype._destroy=function(e,t){t(e)}},4245:(e,t,r)=>{"use strict";var n;function i(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var A=r(91327),o=Symbol("lastResolve"),s=Symbol("lastReject"),a=Symbol("error"),c=Symbol("ended"),g=Symbol("lastPromise"),l=Symbol("handlePromise"),u=Symbol("stream");function h(e,t){return{value:e,done:t}}function f(e){var t=e[o];if(null!==t){var r=e[u].read();null!==r&&(e[g]=null,e[o]=null,e[s]=null,t(h(r,!1)))}}function p(e){process.nextTick(f,e)}var C=Object.getPrototypeOf((function(){})),d=Object.setPrototypeOf((i(n={get stream(){return this[u]},next:function(){var e=this,t=this[a];if(null!==t)return Promise.reject(t);if(this[c])return Promise.resolve(h(null,!0));if(this[u].destroyed)return new Promise((function(t,r){process.nextTick((function(){e[a]?r(e[a]):t(h(null,!0))}))}));var r,n=this[g];if(n)r=new Promise(function(e,t){return function(r,n){e.then((function(){t[l](r,n)}),n)}}(n,this));else{var i=this[u].read();if(null!==i)return Promise.resolve(h(i,!1));r=new Promise(this[l])}return this[g]=r,r}},Symbol.asyncIterator,(function(){return this})),i(n,"return",(function(){var e=this;return new Promise((function(t,r){e[u].destroy(null,(function(e){e?r(e):t(h(null,!0))}))}))})),n),C);e.exports=function(e){var t,r=Object.create(d,(i(t={},u,{value:e,writable:!0}),i(t,o,{value:null,writable:!0}),i(t,s,{value:null,writable:!0}),i(t,a,{value:null,writable:!0}),i(t,c,{value:e._readableState.endEmitted,writable:!0}),i(t,g,{value:null,writable:!0}),i(t,l,{value:function(e,t){var n=r[u].read();n?(r[g]=null,r[o]=null,r[s]=null,e(h(n,!1))):(r[o]=e,r[s]=t)},writable:!0}),t));return A(e,(function(e){if(e&&"ERR_STREAM_PREMATURE_CLOSE"!==e.code){var t=r[s];return null!==t&&(r[g]=null,r[o]=null,r[s]=null,t(e)),void(r[a]=e)}var n=r[o];null!==n&&(r[g]=null,r[o]=null,r[s]=null,n(h(null,!0))),r[c]=!0})),e.on("readable",p.bind(null,r)),r}},43117:(e,t,r)=>{"use strict";function n(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var i=r(64293).Buffer,A=r(31669).inspect,o=A&&A.custom||"inspect";e.exports=function(){function e(){this.head=null,this.tail=null,this.length=0}var t=e.prototype;return t.push=function(e){var t={data:e,next:null};this.length>0?this.tail.next=t:this.head=t,this.tail=t,++this.length},t.unshift=function(e){var t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length},t.shift=function(){if(0!==this.length){var e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}},t.clear=function(){this.head=this.tail=null,this.length=0},t.join=function(e){if(0===this.length)return"";for(var t=this.head,r=""+t.data;t=t.next;)r+=e+t.data;return r},t.concat=function(e){if(0===this.length)return i.alloc(0);for(var t,r,n,A=i.allocUnsafe(e>>>0),o=this.head,s=0;o;)t=o.data,r=A,n=s,i.prototype.copy.call(t,r,n),s+=o.data.length,o=o.next;return A},t.consume=function(e,t){var r;return ei.length?i.length:e;if(A===i.length?n+=i:n+=i.slice(0,e),0===(e-=A)){A===i.length?(++r,t.next?this.head=t.next:this.head=this.tail=null):(this.head=t,t.data=i.slice(A));break}++r}return this.length-=r,n},t._getBuffer=function(e){var t=i.allocUnsafe(e),r=this.head,n=1;for(r.data.copy(t),e-=r.data.length;r=r.next;){var A=r.data,o=e>A.length?A.length:e;if(A.copy(t,t.length-e,0,o),0===(e-=o)){o===A.length?(++n,r.next?this.head=r.next:this.head=this.tail=null):(this.head=r,r.data=A.slice(o));break}++n}return this.length-=n,t},t[o]=function(e,t){return A(this,function(e){for(var t=1;t{"use strict";function t(e,t){n(e,t),r(e)}function r(e){e._writableState&&!e._writableState.emitClose||e._readableState&&!e._readableState.emitClose||e.emit("close")}function n(e,t){e.emit("error",t)}e.exports={destroy:function(e,i){var A=this,o=this._readableState&&this._readableState.destroyed,s=this._writableState&&this._writableState.destroyed;return o||s?(i?i(e):!e||this._writableState&&this._writableState.errorEmitted||process.nextTick(n,this,e),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(e||null,(function(e){!i&&e?(process.nextTick(t,A,e),A._writableState&&(A._writableState.errorEmitted=!0)):i?(process.nextTick(r,A),i(e)):process.nextTick(r,A)})),this)},undestroy:function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}}},91327:(e,t,r)=>{"use strict";var n=r(20663).q.ERR_STREAM_PREMATURE_CLOSE;function i(){}e.exports=function e(t,r,A){if("function"==typeof r)return e(t,null,r);r||(r={}),A=function(e){var t=!1;return function(r){t||(t=!0,e.call(this,r))}}(A||i);var o=t._writableState,s=t._readableState,a=r.readable||!1!==r.readable&&t.readable,c=r.writable||!1!==r.writable&&t.writable,g=function(){t.writable||l()},l=function(){c=!1,a||A.call(t)},u=function(){a=!1,c||A.call(t)},h=function(e){A.call(t,e)},f=function(){return(!a||s&&s.ended)&&(!c||o&&o.ended)?void 0:A.call(t,new n)},p=function(){t.req.on("finish",l)};return!function(e){return e.setHeader&&"function"==typeof e.abort}(t)?c&&!o&&(t.on("end",g),t.on("close",g)):(t.on("complete",l),t.on("abort",f),t.req?p():t.on("request",p)),t.on("end",u),t.on("finish",l),!1!==r.error&&t.on("error",h),t.on("close",f),function(){t.removeListener("complete",l),t.removeListener("abort",f),t.removeListener("request",p),t.req&&t.req.removeListener("finish",l),t.removeListener("end",g),t.removeListener("close",g),t.removeListener("finish",l),t.removeListener("end",u),t.removeListener("error",h),t.removeListener("close",f)}}},4939:(e,t,r)=>{"use strict";var n;var i=r(20663).q,A=i.ERR_MISSING_ARGS,o=i.ERR_STREAM_DESTROYED;function s(e){if(e)throw e}function a(e,t,i,A){A=function(e){var t=!1;return function(){t||(t=!0,e.apply(void 0,arguments))}}(A);var s=!1;e.on("close",(function(){s=!0})),void 0===n&&(n=r(91327)),n(e,{readable:t,writable:i},(function(e){if(e)return A(e);s=!0,A()}));var a=!1;return function(t){if(!s&&!a)return a=!0,function(e){return e.setHeader&&"function"==typeof e.abort}(e)?e.abort():"function"==typeof e.destroy?e.destroy():void A(t||new o("pipe"))}}function c(e){e()}function g(e,t){return e.pipe(t)}function l(e){return e.length?"function"!=typeof e[e.length-1]?s:e.pop():s}e.exports=function(){for(var e=arguments.length,t=new Array(e),r=0;r0,(function(e){n||(n=e),e&&o.forEach(c),A||(o.forEach(c),i(n))}))}));return t.reduce(g)}},77433:(e,t,r)=>{"use strict";var n=r(20663).q.ERR_INVALID_OPT_VALUE;e.exports={getHighWaterMark:function(e,t,r,i){var A=function(e,t,r){return null!=e.highWaterMark?e.highWaterMark:t?e[r]:null}(t,i,r);if(null!=A){if(!isFinite(A)||Math.floor(A)!==A||A<0)throw new n(i?r:"highWaterMark",A);return Math.floor(A)}return e.objectMode?16:16384}}},49298:(e,t,r)=>{e.exports=r(92413)},86897:(e,t,r)=>{var n=r(92413);"disable"===process.env.READABLE_STREAM&&n?(e.exports=n.Readable,Object.assign(e.exports,n),e.exports.Stream=n):((t=e.exports=r(58020)).Stream=n||t,t.Readable=t,t.Writable=r(6729),t.Duplex=r(72434),t.Transform=r(54801),t.PassThrough=r(52444),t.finished=r(91327),t.pipeline=r(4939))},19476:(e,t,r)=>{"use strict";const n=r(4016);e.exports=(e={})=>new Promise((t,r)=>{const i=n.connect(e,()=>{e.resolveSocket?(i.off("error",r),t({alpnProtocol:i.alpnProtocol,socket:i})):(i.destroy(),t({alpnProtocol:i.alpnProtocol}))});i.on("error",r)})},48491:(e,t,r)=>{"use strict";const n=r(92413).Readable,i=r(55737);e.exports=class extends n{constructor(e,t,r,n){if("number"!=typeof e)throw new TypeError("Argument `statusCode` should be a number");if("object"!=typeof t)throw new TypeError("Argument `headers` should be an object");if(!(r instanceof Buffer))throw new TypeError("Argument `body` should be a buffer");if("string"!=typeof n)throw new TypeError("Argument `url` should be a string");super(),this.statusCode=e,this.headers=i(t),this.body=r,this.url=n}_read(){this.push(this.body),this.push(null)}}},2383:e=>{"use strict";e.exports=function(e){var t=new e,r=t;return{get:function(){var n=t;return n.next?t=n.next:(t=new e,r=t),n.next=null,n},release:function(e){r.next=e,r=e}}}},69078:e=>{e.exports=function(e,t){var r,n,i,A=!0;Array.isArray(e)?(r=[],n=e.length):(i=Object.keys(e),r={},n=i.length);function o(e){function n(){t&&t(e,r),t=null}A?process.nextTick(n):n()}function s(e,t,i){r[e]=i,(0==--n||t)&&o(t)}n?i?i.forEach((function(t){e[t]((function(e,r){s(t,e,r)}))})):e.forEach((function(e,t){e((function(e,r){s(t,e,r)}))})):o(null);A=!1}},13499:(e,t,r)=>{var n=r(64293),i=n.Buffer;function A(e,t){for(var r in e)t[r]=e[r]}function o(e,t,r){return i(e,t,r)}i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow?e.exports=n:(A(n,t),t.Buffer=o),A(i,o),o.from=function(e,t,r){if("number"==typeof e)throw new TypeError("Argument must not be a number");return i(e,t,r)},o.alloc=function(e,t,r){if("number"!=typeof e)throw new TypeError("Argument must be a number");var n=i(e);return void 0!==t?"string"==typeof r?n.fill(t,r):n.fill(t):n.fill(0),n},o.allocUnsafe=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return i(e)},o.allocUnsafeSlow=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return n.SlowBuffer(e)}},95584:(e,t)=>{var r;t=e.exports=l,r="object"==typeof process&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?function(){var e=Array.prototype.slice.call(arguments,0);e.unshift("SEMVER"),console.log.apply(console,e)}:function(){},t.SEMVER_SPEC_VERSION="2.0.0";var n=Number.MAX_SAFE_INTEGER||9007199254740991,i=t.re=[],A=t.src=[],o=t.tokens={},s=0;function a(e){o[e]=s++}a("NUMERICIDENTIFIER"),A[o.NUMERICIDENTIFIER]="0|[1-9]\\d*",a("NUMERICIDENTIFIERLOOSE"),A[o.NUMERICIDENTIFIERLOOSE]="[0-9]+",a("NONNUMERICIDENTIFIER"),A[o.NONNUMERICIDENTIFIER]="\\d*[a-zA-Z-][a-zA-Z0-9-]*",a("MAINVERSION"),A[o.MAINVERSION]="("+A[o.NUMERICIDENTIFIER]+")\\.("+A[o.NUMERICIDENTIFIER]+")\\.("+A[o.NUMERICIDENTIFIER]+")",a("MAINVERSIONLOOSE"),A[o.MAINVERSIONLOOSE]="("+A[o.NUMERICIDENTIFIERLOOSE]+")\\.("+A[o.NUMERICIDENTIFIERLOOSE]+")\\.("+A[o.NUMERICIDENTIFIERLOOSE]+")",a("PRERELEASEIDENTIFIER"),A[o.PRERELEASEIDENTIFIER]="(?:"+A[o.NUMERICIDENTIFIER]+"|"+A[o.NONNUMERICIDENTIFIER]+")",a("PRERELEASEIDENTIFIERLOOSE"),A[o.PRERELEASEIDENTIFIERLOOSE]="(?:"+A[o.NUMERICIDENTIFIERLOOSE]+"|"+A[o.NONNUMERICIDENTIFIER]+")",a("PRERELEASE"),A[o.PRERELEASE]="(?:-("+A[o.PRERELEASEIDENTIFIER]+"(?:\\."+A[o.PRERELEASEIDENTIFIER]+")*))",a("PRERELEASELOOSE"),A[o.PRERELEASELOOSE]="(?:-?("+A[o.PRERELEASEIDENTIFIERLOOSE]+"(?:\\."+A[o.PRERELEASEIDENTIFIERLOOSE]+")*))",a("BUILDIDENTIFIER"),A[o.BUILDIDENTIFIER]="[0-9A-Za-z-]+",a("BUILD"),A[o.BUILD]="(?:\\+("+A[o.BUILDIDENTIFIER]+"(?:\\."+A[o.BUILDIDENTIFIER]+")*))",a("FULL"),a("FULLPLAIN"),A[o.FULLPLAIN]="v?"+A[o.MAINVERSION]+A[o.PRERELEASE]+"?"+A[o.BUILD]+"?",A[o.FULL]="^"+A[o.FULLPLAIN]+"$",a("LOOSEPLAIN"),A[o.LOOSEPLAIN]="[v=\\s]*"+A[o.MAINVERSIONLOOSE]+A[o.PRERELEASELOOSE]+"?"+A[o.BUILD]+"?",a("LOOSE"),A[o.LOOSE]="^"+A[o.LOOSEPLAIN]+"$",a("GTLT"),A[o.GTLT]="((?:<|>)?=?)",a("XRANGEIDENTIFIERLOOSE"),A[o.XRANGEIDENTIFIERLOOSE]=A[o.NUMERICIDENTIFIERLOOSE]+"|x|X|\\*",a("XRANGEIDENTIFIER"),A[o.XRANGEIDENTIFIER]=A[o.NUMERICIDENTIFIER]+"|x|X|\\*",a("XRANGEPLAIN"),A[o.XRANGEPLAIN]="[v=\\s]*("+A[o.XRANGEIDENTIFIER]+")(?:\\.("+A[o.XRANGEIDENTIFIER]+")(?:\\.("+A[o.XRANGEIDENTIFIER]+")(?:"+A[o.PRERELEASE]+")?"+A[o.BUILD]+"?)?)?",a("XRANGEPLAINLOOSE"),A[o.XRANGEPLAINLOOSE]="[v=\\s]*("+A[o.XRANGEIDENTIFIERLOOSE]+")(?:\\.("+A[o.XRANGEIDENTIFIERLOOSE]+")(?:\\.("+A[o.XRANGEIDENTIFIERLOOSE]+")(?:"+A[o.PRERELEASELOOSE]+")?"+A[o.BUILD]+"?)?)?",a("XRANGE"),A[o.XRANGE]="^"+A[o.GTLT]+"\\s*"+A[o.XRANGEPLAIN]+"$",a("XRANGELOOSE"),A[o.XRANGELOOSE]="^"+A[o.GTLT]+"\\s*"+A[o.XRANGEPLAINLOOSE]+"$",a("COERCE"),A[o.COERCE]="(^|[^\\d])(\\d{1,16})(?:\\.(\\d{1,16}))?(?:\\.(\\d{1,16}))?(?:$|[^\\d])",a("COERCERTL"),i[o.COERCERTL]=new RegExp(A[o.COERCE],"g"),a("LONETILDE"),A[o.LONETILDE]="(?:~>?)",a("TILDETRIM"),A[o.TILDETRIM]="(\\s*)"+A[o.LONETILDE]+"\\s+",i[o.TILDETRIM]=new RegExp(A[o.TILDETRIM],"g");a("TILDE"),A[o.TILDE]="^"+A[o.LONETILDE]+A[o.XRANGEPLAIN]+"$",a("TILDELOOSE"),A[o.TILDELOOSE]="^"+A[o.LONETILDE]+A[o.XRANGEPLAINLOOSE]+"$",a("LONECARET"),A[o.LONECARET]="(?:\\^)",a("CARETTRIM"),A[o.CARETTRIM]="(\\s*)"+A[o.LONECARET]+"\\s+",i[o.CARETTRIM]=new RegExp(A[o.CARETTRIM],"g");a("CARET"),A[o.CARET]="^"+A[o.LONECARET]+A[o.XRANGEPLAIN]+"$",a("CARETLOOSE"),A[o.CARETLOOSE]="^"+A[o.LONECARET]+A[o.XRANGEPLAINLOOSE]+"$",a("COMPARATORLOOSE"),A[o.COMPARATORLOOSE]="^"+A[o.GTLT]+"\\s*("+A[o.LOOSEPLAIN]+")$|^$",a("COMPARATOR"),A[o.COMPARATOR]="^"+A[o.GTLT]+"\\s*("+A[o.FULLPLAIN]+")$|^$",a("COMPARATORTRIM"),A[o.COMPARATORTRIM]="(\\s*)"+A[o.GTLT]+"\\s*("+A[o.LOOSEPLAIN]+"|"+A[o.XRANGEPLAIN]+")",i[o.COMPARATORTRIM]=new RegExp(A[o.COMPARATORTRIM],"g");a("HYPHENRANGE"),A[o.HYPHENRANGE]="^\\s*("+A[o.XRANGEPLAIN]+")\\s+-\\s+("+A[o.XRANGEPLAIN]+")\\s*$",a("HYPHENRANGELOOSE"),A[o.HYPHENRANGELOOSE]="^\\s*("+A[o.XRANGEPLAINLOOSE]+")\\s+-\\s+("+A[o.XRANGEPLAINLOOSE]+")\\s*$",a("STAR"),A[o.STAR]="(<|>)?=?\\s*\\*";for(var c=0;c256)return null;if(!(t.loose?i[o.LOOSE]:i[o.FULL]).test(e))return null;try{return new l(e,t)}catch(e){return null}}function l(e,t){if(t&&"object"==typeof t||(t={loose:!!t,includePrerelease:!1}),e instanceof l){if(e.loose===t.loose)return e;e=e.version}else if("string"!=typeof e)throw new TypeError("Invalid Version: "+e);if(e.length>256)throw new TypeError("version is longer than 256 characters");if(!(this instanceof l))return new l(e,t);r("SemVer",e,t),this.options=t,this.loose=!!t.loose;var A=e.trim().match(t.loose?i[o.LOOSE]:i[o.FULL]);if(!A)throw new TypeError("Invalid Version: "+e);if(this.raw=e,this.major=+A[1],this.minor=+A[2],this.patch=+A[3],this.major>n||this.major<0)throw new TypeError("Invalid major version");if(this.minor>n||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>n||this.patch<0)throw new TypeError("Invalid patch version");A[4]?this.prerelease=A[4].split(".").map((function(e){if(/^[0-9]+$/.test(e)){var t=+e;if(t>=0&&t=0;)"number"==typeof this.prerelease[r]&&(this.prerelease[r]++,r=-2);-1===r&&this.prerelease.push(0)}t&&(this.prerelease[0]===t?isNaN(this.prerelease[1])&&(this.prerelease=[t,0]):this.prerelease=[t,0]);break;default:throw new Error("invalid increment argument: "+e)}return this.format(),this.raw=this.version,this},t.inc=function(e,t,r,n){"string"==typeof r&&(n=r,r=void 0);try{return new l(e,r).inc(t,n).version}catch(e){return null}},t.diff=function(e,t){if(d(e,t))return null;var r=g(e),n=g(t),i="";if(r.prerelease.length||n.prerelease.length){i="pre";var A="prerelease"}for(var o in r)if(("major"===o||"minor"===o||"patch"===o)&&r[o]!==n[o])return i+o;return A},t.compareIdentifiers=h;var u=/^[0-9]+$/;function h(e,t){var r=u.test(e),n=u.test(t);return r&&n&&(e=+e,t=+t),e===t?0:r&&!n?-1:n&&!r?1:e0}function C(e,t,r){return f(e,t,r)<0}function d(e,t,r){return 0===f(e,t,r)}function I(e,t,r){return 0!==f(e,t,r)}function E(e,t,r){return f(e,t,r)>=0}function m(e,t,r){return f(e,t,r)<=0}function B(e,t,r,n){switch(t){case"===":return"object"==typeof e&&(e=e.version),"object"==typeof r&&(r=r.version),e===r;case"!==":return"object"==typeof e&&(e=e.version),"object"==typeof r&&(r=r.version),e!==r;case"":case"=":case"==":return d(e,r,n);case"!=":return I(e,r,n);case">":return p(e,r,n);case">=":return E(e,r,n);case"<":return C(e,r,n);case"<=":return m(e,r,n);default:throw new TypeError("Invalid operator: "+t)}}function w(e,t){if(t&&"object"==typeof t||(t={loose:!!t,includePrerelease:!1}),e instanceof w){if(e.loose===!!t.loose)return e;e=e.value}if(!(this instanceof w))return new w(e,t);r("comparator",e,t),this.options=t,this.loose=!!t.loose,this.parse(e),this.semver===y?this.value="":this.value=this.operator+this.semver.version,r("comp",this)}t.rcompareIdentifiers=function(e,t){return h(t,e)},t.major=function(e,t){return new l(e,t).major},t.minor=function(e,t){return new l(e,t).minor},t.patch=function(e,t){return new l(e,t).patch},t.compare=f,t.compareLoose=function(e,t){return f(e,t,!0)},t.compareBuild=function(e,t,r){var n=new l(e,r),i=new l(t,r);return n.compare(i)||n.compareBuild(i)},t.rcompare=function(e,t,r){return f(t,e,r)},t.sort=function(e,r){return e.sort((function(e,n){return t.compareBuild(e,n,r)}))},t.rsort=function(e,r){return e.sort((function(e,n){return t.compareBuild(n,e,r)}))},t.gt=p,t.lt=C,t.eq=d,t.neq=I,t.gte=E,t.lte=m,t.cmp=B,t.Comparator=w;var y={};function Q(e,t){if(t&&"object"==typeof t||(t={loose:!!t,includePrerelease:!1}),e instanceof Q)return e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease?e:new Q(e.raw,t);if(e instanceof w)return new Q(e.value,t);if(!(this instanceof Q))return new Q(e,t);if(this.options=t,this.loose=!!t.loose,this.includePrerelease=!!t.includePrerelease,this.raw=e,this.set=e.split(/\s*\|\|\s*/).map((function(e){return this.parseRange(e.trim())}),this).filter((function(e){return e.length})),!this.set.length)throw new TypeError("Invalid SemVer Range: "+e);this.format()}function v(e,t){for(var r=!0,n=e.slice(),i=n.pop();r&&n.length;)r=n.every((function(e){return i.intersects(e,t)})),i=n.pop();return r}function b(e){return!e||"x"===e.toLowerCase()||"*"===e}function D(e,t,r,n,i,A,o,s,a,c,g,l,u){return((t=b(r)?"":b(n)?">="+r+".0.0":b(i)?">="+r+"."+n+".0":">="+t)+" "+(s=b(a)?"":b(c)?"<"+(+a+1)+".0.0":b(g)?"<"+a+"."+(+c+1)+".0":l?"<="+a+"."+c+"."+g+"-"+l:"<="+s)).trim()}function S(e,t,n){for(var i=0;i0){var A=e[i].semver;if(A.major===t.major&&A.minor===t.minor&&A.patch===t.patch)return!0}return!1}return!0}function k(e,t,r){try{t=new Q(t,r)}catch(e){return!1}return t.test(e)}function M(e,t,r,n){var i,A,o,s,a;switch(e=new l(e,n),t=new Q(t,n),r){case">":i=p,A=m,o=C,s=">",a=">=";break;case"<":i=C,A=E,o=p,s="<",a="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(k(e,t,n))return!1;for(var c=0;c=0.0.0")),u=u||e,h=h||e,i(e.semver,u.semver,n)?u=e:o(e.semver,h.semver,n)&&(h=e)})),u.operator===s||u.operator===a)return!1;if((!h.operator||h.operator===s)&&A(e,h.semver))return!1;if(h.operator===a&&o(e,h.semver))return!1}return!0}w.prototype.parse=function(e){var t=this.options.loose?i[o.COMPARATORLOOSE]:i[o.COMPARATOR],r=e.match(t);if(!r)throw new TypeError("Invalid comparator: "+e);this.operator=void 0!==r[1]?r[1]:"","="===this.operator&&(this.operator=""),r[2]?this.semver=new l(r[2],this.options.loose):this.semver=y},w.prototype.toString=function(){return this.value},w.prototype.test=function(e){if(r("Comparator.test",e,this.options.loose),this.semver===y||e===y)return!0;if("string"==typeof e)try{e=new l(e,this.options)}catch(e){return!1}return B(e,this.operator,this.semver,this.options)},w.prototype.intersects=function(e,t){if(!(e instanceof w))throw new TypeError("a Comparator is required");var r;if(t&&"object"==typeof t||(t={loose:!!t,includePrerelease:!1}),""===this.operator)return""===this.value||(r=new Q(e.value,t),k(this.value,r,t));if(""===e.operator)return""===e.value||(r=new Q(this.value,t),k(e.semver,r,t));var n=!(">="!==this.operator&&">"!==this.operator||">="!==e.operator&&">"!==e.operator),i=!("<="!==this.operator&&"<"!==this.operator||"<="!==e.operator&&"<"!==e.operator),A=this.semver.version===e.semver.version,o=!(">="!==this.operator&&"<="!==this.operator||">="!==e.operator&&"<="!==e.operator),s=B(this.semver,"<",e.semver,t)&&(">="===this.operator||">"===this.operator)&&("<="===e.operator||"<"===e.operator),a=B(this.semver,">",e.semver,t)&&("<="===this.operator||"<"===this.operator)&&(">="===e.operator||">"===e.operator);return n||i||A&&o||s||a},t.Range=Q,Q.prototype.format=function(){return this.range=this.set.map((function(e){return e.join(" ").trim()})).join("||").trim(),this.range},Q.prototype.toString=function(){return this.range},Q.prototype.parseRange=function(e){var t=this.options.loose;e=e.trim();var n=t?i[o.HYPHENRANGELOOSE]:i[o.HYPHENRANGE];e=e.replace(n,D),r("hyphen replace",e),e=e.replace(i[o.COMPARATORTRIM],"$1$2$3"),r("comparator trim",e,i[o.COMPARATORTRIM]),e=(e=(e=e.replace(i[o.TILDETRIM],"$1~")).replace(i[o.CARETTRIM],"$1^")).split(/\s+/).join(" ");var A=t?i[o.COMPARATORLOOSE]:i[o.COMPARATOR],s=e.split(" ").map((function(e){return function(e,t){return r("comp",e,t),e=function(e,t){return e.trim().split(/\s+/).map((function(e){return function(e,t){r("caret",e,t);var n=t.loose?i[o.CARETLOOSE]:i[o.CARET];return e.replace(n,(function(t,n,i,A,o){var s;return r("caret",e,t,n,i,A,o),b(n)?s="":b(i)?s=">="+n+".0.0 <"+(+n+1)+".0.0":b(A)?s="0"===n?">="+n+"."+i+".0 <"+n+"."+(+i+1)+".0":">="+n+"."+i+".0 <"+(+n+1)+".0.0":o?(r("replaceCaret pr",o),s="0"===n?"0"===i?">="+n+"."+i+"."+A+"-"+o+" <"+n+"."+i+"."+(+A+1):">="+n+"."+i+"."+A+"-"+o+" <"+n+"."+(+i+1)+".0":">="+n+"."+i+"."+A+"-"+o+" <"+(+n+1)+".0.0"):(r("no pr"),s="0"===n?"0"===i?">="+n+"."+i+"."+A+" <"+n+"."+i+"."+(+A+1):">="+n+"."+i+"."+A+" <"+n+"."+(+i+1)+".0":">="+n+"."+i+"."+A+" <"+(+n+1)+".0.0"),r("caret return",s),s}))}(e,t)})).join(" ")}(e,t),r("caret",e),e=function(e,t){return e.trim().split(/\s+/).map((function(e){return function(e,t){var n=t.loose?i[o.TILDELOOSE]:i[o.TILDE];return e.replace(n,(function(t,n,i,A,o){var s;return r("tilde",e,t,n,i,A,o),b(n)?s="":b(i)?s=">="+n+".0.0 <"+(+n+1)+".0.0":b(A)?s=">="+n+"."+i+".0 <"+n+"."+(+i+1)+".0":o?(r("replaceTilde pr",o),s=">="+n+"."+i+"."+A+"-"+o+" <"+n+"."+(+i+1)+".0"):s=">="+n+"."+i+"."+A+" <"+n+"."+(+i+1)+".0",r("tilde return",s),s}))}(e,t)})).join(" ")}(e,t),r("tildes",e),e=function(e,t){return r("replaceXRanges",e,t),e.split(/\s+/).map((function(e){return function(e,t){e=e.trim();var n=t.loose?i[o.XRANGELOOSE]:i[o.XRANGE];return e.replace(n,(function(n,i,A,o,s,a){r("xRange",e,n,i,A,o,s,a);var c=b(A),g=c||b(o),l=g||b(s),u=l;return"="===i&&u&&(i=""),a=t.includePrerelease?"-0":"",c?n=">"===i||"<"===i?"<0.0.0-0":"*":i&&u?(g&&(o=0),s=0,">"===i?(i=">=",g?(A=+A+1,o=0,s=0):(o=+o+1,s=0)):"<="===i&&(i="<",g?A=+A+1:o=+o+1),n=i+A+"."+o+"."+s+a):g?n=">="+A+".0.0"+a+" <"+(+A+1)+".0.0"+a:l&&(n=">="+A+"."+o+".0"+a+" <"+A+"."+(+o+1)+".0"+a),r("xRange return",n),n}))}(e,t)})).join(" ")}(e,t),r("xrange",e),e=function(e,t){return r("replaceStars",e,t),e.trim().replace(i[o.STAR],"")}(e,t),r("stars",e),e}(e,this.options)}),this).join(" ").split(/\s+/);return this.options.loose&&(s=s.filter((function(e){return!!e.match(A)}))),s=s.map((function(e){return new w(e,this.options)}),this)},Q.prototype.intersects=function(e,t){if(!(e instanceof Q))throw new TypeError("a Range is required");return this.set.some((function(r){return v(r,t)&&e.set.some((function(e){return v(e,t)&&r.every((function(r){return e.every((function(e){return r.intersects(e,t)}))}))}))}))},t.toComparators=function(e,t){return new Q(e,t).set.map((function(e){return e.map((function(e){return e.value})).join(" ").trim().split(" ")}))},Q.prototype.test=function(e){if(!e)return!1;if("string"==typeof e)try{e=new l(e,this.options)}catch(e){return!1}for(var t=0;t":0===t.prerelease.length?t.patch++:t.prerelease.push(0),t.raw=t.format();case"":case">=":r&&!p(r,t)||(r=t);break;case"<":case"<=":break;default:throw new Error("Unexpected operation: "+e.operator)}}))}if(r&&e.test(r))return r;return null},t.validRange=function(e,t){try{return new Q(e,t).range||"*"}catch(e){return null}},t.ltr=function(e,t,r){return M(e,t,"<",r)},t.gtr=function(e,t,r){return M(e,t,">",r)},t.outside=M,t.prerelease=function(e,t){var r=g(e,t);return r&&r.prerelease.length?r.prerelease:null},t.intersects=function(e,t,r){return e=new Q(e,r),t=new Q(t,r),e.intersects(t)},t.coerce=function(e,t){if(e instanceof l)return e;"number"==typeof e&&(e=String(e));if("string"!=typeof e)return null;var r=null;if((t=t||{}).rtl){for(var n;(n=i[o.COERCERTL].exec(e))&&(!r||r.index+r[0].length!==e.length);)r&&n.index+n[0].length===r.index+r[0].length||(r=n),i[o.COERCERTL].lastIndex=n.index+n[1].length+n[2].length;i[o.COERCERTL].lastIndex=-1}else r=e.match(i[o.COERCE]);if(null===r)return null;return g(r[2]+"."+(r[3]||"0")+"."+(r[4]||"0"),t)}},29069:(e,t,r)=>{const n=Symbol("SemVer ANY");class i{static get ANY(){return n}constructor(e,t){if(t&&"object"==typeof t||(t={loose:!!t,includePrerelease:!1}),e instanceof i){if(e.loose===!!t.loose)return e;e=e.value}a("comparator",e,t),this.options=t,this.loose=!!t.loose,this.parse(e),this.semver===n?this.value="":this.value=this.operator+this.semver.version,a("comp",this)}parse(e){const t=this.options.loose?A[o.COMPARATORLOOSE]:A[o.COMPARATOR],r=e.match(t);if(!r)throw new TypeError("Invalid comparator: "+e);this.operator=void 0!==r[1]?r[1]:"","="===this.operator&&(this.operator=""),r[2]?this.semver=new c(r[2],this.options.loose):this.semver=n}toString(){return this.value}test(e){if(a("Comparator.test",e,this.options.loose),this.semver===n||e===n)return!0;if("string"==typeof e)try{e=new c(e,this.options)}catch(e){return!1}return s(e,this.operator,this.semver,this.options)}intersects(e,t){if(!(e instanceof i))throw new TypeError("a Comparator is required");if(t&&"object"==typeof t||(t={loose:!!t,includePrerelease:!1}),""===this.operator)return""===this.value||new g(e.value,t).test(this.value);if(""===e.operator)return""===e.value||new g(this.value,t).test(e.semver);const r=!(">="!==this.operator&&">"!==this.operator||">="!==e.operator&&">"!==e.operator),n=!("<="!==this.operator&&"<"!==this.operator||"<="!==e.operator&&"<"!==e.operator),A=this.semver.version===e.semver.version,o=!(">="!==this.operator&&"<="!==this.operator||">="!==e.operator&&"<="!==e.operator),a=s(this.semver,"<",e.semver,t)&&(">="===this.operator||">"===this.operator)&&("<="===e.operator||"<"===e.operator),c=s(this.semver,">",e.semver,t)&&("<="===this.operator||"<"===this.operator)&&(">="===e.operator||">"===e.operator);return r||n||A&&o||a||c}}e.exports=i;const{re:A,t:o}=r(49439),s=r(38754),a=r(6029),c=r(14772),g=r(73004)},73004:(e,t,r)=>{class n{constructor(e,t){if(t&&"object"==typeof t||(t={loose:!!t,includePrerelease:!1}),e instanceof n)return e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease?e:new n(e.raw,t);if(e instanceof i)return this.raw=e.value,this.set=[[e]],this.format(),this;if(this.options=t,this.loose=!!t.loose,this.includePrerelease=!!t.includePrerelease,this.raw=e,this.set=e.split(/\s*\|\|\s*/).map(e=>this.parseRange(e.trim())).filter(e=>e.length),!this.set.length)throw new TypeError("Invalid SemVer Range: "+e);this.format()}format(){return this.range=this.set.map(e=>e.join(" ").trim()).join("||").trim(),this.range}toString(){return this.range}parseRange(e){const t=this.options.loose;e=e.trim();const r=t?s[a.HYPHENRANGELOOSE]:s[a.HYPHENRANGE];e=e.replace(r,y(this.options.includePrerelease)),A("hyphen replace",e),e=e.replace(s[a.COMPARATORTRIM],c),A("comparator trim",e,s[a.COMPARATORTRIM]),e=(e=(e=e.replace(s[a.TILDETRIM],g)).replace(s[a.CARETTRIM],l)).split(/\s+/).join(" ");const n=t?s[a.COMPARATORLOOSE]:s[a.COMPARATOR];return e.split(" ").map(e=>h(e,this.options)).join(" ").split(/\s+/).map(e=>w(e,this.options)).filter(this.options.loose?e=>!!e.match(n):()=>!0).map(e=>new i(e,this.options))}intersects(e,t){if(!(e instanceof n))throw new TypeError("a Range is required");return this.set.some(r=>u(r,t)&&e.set.some(e=>u(e,t)&&r.every(r=>e.every(e=>r.intersects(e,t)))))}test(e){if(!e)return!1;if("string"==typeof e)try{e=new o(e,this.options)}catch(e){return!1}for(let t=0;t{let r=!0;const n=e.slice();let i=n.pop();for(;r&&n.length;)r=n.every(e=>i.intersects(e,t)),i=n.pop();return r},h=(e,t)=>(A("comp",e,t),e=d(e,t),A("caret",e),e=p(e,t),A("tildes",e),e=E(e,t),A("xrange",e),e=B(e,t),A("stars",e),e),f=e=>!e||"x"===e.toLowerCase()||"*"===e,p=(e,t)=>e.trim().split(/\s+/).map(e=>C(e,t)).join(" "),C=(e,t)=>{const r=t.loose?s[a.TILDELOOSE]:s[a.TILDE];return e.replace(r,(t,r,n,i,o)=>{let s;return A("tilde",e,t,r,n,i,o),f(r)?s="":f(n)?s=`>=${r}.0.0 <${+r+1}.0.0-0`:f(i)?s=`>=${r}.${n}.0 <${r}.${+n+1}.0-0`:o?(A("replaceTilde pr",o),s=`>=${r}.${n}.${i}-${o} <${r}.${+n+1}.0-0`):s=`>=${r}.${n}.${i} <${r}.${+n+1}.0-0`,A("tilde return",s),s})},d=(e,t)=>e.trim().split(/\s+/).map(e=>I(e,t)).join(" "),I=(e,t)=>{A("caret",e,t);const r=t.loose?s[a.CARETLOOSE]:s[a.CARET],n=t.includePrerelease?"-0":"";return e.replace(r,(t,r,i,o,s)=>{let a;return A("caret",e,t,r,i,o,s),f(r)?a="":f(i)?a=`>=${r}.0.0${n} <${+r+1}.0.0-0`:f(o)?a="0"===r?`>=${r}.${i}.0${n} <${r}.${+i+1}.0-0`:`>=${r}.${i}.0${n} <${+r+1}.0.0-0`:s?(A("replaceCaret pr",s),a="0"===r?"0"===i?`>=${r}.${i}.${o}-${s} <${r}.${i}.${+o+1}-0`:`>=${r}.${i}.${o}-${s} <${r}.${+i+1}.0-0`:`>=${r}.${i}.${o}-${s} <${+r+1}.0.0-0`):(A("no pr"),a="0"===r?"0"===i?`>=${r}.${i}.${o}${n} <${r}.${i}.${+o+1}-0`:`>=${r}.${i}.${o}${n} <${r}.${+i+1}.0-0`:`>=${r}.${i}.${o} <${+r+1}.0.0-0`),A("caret return",a),a})},E=(e,t)=>(A("replaceXRanges",e,t),e.split(/\s+/).map(e=>m(e,t)).join(" ")),m=(e,t)=>{e=e.trim();const r=t.loose?s[a.XRANGELOOSE]:s[a.XRANGE];return e.replace(r,(r,n,i,o,s,a)=>{A("xRange",e,r,n,i,o,s,a);const c=f(i),g=c||f(o),l=g||f(s),u=l;return"="===n&&u&&(n=""),a=t.includePrerelease?"-0":"",c?r=">"===n||"<"===n?"<0.0.0-0":"*":n&&u?(g&&(o=0),s=0,">"===n?(n=">=",g?(i=+i+1,o=0,s=0):(o=+o+1,s=0)):"<="===n&&(n="<",g?i=+i+1:o=+o+1),"<"===n&&(a="-0"),r=`${n+i}.${o}.${s}${a}`):g?r=`>=${i}.0.0${a} <${+i+1}.0.0-0`:l&&(r=`>=${i}.${o}.0${a} <${i}.${+o+1}.0-0`),A("xRange return",r),r})},B=(e,t)=>(A("replaceStars",e,t),e.trim().replace(s[a.STAR],"")),w=(e,t)=>(A("replaceGTE0",e,t),e.trim().replace(s[t.includePrerelease?a.GTE0PRE:a.GTE0],"")),y=e=>(t,r,n,i,A,o,s,a,c,g,l,u,h)=>`${r=f(n)?"":f(i)?`>=${n}.0.0${e?"-0":""}`:f(A)?`>=${n}.${i}.0${e?"-0":""}`:o?">="+r:`>=${r}${e?"-0":""}`} ${a=f(c)?"":f(g)?`<${+c+1}.0.0-0`:f(l)?`<${c}.${+g+1}.0-0`:u?`<=${c}.${g}.${l}-${u}`:e?`<${c}.${g}.${+l+1}-0`:"<="+a}`.trim(),Q=(e,t,r)=>{for(let r=0;r0){const n=e[r].semver;if(n.major===t.major&&n.minor===t.minor&&n.patch===t.patch)return!0}return!1}return!0}},14772:(e,t,r)=>{const n=r(6029),{MAX_LENGTH:i,MAX_SAFE_INTEGER:A}=r(76483),{re:o,t:s}=r(49439),{compareIdentifiers:a}=r(99297);class c{constructor(e,t){if(t&&"object"==typeof t||(t={loose:!!t,includePrerelease:!1}),e instanceof c){if(e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease)return e;e=e.version}else if("string"!=typeof e)throw new TypeError("Invalid Version: "+e);if(e.length>i)throw new TypeError(`version is longer than ${i} characters`);n("SemVer",e,t),this.options=t,this.loose=!!t.loose,this.includePrerelease=!!t.includePrerelease;const r=e.trim().match(t.loose?o[s.LOOSE]:o[s.FULL]);if(!r)throw new TypeError("Invalid Version: "+e);if(this.raw=e,this.major=+r[1],this.minor=+r[2],this.patch=+r[3],this.major>A||this.major<0)throw new TypeError("Invalid major version");if(this.minor>A||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>A||this.patch<0)throw new TypeError("Invalid patch version");r[4]?this.prerelease=r[4].split(".").map(e=>{if(/^[0-9]+$/.test(e)){const t=+e;if(t>=0&&t=0;)"number"==typeof this.prerelease[e]&&(this.prerelease[e]++,e=-2);-1===e&&this.prerelease.push(0)}t&&(this.prerelease[0]===t?isNaN(this.prerelease[1])&&(this.prerelease=[t,0]):this.prerelease=[t,0]);break;default:throw new Error("invalid increment argument: "+e)}return this.format(),this.raw=this.version,this}}e.exports=c},31192:(e,t,r)=>{const n=r(21883);e.exports=(e,t)=>{const r=n(e.trim().replace(/^[=v]+/,""),t);return r?r.version:null}},38754:(e,t,r)=>{const n=r(78760),i=r(83286),A=r(26544),o=r(44984),s=r(65069),a=r(93845);e.exports=(e,t,r,c)=>{switch(t){case"===":return"object"==typeof e&&(e=e.version),"object"==typeof r&&(r=r.version),e===r;case"!==":return"object"==typeof e&&(e=e.version),"object"==typeof r&&(r=r.version),e!==r;case"":case"=":case"==":return n(e,r,c);case"!=":return i(e,r,c);case">":return A(e,r,c);case">=":return o(e,r,c);case"<":return s(e,r,c);case"<=":return a(e,r,c);default:throw new TypeError("Invalid operator: "+t)}}},38113:(e,t,r)=>{const n=r(14772),i=r(21883),{re:A,t:o}=r(49439);e.exports=(e,t)=>{if(e instanceof n)return e;if("number"==typeof e&&(e=String(e)),"string"!=typeof e)return null;let r=null;if((t=t||{}).rtl){let t;for(;(t=A[o.COERCERTL].exec(e))&&(!r||r.index+r[0].length!==e.length);)r&&t.index+t[0].length===r.index+r[0].length||(r=t),A[o.COERCERTL].lastIndex=t.index+t[1].length+t[2].length;A[o.COERCERTL].lastIndex=-1}else r=e.match(A[o.COERCE]);return null===r?null:i(`${r[2]}.${r[3]||"0"}.${r[4]||"0"}`,t)}},63353:(e,t,r)=>{const n=r(14772);e.exports=(e,t,r)=>{const i=new n(e,r),A=new n(t,r);return i.compare(A)||i.compareBuild(A)}},58566:(e,t,r)=>{const n=r(17340);e.exports=(e,t)=>n(e,t,!0)},17340:(e,t,r)=>{const n=r(14772);e.exports=(e,t,r)=>new n(e,r).compare(new n(t,r))},29301:(e,t,r)=>{const n=r(21883),i=r(78760);e.exports=(e,t)=>{if(i(e,t))return null;{const r=n(e),i=n(t),A=r.prerelease.length||i.prerelease.length,o=A?"pre":"",s=A?"prerelease":"";for(const e in r)if(("major"===e||"minor"===e||"patch"===e)&&r[e]!==i[e])return o+e;return s}}},78760:(e,t,r)=>{const n=r(17340);e.exports=(e,t,r)=>0===n(e,t,r)},26544:(e,t,r)=>{const n=r(17340);e.exports=(e,t,r)=>n(e,t,r)>0},44984:(e,t,r)=>{const n=r(17340);e.exports=(e,t,r)=>n(e,t,r)>=0},24063:(e,t,r)=>{const n=r(14772);e.exports=(e,t,r,i)=>{"string"==typeof r&&(i=r,r=void 0);try{return new n(e,r).inc(t,i).version}catch(e){return null}}},65069:(e,t,r)=>{const n=r(17340);e.exports=(e,t,r)=>n(e,t,r)<0},93845:(e,t,r)=>{const n=r(17340);e.exports=(e,t,r)=>n(e,t,r)<=0},75157:(e,t,r)=>{const n=r(14772);e.exports=(e,t)=>new n(e,t).major},5195:(e,t,r)=>{const n=r(14772);e.exports=(e,t)=>new n(e,t).minor},83286:(e,t,r)=>{const n=r(17340);e.exports=(e,t,r)=>0!==n(e,t,r)},21883:(e,t,r)=>{const{MAX_LENGTH:n}=r(76483),{re:i,t:A}=r(49439),o=r(14772);e.exports=(e,t)=>{if(t&&"object"==typeof t||(t={loose:!!t,includePrerelease:!1}),e instanceof o)return e;if("string"!=typeof e)return null;if(e.length>n)return null;if(!(t.loose?i[A.LOOSE]:i[A.FULL]).test(e))return null;try{return new o(e,t)}catch(e){return null}}},39592:(e,t,r)=>{const n=r(14772);e.exports=(e,t)=>new n(e,t).patch},27050:(e,t,r)=>{const n=r(21883);e.exports=(e,t)=>{const r=n(e,t);return r&&r.prerelease.length?r.prerelease:null}},93788:(e,t,r)=>{const n=r(17340);e.exports=(e,t,r)=>n(t,e,r)},15213:(e,t,r)=>{const n=r(63353);e.exports=(e,t)=>e.sort((e,r)=>n(r,e,t))},73011:(e,t,r)=>{const n=r(73004);e.exports=(e,t,r)=>{try{t=new n(t,r)}catch(e){return!1}return t.test(e)}},71102:(e,t,r)=>{const n=r(63353);e.exports=(e,t)=>e.sort((e,r)=>n(e,r,t))},99589:(e,t,r)=>{const n=r(21883);e.exports=(e,t)=>{const r=n(e,t);return r?r.version:null}},53887:(e,t,r)=>{const n=r(49439);e.exports={re:n.re,src:n.src,tokens:n.t,SEMVER_SPEC_VERSION:r(76483).SEMVER_SPEC_VERSION,SemVer:r(14772),compareIdentifiers:r(99297).compareIdentifiers,rcompareIdentifiers:r(99297).rcompareIdentifiers,parse:r(21883),valid:r(99589),clean:r(31192),inc:r(24063),diff:r(29301),major:r(75157),minor:r(5195),patch:r(39592),prerelease:r(27050),compare:r(17340),rcompare:r(93788),compareLoose:r(58566),compareBuild:r(63353),sort:r(71102),rsort:r(15213),gt:r(26544),lt:r(65069),eq:r(78760),neq:r(83286),gte:r(44984),lte:r(93845),cmp:r(38754),coerce:r(38113),Comparator:r(29069),Range:r(73004),satisfies:r(73011),toComparators:r(47753),maxSatisfying:r(1895),minSatisfying:r(33252),minVersion:r(4224),validRange:r(44315),outside:r(842),gtr:r(69258),ltr:r(36928),intersects:r(87395),simplifyRange:r(3530),subset:r(74264)}},76483:e=>{const t=Number.MAX_SAFE_INTEGER||9007199254740991;e.exports={SEMVER_SPEC_VERSION:"2.0.0",MAX_LENGTH:256,MAX_SAFE_INTEGER:t,MAX_SAFE_COMPONENT_LENGTH:16}},6029:e=>{const t="object"==typeof process&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?(...e)=>console.error("SEMVER",...e):()=>{};e.exports=t},99297:e=>{const t=/^[0-9]+$/,r=(e,r)=>{const n=t.test(e),i=t.test(r);return n&&i&&(e=+e,r=+r),e===r?0:n&&!i?-1:i&&!n?1:er(t,e)}},49439:(e,t,r)=>{const{MAX_SAFE_COMPONENT_LENGTH:n}=r(76483),i=r(6029),A=(t=e.exports={}).re=[],o=t.src=[],s=t.t={};let a=0;const c=(e,t,r)=>{const n=a++;i(n,t),s[e]=n,o[n]=t,A[n]=new RegExp(t,r?"g":void 0)};c("NUMERICIDENTIFIER","0|[1-9]\\d*"),c("NUMERICIDENTIFIERLOOSE","[0-9]+"),c("NONNUMERICIDENTIFIER","\\d*[a-zA-Z-][a-zA-Z0-9-]*"),c("MAINVERSION",`(${o[s.NUMERICIDENTIFIER]})\\.(${o[s.NUMERICIDENTIFIER]})\\.(${o[s.NUMERICIDENTIFIER]})`),c("MAINVERSIONLOOSE",`(${o[s.NUMERICIDENTIFIERLOOSE]})\\.(${o[s.NUMERICIDENTIFIERLOOSE]})\\.(${o[s.NUMERICIDENTIFIERLOOSE]})`),c("PRERELEASEIDENTIFIER",`(?:${o[s.NUMERICIDENTIFIER]}|${o[s.NONNUMERICIDENTIFIER]})`),c("PRERELEASEIDENTIFIERLOOSE",`(?:${o[s.NUMERICIDENTIFIERLOOSE]}|${o[s.NONNUMERICIDENTIFIER]})`),c("PRERELEASE",`(?:-(${o[s.PRERELEASEIDENTIFIER]}(?:\\.${o[s.PRERELEASEIDENTIFIER]})*))`),c("PRERELEASELOOSE",`(?:-?(${o[s.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${o[s.PRERELEASEIDENTIFIERLOOSE]})*))`),c("BUILDIDENTIFIER","[0-9A-Za-z-]+"),c("BUILD",`(?:\\+(${o[s.BUILDIDENTIFIER]}(?:\\.${o[s.BUILDIDENTIFIER]})*))`),c("FULLPLAIN",`v?${o[s.MAINVERSION]}${o[s.PRERELEASE]}?${o[s.BUILD]}?`),c("FULL",`^${o[s.FULLPLAIN]}$`),c("LOOSEPLAIN",`[v=\\s]*${o[s.MAINVERSIONLOOSE]}${o[s.PRERELEASELOOSE]}?${o[s.BUILD]}?`),c("LOOSE",`^${o[s.LOOSEPLAIN]}$`),c("GTLT","((?:<|>)?=?)"),c("XRANGEIDENTIFIERLOOSE",o[s.NUMERICIDENTIFIERLOOSE]+"|x|X|\\*"),c("XRANGEIDENTIFIER",o[s.NUMERICIDENTIFIER]+"|x|X|\\*"),c("XRANGEPLAIN",`[v=\\s]*(${o[s.XRANGEIDENTIFIER]})(?:\\.(${o[s.XRANGEIDENTIFIER]})(?:\\.(${o[s.XRANGEIDENTIFIER]})(?:${o[s.PRERELEASE]})?${o[s.BUILD]}?)?)?`),c("XRANGEPLAINLOOSE",`[v=\\s]*(${o[s.XRANGEIDENTIFIERLOOSE]})(?:\\.(${o[s.XRANGEIDENTIFIERLOOSE]})(?:\\.(${o[s.XRANGEIDENTIFIERLOOSE]})(?:${o[s.PRERELEASELOOSE]})?${o[s.BUILD]}?)?)?`),c("XRANGE",`^${o[s.GTLT]}\\s*${o[s.XRANGEPLAIN]}$`),c("XRANGELOOSE",`^${o[s.GTLT]}\\s*${o[s.XRANGEPLAINLOOSE]}$`),c("COERCE",`(^|[^\\d])(\\d{1,${n}})(?:\\.(\\d{1,${n}}))?(?:\\.(\\d{1,${n}}))?(?:$|[^\\d])`),c("COERCERTL",o[s.COERCE],!0),c("LONETILDE","(?:~>?)"),c("TILDETRIM",`(\\s*)${o[s.LONETILDE]}\\s+`,!0),t.tildeTrimReplace="$1~",c("TILDE",`^${o[s.LONETILDE]}${o[s.XRANGEPLAIN]}$`),c("TILDELOOSE",`^${o[s.LONETILDE]}${o[s.XRANGEPLAINLOOSE]}$`),c("LONECARET","(?:\\^)"),c("CARETTRIM",`(\\s*)${o[s.LONECARET]}\\s+`,!0),t.caretTrimReplace="$1^",c("CARET",`^${o[s.LONECARET]}${o[s.XRANGEPLAIN]}$`),c("CARETLOOSE",`^${o[s.LONECARET]}${o[s.XRANGEPLAINLOOSE]}$`),c("COMPARATORLOOSE",`^${o[s.GTLT]}\\s*(${o[s.LOOSEPLAIN]})$|^$`),c("COMPARATOR",`^${o[s.GTLT]}\\s*(${o[s.FULLPLAIN]})$|^$`),c("COMPARATORTRIM",`(\\s*)${o[s.GTLT]}\\s*(${o[s.LOOSEPLAIN]}|${o[s.XRANGEPLAIN]})`,!0),t.comparatorTrimReplace="$1$2$3",c("HYPHENRANGE",`^\\s*(${o[s.XRANGEPLAIN]})\\s+-\\s+(${o[s.XRANGEPLAIN]})\\s*$`),c("HYPHENRANGELOOSE",`^\\s*(${o[s.XRANGEPLAINLOOSE]})\\s+-\\s+(${o[s.XRANGEPLAINLOOSE]})\\s*$`),c("STAR","(<|>)?=?\\s*\\*"),c("GTE0","^\\s*>=\\s*0.0.0\\s*$"),c("GTE0PRE","^\\s*>=\\s*0.0.0-0\\s*$")},69258:(e,t,r)=>{const n=r(842);e.exports=(e,t,r)=>n(e,t,">",r)},87395:(e,t,r)=>{const n=r(73004);e.exports=(e,t,r)=>(e=new n(e,r),t=new n(t,r),e.intersects(t))},36928:(e,t,r)=>{const n=r(842);e.exports=(e,t,r)=>n(e,t,"<",r)},1895:(e,t,r)=>{const n=r(14772),i=r(73004);e.exports=(e,t,r)=>{let A=null,o=null,s=null;try{s=new i(t,r)}catch(e){return null}return e.forEach(e=>{s.test(e)&&(A&&-1!==o.compare(e)||(A=e,o=new n(A,r)))}),A}},33252:(e,t,r)=>{const n=r(14772),i=r(73004);e.exports=(e,t,r)=>{let A=null,o=null,s=null;try{s=new i(t,r)}catch(e){return null}return e.forEach(e=>{s.test(e)&&(A&&1!==o.compare(e)||(A=e,o=new n(A,r)))}),A}},4224:(e,t,r)=>{const n=r(14772),i=r(73004),A=r(26544);e.exports=(e,t)=>{e=new i(e,t);let r=new n("0.0.0");if(e.test(r))return r;if(r=new n("0.0.0-0"),e.test(r))return r;r=null;for(let t=0;t{const t=new n(e.semver.version);switch(e.operator){case">":0===t.prerelease.length?t.patch++:t.prerelease.push(0),t.raw=t.format();case"":case">=":r&&!A(r,t)||(r=t);break;case"<":case"<=":break;default:throw new Error("Unexpected operation: "+e.operator)}})}return r&&e.test(r)?r:null}},842:(e,t,r)=>{const n=r(14772),i=r(29069),{ANY:A}=i,o=r(73004),s=r(73011),a=r(26544),c=r(65069),g=r(93845),l=r(44984);e.exports=(e,t,r,u)=>{let h,f,p,C,d;switch(e=new n(e,u),t=new o(t,u),r){case">":h=a,f=g,p=c,C=">",d=">=";break;case"<":h=c,f=l,p=a,C="<",d="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(s(e,t,u))return!1;for(let r=0;r{e.semver===A&&(e=new i(">=0.0.0")),o=o||e,s=s||e,h(e.semver,o.semver,u)?o=e:p(e.semver,s.semver,u)&&(s=e)}),o.operator===C||o.operator===d)return!1;if((!s.operator||s.operator===C)&&f(e,s.semver))return!1;if(s.operator===d&&p(e,s.semver))return!1}return!0}},3530:(e,t,r)=>{const n=r(73011),i=r(17340);e.exports=(e,t,r)=>{const A=[];let o=null,s=null;const a=e.sort((e,t)=>i(e,t,r));for(const e of a){n(e,t,r)?(s=e,o||(o=e)):(s&&A.push([o,s]),s=null,o=null)}o&&A.push([o,null]);const c=[];for(const[e,t]of A)e===t?c.push(e):t||e!==a[0]?t?e===a[0]?c.push("<="+t):c.push(`${e} - ${t}`):c.push(">="+e):c.push("*");const g=c.join(" || "),l="string"==typeof t.raw?t.raw:String(t);return g.length{const n=r(73004),{ANY:i}=r(29069),A=r(73011),o=r(17340),s=(e,t,r)=>{if(1===e.length&&e[0].semver===i)return 1===t.length&&t[0].semver===i;const n=new Set;let s,g,l,u,h,f,p;for(const t of e)">"===t.operator||">="===t.operator?s=a(s,t,r):"<"===t.operator||"<="===t.operator?g=c(g,t,r):n.add(t.semver);if(n.size>1)return null;if(s&&g){if(l=o(s.semver,g.semver,r),l>0)return null;if(0===l&&(">="!==s.operator||"<="!==g.operator))return null}for(const e of n){if(s&&!A(e,String(s),r))return null;if(g&&!A(e,String(g),r))return null;for(const n of t)if(!A(e,String(n),r))return!1;return!0}for(const e of t){if(p=p||">"===e.operator||">="===e.operator,f=f||"<"===e.operator||"<="===e.operator,s)if(">"===e.operator||">="===e.operator){if(u=a(s,e,r),u===e)return!1}else if(">="===s.operator&&!A(s.semver,String(e),r))return!1;if(g)if("<"===e.operator||"<="===e.operator){if(h=c(g,e,r),h===e)return!1}else if("<="===g.operator&&!A(g.semver,String(e),r))return!1;if(!e.operator&&(g||s)&&0!==l)return!1}return!(s&&f&&!g&&0!==l)&&!(g&&p&&!s&&0!==l)},a=(e,t,r)=>{if(!e)return t;const n=o(e.semver,t.semver,r);return n>0?e:n<0||">"===t.operator&&">="===e.operator?t:e},c=(e,t,r)=>{if(!e)return t;const n=o(e.semver,t.semver,r);return n<0?e:n>0||"<"===t.operator&&"<="===e.operator?t:e};e.exports=(e,t,r)=>{e=new n(e,r),t=new n(t,r);let i=!1;e:for(const n of e.set){for(const e of t.set){const t=s(n,e,r);if(i=i||null!==t,t)continue e}if(i)return!1}return!0}},47753:(e,t,r)=>{const n=r(73004);e.exports=(e,t)=>new n(e,t).set.map(e=>e.map(e=>e.value).join(" ").trim().split(" "))},44315:(e,t,r)=>{const n=r(73004);e.exports=(e,t)=>{try{return new n(e,t).range||"*"}catch(e){return null}}},91470:(e,t,r)=>{"use strict";const n=r(67719);e.exports=(e="")=>{const t=e.match(n);if(!t)return null;const[r,i]=t[0].replace(/#! ?/,"").split(" "),A=r.split("/").pop();return"env"===A?i:i?`${A} ${i}`:A}},67719:e=>{"use strict";e.exports=/^#!(.*)/},17234:e=>{"use strict";e.exports=e=>{const t=/^\\\\\?\\/.test(e),r=/[^\u0000-\u0080]+/.test(e);return t||r?e:e.replace(/\\/g,"/")}},10129:(e,t,r)=>{"use strict";const n=r(76417),i=r(19184),A=r(92413).Transform,o=["sha256","sha384","sha512"],s=/^[a-z0-9+/]+(?:=?=?)$/i,a=/^([^-]+)-([^?]+)([?\S*]*)$/,c=/^([^-]+)-([A-Za-z0-9+/=]{44,88})(\?[\x21-\x7E]*)*$/,g=/^[\x21-\x7E]+$/,l=i({algorithms:{default:["sha512"]},error:{default:!1},integrity:{},options:{default:[]},pickAlgorithm:{default:()=>m},Promise:{default:()=>Promise},sep:{default:" "},single:{default:!1},size:{},strict:{default:!1}});class u{get isHash(){return!0}constructor(e,t){const r=!!(t=l(t)).strict;this.source=e.trim();const n=this.source.match(r?c:a);if(!n)return;if(r&&!o.some(e=>e===n[1]))return;this.algorithm=n[1],this.digest=n[2];const i=n[3];this.options=i?i.slice(1).split("?"):[]}hexDigest(){return this.digest&&Buffer.from(this.digest,"base64").toString("hex")}toJSON(){return this.toString()}toString(e){if((e=l(e)).strict&&!(o.some(e=>e===this.algorithm)&&this.digest.match(s)&&(this.options||[]).every(e=>e.match(g))))return"";const t=this.options&&this.options.length?"?"+this.options.join("?"):"";return`${this.algorithm}-${this.digest}${t}`}}class h{get isIntegrity(){return!0}toJSON(){return this.toString()}toString(e){let t=(e=l(e)).sep||" ";return e.strict&&(t=t.replace(/\S+/g," ")),Object.keys(this).map(r=>this[r].map(t=>u.prototype.toString.call(t,e)).filter(e=>e.length).join(t)).filter(e=>e.length).join(t)}concat(e,t){t=l(t);const r="string"==typeof e?e:C(e,t);return f(`${this.toString(t)} ${r}`,t)}hexDigest(){return f(this,{single:!0}).hexDigest()}match(e,t){const r=f(e,t=l(t)),n=r.pickAlgorithm(t);return this[n]&&r[n]&&this[n].find(e=>r[n].find(t=>e.digest===t.digest))||!1}pickAlgorithm(e){const t=(e=l(e)).pickAlgorithm,r=Object.keys(this);if(!r.length)throw new Error("No algorithms available for "+JSON.stringify(this.toString()));return r.reduce((e,r)=>t(e,r)||e)}}function f(e,t){if(t=l(t),"string"==typeof e)return p(e,t);if(e.algorithm&&e.digest){const r=new h;return r[e.algorithm]=[e],p(C(r,t),t)}return p(C(e,t),t)}function p(e,t){return t.single?new u(e,t):e.trim().split(/\s+/).reduce((e,r)=>{const n=new u(r,t);if(n.algorithm&&n.digest){const t=n.algorithm;e[t]||(e[t]=[]),e[t].push(n)}return e},new h)}function C(e,t){return t=l(t),e.algorithm&&e.digest?u.prototype.toString.call(e,t):"string"==typeof e?C(f(e,t),t):h.prototype.toString.call(e,t)}function d(e){const t=(e=l(e)).integrity&&f(e.integrity,e),r=t&&Object.keys(t).length,i=r&&t.pickAlgorithm(e),o=r&&t[i],s=Array.from(new Set(e.algorithms.concat(i?[i]:[]))),a=s.map(n.createHash);let c=0;const g=new A({transform(e,t,r){c+=e.length,a.forEach(r=>r.update(e,t)),r(null,e,t)}}).on("end",()=>{const n=e.options&&e.options.length?"?"+e.options.join("?"):"",A=f(a.map((e,t)=>`${s[t]}-${e.digest("base64")}${n}`).join(" "),e),l=r&&A.match(t,e);if("number"==typeof e.size&&c!==e.size){const r=new Error(`stream size mismatch when checking ${t}.\n Wanted: ${e.size}\n Found: ${c}`);r.code="EBADSIZE",r.found=c,r.expected=e.size,r.sri=t,g.emit("error",r)}else if(e.integrity&&!l){const e=new Error(`${t} integrity checksum failed when using ${i}: wanted ${o} but got ${A}. (${c} bytes)`);e.code="EINTEGRITY",e.found=A,e.expected=o,e.algorithm=i,e.sri=t,g.emit("error",e)}else g.emit("size",c),g.emit("integrity",A),l&&g.emit("verified",l)});return g}e.exports.Sd=function(e,t){const r=(t=l(t)).algorithms,i=t.options&&t.options.length?"?"+t.options.join("?"):"";return r.reduce((r,A)=>{const o=n.createHash(A).update(e).digest("base64"),s=new u(`${A}-${o}${i}`,t);if(s.algorithm&&s.digest){const e=s.algorithm;r[e]||(r[e]=[]),r[e].push(s)}return r},new h)};const I=new Set(n.getHashes()),E=["md5","whirlpool","sha1","sha224","sha256","sha384","sha512","sha3","sha3-256","sha3-384","sha3-512","sha3_256","sha3_384","sha3_512"].filter(e=>I.has(e));function m(e,t){return E.indexOf(e.toLowerCase())>=E.indexOf(t.toLowerCase())?e:t}},69538:(e,t,r)=>{"use strict";var n=r(13499).Buffer,i=n.isEncoding||function(e){switch((e=""+e)&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function A(e){var t;switch(this.encoding=function(e){var t=function(e){if(!e)return"utf8";for(var t;;)switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase(),t=!0}}(e);if("string"!=typeof t&&(n.isEncoding===i||!i(e)))throw new Error("Unknown encoding: "+e);return t||e}(e),this.encoding){case"utf16le":this.text=a,this.end=c,t=4;break;case"utf8":this.fillLast=s,t=4;break;case"base64":this.text=g,this.end=l,t=3;break;default:return this.write=u,void(this.end=h)}this.lastNeed=0,this.lastTotal=0,this.lastChar=n.allocUnsafe(t)}function o(e){return e<=127?0:e>>5==6?2:e>>4==14?3:e>>3==30?4:e>>6==2?-1:-2}function s(e){var t=this.lastTotal-this.lastNeed,r=function(e,t,r){if(128!=(192&t[0]))return e.lastNeed=0,"�";if(e.lastNeed>1&&t.length>1){if(128!=(192&t[1]))return e.lastNeed=1,"�";if(e.lastNeed>2&&t.length>2&&128!=(192&t[2]))return e.lastNeed=2,"�"}}(this,e);return void 0!==r?r:this.lastNeed<=e.length?(e.copy(this.lastChar,t,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(e.copy(this.lastChar,t,0,e.length),void(this.lastNeed-=e.length))}function a(e,t){if((e.length-t)%2==0){var r=e.toString("utf16le",t);if(r){var n=r.charCodeAt(r.length-1);if(n>=55296&&n<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=e[e.length-1],e.toString("utf16le",t,e.length-1)}function c(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,r)}return t}function g(e,t){var r=(e.length-t)%3;return 0===r?e.toString("base64",t):(this.lastNeed=3-r,this.lastTotal=3,1===r?this.lastChar[0]=e[e.length-1]:(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]),e.toString("base64",t,e.length-r))}function l(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+this.lastChar.toString("base64",0,3-this.lastNeed):t}function u(e){return e.toString(this.encoding)}function h(e){return e&&e.length?this.write(e):""}t.s=A,A.prototype.write=function(e){if(0===e.length)return"";var t,r;if(this.lastNeed){if(void 0===(t=this.fillLast(e)))return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r=0)return i>0&&(e.lastNeed=i-1),i;if(--n=0)return i>0&&(e.lastNeed=i-2),i;if(--n=0)return i>0&&(2===i?i=0:e.lastNeed=i-3),i;return 0}(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=r;var n=e.length-(r-this.lastNeed);return e.copy(this.lastChar,0,n),e.toString("utf8",t,n)},A.prototype.fillLast=function(e){if(this.lastNeed<=e.length)return e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,e.length),this.lastNeed-=e.length}},59428:(e,t,r)=>{"use strict";const n=r(12087),i=r(33867),A=r(72918),{env:o}=process;let s;function a(e){return 0!==e&&{level:e,hasBasic:!0,has256:e>=2,has16m:e>=3}}function c(e,t){if(0===s)return 0;if(A("color=16m")||A("color=full")||A("color=truecolor"))return 3;if(A("color=256"))return 2;if(e&&!t&&void 0===s)return 0;const r=s||0;if("dumb"===o.TERM)return r;if("win32"===process.platform){const e=n.release().split(".");return Number(e[0])>=10&&Number(e[2])>=10586?Number(e[2])>=14931?3:2:1}if("CI"in o)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI"].some(e=>e in o)||"codeship"===o.CI_NAME?1:r;if("TEAMCITY_VERSION"in o)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(o.TEAMCITY_VERSION)?1:0;if("GITHUB_ACTIONS"in o)return 1;if("truecolor"===o.COLORTERM)return 3;if("TERM_PROGRAM"in o){const e=parseInt((o.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(o.TERM_PROGRAM){case"iTerm.app":return e>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(o.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(o.TERM)||"COLORTERM"in o?1:r}A("no-color")||A("no-colors")||A("color=false")||A("color=never")?s=0:(A("color")||A("colors")||A("color=true")||A("color=always"))&&(s=1),"FORCE_COLOR"in o&&(s="true"===o.FORCE_COLOR?1:"false"===o.FORCE_COLOR?0:0===o.FORCE_COLOR.length?1:Math.min(parseInt(o.FORCE_COLOR,10),3)),e.exports={supportsColor:function(e){return a(c(e,e&&e.isTTY))},stdout:a(c(!0,i.isatty(1))),stderr:a(c(!0,i.isatty(2)))}},93255:e=>{"use strict";function t(e){return Array.prototype.slice.apply(e)}function r(e){this.status="pending",this._continuations=[],this._parent=null,this._paused=!1,e&&e.call(this,this._continueWith.bind(this),this._failWith.bind(this))}function n(e){return e&&"function"==typeof e.then}function i(e){return e}if(r.prototype={then:function(e,t){var i=r.unresolved()._setParent(this);if(this._isRejected()){if(this._paused)return this._continuations.push({promise:i,nextFn:e,catchFn:t}),i;if(t)try{var A=t(this._error);return n(A)?(this._chainPromiseData(A,i),i):r.resolve(A)._setParent(this)}catch(e){return r.reject(e)._setParent(this)}return r.reject(this._error)._setParent(this)}return this._continuations.push({promise:i,nextFn:e,catchFn:t}),this._runResolutions(),i},catch:function(e){if(this._isResolved())return r.resolve(this._data)._setParent(this);var t=r.unresolved()._setParent(this);return this._continuations.push({promise:t,catchFn:e}),this._runRejections(),t},finally:function(e){var t=!1;function r(r,A){if(!t){t=!0,e||(e=i);var o=e(r);return n(o)?o.then((function(){if(A)throw A;return r})):r}}return this.then((function(e){return r(e)})).catch((function(e){return r(null,e)}))},pause:function(){return this._paused=!0,this},resume:function(){var e=this._findFirstPaused();return e&&(e._paused=!1,e._runResolutions(),e._runRejections()),this},_findAncestry:function(){return this._continuations.reduce((function(e,t){if(t.promise){var r={promise:t.promise,children:t.promise._findAncestry()};e.push(r)}return e}),[])},_setParent:function(e){if(this._parent)throw new Error("parent already set");return this._parent=e,this},_continueWith:function(e){var t=this._findFirstPending();t&&(t._data=e,t._setResolved())},_findFirstPending:function(){return this._findFirstAncestor((function(e){return e._isPending&&e._isPending()}))},_findFirstPaused:function(){return this._findFirstAncestor((function(e){return e._paused}))},_findFirstAncestor:function(e){for(var t,r=this;r;)e(r)&&(t=r),r=r._parent;return t},_failWith:function(e){var t=this._findFirstPending();t&&(t._error=e,t._setRejected())},_takeContinuations:function(){return this._continuations.splice(0,this._continuations.length)},_runRejections:function(){if(!this._paused&&this._isRejected()){var e=this._error,t=this._takeContinuations(),r=this;t.forEach((function(t){if(t.catchFn)try{var n=t.catchFn(e);r._handleUserFunctionResult(n,t.promise)}catch(e){t.promise.reject(e)}else t.promise.reject(e)}))}},_runResolutions:function(){if(!this._paused&&this._isResolved()&&!this._isPending()){var e=this._takeContinuations();if(n(this._data))return this._handleWhenResolvedDataIsPromise(this._data);var t=this._data,r=this;e.forEach((function(e){if(e.nextFn)try{var n=e.nextFn(t);r._handleUserFunctionResult(n,e.promise)}catch(t){r._handleResolutionError(t,e)}else e.promise&&e.promise.resolve(t)}))}},_handleResolutionError:function(e,t){if(this._setRejected(),t.catchFn)try{return void t.catchFn(e)}catch(t){e=t}t.promise&&t.promise.reject(e)},_handleWhenResolvedDataIsPromise:function(e){var t=this;return e.then((function(e){t._data=e,t._runResolutions()})).catch((function(e){t._error=e,t._setRejected(),t._runRejections()}))},_handleUserFunctionResult:function(e,t){n(e)?this._chainPromiseData(e,t):t.resolve(e)},_chainPromiseData:function(e,t){e.then((function(e){t.resolve(e)})).catch((function(e){t.reject(e)}))},_setResolved:function(){this.status="resolved",this._paused||this._runResolutions()},_setRejected:function(){this.status="rejected",this._paused||this._runRejections()},_isPending:function(){return"pending"===this.status},_isResolved:function(){return"resolved"===this.status},_isRejected:function(){return"rejected"===this.status}},r.resolve=function(e){return new r((function(t,r){n(e)?e.then((function(e){t(e)})).catch((function(e){r(e)})):t(e)}))},r.reject=function(e){return new r((function(t,r){r(e)}))},r.unresolved=function(){return new r((function(e,t){this.resolve=e,this.reject=t}))},r.all=function(){var e=t(arguments);return Array.isArray(e[0])&&(e=e[0]),e.length?new r((function(t,n){var i=[],A=0,o=!1;e.forEach((function(s,a){r.resolve(s).then((function(r){i[a]=r,(A+=1)===e.length&&t(i)})).catch((function(e){!function(e){o||(o=!0,n(e))}(e)}))}))})):r.resolve([])},Promise===r)throw new Error("Please use SynchronousPromise.installGlobally() to install globally");var A=Promise;r.installGlobally=function(e){if(Promise===r)return e;var n=function(e){if(void 0===e||e.__patched)return e;var r=e;return(e=function(){r.apply(this,t(arguments))}).__patched=!0,e}(e);return Promise=r,n},r.uninstallGlobally=function(){Promise===r&&(Promise=A)},e.exports={SynchronousPromise:r}},75799:(e,t,r)=>{var n=r(31669),i=r(73975),A=r(77686),o=r(86897).Writable,s=r(86897).PassThrough,a=function(){},c=function(e){return(e&=511)&&512-e},g=function(e,t){this._parent=e,this.offset=t,s.call(this)};n.inherits(g,s),g.prototype.destroy=function(e){this._parent.destroy(e)};var l=function(e){if(!(this instanceof l))return new l(e);o.call(this,e),e=e||{},this._offset=0,this._buffer=i(),this._missing=0,this._partial=!1,this._onparse=a,this._header=null,this._stream=null,this._overflow=null,this._cb=null,this._locked=!1,this._destroyed=!1,this._pax=null,this._paxGlobal=null,this._gnuLongPath=null,this._gnuLongLinkPath=null;var t=this,r=t._buffer,n=function(){t._continue()},s=function(e){if(t._locked=!1,e)return t.destroy(e);t._stream||n()},u=function(){t._stream=null;var e=c(t._header.size);e?t._parse(e,h):t._parse(512,I),t._locked||n()},h=function(){t._buffer.consume(c(t._header.size)),t._parse(512,I),n()},f=function(){var e=t._header.size;t._paxGlobal=A.decodePax(r.slice(0,e)),r.consume(e),u()},p=function(){var e=t._header.size;t._pax=A.decodePax(r.slice(0,e)),t._paxGlobal&&(t._pax=Object.assign({},t._paxGlobal,t._pax)),r.consume(e),u()},C=function(){var n=t._header.size;this._gnuLongPath=A.decodeLongPath(r.slice(0,n),e.filenameEncoding),r.consume(n),u()},d=function(){var n=t._header.size;this._gnuLongLinkPath=A.decodeLongPath(r.slice(0,n),e.filenameEncoding),r.consume(n),u()},I=function(){var i,o=t._offset;try{i=t._header=A.decode(r.slice(0,512),e.filenameEncoding)}catch(e){t.emit("error",e)}return r.consume(512),i?"gnu-long-path"===i.type?(t._parse(i.size,C),void n()):"gnu-long-link-path"===i.type?(t._parse(i.size,d),void n()):"pax-global-header"===i.type?(t._parse(i.size,f),void n()):"pax-header"===i.type?(t._parse(i.size,p),void n()):(t._gnuLongPath&&(i.name=t._gnuLongPath,t._gnuLongPath=null),t._gnuLongLinkPath&&(i.linkname=t._gnuLongLinkPath,t._gnuLongLinkPath=null),t._pax&&(t._header=i=function(e,t){return t.path&&(e.name=t.path),t.linkpath&&(e.linkname=t.linkpath),t.size&&(e.size=parseInt(t.size,10)),e.pax=t,e}(i,t._pax),t._pax=null),t._locked=!0,i.size&&"directory"!==i.type?(t._stream=new g(t,o),t.emit("entry",i,t._stream,s),t._parse(i.size,u),void n()):(t._parse(512,I),void t.emit("entry",i,function(e,t){var r=new g(e,t);return r.end(),r}(t,o),s))):(t._parse(512,I),void n())};this._onheader=I,this._parse(512,I)};n.inherits(l,o),l.prototype.destroy=function(e){this._destroyed||(this._destroyed=!0,e&&this.emit("error",e),this.emit("close"),this._stream&&this._stream.emit("close"))},l.prototype._parse=function(e,t){this._destroyed||(this._offset+=e,this._missing=e,t===this._onheader&&(this._partial=!1),this._onparse=t)},l.prototype._continue=function(){if(!this._destroyed){var e=this._cb;this._cb=a,this._overflow?this._write(this._overflow,void 0,e):e()}},l.prototype._write=function(e,t,r){if(!this._destroyed){var n=this._stream,i=this._buffer,A=this._missing;if(e.length&&(this._partial=!0),e.lengthA&&(o=e.slice(A),e=e.slice(0,A)),n?n.end(e):i.append(e),this._overflow=o,this._onparse()}},l.prototype._final=function(e){if(this._partial)return this.destroy(new Error("Unexpected end of data"));e()},e.exports=l},77686:(e,t)=>{var r=Buffer.alloc,n="0".charCodeAt(0),i=parseInt("7777",8),A=function(e,t,r,n){for(;rt?"7777777777777777777".slice(0,t)+" ":"0000000000000000000".slice(0,t-e.length)+e+" "};var a=function(e,t,r){if(128&(e=e.slice(t,t+r))[t=0])return function(e){var t;if(128===e[0])t=!0;else{if(255!==e[0])return null;t=!1}for(var r=!1,n=[],i=e.length-1;i>0;i--){var A=e[i];t?n.push(A):r&&0===A?n.push(0):r?(r=!1,n.push(256-A)):n.push(255-A)}var o=0,s=n.length;for(i=0;i=o?o:i>=0||(i+=o)>=0?i:0);t=Math.pow(10,r)&&r++,t+r+e};t.decodeLongPath=function(e,t){return c(e,0,e.length,t)},t.encodePax=function(e){var t="";e.name&&(t+=g(" path="+e.name+"\n")),e.linkname&&(t+=g(" linkpath="+e.linkname+"\n"));var r=e.pax;if(r)for(var n in r)t+=g(" "+n+"="+r[n]+"\n");return Buffer.from(t)},t.decodePax=function(e){for(var t={};e.length;){for(var r=0;r100;){var c=A.indexOf("/");if(-1===c)return null;a+=a?"/"+A.slice(0,c):A.slice(0,c),A=A.slice(c+1)}return Buffer.byteLength(A)>100||Buffer.byteLength(a)>155||e.linkname&&Buffer.byteLength(e.linkname)>100?null:(t.write(A),t.write(s(e.mode&i,6),100),t.write(s(e.uid,6),108),t.write(s(e.gid,6),116),t.write(s(e.size,11),124),t.write(s(e.mtime.getTime()/1e3|0,11),136),t[156]=n+function(e){switch(e){case"file":return 0;case"link":return 1;case"symlink":return 2;case"character-device":return 3;case"block-device":return 4;case"directory":return 5;case"fifo":return 6;case"contiguous-file":return 7;case"pax-header":return 72}return 0}(e.type),e.linkname&&t.write(e.linkname,157),t.write("ustar\x0000",257),e.uname&&t.write(e.uname,265),e.gname&&t.write(e.gname,297),t.write(s(e.devmajor||0,6),329),t.write(s(e.devminor||0,6),337),a&&t.write(a,345),t.write(s(o(t),6),148),t)},t.decode=function(e,t){var r=0===e[156]?0:e[156]-n,i=c(e,0,100,t),A=a(e,100,8),s=a(e,108,8),g=a(e,116,8),l=a(e,124,12),u=a(e,136,12),h=function(e){switch(e){case 0:return"file";case 1:return"link";case 2:return"symlink";case 3:return"character-device";case 4:return"block-device";case 5:return"directory";case 6:return"fifo";case 7:return"contiguous-file";case 72:return"pax-header";case 55:return"pax-global-header";case 27:return"gnu-long-link-path";case 28:case 30:return"gnu-long-path"}return null}(r),f=0===e[157]?null:c(e,157,100,t),p=c(e,265,32),C=c(e,297,32),d=a(e,329,8),I=a(e,337,8);e[345]&&(i=c(e,345,155,t)+"/"+i),0===r&&i&&"/"===i[i.length-1]&&(r=5);var E=o(e);if(256===E)return null;if(E!==a(e,148,8))throw new Error("Invalid tar header. Maybe the tar is corrupted or it needs to be gunzipped?");return{name:i,mode:A,uid:s,gid:g,size:l,mtime:new Date(1e3*u),type:h,linkname:f,uname:p,gname:C,devmajor:d,devminor:I}}},59938:(e,t,r)=>{t.K=r(75799),t.P=r(72203)},72203:(e,t,r)=>{var n=r(13302),i=r(17067),A=r(85870),o=Buffer.alloc,s=r(86897).Readable,a=r(86897).Writable,c=r(24304).StringDecoder,g=r(77686),l=parseInt("755",8),u=parseInt("644",8),h=o(1024),f=function(){},p=function(e,t){(t&=511)&&e.push(h.slice(0,512-t))};var C=function(e){a.call(this),this.written=0,this._to=e,this._destroyed=!1};A(C,a),C.prototype._write=function(e,t,r){if(this.written+=e.length,this._to.push(e))return r();this._to._drain=r},C.prototype.destroy=function(){this._destroyed||(this._destroyed=!0,this.emit("close"))};var d=function(){a.call(this),this.linkname="",this._decoder=new c("utf-8"),this._destroyed=!1};A(d,a),d.prototype._write=function(e,t,r){this.linkname+=this._decoder.write(e),r()},d.prototype.destroy=function(){this._destroyed||(this._destroyed=!0,this.emit("close"))};var I=function(){a.call(this),this._destroyed=!1};A(I,a),I.prototype._write=function(e,t,r){r(new Error("No body allowed for this entry"))},I.prototype.destroy=function(){this._destroyed||(this._destroyed=!0,this.emit("close"))};var E=function(e){if(!(this instanceof E))return new E(e);s.call(this,e),this._drain=f,this._finalized=!1,this._finalizing=!1,this._destroyed=!1,this._stream=null};A(E,s),E.prototype.entry=function(e,t,r){if(this._stream)throw new Error("already piping an entry");if(!this._finalized&&!this._destroyed){"function"==typeof t&&(r=t,t=null),r||(r=f);var A=this;if(e.size&&"symlink"!==e.type||(e.size=0),e.type||(e.type=function(e){switch(e&n.S_IFMT){case n.S_IFBLK:return"block-device";case n.S_IFCHR:return"character-device";case n.S_IFDIR:return"directory";case n.S_IFIFO:return"fifo";case n.S_IFLNK:return"symlink"}return"file"}(e.mode)),e.mode||(e.mode="directory"===e.type?l:u),e.uid||(e.uid=0),e.gid||(e.gid=0),e.mtime||(e.mtime=new Date),"string"==typeof t&&(t=Buffer.from(t)),Buffer.isBuffer(t))return e.size=t.length,this._encode(e),this.push(t),p(A,e.size),process.nextTick(r),new I;if("symlink"===e.type&&!e.linkname){var o=new d;return i(o,(function(t){if(t)return A.destroy(),r(t);e.linkname=o.linkname,A._encode(e),r()})),o}if(this._encode(e),"file"!==e.type&&"contiguous-file"!==e.type)return process.nextTick(r),new I;var s=new C(this);return this._stream=s,i(s,(function(t){return A._stream=null,t?(A.destroy(),r(t)):s.written!==e.size?(A.destroy(),r(new Error("size mismatch"))):(p(A,e.size),A._finalizing&&A.finalize(),void r())})),s}},E.prototype.finalize=function(){this._stream?this._finalizing=!0:this._finalized||(this._finalized=!0,this.push(h),this.push(null))},E.prototype.destroy=function(e){this._destroyed||(this._destroyed=!0,e&&this.emit("error",e),this.emit("close"),this._stream&&this._stream.destroy&&this._stream.destroy())},E.prototype._encode=function(e){if(!e.pax){var t=g.encode(e);if(t)return void this.push(t)}this._encodePax(e)},E.prototype._encodePax=function(e){var t=g.encodePax({name:e.name,linkname:e.linkname,pax:e.pax}),r={name:"PaxHeader",mode:e.mode,uid:e.uid,gid:e.gid,size:t.length,mtime:e.mtime,type:"pax-header",linkname:e.linkname&&"PaxHeader",uname:e.uname,gname:e.gname,devmajor:e.devmajor,devminor:e.devminor};this.push(g.encode(r)),this.push(t),p(this,t.length),r.size=e.size,r.type=e.type,this.push(g.encode(r))},E.prototype._read=function(e){var t=this._drain;this._drain=f,t()},e.exports=E},84615:(e,t,r)=>{"use strict"; -/*! - * to-regex-range - * - * Copyright (c) 2015-present, Jon Schlinkert. - * Released under the MIT License. - */const n=r(59235),i=(e,t,r)=>{if(!1===n(e))throw new TypeError("toRegexRange: expected the first argument to be a number");if(void 0===t||e===t)return String(e);if(!1===n(t))throw new TypeError("toRegexRange: expected the second argument to be a number.");let A={relaxZeros:!0,...r};"boolean"==typeof A.strictZeros&&(A.relaxZeros=!1===A.strictZeros);let a=e+":"+t+"="+String(A.relaxZeros)+String(A.shorthand)+String(A.capture)+String(A.wrap);if(i.cache.hasOwnProperty(a))return i.cache[a].result;let c=Math.min(e,t),g=Math.max(e,t);if(1===Math.abs(c-g)){let r=e+"|"+t;return A.capture?`(${r})`:!1===A.wrap?r:`(?:${r})`}let l=f(e)||f(t),u={min:e,max:t,a:c,b:g},h=[],p=[];if(l&&(u.isPadded=l,u.maxLen=String(u.max).length),c<0){p=o(g<0?Math.abs(g):1,Math.abs(c),u,A),c=u.a=0}return g>=0&&(h=o(c,g,u,A)),u.negatives=p,u.positives=h,u.result=function(e,t,r){let n=s(e,t,"-",!1,r)||[],i=s(t,e,"",!1,r)||[],A=s(e,t,"-?",!0,r)||[];return n.concat(A).concat(i).join("|")}(p,h,A),!0===A.capture?u.result=`(${u.result})`:!1!==A.wrap&&h.length+p.length>1&&(u.result=`(?:${u.result})`),i.cache[a]=u,u.result};function A(e,t,r){if(e===t)return{pattern:e,count:[],digits:0};let n=function(e,t){let r=[];for(let n=0;n1&&i.count.pop(),i.count.push(a.count[0]),i.string=i.pattern+u(i.count),c=t+1)}return s}function s(e,t,r,n,i){let A=[];for(let i of e){let{string:e}=i;n||c(t,"string",e)||A.push(r+e),n&&c(t,"string",e)&&A.push(r+e)}return A}function a(e,t){return e>t?1:t>e?-1:0}function c(e,t,r){return e.some(e=>e[t]===r)}function g(e,t){return Number(String(e).slice(0,-t)+"9".repeat(t))}function l(e,t){return e-e%Math.pow(10,t)}function u(e){let[t=0,r=""]=e;return r||t>1?`{${t+(r?","+r:"")}}`:""}function h(e,t,r){return`[${e}${t-e==1?"":"-"}${t}]`}function f(e){return/^-?(0+)\d/.test(e)}function p(e,t,r){if(!t.isPadded)return e;let n=Math.abs(t.maxLen-String(e).length),i=!1!==r.relaxZeros;switch(n){case 0:return"";case 1:return i?"0?":"0";case 2:return i?"0{0,2}":"00";default:return i?`0{0,${n}}`:`0{${n}}`}}i.cache={},i.clearCache=()=>i.cache={},e.exports=i},75158:e=>{function t(e,t){var r=e.length,n=new Array(r),i={},A=r,o=function(e){for(var t=new Map,r=0,n=e.length;r0&&(i.forEach((function(e,t){t>0&&(g+=(e[1]?" ":"│")+" "),c||e[0]!==r||(c=!0)})),g+=function(e,t){var r=t?"└":"├";return r+=e?"─ ":"──┐"}(t,n)+t,A&&("object"!=typeof r||r instanceof Date)&&(g+=": "+r),c&&(g+=" (circular ref.)"),s(g)),!c&&"object"==typeof r){var h=function(e,t){var r=[];for(var n in e)e.hasOwnProperty(n)&&(t&&"function"==typeof e[n]||r.push(n));return r}(r,o);h.forEach((function(t){a=++l===h.length,e(t,r[t],a,u,A,o,s)}))}}var t={asLines:function(t,r,n,i){e(".",t,!1,[],r,"function"!=typeof n&&n,i||n)},asTree:function(t,r,n){var i="";return e(".",t,!1,[],r,n,(function(e){i+=e+"\n"})),i}};return t}()},36370:(e,t,r)=>{"use strict";r.d(t,{gn:()=>n});function n(e,t,r,n){var i,A=arguments.length,o=A<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(A<3?i(o):A>3?i(t,r,o):i(t,r))||o);return A>3&&o&&Object.defineProperty(t,r,o),o}},98161:(e,t,r)=>{e.exports=r(69876)},69876:(e,t,r)=>{"use strict";r(11631);var n,i=r(4016),A=r(98605),o=r(57211),s=r(28614),a=(r(42357),r(31669));function c(e){var t=this;t.options=e||{},t.proxyOptions=t.options.proxy||{},t.maxSockets=t.options.maxSockets||A.Agent.defaultMaxSockets,t.requests=[],t.sockets=[],t.on("free",(function(e,r,n,i){for(var A=l(r,n,i),o=0,s=t.requests.length;o=this.maxSockets?i.requests.push(A):i.createSocket(A,(function(t){function r(){i.emit("free",t,A)}function n(e){i.removeSocket(t),t.removeListener("free",r),t.removeListener("close",n),t.removeListener("agentRemove",n)}t.on("free",r),t.on("close",n),t.on("agentRemove",n),e.onSocket(t)}))},c.prototype.createSocket=function(e,t){var r=this,i={};r.sockets.push(i);var A=u({},r.proxyOptions,{method:"CONNECT",path:e.host+":"+e.port,agent:!1,headers:{host:e.host+":"+e.port}});e.localAddress&&(A.localAddress=e.localAddress),A.proxyAuth&&(A.headers=A.headers||{},A.headers["Proxy-Authorization"]="Basic "+new Buffer(A.proxyAuth).toString("base64")),n("making CONNECT request");var o=r.request(A);function s(A,s,a){var c;return o.removeAllListeners(),s.removeAllListeners(),200!==A.statusCode?(n("tunneling socket could not be established, statusCode=%d",A.statusCode),s.destroy(),(c=new Error("tunneling socket could not be established, statusCode="+A.statusCode)).code="ECONNRESET",e.request.emit("error",c),void r.removeSocket(i)):a.length>0?(n("got illegal response body from proxy"),s.destroy(),(c=new Error("got illegal response body from proxy")).code="ECONNRESET",e.request.emit("error",c),void r.removeSocket(i)):(n("tunneling connection has established"),r.sockets[r.sockets.indexOf(i)]=s,t(s))}o.useChunkedEncodingByDefault=!1,o.once("response",(function(e){e.upgrade=!0})),o.once("upgrade",(function(e,t,r){process.nextTick((function(){s(e,t,r)}))})),o.once("connect",s),o.once("error",(function(t){o.removeAllListeners(),n("tunneling socket could not be established, cause=%s\n",t.message,t.stack);var A=new Error("tunneling socket could not be established, cause="+t.message);A.code="ECONNRESET",e.request.emit("error",A),r.removeSocket(i)})),o.end()},c.prototype.removeSocket=function(e){var t=this.sockets.indexOf(e);if(-1!==t){this.sockets.splice(t,1);var r=this.requests.shift();r&&this.createSocket(r,(function(e){r.request.onSocket(e)}))}},n=process.env.NODE_DEBUG&&/\btunnel\b/.test(process.env.NODE_DEBUG)?function(){var e=Array.prototype.slice.call(arguments);"string"==typeof e[0]?e[0]="TUNNEL: "+e[0]:e.unshift("TUNNEL:"),console.error.apply(console,e)}:function(){},t.debug=n},5817:(e,t,r)=>{var n;e=r.nmd(e),function(){var r="object"==typeof self&&self.self===self&&self||"object"==typeof global&&global.global===global&&global||this||{},i=r._,A=Array.prototype,o=Object.prototype,s="undefined"!=typeof Symbol?Symbol.prototype:null,a=A.push,c=A.slice,g=o.toString,l=o.hasOwnProperty,u=Array.isArray,h=Object.keys,f=Object.create,p=function(){},C=function(e){return e instanceof C?e:this instanceof C?void(this._wrapped=e):new C(e)};t.nodeType?r._=C:(!e.nodeType&&e.exports&&(t=e.exports=C),t._=C),C.VERSION="1.9.1";var d,I=function(e,t,r){if(void 0===t)return e;switch(null==r?3:r){case 1:return function(r){return e.call(t,r)};case 3:return function(r,n,i){return e.call(t,r,n,i)};case 4:return function(r,n,i,A){return e.call(t,r,n,i,A)}}return function(){return e.apply(t,arguments)}},E=function(e,t,r){return C.iteratee!==d?C.iteratee(e,t):null==e?C.identity:C.isFunction(e)?I(e,t,r):C.isObject(e)&&!C.isArray(e)?C.matcher(e):C.property(e)};C.iteratee=d=function(e,t){return E(e,t,1/0)};var m=function(e,t){return t=null==t?e.length-1:+t,function(){for(var r=Math.max(arguments.length-t,0),n=Array(r),i=0;i=0&&t<=v};C.each=C.forEach=function(e,t,r){var n,i;if(t=I(t,r),D(e))for(n=0,i=e.length;n0?0:o-1;for(i||(n=t[A?A[s]:s],s+=e);s>=0&&s=3;return t(e,I(r,i,4),n,A)}};C.reduce=C.foldl=C.inject=S(1),C.reduceRight=C.foldr=S(-1),C.find=C.detect=function(e,t,r){var n=(D(e)?C.findIndex:C.findKey)(e,t,r);if(void 0!==n&&-1!==n)return e[n]},C.filter=C.select=function(e,t,r){var n=[];return t=E(t,r),C.each(e,(function(e,r,i){t(e,r,i)&&n.push(e)})),n},C.reject=function(e,t,r){return C.filter(e,C.negate(E(t)),r)},C.every=C.all=function(e,t,r){t=E(t,r);for(var n=!D(e)&&C.keys(e),i=(n||e).length,A=0;A=0},C.invoke=m((function(e,t,r){var n,i;return C.isFunction(t)?i=t:C.isArray(t)&&(n=t.slice(0,-1),t=t[t.length-1]),C.map(e,(function(e){var A=i;if(!A){if(n&&n.length&&(e=Q(e,n)),null==e)return;A=e[t]}return null==A?A:A.apply(e,r)}))})),C.pluck=function(e,t){return C.map(e,C.property(t))},C.where=function(e,t){return C.filter(e,C.matcher(t))},C.findWhere=function(e,t){return C.find(e,C.matcher(t))},C.max=function(e,t,r){var n,i,A=-1/0,o=-1/0;if(null==t||"number"==typeof t&&"object"!=typeof e[0]&&null!=e)for(var s=0,a=(e=D(e)?e:C.values(e)).length;sA&&(A=n);else t=E(t,r),C.each(e,(function(e,r,n){((i=t(e,r,n))>o||i===-1/0&&A===-1/0)&&(A=e,o=i)}));return A},C.min=function(e,t,r){var n,i,A=1/0,o=1/0;if(null==t||"number"==typeof t&&"object"!=typeof e[0]&&null!=e)for(var s=0,a=(e=D(e)?e:C.values(e)).length;sn||void 0===r)return 1;if(r0?0:i-1;A>=0&&A0?o=A>=0?A:Math.max(A+s,o):s=A>=0?Math.min(A+1,s):A+s+1;else if(r&&A&&s)return n[A=r(n,i)]===i?A:-1;if(i!=i)return(A=t(c.call(n,o,s),C.isNaN))>=0?A+o:-1;for(A=e>0?o:s-1;A>=0&&At?(n&&(clearTimeout(n),n=null),s=c,o=e.apply(i,A),n||(i=A=null)):n||!1===r.trailing||(n=setTimeout(a,g)),o};return c.cancel=function(){clearTimeout(n),s=0,n=i=A=null},c},C.debounce=function(e,t,r){var n,i,A=function(t,r){n=null,r&&(i=e.apply(t,r))},o=m((function(o){if(n&&clearTimeout(n),r){var s=!n;n=setTimeout(A,t),s&&(i=e.apply(this,o))}else n=C.delay(A,t,this,o);return i}));return o.cancel=function(){clearTimeout(n),n=null},o},C.wrap=function(e,t){return C.partial(t,e)},C.negate=function(e){return function(){return!e.apply(this,arguments)}},C.compose=function(){var e=arguments,t=e.length-1;return function(){for(var r=t,n=e[t].apply(this,arguments);r--;)n=e[r].call(this,n);return n}},C.after=function(e,t){return function(){if(--e<1)return t.apply(this,arguments)}},C.before=function(e,t){var r;return function(){return--e>0&&(r=t.apply(this,arguments)),e<=1&&(t=null),r}},C.once=C.partial(C.before,2),C.restArguments=m;var x=!{toString:null}.propertyIsEnumerable("toString"),L=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],P=function(e,t){var r=L.length,n=e.constructor,i=C.isFunction(n)&&n.prototype||o,A="constructor";for(y(e,A)&&!C.contains(t,A)&&t.push(A);r--;)(A=L[r])in e&&e[A]!==i[A]&&!C.contains(t,A)&&t.push(A)};C.keys=function(e){if(!C.isObject(e))return[];if(h)return h(e);var t=[];for(var r in e)y(e,r)&&t.push(r);return x&&P(e,t),t},C.allKeys=function(e){if(!C.isObject(e))return[];var t=[];for(var r in e)t.push(r);return x&&P(e,t),t},C.values=function(e){for(var t=C.keys(e),r=t.length,n=Array(r),i=0;i1&&(n=I(n,t[1])),t=C.allKeys(e)):(n=j,t=F(t,!1,!1),e=Object(e));for(var i=0,A=t.length;i1&&(r=t[1])):(t=C.map(F(t,!1,!1),String),n=function(e,r){return!C.contains(t,r)}),C.pick(e,n,r)})),C.defaults=U(C.allKeys,!0),C.create=function(e,t){var r=B(e);return t&&C.extendOwn(r,t),r},C.clone=function(e){return C.isObject(e)?C.isArray(e)?e.slice():C.extend({},e):e},C.tap=function(e,t){return t(e),e},C.isMatch=function(e,t){var r=C.keys(t),n=r.length;if(null==e)return!n;for(var i=Object(e),A=0;A":">",'"':""","'":"'","`":"`"},_=C.invert(G),H=function(e){var t=function(t){return e[t]},r="(?:"+C.keys(e).join("|")+")",n=RegExp(r),i=RegExp(r,"g");return function(e){return e=null==e?"":""+e,n.test(e)?e.replace(i,t):e}};C.escape=H(G),C.unescape=H(_),C.result=function(e,t,r){C.isArray(t)||(t=[t]);var n=t.length;if(!n)return C.isFunction(r)?r.call(e):r;for(var i=0;i/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var q=/(.)^/,z={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},W=/\\|'|\r|\n|\u2028|\u2029/g,V=function(e){return"\\"+z[e]};C.template=function(e,t,r){!t&&r&&(t=r),t=C.defaults({},t,C.templateSettings);var n,i=RegExp([(t.escape||q).source,(t.interpolate||q).source,(t.evaluate||q).source].join("|")+"|$","g"),A=0,o="__p+='";e.replace(i,(function(t,r,n,i,s){return o+=e.slice(A,s).replace(W,V),A=s+t.length,r?o+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'":n?o+="'+\n((__t=("+n+"))==null?'':__t)+\n'":i&&(o+="';\n"+i+"\n__p+='"),t})),o+="';\n",t.variable||(o="with(obj||{}){\n"+o+"}\n"),o="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+o+"return __p;\n";try{n=new Function(t.variable||"obj","_",o)}catch(e){throw e.source=o,e}var s=function(e){return n.call(this,e,C)},a=t.variable||"obj";return s.source="function("+a+"){\n"+o+"}",s},C.chain=function(e){var t=C(e);return t._chain=!0,t};var X=function(e,t){return e._chain?C(t).chain():t};C.mixin=function(e){return C.each(C.functions(e),(function(t){var r=C[t]=e[t];C.prototype[t]=function(){var e=[this._wrapped];return a.apply(e,arguments),X(this,r.apply(C,e))}})),C},C.mixin(C),C.each(["pop","push","reverse","shift","sort","splice","unshift"],(function(e){var t=A[e];C.prototype[e]=function(){var r=this._wrapped;return t.apply(r,arguments),"shift"!==e&&"splice"!==e||0!==r.length||delete r[0],X(this,r)}})),C.each(["concat","join","slice"],(function(e){var t=A[e];C.prototype[e]=function(){return X(this,t.apply(this._wrapped,arguments))}})),C.prototype.value=function(){return this._wrapped},C.prototype.valueOf=C.prototype.toJSON=C.prototype.value,C.prototype.toString=function(){return String(this._wrapped)},void 0===(n=function(){return C}.apply(t,[]))||(e.exports=n)}()},73212:(e,t,r)=>{e.exports=r(31669).deprecate},87945:(e,t,r)=>{const n="win32"===process.platform||"cygwin"===process.env.OSTYPE||"msys"===process.env.OSTYPE,i=r(85622),A=n?";":":",o=r(64151),s=e=>Object.assign(new Error("not found: "+e),{code:"ENOENT"}),a=(e,t)=>{const r=t.colon||A,i=e.match(/\//)||n&&e.match(/\\/)?[""]:[...n?[process.cwd()]:[],...(t.path||process.env.PATH||"").split(r)],o=n?t.pathExt||process.env.PATHEXT||".EXE;.CMD;.BAT;.COM":"",s=n?o.split(r):[""];return n&&-1!==e.indexOf(".")&&""!==s[0]&&s.unshift(""),{pathEnv:i,pathExt:s,pathExtExe:o}},c=(e,t,r)=>{"function"==typeof t&&(r=t,t={}),t||(t={});const{pathEnv:n,pathExt:A,pathExtExe:c}=a(e,t),g=[],l=r=>new Promise((A,o)=>{if(r===n.length)return t.all&&g.length?A(g):o(s(e));const a=n[r],c=/^".*"$/.test(a)?a.slice(1,-1):a,l=i.join(c,e),h=!c&&/^\.[\\\/]/.test(e)?e.slice(0,2)+l:l;A(u(h,r,0))}),u=(e,r,n)=>new Promise((i,s)=>{if(n===A.length)return i(l(r+1));const a=A[n];o(e+a,{pathExt:c},(A,o)=>{if(!A&&o){if(!t.all)return i(e+a);g.push(e+a)}return i(u(e,r,n+1))})});return r?l(0).then(e=>r(null,e),r):l(0)};e.exports=c,c.sync=(e,t)=>{t=t||{};const{pathEnv:r,pathExt:n,pathExtExe:A}=a(e,t),c=[];for(let s=0;s{e.exports=function e(t,r){if(t&&r)return e(t)(r);if("function"!=typeof t)throw new TypeError("need wrapper function");return Object.keys(t).forEach((function(e){n[e]=t[e]})),n;function n(){for(var e=new Array(arguments.length),r=0;r{"use strict";var n=r(60087);t.__esModule=!0,t.default=void 0;var i=n(r(15215)),A=n(r(11050)),o=function(){function e(e,t){if(this.refs=e,"function"!=typeof t){if(!(0,i.default)(t,"is"))throw new TypeError("`is:` is required for `when()` conditions");if(!t.then&&!t.otherwise)throw new TypeError("either `then:` or `otherwise:` is required for `when()` conditions");var r=t.is,n=t.then,A=t.otherwise,o="function"==typeof r?r:function(){for(var e=arguments.length,t=new Array(e),n=0;n{"use strict";var n=r(60087);t.__esModule=!0,t.default=void 0;var i=n(r(11050)),A=function(){function e(e){this._resolve=function(t,r){var n=e(t,r);if(!(0,i.default)(n))throw new TypeError("lazy() functions must return a valid schema");return n.resolve(r)}}var t=e.prototype;return t.resolve=function(e){return this._resolve(e.value,e)},t.cast=function(e,t){return this._resolve(e,t).cast(e,t)},t.validate=function(e,t){return this._resolve(e,t).validate(e,t)},t.validateSync=function(e,t){return this._resolve(e,t).validateSync(e,t)},t.validateAt=function(e,t,r){return this._resolve(t,r).validateAt(e,t,r)},t.validateSyncAt=function(e,t,r){return this._resolve(t,r).validateSyncAt(e,t,r)},e}();A.prototype.__isYupSchema__=!0;var o=A;t.default=o,e.exports=t.default},95814:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.default=void 0;var i=n(r(72912)),A=r(79588),o="$",s=".",a=function(){function e(e,t){if(void 0===t&&(t={}),"string"!=typeof e)throw new TypeError("ref must be a string, got: "+e);if(this.key=e.trim(),""===e)throw new TypeError("ref must be a non-empty string");this.isContext=this.key[0]===o,this.isValue=this.key[0]===s,this.isSibling=!this.isContext&&!this.isValue;var r=this.isContext?o:this.isValue?s:"";this.path=this.key.slice(r.length),this.getter=this.path&&(0,A.getter)(this.path,!0),this.map=t.map}var t=e.prototype;return t.getValue=function(e){var t=this.isContext?e.context:this.isValue?e.value:e.parent;return this.getter&&(t=this.getter(t||{})),this.map&&(t=this.map(t)),t},t.cast=function(e,t){return this.getValue((0,i.default)({},t,{value:e}))},t.resolve=function(){return this},t.describe=function(){return{type:"ref",key:this.key}},t.toString=function(){return"Ref("+this.key+")"},e.isRef=function(e){return e&&e.__isYupRef},e}();t.default=a,a.prototype.__isYupRef=!0,e.exports=t.default},40828:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.default=s;var i=n(r(21043)),A=/\$\{\s*(\w+)\s*\}/g,o=function(e){return function(t){return e.replace(A,(function(e,r){return(0,i.default)(t[r])}))}};function s(e,t,r,n){var i=this;this.name="ValidationError",this.value=t,this.path=r,this.type=n,this.errors=[],this.inner=[],e&&[].concat(e).forEach((function(e){i.errors=i.errors.concat(e.errors||e),e.inner&&(i.inner=i.inner.concat(e.inner.length?e.inner:e))})),this.message=this.errors.length>1?this.errors.length+" errors occurred":this.errors[0],Error.captureStackTrace&&Error.captureStackTrace(this,s)}s.prototype=Object.create(Error.prototype),s.prototype.constructor=s,s.isError=function(e){return e&&"ValidationError"===e.name},s.formatError=function(e,t){"string"==typeof e&&(e=o(e));var r=function(t){return t.path=t.label||t.path||"this","function"==typeof e?e(t):e};return 1===arguments.length?r:r(t)},e.exports=t.default},18830:(e,t,r)=>{"use strict";var n=r(19228),i=r(60087);t.__esModule=!0,t.default=void 0;var A=i(r(72912)),o=i(r(62407)),s=i(r(31490)),a=i(r(71665)),c=i(r(11050)),g=i(r(7045)),l=i(r(21043)),u=i(r(16434)),h=r(63802),f=n(r(80180));function p(){var e=(0,o.default)(["","[","]"]);return p=function(){return e},e}var C=d;function d(e){var t=this;if(!(this instanceof d))return new d(e);u.default.call(this,{type:"array"}),this._subType=void 0,this.withMutation((function(){t.transform((function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(t){e=null}return this.isType(e)?e:null})),e&&t.of(e)}))}t.default=C,(0,s.default)(d,u.default,{_typeCheck:function(e){return Array.isArray(e)},_cast:function(e,t){var r=this,n=u.default.prototype._cast.call(this,e,t);if(!this._typeCheck(n)||!this._subType)return n;var i=!1,A=n.map((function(e){var n=r._subType.cast(e,t);return n!==e&&(i=!0),n}));return i?A:n},_validate:function(e,t){var r=this;void 0===t&&(t={});var n=[],i=t.sync,o=t.path,s=this._subType,a=this._option("abortEarly",t),c=this._option("recursive",t),l=null!=t.originalValue?t.originalValue:e;return u.default.prototype._validate.call(this,e,t).catch((0,f.propagateErrors)(a,n)).then((function(e){if(!c||!s||!r._typeCheck(e)){if(n.length)throw n[0];return e}l=l||e;var u=e.map((function(r,n){var i=(0,g.default)(p(),t.path,n),o=(0,A.default)({},t,{path:i,strict:!0,parent:e,originalValue:l[n]});return!s.validate||s.validate(r,o)}));return(0,f.default)({sync:i,path:o,value:e,errors:n,endEarly:a,validations:u})}))},_isPresent:function(e){return u.default.prototype._cast.call(this,e)&&e.length>0},of:function(e){var t=this.clone();if(!1!==e&&!(0,c.default)(e))throw new TypeError("`array.of()` sub-schema must be a valid yup schema, or `false` to negate a current sub-schema. not: "+(0,l.default)(e));return t._subType=e,t},min:function(e,t){return t=t||h.array.min,this.test({message:t,name:"min",exclusive:!0,params:{min:e},test:function(t){return(0,a.default)(t)||t.length>=this.resolve(e)}})},max:function(e,t){return t=t||h.array.max,this.test({message:t,name:"max",exclusive:!0,params:{max:e},test:function(t){return(0,a.default)(t)||t.length<=this.resolve(e)}})},ensure:function(){var e=this;return this.default((function(){return[]})).transform((function(t){return e.isType(t)?t:null===t?[]:[].concat(t)}))},compact:function(e){var t=e?function(t,r,n){return!e(t,r,n)}:function(e){return!!e};return this.transform((function(e){return null!=e?e.filter(t):e}))},describe:function(){var e=u.default.prototype.describe.call(this);return this._subType&&(e.innerType=this._subType.describe()),e}}),e.exports=t.default},76595:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.default=void 0;var i=n(r(31490)),A=n(r(16434)),o=s;function s(){var e=this;if(!(this instanceof s))return new s;A.default.call(this,{type:"boolean"}),this.withMutation((function(){e.transform((function(e){if(!this.isType(e)){if(/^(true|1)$/i.test(e))return!0;if(/^(false|0)$/i.test(e))return!1}return e}))}))}t.default=o,(0,i.default)(s,A.default,{_typeCheck:function(e){return e instanceof Boolean&&(e=e.valueOf()),"boolean"==typeof e}}),e.exports=t.default},41755:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.default=void 0;var i=n(r(16434)),A=n(r(31490)),o=n(r(76813)),s=r(63802),a=n(r(71665)),c=n(r(95814)),g=new Date(""),l=u;function u(){var e=this;if(!(this instanceof u))return new u;i.default.call(this,{type:"date"}),this.withMutation((function(){e.transform((function(e){return this.isType(e)?e:(e=(0,o.default)(e))?new Date(e):g}))}))}t.default=l,(0,A.default)(u,i.default,{_typeCheck:function(e){return t=e,"[object Date]"===Object.prototype.toString.call(t)&&!isNaN(e.getTime());var t},min:function(e,t){void 0===t&&(t=s.date.min);var r=e;if(!c.default.isRef(r)&&(r=this.cast(e),!this._typeCheck(r)))throw new TypeError("`min` must be a Date or a value that can be `cast()` to a Date");return this.test({message:t,name:"min",exclusive:!0,params:{min:e},test:function(e){return(0,a.default)(e)||e>=this.resolve(r)}})},max:function(e,t){void 0===t&&(t=s.date.max);var r=e;if(!c.default.isRef(r)&&(r=this.cast(e),!this._typeCheck(r)))throw new TypeError("`max` must be a Date or a value that can be `cast()` to a Date");return this.test({message:t,name:"max",exclusive:!0,params:{max:e},test:function(e){return(0,a.default)(e)||e<=this.resolve(r)}})}}),e.exports=t.default},15966:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.addMethod=function(e,t,r){if(!e||!(0,p.default)(e.prototype))throw new TypeError("You must provide a yup schema constructor function");if("string"!=typeof t)throw new TypeError("A Method name must be provided");if("function"!=typeof r)throw new TypeError("Method function must be provided");e.prototype[t]=r},t.lazy=t.ref=t.boolean=void 0;var i=n(r(16434));t.mixed=i.default;var A=n(r(76595));t.bool=A.default;var o=n(r(45167));t.string=o.default;var s=n(r(72068));t.number=s.default;var a=n(r(41755));t.date=a.default;var c=n(r(51727));t.object=c.default;var g=n(r(18830));t.array=g.default;var l=n(r(95814)),u=n(r(6856)),h=n(r(40828));t.ValidationError=h.default;var f=n(r(43910));t.reach=f.default;var p=n(r(11050));t.isSchema=p.default;var C=n(r(24280));t.setLocale=C.default;var d=A.default;t.boolean=d;t.ref=function(e,t){return new l.default(e,t)};t.lazy=function(e){return new u.default(e)}},63802:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.default=t.array=t.object=t.boolean=t.date=t.number=t.string=t.mixed=void 0;var i=n(r(21043)),A={default:"${path} is invalid",required:"${path} is a required field",oneOf:"${path} must be one of the following values: ${values}",notOneOf:"${path} must not be one of the following values: ${values}",notType:function(e){var t=e.path,r=e.type,n=e.value,A=e.originalValue,o=null!=A&&A!==n,s=t+" must be a `"+r+"` type, but the final value was: `"+(0,i.default)(n,!0)+"`"+(o?" (cast from the value `"+(0,i.default)(A,!0)+"`).":".");return null===n&&(s+='\n If "null" is intended as an empty value be sure to mark the schema as `.nullable()`'),s}};t.mixed=A;var o={length:"${path} must be exactly ${length} characters",min:"${path} must be at least ${min} characters",max:"${path} must be at most ${max} characters",matches:'${path} must match the following: "${regex}"',email:"${path} must be a valid email",url:"${path} must be a valid URL",trim:"${path} must be a trimmed string",lowercase:"${path} must be a lowercase string",uppercase:"${path} must be a upper case string"};t.string=o;var s={min:"${path} must be greater than or equal to ${min}",max:"${path} must be less than or equal to ${max}",lessThan:"${path} must be less than ${less}",moreThan:"${path} must be greater than ${more}",notEqual:"${path} must be not equal to ${notEqual}",positive:"${path} must be a positive number",negative:"${path} must be a negative number",integer:"${path} must be an integer"};t.number=s;var a={min:"${path} field must be later than ${min}",max:"${path} field must be at earlier than ${max}"};t.date=a;var c={};t.boolean=c;var g={noUnknown:"${path} field cannot have keys not specified in the object shape"};t.object=g;var l={min:"${path} field must have at least ${min} items",max:"${path} field must have less than or equal to ${max} items"};t.array=l;var u={mixed:A,string:o,number:s,date:a,object:g,array:l,boolean:c};t.default=u},16434:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.default=I;var i=n(r(72912)),A=n(r(15215)),o=n(r(26052)),s=n(r(78700)),a=r(63802),c=n(r(94916)),g=n(r(80180)),l=n(r(22808)),u=n(r(11050)),h=n(r(54107)),f=n(r(21043)),p=n(r(95814)),C=r(43910),d=function(){function e(){this.list=new Set,this.refs=new Map}var t=e.prototype;return t.toArray=function(){return(0,s.default)(this.list).concat((0,s.default)(this.refs.values()))},t.add=function(e){p.default.isRef(e)?this.refs.set(e.key,e):this.list.add(e)},t.delete=function(e){p.default.isRef(e)?this.refs.delete(e.key,e):this.list.delete(e)},t.has=function(e,t){if(this.list.has(e))return!0;for(var r,n=this.refs.values();!(r=n.next()).done;)if(t(r.value)===e)return!0;return!1},e}();function I(e){var t=this;if(void 0===e&&(e={}),!(this instanceof I))return new I;this._deps=[],this._conditions=[],this._options={abortEarly:!0,recursive:!0},this._exclusive=Object.create(null),this._whitelist=new d,this._blacklist=new d,this.tests=[],this.transforms=[],this.withMutation((function(){t.typeError(a.mixed.notType)})),(0,A.default)(e,"default")&&(this._defaultDefault=e.default),this._type=e.type||"mixed"}for(var E=I.prototype={__isYupSchema__:!0,constructor:I,clone:function(){var e=this;return this._mutate?this:(0,o.default)(this,(function(t){if((0,u.default)(t)&&t!==e)return t}))},label:function(e){var t=this.clone();return t._label=e,t},meta:function(e){if(0===arguments.length)return this._meta;var t=this.clone();return t._meta=(0,i.default)(t._meta||{},e),t},withMutation:function(e){var t=this._mutate;this._mutate=!0;var r=e(this);return this._mutate=t,r},concat:function(e){if(!e||e===this)return this;if(e._type!==this._type&&"mixed"!==this._type)throw new TypeError("You cannot `concat()` schema's of different types: "+this._type+" and "+e._type);var t=(0,l.default)(e.clone(),this);return(0,A.default)(e,"_default")&&(t._default=e._default),t.tests=this.tests,t._exclusive=this._exclusive,t.withMutation((function(t){e.tests.forEach((function(e){t.test(e.OPTIONS)}))})),t},isType:function(e){return!(!this._nullable||null!==e)||(!this._typeCheck||this._typeCheck(e))},resolve:function(e){var t=this;if(t._conditions.length){var r=t._conditions;(t=t.clone())._conditions=[],t=(t=r.reduce((function(t,r){return r.resolve(t,e)}),t)).resolve(e)}return t},cast:function(e,t){void 0===t&&(t={});var r=this.resolve((0,i.default)({},t,{value:e})),n=r._cast(e,t);if(void 0!==e&&!1!==t.assert&&!0!==r.isType(n)){var A=(0,f.default)(e),o=(0,f.default)(n);throw new TypeError("The value of "+(t.path||"field")+' could not be cast to a value that satisfies the schema type: "'+r._type+'". \n\nattempted value: '+A+" \n"+(o!==A?"result of cast: "+o:""))}return n},_cast:function(e){var t=this,r=void 0===e?e:this.transforms.reduce((function(r,n){return n.call(t,r,e)}),e);return void 0===r&&(0,A.default)(this,"_default")&&(r=this.default()),r},_validate:function(e,t){var r=this;void 0===t&&(t={});var n=e,A=null!=t.originalValue?t.originalValue:e,o=this._option("strict",t),s=this._option("abortEarly",t),a=t.sync,c=t.path,l=this._label;o||(n=this._cast(n,(0,i.default)({assert:!1},t)));var u={value:n,path:c,schema:this,options:t,label:l,originalValue:A,sync:a},h=[];return this._typeError&&h.push(this._typeError(u)),this._whitelistError&&h.push(this._whitelistError(u)),this._blacklistError&&h.push(this._blacklistError(u)),(0,g.default)({validations:h,endEarly:s,value:n,path:c,sync:a}).then((function(e){return(0,g.default)({path:c,sync:a,value:e,endEarly:s,validations:r.tests.map((function(e){return e(u)}))})}))},validate:function(e,t){return void 0===t&&(t={}),this.resolve((0,i.default)({},t,{value:e}))._validate(e,t)},validateSync:function(e,t){var r,n;if(void 0===t&&(t={}),this.resolve((0,i.default)({},t,{value:e}))._validate(e,(0,i.default)({},t,{sync:!0})).then((function(e){return r=e})).catch((function(e){return n=e})),n)throw n;return r},isValid:function(e,t){return this.validate(e,t).then((function(){return!0})).catch((function(e){if("ValidationError"===e.name)return!1;throw e}))},isValidSync:function(e,t){try{return this.validateSync(e,t),!0}catch(e){if("ValidationError"===e.name)return!1;throw e}},getDefault:function(e){return void 0===e&&(e={}),this.resolve(e).default()},default:function(e){if(0===arguments.length){var t=(0,A.default)(this,"_default")?this._default:this._defaultDefault;return"function"==typeof t?t.call(this):(0,o.default)(t)}var r=this.clone();return r._default=e,r},strict:function(e){void 0===e&&(e=!0);var t=this.clone();return t._options.strict=e,t},_isPresent:function(e){return null!=e},required:function(e){return void 0===e&&(e=a.mixed.required),this.test({message:e,name:"required",exclusive:!0,test:function(e){return this.schema._isPresent(e)}})},notRequired:function(){var e=this.clone();return e.tests=e.tests.filter((function(e){return"required"!==e.OPTIONS.name})),e},nullable:function(e){void 0===e&&(e=!0);var t=this.clone();return t._nullable=e,t},transform:function(e){var t=this.clone();return t.transforms.push(e),t},test:function(){var e;if(void 0===(e=1===arguments.length?"function"==typeof(arguments.length<=0?void 0:arguments[0])?{test:arguments.length<=0?void 0:arguments[0]}:arguments.length<=0?void 0:arguments[0]:2===arguments.length?{name:arguments.length<=0?void 0:arguments[0],test:arguments.length<=1?void 0:arguments[1]}:{name:arguments.length<=0?void 0:arguments[0],message:arguments.length<=1?void 0:arguments[1],test:arguments.length<=2?void 0:arguments[2]}).message&&(e.message=a.mixed.default),"function"!=typeof e.test)throw new TypeError("`test` is a required parameters");var t=this.clone(),r=(0,h.default)(e),n=e.exclusive||e.name&&!0===t._exclusive[e.name];if(e.exclusive&&!e.name)throw new TypeError("Exclusive tests must provide a unique `name` identifying the test");return t._exclusive[e.name]=!!e.exclusive,t.tests=t.tests.filter((function(t){if(t.OPTIONS.name===e.name){if(n)return!1;if(t.OPTIONS.test===r.OPTIONS.test)return!1}return!0})),t.tests.push(r),t},when:function(e,t){1===arguments.length&&(t=e,e=".");var r=this.clone(),n=[].concat(e).map((function(e){return new p.default(e)}));return n.forEach((function(e){e.isSibling&&r._deps.push(e.key)})),r._conditions.push(new c.default(n,t)),r},typeError:function(e){var t=this.clone();return t._typeError=(0,h.default)({message:e,name:"typeError",test:function(e){return!(void 0!==e&&!this.schema.isType(e))||this.createError({params:{type:this.schema._type}})}}),t},oneOf:function(e,t){void 0===t&&(t=a.mixed.oneOf);var r=this.clone();return e.forEach((function(e){r._whitelist.add(e),r._blacklist.delete(e)})),r._whitelistError=(0,h.default)({message:t,name:"oneOf",test:function(e){if(void 0===e)return!0;var t=this.schema._whitelist;return!!t.has(e,this.resolve)||this.createError({params:{values:t.toArray().join(", ")}})}}),r},notOneOf:function(e,t){void 0===t&&(t=a.mixed.notOneOf);var r=this.clone();return e.forEach((function(e){r._blacklist.add(e),r._whitelist.delete(e)})),r._blacklistError=(0,h.default)({message:t,name:"notOneOf",test:function(e){var t=this.schema._blacklist;return!t.has(e,this.resolve)||this.createError({params:{values:t.toArray().join(", ")}})}}),r},strip:function(e){void 0===e&&(e=!0);var t=this.clone();return t._strip=e,t},_option:function(e,t){return(0,A.default)(t,e)?t[e]:this._options[e]},describe:function(){var e=this.clone();return{type:e._type,meta:e._meta,label:e._label,tests:e.tests.map((function(e){return{name:e.OPTIONS.name,params:e.OPTIONS.params}})).filter((function(e,t,r){return r.findIndex((function(t){return t.name===e.name}))===t}))}}},m=["validate","validateSync"],B=function(){var e=m[w];E[e+"At"]=function(t,r,n){void 0===n&&(n={});var A=(0,C.getIn)(this,t,r,n.context),o=A.parent,s=A.parentPath;return A.schema[e](o&&o[s],(0,i.default)({},n,{parent:o,path:t}))}},w=0;w{"use strict";var n=r(60087);t.__esModule=!0,t.default=c;var i=n(r(31490)),A=n(r(16434)),o=r(63802),s=n(r(71665)),a=function(e){return(0,s.default)(e)||e===(0|e)};function c(){var e=this;if(!(this instanceof c))return new c;A.default.call(this,{type:"number"}),this.withMutation((function(){e.transform((function(e){var t=e;if("string"==typeof t){if(""===(t=t.replace(/\s/g,"")))return NaN;t=+t}return this.isType(t)?t:parseFloat(t)}))}))}(0,i.default)(c,A.default,{_typeCheck:function(e){return e instanceof Number&&(e=e.valueOf()),"number"==typeof e&&!function(e){return e!=+e}(e)},min:function(e,t){return void 0===t&&(t=o.number.min),this.test({message:t,name:"min",exclusive:!0,params:{min:e},test:function(t){return(0,s.default)(t)||t>=this.resolve(e)}})},max:function(e,t){return void 0===t&&(t=o.number.max),this.test({message:t,name:"max",exclusive:!0,params:{max:e},test:function(t){return(0,s.default)(t)||t<=this.resolve(e)}})},lessThan:function(e,t){return void 0===t&&(t=o.number.lessThan),this.test({message:t,name:"max",exclusive:!0,params:{less:e},test:function(t){return(0,s.default)(t)||tthis.resolve(e)}})},positive:function(e){return void 0===e&&(e=o.number.positive),this.moreThan(0,e)},negative:function(e){return void 0===e&&(e=o.number.negative),this.lessThan(0,e)},integer:function(e){return void 0===e&&(e=o.number.integer),this.test({name:"integer",message:e,test:a})},truncate:function(){return this.transform((function(e){return(0,s.default)(e)?e:0|e}))},round:function(e){var t=["ceil","floor","round","trunc"];if("trunc"===(e=e&&e.toLowerCase()||"round"))return this.truncate();if(-1===t.indexOf(e.toLowerCase()))throw new TypeError("Only valid options for round() are: "+t.join(", "));return this.transform((function(t){return(0,s.default)(t)?t:Math[e](t)}))}}),e.exports=t.default},51727:(e,t,r)=>{"use strict";var n=r(19228),i=r(60087);t.__esModule=!0,t.default=y;var A=i(r(62407)),o=i(r(72912)),s=i(r(15215)),a=i(r(36494)),c=i(r(89170)),g=i(r(5253)),l=i(r(89612)),u=r(79588),h=i(r(16434)),f=r(63802),p=i(r(18417)),C=i(r(23316)),d=i(r(31490)),I=i(r(7045)),E=n(r(80180));function m(){var e=(0,A.default)(["",".",""]);return m=function(){return e},e}function B(){var e=(0,A.default)(["",".",""]);return B=function(){return e},e}var w=function(e){return"[object Object]"===Object.prototype.toString.call(e)};function y(e){var t=this;if(!(this instanceof y))return new y(e);h.default.call(this,{type:"object",default:function(){var e=this;if(this._nodes.length){var t={};return this._nodes.forEach((function(r){t[r]=e.fields[r].default?e.fields[r].default():void 0})),t}}}),this.fields=Object.create(null),this._nodes=[],this._excludedEdges=[],this.withMutation((function(){t.transform((function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(t){e=null}return this.isType(e)?e:null})),e&&t.shape(e)}))}(0,d.default)(y,h.default,{_typeCheck:function(e){return w(e)||"function"==typeof e},_cast:function(e,t){var r=this;void 0===t&&(t={});var n=h.default.prototype._cast.call(this,e,t);if(void 0===n)return this.default();if(!this._typeCheck(n))return n;var i=this.fields,A=!0===this._option("stripUnknown",t),a=this._nodes.concat(Object.keys(n).filter((function(e){return-1===r._nodes.indexOf(e)}))),c={},g=(0,o.default)({},t,{parent:c,__validating:!1}),l=!1;return a.forEach((function(e){var r=i[e],o=(0,s.default)(n,e);if(r){var a,u=r._options&&r._options.strict;if(g.path=(0,I.default)(B(),t.path,e),g.value=n[e],!0===(r=r.resolve(g))._strip)return void(l=l||e in n);void 0!==(a=t.__validating&&u?n[e]:r.cast(n[e],g))&&(c[e]=a)}else o&&!A&&(c[e]=n[e]);c[e]!==n[e]&&(l=!0)})),l?c:n},_validate:function(e,t){var r,n,i=this;void 0===t&&(t={});var A=t.sync,s=[],a=null!=t.originalValue?t.originalValue:e;return r=this._option("abortEarly",t),n=this._option("recursive",t),t=(0,o.default)({},t,{__validating:!0,originalValue:a}),h.default.prototype._validate.call(this,e,t).catch((0,E.propagateErrors)(r,s)).then((function(e){if(!n||!w(e)){if(s.length)throw s[0];return e}a=a||e;var c=i._nodes.map((function(r){var n=(0,I.default)(m(),t.path,r),A=i.fields[r],s=(0,o.default)({},t,{path:n,parent:e,originalValue:a[r]});return A&&A.validate?(s.strict=!0,A.validate(e[r],s)):Promise.resolve(!0)}));return(0,E.default)({sync:A,validations:c,value:e,errors:s,endEarly:r,path:t.path,sort:(0,C.default)(i.fields)})}))},concat:function(e){var t=h.default.prototype.concat.call(this,e);return t._nodes=(0,p.default)(t.fields,t._excludedEdges),t},shape:function(e,t){void 0===t&&(t=[]);var r=this.clone(),n=(0,o.default)(r.fields,e);if(r.fields=n,t.length){Array.isArray(t[0])||(t=[t]);var i=t.map((function(e){return e[0]+"-"+e[1]}));r._excludedEdges=r._excludedEdges.concat(i)}return r._nodes=(0,p.default)(n,r._excludedEdges),r},from:function(e,t,r){var n=(0,u.getter)(e,!0);return this.transform((function(i){if(null==i)return i;var A=i;return(0,s.default)(i,e)&&(A=(0,o.default)({},i),r||delete A[e],A[t]=n(i)),A}))},noUnknown:function(e,t){void 0===e&&(e=!0),void 0===t&&(t=f.object.noUnknown),"string"==typeof e&&(t=e,e=!0);var r=this.test({name:"noUnknown",exclusive:!0,message:t,test:function(t){return null==t||!e||0===function(e,t){var r=Object.keys(e.fields);return Object.keys(t).filter((function(e){return-1===r.indexOf(e)}))}(this.schema,t).length}});return r._options.stripUnknown=e,r},unknown:function(e,t){return void 0===e&&(e=!0),void 0===t&&(t=f.object.noUnknown),this.noUnknown(!e,t)},transformKeys:function(e){return this.transform((function(t){return t&&(0,g.default)(t,(function(t,r){return e(r)}))}))},camelCase:function(){return this.transformKeys(c.default)},snakeCase:function(){return this.transformKeys(a.default)},constantCase:function(){return this.transformKeys((function(e){return(0,a.default)(e).toUpperCase()}))},describe:function(){var e=h.default.prototype.describe.call(this);return e.fields=(0,l.default)(this.fields,(function(e){return e.describe()})),e}}),e.exports=t.default},24280:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.default=function(e){Object.keys(e).forEach((function(t){Object.keys(e[t]).forEach((function(r){i.default[t][r]=e[t][r]}))}))};var i=n(r(63802));e.exports=t.default},45167:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.default=l;var i=n(r(31490)),A=n(r(16434)),o=r(63802),s=n(r(71665)),a=/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$/i,c=/^((https?|ftp):)?\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i,g=function(e){return(0,s.default)(e)||e===e.trim()};function l(){var e=this;if(!(this instanceof l))return new l;A.default.call(this,{type:"string"}),this.withMutation((function(){e.transform((function(e){return this.isType(e)?e:null!=e&&e.toString?e.toString():e}))}))}(0,i.default)(l,A.default,{_typeCheck:function(e){return e instanceof String&&(e=e.valueOf()),"string"==typeof e},_isPresent:function(e){return A.default.prototype._cast.call(this,e)&&e.length>0},length:function(e,t){return void 0===t&&(t=o.string.length),this.test({message:t,name:"length",exclusive:!0,params:{length:e},test:function(t){return(0,s.default)(t)||t.length===this.resolve(e)}})},min:function(e,t){return void 0===t&&(t=o.string.min),this.test({message:t,name:"min",exclusive:!0,params:{min:e},test:function(t){return(0,s.default)(t)||t.length>=this.resolve(e)}})},max:function(e,t){return void 0===t&&(t=o.string.max),this.test({name:"max",exclusive:!0,message:t,params:{max:e},test:function(t){return(0,s.default)(t)||t.length<=this.resolve(e)}})},matches:function(e,t){var r,n=!1;return t&&(t.message||t.hasOwnProperty("excludeEmptyString")?(n=t.excludeEmptyString,r=t.message):r=t),this.test({message:r||o.string.matches,params:{regex:e},test:function(t){return(0,s.default)(t)||""===t&&n||e.test(t)}})},email:function(e){return void 0===e&&(e=o.string.email),this.matches(a,{message:e,excludeEmptyString:!0})},url:function(e){return void 0===e&&(e=o.string.url),this.matches(c,{message:e,excludeEmptyString:!0})},ensure:function(){return this.default("").transform((function(e){return null===e?"":e}))},trim:function(e){return void 0===e&&(e=o.string.trim),this.transform((function(e){return null!=e?e.trim():e})).test({message:e,name:"trim",test:g})},lowercase:function(e){return void 0===e&&(e=o.string.lowercase),this.transform((function(e){return(0,s.default)(e)?e:e.toLowerCase()})).test({message:e,name:"string_case",exclusive:!0,test:function(e){return(0,s.default)(e)||e===e.toLowerCase()}})},uppercase:function(e){return void 0===e&&(e=o.string.uppercase),this.transform((function(e){return(0,s.default)(e)?e:e.toUpperCase()})).test({message:e,name:"string_case",exclusive:!0,test:function(e){return(0,s.default)(e)||e===e.toUpperCase()}})}}),e.exports=t.default},54107:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.createErrorFactory=l,t.default=function(e){var t=e.name,r=e.message,n=e.test,o=e.params;function g(e){var g=e.value,u=e.path,h=e.label,f=e.options,p=e.originalValue,C=e.sync,d=(0,i.default)(e,["value","path","label","options","originalValue","sync"]),I=f.parent,E=function(e){return a.default.isRef(e)?e.getValue({value:g,parent:I,context:f.context}):e},m=l({message:r,path:u,value:g,originalValue:p,params:o,label:h,resolve:E,name:t}),B=(0,A.default)({path:u,parent:I,type:t,createError:m,resolve:E,options:f},d);return function(e,t,r,n){var i=e.call(t,r);if(!n)return Promise.resolve(i);if(A=i,A&&"function"==typeof A.then&&"function"==typeof A.catch)throw new Error('Validation test of type: "'+t.type+'" returned a Promise during a synchronous validate. This test will finish after the validate call has returned');var A;return c.SynchronousPromise.resolve(i)}(n,B,g,C).then((function(e){if(s.default.isError(e))throw e;if(!e)throw m()}))}return g.OPTIONS=e,g};var i=n(r(74943)),A=n(r(72912)),o=n(r(89612)),s=n(r(40828)),a=n(r(95814)),c=r(93255),g=s.default.formatError;function l(e){var t=e.value,r=e.label,n=e.resolve,a=e.originalValue,c=(0,i.default)(e,["value","label","resolve","originalValue"]);return function(e){var i=void 0===e?{}:e,l=i.path,u=void 0===l?c.path:l,h=i.message,f=void 0===h?c.message:h,p=i.type,C=void 0===p?c.name:p,d=i.params;return d=(0,A.default)({path:u,value:t,originalValue:a,label:r},function(e,t,r){return(0,o.default)((0,A.default)({},e,t),r)}(c.params,d,n)),(0,A.default)(new s.default(g(f,d),t,u,C),{params:d})}}},31490:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.default=function(e,t,r){e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),(0,i.default)(e.prototype,r)};var i=n(r(72912));e.exports=t.default},71665:(e,t)=>{"use strict";t.__esModule=!0,t.default=void 0;t.default=function(e){return null==e},e.exports=t.default},11050:(e,t)=>{"use strict";t.__esModule=!0,t.default=void 0;t.default=function(e){return e&&e.__isYupSchema__},e.exports=t.default},76813:(e,t)=>{"use strict";t.__esModule=!0,t.default=function(e){var t,n,i=[1,4,5,6,7,10,11],A=0;if(n=r.exec(e)){for(var o,s=0;o=i[s];++s)n[o]=+n[o]||0;n[2]=(+n[2]||1)-1,n[3]=+n[3]||1,n[7]=n[7]?String(n[7]).substr(0,3):0,void 0!==n[8]&&""!==n[8]||void 0!==n[9]&&""!==n[9]?("Z"!==n[8]&&void 0!==n[9]&&(A=60*n[10]+n[11],"+"===n[9]&&(A=0-A)),t=Date.UTC(n[1],n[2],n[3],n[4],n[5]+A,n[6],n[7])):t=+new Date(n[1],n[2],n[3],n[4],n[5],n[6],n[7])}else t=Date.parse?Date.parse(e):NaN;return t};var r=/^(\d{4}|[+\-]\d{6})(?:-?(\d{2})(?:-?(\d{2}))?)?(?:[ T]?(\d{2}):?(\d{2})(?::?(\d{2})(?:[,\.](\d{1,}))?)?(?:(Z)|([+\-])(\d{2})(?::?(\d{2}))?)?)?$/;e.exports=t.default},7045:(e,t)=>{"use strict";t.__esModule=!0,t.default=function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n{"use strict";var n=r(60087);t.__esModule=!0,t.default=function e(t,r){for(var n in r)if((0,i.default)(r,n)){var s=r[n],a=t[n];if(void 0===a)t[n]=s;else{if(a===s)continue;(0,A.default)(a)?(0,A.default)(s)&&(t[n]=s.concat(a)):o(a)?o(s)&&(t[n]=e(a,s)):Array.isArray(a)&&Array.isArray(s)&&(t[n]=s.concat(a))}}return t};var i=n(r(15215)),A=n(r(11050)),o=function(e){return"[object Object]"===Object.prototype.toString.call(e)};e.exports=t.default},21043:(e,t)=>{"use strict";t.__esModule=!0,t.default=function(e,t){var r=s(e,t);return null!==r?r:JSON.stringify(e,(function(e,r){var n=s(this[e],t);return null!==n?n:r}),2)};var r=Object.prototype.toString,n=Error.prototype.toString,i=RegExp.prototype.toString,A="undefined"!=typeof Symbol?Symbol.prototype.toString:function(){return""},o=/^Symbol\((.*)\)(.*)$/;function s(e,t){if(void 0===t&&(t=!1),null==e||!0===e||!1===e)return""+e;var s=typeof e;if("number"===s)return function(e){return e!=+e?"NaN":0===e&&1/e<0?"-0":""+e}(e);if("string"===s)return t?'"'+e+'"':e;if("function"===s)return"[Function "+(e.name||"anonymous")+"]";if("symbol"===s)return A.call(e).replace(o,"Symbol($1)");var a=r.call(e).slice(8,-1);return"Date"===a?isNaN(e.getTime())?""+e:e.toISOString(e):"Error"===a||e instanceof Error?"["+n.call(e)+"]":"RegExp"===a?i.call(e):null}e.exports=t.default},43910:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.getIn=o,t.default=void 0;var i=r(79588),A=n(r(15215));function o(e,t,r,n){var o,s,a;return n=n||r,t?((0,i.forEach)(t,(function(i,c,g){var l=c?function(e){return e.substr(0,e.length-1).substr(1)}(i):i;if(g||(0,A.default)(e,"_subType")){var u=g?parseInt(l,10):0;if(e=e.resolve({context:n,parent:o,value:r})._subType,r){if(g&&u>=r.length)throw new Error("Yup.reach cannot resolve an array item at index: "+i+", in the path: "+t+". because there is no value at that index. ");r=r[u]}}if(!g){if(e=e.resolve({context:n,parent:o,value:r}),!(0,A.default)(e,"fields")||!(0,A.default)(e.fields,l))throw new Error("The schema does not contain the path: "+t+". (failed at: "+a+' which is a type: "'+e._type+'") ');e=e.fields[l],o=r,r=r&&r[l],s=l,a=c?"["+i+"]":"."+i}})),{schema:e,parent:o,parentPath:s}):{parent:o,parentPath:t,schema:e}}var s=function(e,t,r,n){return o(e,t,r,n).schema};t.default=s},80180:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.propagateErrors=function(e,t){return e?null:function(e){return t.push(e),e.value}},t.settled=a,t.collectErrors=c,t.default=function(e){var t=e.endEarly,r=(0,i.default)(e,["endEarly"]);return t?function(e,t,r){return s(r).all(e).catch((function(e){throw"ValidationError"===e.name&&(e.value=t),e})).then((function(){return t}))}(r.validations,r.value,r.sync):c(r)};var i=n(r(74943)),A=r(93255),o=n(r(40828)),s=function(e){return e?A.SynchronousPromise:Promise};function a(e,t){var r=s(t);return r.all(e.map((function(e){return r.resolve(e).then((function(e){return{fulfilled:!0,value:e}}),(function(e){return{fulfilled:!1,value:e}}))})))}function c(e){var t=e.validations,r=e.value,n=e.path,i=e.sync,A=e.errors,s=e.sort;return A=function(e){return void 0===e&&(e=[]),e.inner&&e.inner.length?e.inner:[].concat(e)}(A),a(t,i).then((function(e){var t=e.filter((function(e){return!e.fulfilled})).reduce((function(e,t){var r=t.value;if(!o.default.isError(r))throw r;return e.concat(r)}),[]);if(s&&t.sort(s),(A=t.concat(A)).length)throw new o.default(A,r,n);return r}))}},23316:(e,t)=>{"use strict";function r(e,t){var r=1/0;return e.some((function(e,n){if(-1!==t.path.indexOf(e))return r=n,!0})),r}t.__esModule=!0,t.default=function(e){var t=Object.keys(e);return function(e,n){return r(t,e)-r(t,n)}},e.exports=t.default},18417:(e,t,r)=>{"use strict";var n=r(60087);t.__esModule=!0,t.default=function(e,t){void 0===t&&(t=[]);var r=[],n=[];function c(e,i){var A=(0,o.split)(e)[0];~n.indexOf(A)||n.push(A),~t.indexOf(i+"-"+A)||r.push([i,A])}for(var g in e)if((0,i.default)(e,g)){var l=e[g];~n.indexOf(g)||n.push(g),s.default.isRef(l)&&l.isSibling?c(l.path,g):(0,a.default)(l)&&l._deps&&l._deps.forEach((function(e){return c(e,g)}))}return A.default.array(n,r).reverse()};var i=n(r(15215)),A=n(r(75158)),o=r(79588),s=n(r(95814)),a=n(r(11050));e.exports=t.default},60306:e=>{"use strict";e.exports=JSON.parse('{"name":"@yarnpkg/cli","version":"2.2.2","license":"BSD-2-Clause","main":"./sources/index.ts","dependencies":{"@yarnpkg/core":"workspace:^2.2.2","@yarnpkg/fslib":"workspace:^2.2.1","@yarnpkg/libzip":"workspace:^2.2.0","@yarnpkg/parsers":"workspace:^2.2.0","@yarnpkg/plugin-compat":"workspace:^2.1.1","@yarnpkg/plugin-dlx":"workspace:^2.1.1","@yarnpkg/plugin-essentials":"workspace:^2.2.0","@yarnpkg/plugin-file":"workspace:^2.2.0","@yarnpkg/plugin-git":"workspace:^2.1.1","@yarnpkg/plugin-github":"workspace:^2.1.1","@yarnpkg/plugin-http":"workspace:^2.1.1","@yarnpkg/plugin-init":"workspace:^2.1.1","@yarnpkg/plugin-link":"workspace:^2.1.1","@yarnpkg/plugin-node-modules":"workspace:^2.1.1","@yarnpkg/plugin-npm":"workspace:^2.2.0","@yarnpkg/plugin-npm-cli":"workspace:^2.1.1","@yarnpkg/plugin-pack":"workspace:^2.2.0","@yarnpkg/plugin-patch":"workspace:^2.1.1","@yarnpkg/plugin-pnp":"workspace:^2.2.1","@yarnpkg/shell":"workspace:^2.2.0","chalk":"^3.0.0","clipanion":"^2.4.4","fromentries":"^1.2.0","semver":"^7.1.2","tslib":"^1.13.0","yup":"^0.27.0"},"devDependencies":{"@types/yup":"0.26.12","@yarnpkg/builder":"workspace:^2.1.1","@yarnpkg/monorepo":"workspace:0.0.0","@yarnpkg/pnpify":"workspace:^2.2.1","micromatch":"^4.0.2","typescript":"^3.9.5"},"peerDependencies":{"@yarnpkg/core":"^2.2.2"},"scripts":{"postpack":"rm -rf lib","prepack":"run build:compile \\"$(pwd)\\"","build:cli+hook":"run build:pnp:hook && builder build bundle","build:cli":"builder build bundle","run:cli":"builder run","update-local":"run build:cli --no-git-hash && rsync -a --delete bundles/ bin/"},"publishConfig":{"main":"./lib/index.js","types":"./lib/index.d.ts","bin":null},"files":["/lib/**/*","!/lib/pluginConfiguration.*","!/lib/cli.*"],"@yarnpkg/builder":{"bundles":{"standard":["@yarnpkg/plugin-essentials","@yarnpkg/plugin-compat","@yarnpkg/plugin-dlx","@yarnpkg/plugin-file","@yarnpkg/plugin-git","@yarnpkg/plugin-github","@yarnpkg/plugin-http","@yarnpkg/plugin-init","@yarnpkg/plugin-link","@yarnpkg/plugin-node-modules","@yarnpkg/plugin-npm","@yarnpkg/plugin-npm-cli","@yarnpkg/plugin-pack","@yarnpkg/plugin-patch","@yarnpkg/plugin-pnp"]}},"repository":{"type":"git","url":"ssh://git@github.com/yarnpkg/berry.git"},"engines":{"node":">=10.19.0"}}')},98497:e=>{function t(e){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}t.keys=()=>[],t.resolve=t,t.id=98497,e.exports=t},32178:e=>{function t(e){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}t.keys=()=>[],t.resolve=t,t.id=32178,e.exports=t},3368:(e,t,r)=>{var n,i=Object.assign({},r(35747)),A=void 0!==A?A:{},o={};for(n in A)A.hasOwnProperty(n)&&(o[n]=A[n]);var s,a,c,g,l=[],u="";u=__dirname+"/",s=function(e,t){var n=ye(e);return n?t?n:n.toString():(c||(c=i),g||(g=r(85622)),e=g.normalize(e),c.readFileSync(e,t?null:"utf8"))},a=function(e){var t=s(e,!0);return t.buffer||(t=new Uint8Array(t)),E(t.buffer),t},process.argv.length>1&&process.argv[1].replace(/\\/g,"/"),l=process.argv.slice(2),e.exports=A,A.inspect=function(){return"[Emscripten Module object]"};var h=A.print||console.log.bind(console),f=A.printErr||console.warn.bind(console);for(n in o)o.hasOwnProperty(n)&&(A[n]=o[n]);o=null,A.arguments&&(l=A.arguments),A.thisProgram&&A.thisProgram,A.quit&&A.quit;var p,C;A.wasmBinary&&(p=A.wasmBinary),A.noExitRuntime&&A.noExitRuntime,"object"!=typeof WebAssembly&&Z("no native wasm support detected");var d=new WebAssembly.Table({initial:31,maximum:31,element:"anyfunc"}),I=!1;function E(e,t){e||Z("Assertion failed: "+t)}function m(e){var t=A["_"+e];return E(t,"Cannot call unknown function "+e+", make sure it is exported"),t}function B(e,t,r,n,i){var A={string:function(e){var t=0;if(null!=e&&0!==e){var r=1+(e.length<<2);b(e,t=Ke(r),r)}return t},array:function(e){var t=Ke(e.length);return function(e,t){M.set(e,t)}(e,t),t}};var o=m(e),s=[],a=0;if(n)for(var c=0;c=n);)++i;if(i-t>16&&e.subarray&&w)return w.decode(e.subarray(t,i));for(var A="";t>10,56320|1023&c)}}else A+=String.fromCharCode((31&o)<<6|s)}else A+=String.fromCharCode(o)}return A}function Q(e,t){return e?y(F,e,t):""}function v(e,t,r,n){if(!(n>0))return 0;for(var i=r,A=r+n-1,o=0;o=55296&&s<=57343)s=65536+((1023&s)<<10)|1023&e.charCodeAt(++o);if(s<=127){if(r>=A)break;t[r++]=s}else if(s<=2047){if(r+1>=A)break;t[r++]=192|s>>6,t[r++]=128|63&s}else if(s<=65535){if(r+2>=A)break;t[r++]=224|s>>12,t[r++]=128|s>>6&63,t[r++]=128|63&s}else{if(r+3>=A)break;t[r++]=240|s>>18,t[r++]=128|s>>12&63,t[r++]=128|s>>6&63,t[r++]=128|63&s}}return t[r]=0,r-i}function b(e,t,r){return v(e,F,t,r)}function D(e){for(var t=0,r=0;r=55296&&n<=57343&&(n=65536+((1023&n)<<10)|1023&e.charCodeAt(++r)),n<=127?++t:t+=n<=2047?2:n<=65535?3:4}return t}function S(e){var t=D(e)+1,r=xe(t);return r&&v(e,M,r,t),r}var k,M,F,N,R,K,x;function L(e){k=e,A.HEAP8=M=new Int8Array(e),A.HEAP16=N=new Int16Array(e),A.HEAP32=R=new Int32Array(e),A.HEAPU8=F=new Uint8Array(e),A.HEAPU16=new Uint16Array(e),A.HEAPU32=new Uint32Array(e),A.HEAPF32=K=new Float32Array(e),A.HEAPF64=x=new Float64Array(e)}var P=A.INITIAL_MEMORY||16777216;function U(e){for(;e.length>0;){var t=e.shift();if("function"!=typeof t){var r=t.func;"number"==typeof r?void 0===t.arg?A.dynCall_v(r):A.dynCall_vi(r,t.arg):r(void 0===t.arg?null:t.arg)}else t(A)}}(C=A.wasmMemory?A.wasmMemory:new WebAssembly.Memory({initial:P/65536,maximum:32768}))&&(k=C.buffer),P=k.byteLength,L(k),R[5160]=5263680;var T=[],O=[],j=[],Y=[];var G=Math.abs,_=Math.ceil,H=Math.floor,J=Math.min,q=0,z=null,W=null;function V(e){q++,A.monitorRunDependencies&&A.monitorRunDependencies(q)}function X(e){if(q--,A.monitorRunDependencies&&A.monitorRunDependencies(q),0==q&&(null!==z&&(clearInterval(z),z=null),W)){var t=W;W=null,t()}}function Z(e){throw A.onAbort&&A.onAbort(e),h(e+=""),f(e),I=!0,1,e="abort("+e+"). Build with -s ASSERTIONS=1 for more info.",new WebAssembly.RuntimeError(e)}A.preloadedImages={},A.preloadedAudios={};function $(e){return t=e,r="data:application/octet-stream;base64,",String.prototype.startsWith?t.startsWith(r):0===t.indexOf(r);var t,r}var ee,te,re="data:application/octet-stream;base64,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A3I2AgQgASAFaiIEIANBAXI2AgQgAyAEaiADNgIAIAgEQCAIQQN2IgVBA3RB4JwBaiEAQcycASgCACECAn9BASAFdCIFIAZxRQRAQbicASAFIAZyNgIAIAAMAQsgACgCCAshBSAAIAI2AgggBSACNgIMIAIgADYCDCACIAU2AggLQcycASAENgIAQcCcASADNgIACyABQQhqIQALIAtBEGokACAAC4IEAQN/IAJBgARPBEAgACABIAIQExogAA8LIAAgAmohAwJAIAAgAXNBA3FFBEACQCACQQFIBEAgACECDAELIABBA3FFBEAgACECDAELIAAhAgNAIAIgAS0AADoAACABQQFqIQEgAkEBaiICIANPDQEgAkEDcQ0ACwsCQCADQXxxIgRBwABJDQAgAiAEQUBqIgVLDQADQCACIAEoAgA2AgAgAiABKAIENgIEIAIgASgCCDYCCCACIAEoAgw2AgwgAiABKAIQNgIQIAIgASgCFDYCFCACIAEoAhg2AhggAiABKAIcNgIcIAIgASgCIDYCICACIAEoAiQ2AiQgAiABKAIoNgIoIAIgASgCLDYCLCACIAEoAjA2AjAgAiABKAI0NgI0IAIgASgCODYCOCACIAEoAjw2AjwgAUFAayEBIAJBQGsiAiAFTQ0ACwsgAiAETw0BA0AgAiABKAIANgIAIAFBBGohASACQQRqIgIgBEkNAAsMAQsgA0EESQRAIAAhAgwBCyADQXxqIgQgAEkEQCAAIQIMAQsgACECA0AgAiABLQAAOgAAIAIgAS0AAToAASACIAEtAAI6AAIgAiABLQADOgADIAFBBGohASACQQRqIgIgBE0NAAsLIAIgA0kEQANAIAIgAS0AADoAACABQQFqIQEgAkEBaiICIANHDQALCyAACz8BAX8jAEEQayIDJAAgAyAANgIMIAMgATYCCCADIAI2AgQgAygCDCADKAIIIAMoAgQQ1gEhACADQRBqJAAgAAvdAQEBfyMAQRBrIgEkACABIAA2AgwCQCABKAIMRQ0AIAEoAgwoAjBBAEsEQCABKAIMIgAgACgCMEF/ajYCMAsgASgCDCgCMEEASw0AIAEoAgwoAiBBAEsEQCABKAIMQQE2AiAgASgCDBAyGgsgASgCDCgCJEEBRgRAIAEoAgwQagsCQCABKAIMKAIsRQ0AIAEoAgwtAChBAXEN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QSBqJAALiwMBAX8jAEEwayIDJAAgAyAANgIkIAMgATYCICADIAI3AxgCQCADKAIkLQAoQQFxBEAgA0J/NwMoDAELAkACQCADKAIkKAIgQQBNDQAgAykDGEL///////////8AVg0AIAMpAxhCAFgNASADKAIgDQELIAMoAiRBDGpBEkEAEBUgA0J/NwMoDAELIAMoAiQtADVBAXEEQCADQn83AygMAQsCfyMAQRBrIgAgAygCJDYCDCAAKAIMLQA0QQFxCwRAIANCADcDKAwBCyADKQMYUARAIANCADcDKAwBCyADQgA3AxADQCADKQMQIAMpAxhUBEAgAyADKAIkIAMoAiAgAykDEKdqIAMpAxggAykDEH1BARAiIgI3AwggAkIAUwRAIAMoAiRBAToANSADKQMQUARAIANCfzcDKAwECyADIAMpAxA3AygMAwsgAykDCFAEQCADKAIkQQE6ADQFIAMgAykDCCADKQMQfDcDEAwCCwsLIAMgAykDEDcDKAsgAykDKCECIANBMGokACACCzYBAX8jAEEQayIBIAA2AgwCfiABKAIMLQAAQQFxBEAgASgCDCkDCCABKAIMKQMQfQwBC0IACwuyAQIBfwF+IwBBEGsiASQAIAEgADYCBCABIAEoAgRCCBAfNgIAAkAgASgCAEUEQCABQgA3AwgMAQsgASABKAIALQAArSABKAIALQAHrUI4hiABKAIALQAGrUIwhnwgASgCAC0ABa1CKIZ8IAEoAgAtAAStQiCGfCABKAIALQADrUIYhnwgASgCAC0AAq1CEIZ8IAEoAgAtAAGtQgiGfHw3AwgLIAEpAwghAiABQRBqJAAgAguoAQEBfyMAQRBrIgEkACABIAA2AggCQCABKAIIKAIgQQBNBEAgASgCCEEMakESQQAQFSABQX82AgwMAQsgASgCCCIAIAAoAiBBf2o2AiAgASgCCCgCIEUEQCABKAIIQQBCAEECECIaIAEoAggoAgAEQCABKAIIKAIAEDJBAEgEQCABKAIIQQxqQRRBABAVCwsLIAFBADYCDAsgASgCDCEAIAFBEGokACAAC/ECAgJ/AX4CQCACRQ0AIAAgAmoiA0F/aiABOgAAIAAgAToAACACQQNJDQAgA0F+aiABOgAAIAAgAToAASADQX1qIAE6AAAgACABOgACIAJBB0kNACADQXxqIAE6AAAgACABOgADIAJBCUkNACAAQQAgAGtBA3EiBGoiAyABQf8BcUGBgoQIbCIANgIAIAMgAiAEa0F8cSICaiIBQXxqIAA2AgAgAkEJSQ0AIAMgADYCCCADIAA2AgQgAUF4aiAANgIAIAFBdGogADYCACACQRlJDQAgAyAANgIYIAMgADYCFCADIAA2AhAgAyAANgIMIAFBcGogADYCACABQWxqIAA2AgAgAUFoaiAANgIAIAFBZGogADYCACACIANBBHFBGHIiAWsiAkEgSQ0AIACtIgVCIIYgBYQhBSABIANqIQEDQCABIAU3AxggASAFNwMQIAEgBTcDCCABIAU3AwAgAUEgaiEBIAJBYGoiAkEfSw0ACwsL3AEBAX8jAEEQayIBJAAgASAANgIMIAEoAgwEQCABKAIMKAIoBEAgASgCDCgCKEEANgIoIAEoAgwoAihCADcDICABKAIMAn4gASgCDCkDGCABKAIMKQMgVgRAIAEoAgwpAxgMAQsgASgCDCkDIAs3AxgLIAEgASgCDCkDGDcDAANAIAEpAwAgASgCDCkDCFpFBEAgASgCDCgCACABKQMAp0EEdGooAgAQFiABIAEpAwBCAXw3AwAMAQsLIAEoAgwoAgAQFiABKAIMKAIEEBYgASgCDBAWCyABQRBqJAALYAIBfwF+IwBBEGsiASQAIAEgADYCBAJAIAEoAgQoAiRBAUcEQCABKAIEQQxqQRJBABAVIAFCfzcDCAwBCyABIAEoAgRBAEIAQQ0QIjcDCAsgASkDCCECIAFBEGokACACC6ABAQF/IwBBIGsiAyQAIAMgADYCGCADIAE2AhQgAyACNwMIIAMgAygCGCgCACADKAIUIAMpAwgQywEiAjcDAAJAIAJCAFMEQCADKAIYQQhqIAMoAhgoAgAQGCADQX82AhwMAQsgAykDACADKQMIUgRAIAMoAhhBCGpBBkEbEBUgA0F/NgIcDAELIANBADYCHAsgAygCHCEAIANBIGokACAAC2sBAX8jAEEgayICIAA2AhwgAkIBIAIoAhythjcDECACQQxqIAE2AgADQCACIAIoAgwiAEEEajYCDCACIAAoAgA2AgggAigCCEEASEUEQCACIAIpAxBCASACKAIIrYaENwMQDAELCyACKQMQCy8BAX8jAEEQayIBJAAgASAANgIMIAEoAgwoAggQFiABKAIMQQA2AgggAUEQaiQAC80BAQF/IwBBEGsiAiQAIAIgADYCCCACIAE2AgQCQCACKAIILQAoQQFxBEAgAkF/NgIMDAELIAIoAgRFBEAgAigCCEEMakESQQAQFSACQX82AgwMAQsgAigCBBA8IAIoAggoAgAEQCACKAIIKAIAIAIoAgQQOUEASARAIAIoAghBDGogAigCCCgCABAYIAJBfzYCDAwCCwsgAigCCCACKAIEQjhBAxAiQgBTBEAgAkF/NgIMDAELIAJBADYCDAsgAigCDCEAIAJBEGokACAACzEBAX8jAEEQayIBJAAgASAANgIMIAEoAgwEQCABKAIMEFwgASgCDBAWCyABQRBqJAAL3wQBAX8jAEEgayICIAA2AhggAiABNgIUAkAgAigCGEUEQCACQQE2AhwMAQsgAiACKAIYKAIANgIMAkAgAigCGCgCCARAIAIgAigCGCgCCDYCEAwBCyACQQE2AhAgAkEANgIIA0ACQCACKAIIIAIoAhgvAQRPDQACQCACKAIMIAIoAghqLQAAQR9KBEAgAigCDCACKAIIai0AAEGAAUgNAQsgAigCDCACKAIIai0AAEENRg0AIAIoAgwgAigCCGotAABBCkYNACACKAIMIAIoAghqLQAAQQlGBEAMAQsgAkEDNgIQAkAgAigCDCACKAIIai0AAEHgAXFBwAFGBEAgAkEBNgIADAELAkAgAigCDCACKAIIai0AAEHwAXFB4AFGBEAgAkECNgIADAELAkAgAigCDCACKAIIai0AAEH4AXFB8AFGBEAgAkEDNgIADAELIAJBBDYCEAwECwsLIAIoAgggAigCAGogAigCGC8BBE8EQCACQQQ2AhAMAgsgAkEBNgIEA0AgAigCBCACKAIATQRAIAIoAgwgAigCCCACKAIEamotAABBwAFxQYABRwRAIAJBBDYCEAwGBSACIAIoAgRBAWo2AgQMAgsACwsgAiACKAIAIAIoAghqNgIICyACIAIoAghBAWo2AggMAQsLCyACKAIYIAIoAhA2AgggAigCFARAAkAgAigCFEECRw0AIAIoAhBBA0cNACACQQI2AhAgAigCGEECNgIICwJAIAIoAhQgAigCEEYNACACKAIQQQFGDQAgAkEFNgIcDAILCyACIAIoAhA2AhwLIAIoAhwLagEBfyMAQRBrIgEgADYCDCAB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AUEQaiQAC/EBAQF/IwBBEGsiASAANgIMIAEoAgxBADYCACABKAIMQQA6AAQgASgCDEEAOgAFIAEoAgxBAToABiABKAIMQb8GOwEIIAEoAgxBCjsBCiABKAIMQQA7AQwgASgCDEF/NgIQIAEoAgxBADYCFCABKAIMQQA2AhggASgCDEIANwMgIAEoAgxCADcDKCABKAIMQQA2AjAgASgCDEEANgI0IAEoAgxBADYCOCABKAIMQQA2AjwgASgCDEEAOwFAIAEoAgxBgIDYjXg2AkQgASgCDEIANwNIIAEoAgxBADsBUCABKAIMQQA7AVIgASgCDEEANgJUC9oTAQF/IwBBsAFrIgMkACADIAA2AqgBIAMgATYCpAEgAyACNgKgASADQQA2ApABIAMgAygCpAEoAjBBABA7NgKUASADIAMoAqQBKAI4QQAQOzYCmAECQAJAAkACQCADKAKUAUECRgRAIAMoApgBQQFGDQELIAMoApQBQQFGBEAgAygCmAFBAkYNAQsgAygClAFBAkcNASADKAKYAUECRw0BCyADKAKkASIAIAAvAQxBgBByOwEMDAELIAMoAqQBIgAgAC8BDEH/7wNxOwEMIAMoApQBQQJGBEAgA0H14AEgAygCpAEoAjAgAygCqAFBCGoQxAE2ApABIAMoApABRQRAIANBfzYCrAEMAwsLAkAgAygCoAFBgAJxDQAgAygCmAFBAkcNACADQfXGASADKAKkASgCOCADKAKoAUEIahDEATYCSCADKAJIRQRAIAMoApABECQgA0F/NgKsAQwDCyADKAJIIAMoApABNgIAIAMgAygCSDYCkAELCwJAIAMoAqQBLwFSRQRAIAMoAqQBIgAgAC8BDEH+/wNxOwEMDAELIAMoAqQBIgAgAC8BDEEBcjsBDAsgAyADKAKkASADKAKgARCAAUEBcToAhgEgAyADKAKgAUGACnFBgApHBH8gAy0AhgEFQQELQQFxOgCHASADAn9BASADKAKkAS8BUkGBAkYNABpBASADKAKkAS8BUkGCAkYNABogAygCpAEvAVJBgwJGC0EBcToAhQEgAy0AhwFBAXEEQCADIANBIGpCHBAqNgIcIAMoAhxFBEAgAygCqAFBCGpBDkEAEBUgAygCkAEQJCADQX82AqwBDAILAkAgAygCoAFBgAJxBEACQCADKAKgAUGACHENACADKAKkASkDIEL/////D1YNACADKAKkASkDKEL/////D1gNAgsgAygCHCADKAKkASkDKBAuIAMoAhwgAygCpAEpAyAQLgwBCwJAAkAgAygCoAFBgAhxDQAgAygCpAEpAyBC/////w9WDQAgAygCpAEpAyhC/////w9WDQAgAygCpAEpA0hC/////w9YDQELIAMoAqQBKQMoQv////8PWgRAIAMoAhwgAygCpAEpAygQLgsgAygCpAEpAyBC/////w9aBEAgAygCHCADKAKkASkDIBAuCyADKAKkASkDSEL/////D1oEQCADKAIcIAMoAqQBKQNIEC4LCwsCfyMAQRBrIgAgAygCHDYCDCAAKAIMLQAAQQFxRQsEQCADKAKoAUEIakEUQQAQFSADKAIcEBcgAygCkAEQJCADQX82AqwBDAILIANBAQJ/IwBBEGsiACADKAIcNgIMAn4gACgCDC0AAEEBcQRAIAAoAgwpAxAMAQtCAAunQf//A3ELIANBIGpBgAYQUDYCjAEgAygCHBAXIAMoAowBIAMoApABNgIAIAMgAygCjAE2ApABCyADLQCFAUEBcQRAIAMgA0EVakIHECo2AhAgAygCEEUEQCADKAKoAUEIakEOQQAQFSADKAKQARAkIANBfzYCrAEMAgsgAygCEEECECAgAygCEEHP0wBBAhBAIAMoAhAgAygCpAEvAVJB/wFxEIoBIAMoAhAgAygCpAEoAhBB//8DcRAgAn8jAEEQayIAIAMoAhA2AgwgACgCDC0AAEEBcUULBEAgAygCqAFBCGpBFEEAEBUgAygCEBAXIAMoApABECQgA0F/NgKsAQwCCyADQYGyAkEHIANBFWpBgAYQUDYCDCADKAIQEBcgAygCDCADKAKQATYCACADIAMoAgw2ApABCyADIANB0ABqQi4QKiIANgJMIABFBEAgAygCqAFBCGpBDkEAEBUgAygCkAEQJCADQX82AqwBDAELIAMoAkxBxdMAQcrTACADKAKgAUGAAnEbQQQQQCADKAKgAUGAAnFFBEAgAygCTAJ/QS0gAy0AhgFBAXENABogAygCpAEvAQgLQf//A3EQIAsgAygCTAJ/QS0gAy0AhgFBAXENABogAygCpAEvAQoLQf//A3EQICADKAJMIAMoAqQBLwEMECACQCADLQCFAUEBcQRAIAMoAkxB4wAQIAwBCyADKAJMIAMoAqQBKAIQQf//A3EQIAsgAygCpAEoAhQgA0GeAWogA0GcAWoQwwEgAygCTCADLwGeARAgIAMoAkwgAy8BnAEQIAJAAkAgAy0AhQFBAXFFDQAgAygCpAEpAyhCFFoNACADKAJMQQAQIQwBCyADKAJMIAMoAqQBKAIYECELAkACQCADKAKgAUGAAnFBgAJHDQAgAygCpAEpAyBC/////w9UBEAgAygCpAEpAyhC/////w9UDQELIAMoAkxBfxAhIAMoAkxBfxAhDAELAkAgAygCpAEpAyBC/////w9UBEAgAygCTCADKAKkASkDIKcQIQwBCyADKAJMQX8QIQsCQCADKAKkASkDKEL/////D1QEQCADKAJMIAMoAqQBKQMopxAhDAELIAMoAkxBfxAhCwsgAygCTCADKAKkASgCMBBSQf//A3EQICADIAMoAqQBKAI0IAMoAqABEIIBQf//A3EgAygCkAFBgAYQggFB//8DcWo2AogBIAMoAkwgAygCiAFB//8DcRAgIAMoAqABQYACcUUEQCADKAJMIAMoAqQBKAI4EFJB//8DcRAgIAMoAkwgAygCpAEoAjxB//8DcRAgIAMoAkwgAygCpAEvAUAQICADKAJMIAMoAqQBKAJEECECQCADKAKkASkDSEL/////D1QEQCADKAJMIAMoAqQBKQNIpxAhDAELIAMoAkxBfxAhCwsCfyMAQRBrIgAgAygCTDYCDCAAKAIMLQAAQQFxRQsEQCADKAKoAUEIakEUQQAQFSADKAJMEBcgAygCkAEQJCADQX82AqwBDAELIAMoAqgBIANB0ABqAn4jAEEQayIAIAMoAkw2AgwCfiAAKAIMLQAAQQFxBEAgACgCDCkDEAwBC0IACwsQNkEASARAIAMoAkwQFyADKAKQARAkIANBfzYCrAEMAQsgAygCTBAXIAMoAqQBKAIwBEAgAygCqAEgAygCpAEoAjAQhgFBAEgEQCADKAKQARAkIANBfzYCrAEMAgsLIAMoApABBEAgAygCqAEgAygCkAFBgAYQgQFBAEgEQCADKAKQARAkIANBfzYCrAEMAgsLIAMoApABECQgAygCpAEoAjQEQCADKAKoASADKAKkASgCNCADKAKgARCBAUEASARAIANBfzYCrAEMAgsLIAMoAqABQYACcUUEQCADKAKkASgC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CyABIAEoAggoAhw2AgQCQAJAIAEoAgRFDQAgASgCBCgCACABKAIIRw0AIAEoAgQoAgRBKkYNASABKAIEKAIEQTlGDQEgASgCBCgCBEHFAEYNASABKAIEKAIEQckARg0BIAEoAgQoAgRB2wBGDQEgASgCBCgCBEHnAEYNASABKAIEKAIEQfEARg0BIAEoAgQoAgRBmgVGDQELIAFBATYCDAwBCyABQQA2AgwLIAEoAgwL0gQBAX8jAEEgayIDIAA2AhwgAyABNgIYIAMgAjYCFCADIAMoAhxB3BZqIAMoAhRBAnRqKAIANgIQIAMgAygCFEEBdDYCDANAAkAgAygCDCADKAIcKALQKEoNAAJAIAMoAgwgAygCHCgC0ChODQAgAygCGCADKAIcIAMoAgxBAnRqQeAWaigCAEECdGovAQAgAygCGCADKAIcQdwWaiADKAIMQQJ0aigCAEECdGovAQBOBEAgAygCGCADKAIcIAMoAgxBAnRqQeAWaigCAEECdGovAQAgAygCGCADKAIcQdwWaiADKAIMQQJ0aigCAEECdGovAQBHDQEgAygCHCADKAIMQQJ0akHgFmooAgAgAygCHEHYKGpqLQAAIAMoAhxB3BZqIAMoAgxBAnRqKAIAIAMoAhxB2Chqai0AAEoNAQsgAyADKAIMQQFqNgIMCyADKAIYIAMoAhBBAnRqLwEAIAMoAhggAygCHEHcFmogAygCDEECdGooAgBBAnRqLwEASA0AAkAgAygCGCADKAIQQQJ0ai8BACADKAIYIAMoAhxB3BZqIAMoAgxBAnRqKAIAQQJ0ai8BAEcNACADKAIQIAMoAhxB2Chqai0AACADKAIcQdwWaiADKAIMQQJ0aigCACADKAIcQdgoamotAABKDQAMAQsgAygCHEHcFmogAygCFEECdGogAygCHEHcFmogAygCDEECdGooAgA2AgAgAyADKAIMNgIUIAMgAygCDEEBdDYCDAwBCwsgAygCHEHcFmogAygCFEECdGogAygCEDYCAAvnCAEDfyMAQTBrIgIkACACIAA2AiwgAiABNgIoIAIgAigCKCgCADYCJCACIAIoAigoAggoAgA2AiAgAiACKAIoKAIIKAIMNgIcIAJBfzYCECACKAIsQQA2AtAoIAIoAixBvQQ2AtQoIAJBADYCGANAIAIoAhggAigCHE5FBEACQCACKAIkIAIoAhhBAnRqLwEABEAgAiACKAIYIgE2AhAgAigCLEHcFmohAyACKAIsIgQoAtAoQQFqIQAgBCAANgLQKCAAQQJ0IANqIAE2AgAgAigCGCACKAIsQdgoampBADoAAAwBCyACKAIkIAIoAhhBAnRqQQA7AQILIAIgAigCGEEBajYCGAwBCwsDQCACKAIsKALQKEECSARAAkAgAigCEEECSARAIAIgAigCEEEBaiIANgIQDAELQQAhAAsgAigCLEHcFmohAyACKAIsIgQoAtAoQQFqIQEgBCABNgLQKCABQQJ0IANqIAA2AgAgAiAANgIMIAIoAiQgAigCDEECdGpBATsBACACKAIMIAIoAixB2ChqakEAOgAAIAIoAiwiACAAKAKoLUF/ajYCqC0gAigCIARAIAIoAiwiACAAKAKsLSACKAIgIAIoAgxBAnRqLwECazYCrC0LDAELCyACKAIoIAIoAhA2AgQgAiACKAIsKALQKEECbTYCGANAIAIoAhhBAUhFBEAgAigCLCACKAIkIAIoAhgQdSACIAIoAhhBf2o2AhgMAQsLIAIgAigCHDYCDANAIAIgAigCLCgC4BY2AhggAigCLEHcFmohASACKAIsIgMoAtAoIQAgAyAAQX9qNgLQKCACKAIsIABBAnQgAWooAgA2AuAWIAIoAiwgAigCJEEBEHUgAiACKAIsKALgFjYCFCACKAIYIQEgAigCLEHcFmohAyACKAIsIgQoAtQoQX9qIQAgBCAANgLUKCAAQQJ0IANqIAE2AgAgAigCFCEBIAIoAixB3BZqIQMgAigCLCIEKALUKEF/aiEAIAQgADYC1CggAEECdCADaiABNgIAIAIoAiQgAigCDEECdGogAigCJCACKAIYQQJ0ai8BACACKAIkIAIoAhRBAnRqLwEAajsBACACKAIMIAIoAixB2ChqagJ/IAIoAhggAigCLEHYKGpqLQAAIAIoAhQgAigCLEHYKGpqLQAATgRAIAIoAhggAigCLEHYKGpqLQAADAELIAIoAhQgAigCLEHYKGpqLQAAC0EBajoAACACKAIkIAIoAhRBAnRqIAIoAgwiADsBAiACKAIkIAIoAhhBAnRqIAA7AQIgAiACKAIMIgBBAWo2AgwgAigCLCAANgLgFiACKAIsIAIoAiRBARB1IAIoAiwoAtAoQQJODQAL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ADoAGyADIAE2AhQgAyACNgIQIANByAAQGSIANgIMAkAgAEUEQCADKAIQQQFBtJwBKAIAEBUgA0EANgIcDAELIAMoAgwgAygCEDYCACADKAIMIAMtABtBAXE6AAQgAygCDCADKAIUNgIIAkAgAygCDCgCCEEBTgRAIAMoAgwoAghBCUwNAQsgAygCDEEJNgIICyADKAIMQQA6AAwgAygCDEEANgIwIAMoAgxBADYCNCADKAIMQQA2AjggAyADKAIMNgIcCyADKAIcIQAgA0EgaiQAIAAL4wgBAX8jAEFAaiICIAA2AjggAiABNgI0IAIgAigCOCgCfDYCMCACIAIoAjgoAjggAigCOCgCbGo2AiwgAiACKAI4KAJ4NgIgIAIgAigCOCgCkAE2AhwgAgJ/IAIoAjgoAmwgAigCOCgCLEGGAmtLBEAgAigCOCgCbCACKAI4KAIsQYYCa2sMAQtBAAs2AhggAiACKAI4KAJANgIUIAIgAigCOCgCNDYCECACIAIoAjgoAjggAigCOCgCbGpBggJqNgIMIAIgAigCLCACKAIgQQFrai0AADoACyACIAIoAiwgAigCIGotAAA6AAogAigCOCgCeCACKAI4KAKMAU8EQCACIAIoAjBBAnY2AjALIAIoAhwgAigCOCgCdEsEQCACIAIoAjgoAnQ2AhwLA0ACQCACIAIoAjgoAjggAigCNGo2AigCQCACKAIoIAIoAiBqLQAAIAItAApHDQAgAigCKCACKAIgQQFrai0AACACLQALRw0AIAIoAigtAAAgAigCLC0AAEcNACACIAIoAigiAEEBajYCKCAALQABIAIoAiwtAAFHBEAMAQsgAiACKAIsQQJqNgIsIAIgAigCKEEBajYCKANAIAIgAigCLCIAQQFqNgIsIAAtAAEhASACIAIoAigiAEEBajYCKAJ/QQAgAC0AASABRw0AGiACIAIoAiwiAEEBajYCLCAALQABIQEgAiACKAIoIgBBAWo2AihBACAALQABIAFHDQAaIAIgAigCLCIAQQFqNgIsIAAtAAEhASACIAIoAigiAEEBajYCKEEAIAAtAAEgAUcNABogAiACKAIsIgBBAWo2AiwgAC0AASEBIAIgAigCKCIAQQFqNgIoQQAgAC0AASABRw0AGiACIAIoAiwiAEEBajYCLCAALQABIQEgAiACKAIoIgBB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IAIoAigoAmxrQQFrNgIUAkAgAigCKCgCACgCBCACKAIUTQ0AIAIoAigoAlwgAigCKCgCLEgNACACKAIoIgAgACgCXCACKAIoKAIsazYCXCACKAIoIgAgACgCbCACKAIoKAIsazYCbCACKAIoKAI4IAIoAigoAjggAigCKCgCLGogAigCKCgCbBAaGiACKAIoKAKwLUECSQRAIAIoAigiACAAKAKwLUEBajYCsC0LIAIgAigCKCgCLCACKAIUajYCFAsgAigCFCACKAIoKAIAKAIESwRAIAIgAigCKCgCACgCBDYCFAsgAigCFARAIAIoAigoAgAgAigCKCgCOCACKAIoKAJsaiACKAIUEHMaIAIoAigiACACKAIUIAAoAmxqNgJsCyACKAIoKALALSACKAIoKAJsSQRAIAIoAiggAigCKCgCbDYCwC0LIAIgAigCKCgCvC1BKmpBA3U2AhQgAgJ/Qf//AyACKAIoKAIMIAIoAhRrQf//A0sNABogAigCKCgCDCACKAIUaws2AhQgAgJ/IAIoAhQgAigCKCgCLEsEQCACKAIoKAIsDAELIAIoAhQLNgIgIAIgAigCKCgCbCACKAIoKAJcazYCGAJAIAIoAhggAigCIEkEQCACKAIYRQRAIAIoAiRBBEcNAgsgAigCJEUNASACKAIoKAIAKAIEDQEgAigCGCACKAIUSw0BCyACAn8gAigCGCACKAIUSwRAIAIoAhQMAQsgAigCGAs2AhwgAkEBQQACf0EAIAIoAiRBBEcNABpBACACKAIoKAIAKAIEDQAaIAIoAhwgAigCGEYLQQFxGzYCECACKAIoIAIoAigoAjggAigCKCgCXGogAigCHCACKAIQEFcgAigCKCIAIAIoAhwgACgCXGo2AlwgAigCKCgCABAdCyACQQJBACACKAIQGzYCLAsgAigCLCEAIAJBMGokACAAC7ICAQF/IwBBEGsiASQAIAEgADYCCAJAIAEoAggQdARAIAFBfjYCDAwBCyABIAEoAggoAhwoAgQ2AgQgASgCCCgCHCgCCARAIAEoAggoAiggASgCCCgCHCgCCCABKAIIKAIkEQQACyABKAIIKAIcKAJEBEAgASgCCCgCKCABKAIIKAIcKAJEIAEoAggoAiQRBAALIAEoAggoAhwoAkAEQCABKAIIKAIoIAEoAggoAhwoAkAgASgC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AEEBcUULBEAgAygCEEEUQQAQFSADKAIEEBcgA0EANgIcDAELIAMgAy8BGgJ/IwBBEGsiACADKAIENgIMAn4gACgCDC0AAEEBcQRAIAAoAgwpAxAMAQtCAAunQf//A3ELAn8jAEEQayIAIAMoAgQ2AgwgACgCDCgCBAtBgAYQUDYCACADKAIEEBcgAyADKAIANgIcCyADKAIcIQAgA0EgaiQAIAALtAIBAX8jAEEwayIDJAAgAyAANgIoIAMgATcDICADIAI2AhwCQCADKQMgUARAIANBAToALwwBCyADIAMoAigpAxAgAykDIHw3AwgCQCADKQMIIAMpAyBaBEAgAykDCEL/////AFgNAQsgAygCHEEOQQAQFSADQQA6AC8MAQsgAyADKAIoKAIAIAMpAwinQQR0EE0iADYCBCAARQRAIAMoAhxBDkEAEBUgA0EAOgAvDAELIAMoAiggAygCBDYCACADIAMoAigpAwg3AxADQCADKQMQIAMpAwhaRQRAIAMoAigoAgAgAykDEKdBBHRqEIwBIAMgAykDEEIBfDcDEAwBCwsgAygCKCADKQMIIgE3AxAgAygCKCABNwMIIANBAToALwsgAy0AL0EBcSEAIANBMGokACAAC8wBAQF/IwBBIGsiAiQAIAIgADcDECACIAE2AgwgAkEwEBkiATYCCAJAIAFFBEAgAigCDEEOQQAQFSACQQA2AhwMAQsgAigCCEEANgIAIAIoAghCADcDECACKAIIQgA3AwggAigCCEIANwMgIAIoAghCADcDGCACKAIIQQA2AiggAigCCEEAOgAsIAIoAgggAikDECACKAIMEMUBQQFxRQRAIAIoAggQJSACQQA2AhwMAQsgAiACKAIINgIcCyACKAIcIQEgAkEgaiQAIAELtgUBAX8jAEEwayICJAAgAiAANgIoIAIgATcDIAJAIAIpAyAgAigCKCkDMFoEQCACKAIoQQhqQRJBABAVIAJBfzYCLAwBCyACIAIoAigoAkAgAikDIKdBBHRqNgIcAkAgAigCHCgCAARAIAIoAhwoAgAtAARBAXFFDQELIAJBADYCLAwBCyACKAIcKAIAKQNIQhp8Qv///////////wBWBEAgAigCKEEIakEEQRYQFSACQX82AiwMAQsgAigCKCgCACACKAIcKAIAKQNIQhp8QQAQKEEASARAIAIoAihBCGogAigCKCgCABAYIAJBfzYCLAwBCyACIAIoAigoAgBCBCACQRhqIAIoAihBCGoQQSIANgIUIABFBEAgAkF/NgIsDAELIAIgAigCFBAeOwESIAIgAigCFBAeOwEQIAIoAhQQSEEBcUUEQCACKAIUEBcgAigCKEEIakEUQQAQFSACQX82AiwMAQsgAigCFBAXIAIvARBBAEoEQCACKAIoKAIAIAIvARKtQQEQKEEASARAIAIoAihBCGpBBEG0nAEoAgAQFSACQX82AiwMAgsgAkEAIAIoAigoAgAgAi8BEEEAIAIoAihBCGoQYDYCCCACKAIIRQRAIAJBfzYCLAwCCyACKAIIIAIvARBBgAIgAkEMaiACKAIoQQhqEIQBQQFxRQRAIAIoAggQFiACQX82AiwMAgsgAigCCBAWIAIoAgwEQCACIAIoAgwQgwE2AgwgAigCHCgCACgCNCACKAIMEIUBIQAgAigCHCgCACAANgI0CwsgAigCHCgCAEEBOgAEAkAgAigCHCgCBEUNACACKAIcKAIELQAEQQFxDQAgAigCHCgCBCACKAIcKAIAKAI0NgI0IAIoAhwoAgRBAToABAsgAkEANgIsCyACKAIsIQAgAkEwaiQAIAALBwAgACgCAAuMAQEBfyMAQSBrIgIkACACIAA2AhggAiABNgIUIAJBADYCEAJAIAIoAhRFBEAgAkEANgIcDAELIAIgAigCFBAZNgIMIAIoAgxFBEAgAigCEEEOQQAQFSACQQA2AhwMAQsgAigCDCACKAIYIAIoAhQQGhogAiACKAIMNgIcCyACKAIcIQAgAkEgaiQAIAALGABBqJwBQgA3AgBBsJwBQQA2AgBBqJwBC4gBAQF/IwBBIGsiAyQAIAMgADYCFCADIAE2AhAgAyACNwMIAkACQCADKAIUKAIkQQFGBEAgAykDCEL///////////8AWA0BCyADKAIUQQxqQRJBABAVIANCfzcDGAwBCyADIAMoAhQgAygCECADKQMIQQsQIjcDGAsgAykDGCECIANBIGokACACC3MBAX8jAEEgayIBJAAgASAANgIYIAFCCDcDECABIAEoAhgpAxAgASkDEHw3AwgCQCABKQMIIAEoAhgpAxBUBEAgASgCGEEAOgAAIAFBfzYCHAwBCyABIAEoAhggASkDCBAtNgIcCyABKAIcGiAB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AmwLIAQoAmwhACAEQfAAaiQAIAAL1wEBAX8jAEEgayICJAAgAiAANgIYIAIgATYCFCACQYmYATYCECACQQQ2AgwCQAJAIAIoAhQgAigCDE8EQCACKAIMDQELIAJBADYCHAwBCyACIAIoAhhBf2o2AggDQAJAIAIgAigCCEEBaiACKAIQLQAAIAIoAhggAigCCGsgAigCFCACKAIMa2oQpgEiADYCCCAARQ0AIAIoAghBAWogAigCEEEBaiACKAIMQQFrEFMNASACIAIoAgg2AhwMAgsLIAJBADYCHAsgAigCHCEAIAJBIGokACAAC8EGAQF/IwBB4ABrIgIkACACIAA2AlggAiABNwNQAkAgAikDUEIWVARAIAIoAlhBCGpBE0EAEBUgAkEANgJcDAELIAICfiACKQNQQqqABFQEQCACKQNQDAELQqqABAs3AzAgAigCWCgCAEIAIAIpAzB9QQIQKEEASARAIwBBEGsiACACKAJYKAIANgIMIAIgACgCDEEMajYCCAJAAn8jAEEQayIAIAIoAgg2AgwgACgCDCgCAEEERgsEQCMAQRBrIgAgAigCCDYCDCAAKAIMKAIEQRZGDQELIAIoAlhBCGogAigCCBBEIAJBADYCXAwCCwsgAiACKAJYKAIAEEoiATcDOCABQgBTBEAgAigCWEEIaiACKAJYKAIAEBggAkEANgJcDAELIAIgAigCWCgCACACKQMwQQAgAigCWEEIahBBIgA2AgwgAEUEQCACQQA2AlwMAQsgAkJ/NwMgIAJBADYCTCACKQMwQqqABFoEQCACKAIMQhQQLRoLIAJBEGpBE0EAEBUgAiACKAIMQgAQHzYCRANAAkAgAiACKAJEIAIoAgwQMEISfacQ9gEiADYCRCAARQ0AIAIoAgwgAigCRAJ/IwBBEGsiACACKAIMNgIMIAAoAgwoAgQLa6wQLRogAiACKAJYIAIoAgwgAikDOCACQRBqEPUBIgA2AkggAARAAkAgAigCTARAIAIpAyBCAFcEQCACIAIoAlggAigCTCACQRBqEGU3AyALIAIgAigCWCACKAJIIAJBEGoQZTcDKAJAIAIpAyAgAikDKFMEQCACKAJMECUgAiACKAJINgJMIAIgAikDKDcDIAwBCyACKAJIECULDAELIAIgAigCSDYCTAJAIAIoAlgoAgRBBHEEQCACIAIo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QXhGBEAgABCQAg0BCyADQYFgTwR/QbScAUEAIANrNgIAQX8FIAMLDAELIAIgABCPAiACIAEQAiIAQYFgTwR/QbScAUEAIABrNgIAQX8FIAALCyEAIAJBIGokACAAC54BAQN/A0AgACACaiIDIAJB2JcBai0AADoAACACQQ5HIQQgAkEBaiECIAQNAAsgAQRAQQ4hAiABIQMDQCACQQFqIQIgA0EJSyEEIANBCm4hAyAEDQALIAAgAmpBADoAAANAIAAgAkF/aiICaiABIAFBCm4iA0EKbGtBMHI6AAAgAUEJSyEEIAMhASAEDQALDwsgA0EwOgAAIABBADoADws3AQF/IwBBIGsiASQAAn9BASAAIAFBCGoQCCIARQ0AGkG0nAEgADYCAEEACyEAIAFBIGokACAACyABAn8gABAsQQFqIgEQGSICRQRAQQAPCyACIAAgARAaC6UBAQF/IwBBIGsiAiAANgIUIAIgATYCEAJAIAIoAhRFBEAgAkJ/NwMYDAELIAIoAhBBCHEEQCACIAIoAhQpAzA3AwgDQEEAIQAgAikDCEIAVgR/IAIoAhQoAkAgAikDCEIBfadBBHRqKAIARQVBAAtBAXEEQCACIAIpAwhCf3w3AwgMAQsLIAIgAikDCDcDGAwBCyACIAIoAhQpAzA3AxgLIAIpAxgL8gEBAX8jAEEgayIDJAAgAyAANgIUIAMgATYCECADIAI3AwgCQCADKAIURQRAIANCfzcDGAwBCyADKAIUKAIEBEAgA0J/NwMYDAELIAMpAwhC////////////AFYEQCADKAIUQQRqQRJBABAVIANCfzcDGAwBCwJAIAMoAhQtABBBAXFFBEAgAykDCFBFDQELIANCADcDGAwBCyADIAMoAhQoAhQgAygCECADKQMIEC8iAjcDACACQgBTBEAgAygCFEEEaiADKAIUKAIUEBggA0J/NwMYDAELIAMgAykDADcDGAsgAykDGCECIANBIGokACACC0cBAX8jAEEgayIDJAAgAyAANgIcIAMgATcDECADIAI2AgwgAygCHCADKQMQIAMoAgwgAygCHCgCHBCdASEAIANBIGokACAAC38CAX8BfiMAQSBrIgMkACADIAA2AhggAyABNgIUIAMgAjYCECADIAMoAhggAygCFCADKAIQEG4iBDcDCAJAIARCAFMEQCADQQA2AhwMAQsgAyADKAIYIAMpAwggAygCECADKAIYKAIcEJ0BNgIcCyADKAIcIQAgA0EgaiQAIAALqgEBAX8jAEEQayIBJAAgASAANgIIIAFBGBAZIgA2AgQCQCAARQRAIAEoAghBCGpBDkEAEBUgAUEANgIMDAELIAEoAgQgASgCCDYCACMAQRBrIgAgASgCBEEEajYCDCAAKAIMQQA2AgAgACgCDEEANgIEIAAoAgxBADYCCCABKAIEQQA6ABAgASgCBEEANgIUIAEgASgCBDYCDAsgASgCDCEAIAFBEGokACAAC9UDAQF/IwBBIGsiBCQAIAQgADYCGCAEIAE3AxAgBCACNgIMIAQgAzYCCAJAIAQoAhggBCkDEEEAQQAQRUUEQCAEQX82AhwMAQsgBCgCGCgCGEECcQRAIAQoAhhBCGpBGUEAEBUgBEF/NgIcDAELIAQoAhgoAkAgBCkDEKdBBHRqKAIIBEAgBCgCGCgCQCAEKQMQp0EEdGooAgggBCgCDBBtQQBIBEAgBCgCGEEIakEPQQAQFSAEQX82AhwMAgsgBEEANgIcDAELIAQgBCgCGCgCQCAEKQMQp0EEdGo2AgRBASEAIAQgBCgCBCgCAAR/IAQoAgwgBCgCBCgCACgCFEcFQQELQQFxNgIAAkAgBCgCAARAIAQoAgQoAgRFBEAgBCgCBCgCABBGIQAgBCgCBCAANgIEIABFBEAgBCgCGEEIakEOQQAQFSAEQX82AhwMBAsLIAQoAgQoAgQgBCgCDDYCFCAEKAIEKAIEIgAgACgCAEEgcjYCAAwBCyAEKAIEKAIEBEAgBCgCBCgCBCIAIAAoAgBBX3E2AgAgBCgCBCgCBCgCAEUEQCAEKAIEKAIEEDogBCgCBEEANgIECwsLIARBADYCHAsgBCgCHCEAIARBIGokACAACwcAIAAoAggLGAEBfyMAQRBrIgEgADYCDCABKAIMQQRqCxgBAX8jAEEQayIBIAA2AgwgASgCDEEIaguDAQIBfwF+IwBBIGsiBCQAIAQgADYCFCAEIAE2AhAgBCACNgIMIAQgAzYCCAJAAkAgBCgCEARAIAQoAgwNAQsgBCgCFEEIakESQQAQFSAEQn83AxgMAQsgBCAEKAIUIAQoAhAgBCgCDCAEKAIIEKABNwMYCyAEKQMYIQUgBEEgaiQAIAULaQEBfyMAQRBrIgEkACABIAA2AgwgASgCDCgCFARAIAEoAgwoAhQQHAsgAUEANgIIIAEoAgwoAgQEQCABIAEoAgwoAgQ2AggLIAEoAgxBBGoQOCABKAIMEBYgASgCCCEAIAFBEGokACAAC7gDAgF/AX4jAEEwayIDJAAgAyAANgIkIAMgATYCICADIAI2AhwCQCADKAIkKAIYQQJxBEAgAygCJEEIakEZQQAQFSADQn83AygMAQsgAygCIEUEQCADKAIkQQhqQRJBABAVIANCfzcDKAwBCyADQQA2AgwgAyADKAIgECw2AhggAygCICADKAIYQQFraiwAAEEvRwRAIAMgAygCGEECahAZIgA2AgwgAEUEQCADKAIkQQhqQQ5BABAVIANCfzcDKAwCCyADKAIMIAMoAiAQoAIgAygCDCADKAIYakEvOgAAIAMoAgwgAygCGEEBampBADoAAAsgAyADKAIkQQBCAEEAEHkiADYCCCAARQRAIAMoAgwQFiADQn83AygMAQsgAyADKAIkAn8gAygCDARAIAMoAgwMAQsgAygCIAsgAygCCCADKAIcEKABNwMQIAMoAgwQFgJAIAMpAxBCAFMEQCADKAIIEBwMAQsgAygCJCADKQMQQQBBA0GAgPyPBBCfAUEASARAIAMoAiQgAykDEBChARogA0J/NwMoDAILCyADIAMpAxA3AygLIAMpAyghBCADQTBqJAAgBAuZCAEBfyMAQUBqIgQkACAEIAA2AjggBCABNwMwIAQgAjYCLCAEIAM2AigCQCAEKQMwIAQoAjgpAzBaBEAgBCgCOEEIakESQQAQFSAEQX82AjwMAQsgBCgCOCgCGEECcQRAIAQoAjhBCGpBGUEAEBUgBEF/NgI8DAELAkACQCAEKAIsRQ0AIAQoAiwsAABFDQAgBCAEKAIsIAQoAiwQLEH//wNxIAQoAiggBCgCOEEIahBRIgA2AiAgAEUEQCAEQX82AjwMAwsCQCAEKAIoQYAwcQ0AIAQoAiBBABA7QQNHDQAgBCgCIEECNgIICwwBCyAEQQA2AiALIAQgBCgCOCAEKAIsQQBBABBVIgE3AxACQCABQgBTDQAgBCkDECAEKQMwUQ0AIAQoAiAQJiAEKAI4QQhqQQpBABAVIARBfzYCPAwBCwJAIAQpAxBCAFMNACAEKQMQIAQpAzBSDQAgBCgCIBAmIARBADYCPAwBCyAEIAQoAjgoAkAgBCkDMKdBBHRqNgIkAkAgBCgCJCgCAARAIAQgBCgCJCgCACgCMCAEKAIgEIcBQQBHOgAfDAELIARBADoAHwsCQCAELQAfQQFxDQAgBCgCJCgCBA0AIAQoAiQoAgAQRiEAIAQoAiQgADYCBCAARQRAIAQoAjhBCGpBDkEAEBUgBCgCIBAmIARBfzYCPAwCCwsgBAJ/IAQtAB9BAXEEQCAEKAIkKAIAKAIwDAELIAQoAiALQQBBACAEKAI4QQhqEEciADYCCCAARQRAIAQoAiAQJiAEQX82AjwMAQsCQCAEKAIkKAIEBEAgBCAEKAIkKAIEKAIwNgIEDAELAkAgBCgCJCgCAARAIAQgBCgCJCgCACgCMDYCBAwBCyAEQQA2AgQLCwJAIAQoAgQEQCAEIAQoAgRBAEEAIAQoAjhBCGoQRyIANgIMIABFBEAgBCgCIBAmIARBfzYCPAwDCwwBCyAEQQA2AgwLIAQoAjgoAlAgBCgCCCAEKQMwQQAgBCgCOEEIahB9QQFxRQRAIAQoAiAQJiAEQX82AjwMAQsgBCgCDARAIAQoAjgoAlAgBCgCDEEAEFkaCwJAIAQtAB9BAXEEQCAEKAIkKAIEBEAgBCgCJCgCBCgCAEECcQRAIAQoAiQoAgQoAjAQJiAEKAIkKAIEIgAgACgCAEF9cTYCAAJAIAQoAiQoAgQoAgBFBEAgBCgCJCgCBBA6IAQoAiRBADYCBAwBCyAEKAIkKAIEIAQoAiQoAgAoAjA2AjALCwsgBCgCIBAmDAELIAQoAiQoAgQoAgBBAnEEQCAEKAIkKAIEKAIwECYLIAQoAiQoAgQiACAAKAIAQQJyNgIAIAQoAiQoAgQgBCgCIDYCMAsgBEEANgI8CyAEKAI8IQAgBEFAayQAIAAL3wICAX8BfiMAQUBqIgEkACABIAA2AjQCQCABKAI0KQMwQgF8IAEoAjQpAzhaBEAgASABKAI0KQM4NwMYIAEgASkDGEIBhjcDEAJAIAEpAxBCEFQEQCABQhA3AxAMAQsgASkDEEKACFYEQCABQoAINwMQCwsgASABKQMQIAEpAxh8NwMYIAEgASkDGKdBBHStNwMIIAEoAjQpAzinQQR0rSABKQMIVgRAIAEoAjRBCGpBDkEAEBUgAUJ/NwM4DAILIAEgASgCNCgCQCABKQMYp0EEdBBNNgIkIAEoAiRFBEAgASgCNEEIakEOQQAQFSABQn83AzgMAgsgASgCNCABKAIkNgJAIAEoAjQgASkDGDcDOAsgASgCNCIAKQMwIQIgACACQgF8NwMwIAEgAjcDKCABKAI0KAJAIAEpAyinQQR0ahCMASABIAEpAyg3AzgLIAEpAzghAiABQUBrJAAgAgvIAQEBfwJAAkAgACABc0EDcQ0AIAFBA3EEQANAIAAgAS0AACICOgAAIAJFDQMgAEEBaiEAIAFBAWoiAUEDcQ0ACwsgASgCACICQX9zIAJB//37d2pxQYCBgoR4cQ0AA0AgACACNgIAIAEoAgQhAiAAQQRqIQAgAUEEaiEBIAJB//37d2ogAkF/c3FBgIGChHhxRQ0ACwsgACABLQAAIgI6AAAgAkUNAANAIAAgAS0AASICOgABIABBAWohACABQQFqIQEgAg0ACwsLlwQBAX8jAEEwayICJAAgAiAANgIoIAIgATcDICACQQE2AhwCQCACKQMgIAIoAigpAzBaBEAgAigCKEEIakESQQAQFSACQX82AiwMAQsCQCACKAIcDQAgAigCKCgCQCACKQMgp0EEdGooAgRFDQAgAigCKCgCQCACKQMgp0EEdGooAgQoAgBBAnFFDQACQCACKAIoKAJAIAIpAyCnQQR0aigCAARAIAIgAigCKCACKQMgQQggAigCKEEIahBPIgA2AgwgAEUEQCACQX82AiwMBAsgAiACKAIoIAIoAgxBAEEAEFU3AxACQCACKQMQQgBTDQAgAikDECACKQMgUQ0AIAIoAihBCGpBCkEAEBUgAkF/NgIsDAQLDAELIAJBADYCDAsgAiACKAIoIAIpAyBBACACKAIoQQhqEE8iADYCCCAARQRAIAJBfzYCLAwCCyACKAIMBEAgAigCKCgCUCACKAIMIAIpAyBBACACKAIoQQhqEH1BAXFFBEAgAkF/NgIsDAMLCyACKAIoKAJQIAIoAgggAigCKEEIahBZQQFxRQRAIAIoAigoAlAgAigCDEEAEFkaIAJBfzYCLAwCCwsgAigCKCgCQCACKQMgp0EEdGooAgQQOiACKAIoKAJAIAIpAyCnQQR0akEANgIEIAIoAigoAkAgAikDIKdBBHRqEGMgAkEANgIsCyACKAIsIQAgAkEwaiQAIAALJgEBfwNAIAFFBEBBAA8LIAAgAUF/aiIBaiICLQAAQS9HDQALIAILqQEBA38CQCAALQAAIgJFDQADQCABLQAAIgRFBEAgAiEDDAILAkAgAiAERg0AIAJBIHIgAiACQb9/akEaSRsgAS0AACICQSByIAIgAkG/f2pBGkkbRg0AIAAtAAAhAwwCCyABQQFqIQEgAC0AASECIABBAWohACACDQALCyADQf8BcSIAQSByIAAgAEG/f2pBGkkbIAEtAAAiAEEgciAAIABBv39qQRpJG2sL6AMBA38jAEGwAWsiASQAIAEgADYCqAEgASgCqAEQOAJAAkAgASgCqAEoAgBBAE4EQCABKAKoASgCAEGgDigCAEgNAQsgASABKAKoASgCADYCECABQSBqQbyXASABQRBqEG8gAUEANgKkASABIAFBIGo2AqABDAELIAEgASgCqAEoAgBBAnRBoA1qKAIANgKkAQJAAkACQAJAIAEoAqgBKAIAQQJ0QbAOaigCAEF/ag4CAAECCyABIAEoAqgBKAIEQZCaASgCABClAjYCoAEMAgsjAEEQayIAIAEoAqgBKAIENgIMIAFBACAAKAIMa0ECdEHY1ABqKAIANgKgAQwBCyABQQA2AqABCwsCQCABKAKgAUUEQCABIAEoAqQBNgKsAQwBCyABIAEoAqABECwCfyABKAKkAQRAIAEoAqQBECxBAmoMAQtBAAtqQQFqEBkiADYCHCAARQRAIAFB2A0oAgA2AqwBDAELIAEoAhwhAAJ/IAEoAqQBBEAgASgCpAEMAQtB1JcBCyECQdWXAUHUlwEgASgCpAEbIQMgASABKAKgATYCCCABIAM2AgQgASACNgIAIABBzZcBIAEQbyABKAKoASABKAIcNgIIIAEgASgCHDYCrAELIAEoAqwBIQAgAUGwAWokACAAC3EBA38CQAJAA0AgACACQdCIAWotAABHBEBB1wAhAyACQQFqIgJB1wBHDQEMAgsLIAIiAw0AQbCJASEADAELQbCJASECA0AgAi0AACEEIAJBAWoiACECIAQNACAAIQIgA0F/aiIDDQALCyABKAIUGiAACzMBAX8gACgCFCIDIAEgAiAAKAIQIANrIgEgASACSxsiARAaGiAAIAAoAhQgAWo2AhQgAguKAQECfyMAQaABayIDJAAgA0EIakG4hwFBkAEQGhogAyAANgI0IAMgADYCHCADQX4gAGsiBEH/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NgIAQX8PCyAAQgA3AgQgACAAKAIsIgE2AhwgACABNgIUIAAgASAAKAIwajYCEEEACwYAQfSgAQsGAEHwoAELBgBB6KABC9kDAgJ/An4jAEEgayICJAACQCABQv///////////wCDIgVCgICAgICAwP9DfCAFQoCAgICAgMCAvH98VARAIAFCBIYgAEI8iIQhBCAAQv//////////D4MiAEKBgICAgICAgAhaBEAgBEKBgICAgICAgMAAfCEEDAILIARCgICAgICAgIBAfSEEIABCgICAgICAgIAIhUIAUg0BIARCAYMgBHwhBAwBCyAAUCAFQoCAgICAgMD//wBUIAVCgICAgICAwP//AFEbRQRAIAFCBIYgAEI8iIRC/////////wODQoCAgICAgID8/wCEIQQMAQtCgICAgICAgPj/ACEEIAVC////////v//DAFYNAEIAIQQgBUIwiKciA0GR9wBJDQAgAkEQaiAAIAFC////////P4NCgICAgICAwACEIgQgA0H/iH9qELQCIAIgACAEQYH4ACADaxCzAiACKQMIQgSGIAIpAwAiAEI8iIQhBCACKQMQIAIpAxiEQgBSrSAAQv//////////D4OEIgBCgYCAgICAgIAIWgRAIARCAXwhBAwBCyAAQoCAgICAgICACIVCAFINACAEQgGDIAR8IQQLIAJBIGokACAEIAFCgICAgICAgICAf4OEvwtQAQF+AkAgA0HAAHEEQCACIANBQGqtiCEBQgAhAgwBCyADRQ0AIAJBwAAgA2uthiABIAOtIgSIhCEBIAIgBIghAgsgACABNwMAIAAgAjcDCAtQAQF+AkAgA0HAAHEEQCABIANBQGqthiECQgAhAQwBCyADRQ0AIAIgA60iBIYgAUHAACADa62IhCECIAEgBIYhAQsgACABNwMAIAAgAjcDCAuLAgACQCAABH8gAUH/AE0NAQJAQZCaASgCACgCAEUEQCABQYB/cUGAvwNGDQMMAQsgAUH/D00EQCAAIAFBP3FBgAFyOgABIAAgAUEGdkHAAXI6AABBAg8LIAFBgLADT0EAIAFBgEBxQYDAA0cbRQRAIAAgAUE/cUGAAXI6AAIgACABQQx2QeABcjoAACAAIAFBBnZBP3FBgAFyOgABQQMPCyABQYCAfGpB//8/TQRAIAAgAUE/cUGAAXI6AAMgACABQRJ2QfABcjoAACAAIAFBBnZBP3FBgAFyOgACIAAgAUEMdkE/cUGAAXI6AAFBBA8LC0G0nAFBGTYCAEF/BUEBCw8LIAAgAToAAEEBC74CAQF/IwBBwMAAayIDJAAgAyAANgK4QCADIAE2ArRAIAMgAjcDqEACQCADKAK0QBBJQQBIBEAgAygCuEBBCGogAygCtEAQGCADQX82ArxADAELIANBADYCDCADQgA3AxADQAJAIAMgAygCtEAgA0EgakKAwAAQLyICNwMYIAJCAFcNACADKAK4QCADQSBqIAMpAxgQNkEASARAIANBfzYCDAUgAykDGEKAwABSDQIgAygCuEAoAlRFDQIgAykDqEBCAFcNAiADIAMpAxggAykDEHw3AxAgAygCuEAoAlQgAykDELkgAykDqEC5oxBYDAILCwsgAykDGEIAUwRAIAMoArhAQQhqIAMoArRAEBggA0F/NgIMCyADKAK0QBAyGiADIAMoAgw2ArxACyADKAK8QCEAIANBwMAAaiQAIAALqgEBAX8jAEEwayIDJAAgAyAANgIoIAMgATYCJCADIAI3AxggAyADKAIoKAIAEDUiAjcDEAJAIAJCAFMEQCADQX82AiwMAQsgAyADKAIoIAMoAiQgAykDGBCRAyICNwMAIAJCAFMEQCADQX82AiwMAQsgAyADKAIoKAIAEDUiAjcDCCACQgBTBEAgA0F/NgIsDAELIANBADYCLAsgAygCLCEAIANBMGokACAAC/4BAQF/IwBBoMAAayICJAAgAiAANgKYQCACIAE3A5BAIAIgAikDkEC6OQMAAkADQCACKQOQQEIAVgRAIAICfkKAwAAgAikDkEBCgMAAVg0AGiACKQOQQAs+AgwgAigCmEAoAgAgAkEQaiACKAIMrSACKAKYQEEIahBhQQBIBEAgAkF/NgKcQAwDCyACKAKYQCACQRBqIAIoAgytEDZBAEgEQCACQX82ApxADAMFIAIgAikDkEAgAjUCDH03A5BAIAIoAphAKAJUIAIrAwAgAikDkEC6oSACKwMAoxBYDAILAAsLIAJBADYCnEALIAIoApxAIQAgAkGgwABqJAAgAAvnEQIBfwF+IwBBoAFrIgMkACADIAA2ApgBIAMgATYClAEgAyACNgKQAQJAIAMoApQBIANBOGoQOUEASARAIAMoApgBQQhqIAMoApQBEBggA0F/NgKcAQwBCyADKQM4QsAAg1AEQCADIAMpAzhCwACENwM4IANBADsBaAsCQAJAIAMoApABKAIQQX9HBEAgAygCkAEoAhBBfkcNAQsgAy8BaEUNACADKAKQASADLwFoNgIQDAELAkACQCADKAKQASgCEA0AIAMpAzhCBINQDQAgAyADKQM4QgiENwM4IAMgAykDUDcDWAwBCyADIAMpAzhC9////w+DNwM4CwsgAykDOEKAAYNQBEAgAyADKQM4QoABhDcDOCADQQA7AWoLIANBgAI2AiQCQCADKQM4QgSDUARAIAMgAygCJEGACHI2AiQgA0J/NwNwDAELIAMoApABIAMpA1A3AyggAyADKQNQNwNwAkAgAykDOEIIg1AEQAJAAkACQAJAAkACfwJAIAMoApABKAIQQX9HBEAgAygCkAEoAhBBfkcNAQtBCAwBCyADKAKQASgCEAtB//8DcQ4NAgMDAwMDAwMBAwMDAAMLIANClMLk8w83AxAMAwsgA0KDg7D/DzcDEAwCCyADQv////8PNwMQDAELIANCADcDEAsgAykDUCADKQMQVgRAIAMgAygCJEGACHI2AiQLDAELIAMoApABIAMpA1g3AyALCyADIAMoApgBKAIAEDUiBDcDiAEgBEIAUwRAIAMoApgBQQhqIAMoApgBKAIAEBggA0F/NgKcAQwBCyADKAKQASIAIAAvAQxB9/8DcTsBDCADIAMoApgBIAMoApABIAMoAiQQXiIANgIoIABBAEgEQCADQX82ApwBDAELIAMgAy8BaAJ/AkAgAygCkAEoAhBBf0cEQCADKAKQASgCEEF+Rw0BC0EIDAELIAMoApABKAIQC0H//wNxRzoAIiADIAMtACJBAXEEfyADLwFoQQBHBUEAC0EBcToAISADIAMvAWgEfyADLQAhBUEBC0EBcToAICADIAMtACJBAXEEfyADKAKQASgCEEEARwVBAAtBAXE6AB8gAwJ/QQEgAy0AIkEBcQ0AGkEBIAMoApABKAIAQYABcQ0AGiADKAKQAS8BUiADLwFqRwtBAXE6AB4gAyADLQAeQQFxBH8gAy8BakEARwVBAAtBAXE6AB0gAyADLQAeQQFxBH8gAygCkAEvAVJBAEcFQQALQQFxOgAcIAMgAygClAE2AjQjAEEQayIAIAMoAjQ2AgwgACgCDCIAIAAoAjBBAWo2AjAgAy0AHUEBcQRAIAMgAy8BakEAEHciADYCDCAARQRAIAMoApgBQQhqQRhBABAVIAMoAjQQHCADQX82ApwBDAILIAMgAygCmAEgAygCNCADLwFqQQAgAygCmAEoAhwgAygCDBEGACIANgIwIABFBEAgAygCNBAcIANBfzYCnAEMAgsgAygCNBAcIAMgAygCMDYCNAsgAy0AIUEBcQRAIAMgAygCmAEgAygCNCADLwFoEKsBIgA2AjAgAEUEQCADKAI0EBwgA0F/NgKcAQwCCyADKAI0EBwgAyADKAIwNgI0CyADLQAgQQFxBEAgAyADKAKYASADKAI0QQAQqgEiADYCMCAARQRAIAMoAjQQHCADQX82ApwBDAILIAMoAjQQHCADIAMoAjA2AjQLIAMtAB9BAXEEQCADIAMoApgBIAMoAjQgAygCkAEoAhAgAygCkAEvAVAQwwIiADYCMCAARQRAIAMoAjQQHCADQX82ApwBDAILIAMoAjQQHCADIAMoAjA2AjQLIAMtABxBAXEEQCADQQA2AgQCQCADKAKQASgCVARAIAMgAygCkAEoAlQ2AgQMAQsgAygCmAEoAhwEQCADIAMoApgBKAIcNgIECwsgAyADKAKQAS8BUkEBEHciADYCCCAARQRAIAMoApgBQQhqQRhBABAVIAMoAjQQHCADQX82ApwBDAILIAMgAygCmAEgAygCNCADKAKQAS8BUkEBIAMoAgQgAygCCBEGACIANgIwIABFBEAgAygCNBAcIANBfzYCnAEMAgsgAygCNBAcIAMgAygCMDYCNAsgAyADKAKYASgCABA1IgQ3A4ABIARCAFMEQCADKAKYAUEIaiADKAKYASgCABAYIANBfzYCnAEMAQsgAyADKAKYASADKAI0IAMpA3AQtgI2AiwgAygCNCADQThqEDlBAEgEQCADKAKYAUEIaiADKAI0EBggA0F/NgIsCyADIAMoAjQQvAIiADoAIyAAQRh0QRh1QQBIBEAgAygCmAFBCGogAygCNBAYIANBfzYCLAsgAygCNBAcIAMoAixBAEgEQCADQX82ApwBDAELIAMgAygCmAEoAgAQNSIENwN4IARCAFMEQCADKAKYAUEIaiADKAKYASgCABAYIANBfzYCnAEMAQsgAygCmAEoAgAgAykDiAEQqAFBAEgEQCADKAKYAUEIaiADKAKYASgCABAYIANBfzYCnAEMAQsgAykDOELkAINC5ABSBEAgAygCmAFBCGpBFEEAEBUgA0F/NgKcAQwBCyADKAKQASgCAEEgcUUEQAJAIAMpAzhCEINCAFIEQCADKAKQASADKAJgNgIUDAELIAMoApABQRRqEAEaCwsgAygCkAEgAy8BaDYCECADKAKQASADKAJkNgIYIAMoApABIAMpA1A3AyggAygCkAEgAykDeCADKQOAAX03AyAgAygCkAEgAygCkAEvAQxB+f8DcSADLQAjQQF0cjsBDCADKAKQASADKAIkQYAIcUEARxCLAyADIAMoApgBIAMoApABIAMoAiQQXiIANgIsIABBAEgEQCADQX82ApwBDAELIAMoAiggAygCLEcEQCADKAKYAUEIakEUQQAQFSADQX82ApwBDAELIAMoApgBKAIAIAMpA3gQqAFBAEgEQCADKAKYAUEIaiADKAKYASgCABAYIANBfzYCnAEMAQsgA0EANgKcAQsgAygCnAEhACADQaABaiQAIAALrwIBAX8jAEEgayICIAA2AhwgAiABNgIYIAJBADYCFCACQgA3AwACQCACKAIcLQAoQQFxRQRAIAIoAhwoAhggAigCHCgCFEYNAQsgAkEBNgIUCyACQgA3AwgDQCACKQMIIAIoAhwpAzBUBEACQAJAIAIoAhwoAkAgAikDCKdBBHRqKAIIDQAgAigCHCgCQCACKQMIp0EEdGotAAxBAXENACACKAIcKAJAIAIpAwinQQR0aigCBEUNASACKAIcKAJAIAIpAwinQQR0aigCBCgCAEUNAQsgAkEBNgIUCyACKAIcKAJAIAIpAwinQQR0ai0ADEEBcUUEQCACIAIpAwBCAXw3AwALIAIgAikDCEIBfDcDCAwBCwsgAigCGARAIAIoAhggAikDADcDAAsgAigCFAuMEAMCfwF+AXwjAEHgAGsiASQAIAEgADYCWAJAIAEoAlhFBEAgAUF/NgJcDAELIAEgASgCWCABQUBrELoCNgIkIAEpA0BQBEACQCABKAJYKAIEQQhxRQRAIAEoAiRFDQELIAEoAlgoAgAQhQJBAEgEQAJAAn8jAEEQayICIAEoAlgoAgA2AgwjAEEQayIAIAIoAgxBDGo2AgwgACgCDCgCAEEWRgsEQCMAQRBrIgIgASgCWCgCADYCDCMAQRBr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OgAfCyADLQAfQQFxIQAgA0EgaiQAIAALkAEBAX8jAEEQayIBJAAgASAANgIIIAEgASgCCDYCBAJAIAEoAgQtAARBAXEEQCABIAEoAgRBEGoQsgE2AgAMAQsgASABKAIEQRBqEM4CNgIACwJAIAEoAgAEQCABKAIEKAIAQQ0gASgCABAVIAFBADoADwwBCyABQQE6AA8LIAEtAA9BAXEhACABQRBqJAAgAAvAAQEBfyMAQRBrIgEkACABIAA2AgggASABKAIINgIEIAEoAgRBADYCFCABKAIEQQA2AhAgASgCBEEANgIgIAEoAgRBADYCHAJAIAEoAgQtAARBAXEEQCABIAEoAgRBEGogASgCBCgCCBDiAjYCAAwBCyABIAEoAgRBEGoQ0wI2AgALAkAgASgCAARAIAEoAgQoAgBBDSABKAIAEBUgAUEAOgAPDAELIAFBAToADwsgAS0AD0EBcSEAIAFBEGokACAAC28BAX8jAEEQayIBIAA2AgggASABKAIINgIEAkAgASgCBC0ABEEBcUUEQCABQQA2AgwMAQsgASgCBCgCCEEDSARAIAFBAjYCDAwBCyABKAIEKAIIQQdKBEAgAUEBNgIMDAELIAFBADYCDAsgASgCDAssAQF/IwBBEGsiASQAIAEgADYCDCABIAEoAgw2AgggASgCCBAWIAFBEGokAAs8AQF/IwBBEGsiAyQAIAMgADsBDiADIAE2AgggAyACNgIEQQEgAygCCCADKAIEEK8BIQAgA0EQaiQAIAALmQEBAX8jAEEQayIBJAAgASAANgIIAkAgASgCCBBLBEAgAUF+NgIMDAELIAEgASgCCCgCHDYCBCABKAIEKAI4BEAgASgCCCgCKCABKAIEKAI4IAEoAggoAiQRBAALIAEoAggoAiggASgCCCgCHCABKAIIKAIkEQQAIAEoAghBADYCHCABQQA2AgwLIAEoAgwhACABQRBqJAAgAAudBAEBfyMAQSBrIgMkACADIAA2AhggAyABNgIUIAMgAjYCECADIAMoAhgoAhw2AgwCQCADKAIMKAI4RQRAIAMoAhgoAihBASADKAIMKAIodEEBIAMoAhgoAiARAQAhACADKAIMIAA2AjggAygCDCgCOEUEQCADQQE2AhwMAgsLIAMoAgwoAixFBEAgAygCDEEBIAMoAgwoAih0NgIsIAMoAgxB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ODYCQCABKAJYIAEoAjAQ1wIgASABKAJYKAIMNgJIIAEgASgCWCgCEDYCQCABIAEoAlgoAgA2AkwgASABKAJYKAIENgJEIAEgASgCUCgCPDYCPCABIAEoAlAoAkA2AjggASgCUCgCBEG//gBGBEAgASgCUEF/NgLINwsMDQsgASgCUEEANgLINwNAAkAgASABKAJQKAJQIAEoAjxBASABKAJQKAJYdEEBa3FBAnRqKAEANgEgIAEtACEgASgCOE0NACABKAJERQ0NIAEgASgCREF/ajYCRCABIAEoAkwiAEEBajYCTCABIAEoAjwgAC0AACABKAI4dGo2AjwgASABKAI4QQhqNgI4DAELCwJAIAEtACBFDQAgAS0AIEHwAXENACABIAEoASA2ARgDQAJAIAEgASgCUCgCUCABLwEaIAEoAjxBASABLQAZIAEtABhqdEEBa3EgAS0AGXZqQQJ0aigBADYBICABLQAZIAEtACFqIAEoAjhNDQAgASgCREUNDiABIAEoAkRBf2o2AkQgASABKAJMIgBBAWo2AkwgASABKAI8IAAtAAAgASgCOHRqNgI8IAEgASgCOEEIajYCOAwBCwsgASABKAI8IAEtABl2NgI8IAEgASgCOCABLQAZazYCOCABKAJQIgAgAS0AGSAAKALIN2o2Asg3CyABIAEoAjwgAS0AIXY2AjwgASABKAI4IAEtACFrNgI4IAEoAlAiACABLQAhIAAoAsg3ajYCyDcgASgCUCABLwEiNgJEIAEtACBFBEAgASgCUEHN/gA2AgQMDQsgAS0AIEEgcQRAIAEoAlBBfzYCyDcgASgCUEG//gA2AgQMDQsgAS0AIEHAAHEEQCABKAJYQYfxADYCGCABKAJQQdH+ADYCBAwNCyABKAJQIAEtACBBD3E2AkwgASgCUEHJ/gA2AgQLIAEoAlAoAkwEQANAIAEoAjggASgCUCgCTEkEQCABKAJERQ0NIAEgASgCREF/ajYCRCABIAEoAkwiAEEBajYCTCABIAEoAjwgAC0AACABKAI4dGo2AjwgASABKAI4QQhqNgI4DAELCyABKAJQIgAgACgCRCABKAI8QQEgASgCUCgCTHRBAWtxajYCRCABIAEoAjwgASgCUCgCTHY2AjwgASABKAI4IAEoAlAoAkxrNgI4IAEoAlAiACABKAJQKAJMIAAoAsg3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UCIAQQFqNgJQIAIgAigCLCAALQAAIAIoAih0ajYCLCACIAIoAihBCGo2AiggAigCKCACKAIMSQRAIAIgAigCUCIAQQFqNgJQIAIgAigCLCAALQAAIAIoAih0ajYCLCACIAIoAihBCGo2AigLCyACIAIoAgQgAigCLEEBIAIoAgx0QQFrcWo2AgQgAiACKAIsIAIoAgx2NgIsIAIgAigCKCACKAIMazYCKCACIAIoAkggAigCRGs2AgwCQCACKAIEIAIoAgxLBEAgAiACKAIEIAIoAgxrNgIMIAIoAgwgAigCOEsEQCACKAJUKALENwRAIAIoAlxBsO0ANgIYIAIoAlRB0f4ANgIEDAoLCyACIAIoAjA2AgACQCACKAI0RQRAIAIgAigCACACKAI8IAIoAgxrajYCACACKAIMIAIoAghJBEAgAiACKAIIIAIoAgxrNgIIA0AgAiACKAIAIgBBAWo2AgAgAC0AACEAIAIgAigCSCIBQQFqNgJIIAEgADoAACACIAIoAgxBf2oiADYCDCAADQALIAIgAigCSCACKAIEazYCAAsMAQsCQCACKAI0IAIoAgxJBEAgAiACKAIAIAIoAjwgAigCNGogAigCDGtqNgIAIAIgAigCDCACKAI0azYCDCACKAIMIAIoAghJBEAgAiACKAIIIAIoAgxrNgIIA0AgAiACKAIAIgBBAWo2AgAgAC0AACEAIAIgAigCSCIBQQFqNgJIIAEgADoAACACIAIoAgxBf2oiADYCDCAADQALIAIgAigCMDYCACACKAI0IAIoAghJBEAgAiACKAI0NgIMIAIgAigCCCACKAIMazYCCANAIAIgAigCACIAQQFqNgIAIAAtAAAhACACIAIoAkgiAUEBajYCSCABIAA6AAAgAiACKAIMQX9qIgA2AgwgAA0ACyACIAIoAkggAigCBGs2AgALCwwBCyACIAIoAgAgAigCNCACKAIMa2o2AgAgAigCDCACKAIISQRAIAIgAigCCCACKAIMazYCCANAIAIgAigCACIAQQFqNgIAIAAtAAAhACACIAIoAkgiAUEBajYCSCABIAA6AAAgAiACKAIMQX9qIgA2AgwgAA0ACyACIAIoAkggAigCBGs2AgALCwsDQCACKAIIQQJNRQRAIAIgAigCACIAQQFqNgIAIAAtAAAhACACIAIoAkgiAUEBajYCSCABIAA6AAAgAiACKAIAIgBBAWo2AgAgAC0AACEAIAIgAigCSCIBQQFqNgJIIAEgADoAACACIAIoAgAiAEEBajYCACAALQAAIQAgAiACKAJIIgFBAWo2AkggASAAOgAAIAIgAigCCEEDazYCCAwBCwsMAQsgAiACKAJIIAIoAgRrNgIAA0AgAiACKAIAIgBBAWo2AgAgAC0AACEAIAIgAigCSCIBQQFqNgJIIAEgADoAACACIAIoAgAiAEEBajYCACAALQAAIQAgAiACKAJIIgFBAWo2AkggASAAOgAAIAIgAigCACIAQQFqNgIAIAAtAAAhACACIAIoAkgiAUEBajYCSCABIAA6AAAgAiACKAIIQQNrNgIIIAIoAghBAksNAAsLIAIoAggEQCACIAIoAgAiAEEBajYCACAALQAAIQAgAiACKAJIIgFBAWo2AkggASAAOgAAIAIoAghBAUsEQCACIAIoAgAiAEEBajYCACAALQAAIQAgAiACKAJIIgFBAWo2AkggASAAOgAACwsMAgsgAigCDEHAAHFFBEAgAkEQaiACKAIgIAIvARIgAigCLEEBIAIoAgx0QQFrcWpBAnRqKAEANgEADAELCyACKAJcQc7tADYCGCACKAJUQdH+ADYCBAwECwwCCyACKAIMQcAAcUUEQCACQRBqIAIoAiQgAi8BEiACKAIsQQEgAigCDHRBAWtxakECdGooAQA2AQAMAQsLIAIoAgxBIHEEQCACKAJUQb/+ADYCBAwCCyACKAJcQeTtADYCGCACKAJUQdH+ADYCBAwBC0EAIQAgAigCUCACKAJMSQR/IAIoAkggAigCQEkFQQALQQFxDQELCyACIAIoAihBA3Y2AgggAiACKAJQIAIoAghrNgJQIAIgAigCKCACKAIIQQN0azYCKCACIAIoAixBASACKAIodEEBa3E2AiwgAigCXCACKAJQNgIAIAIoAlwgAigCSDYCDCACKAJcAn8gAigCUCACKAJMSQRAIAIoAkwgAigCUGtBBWoMAQtBBSACKAJQIAIoAkxraws2AgQgAigCXAJ/IAIoAkggAigCQEkEQCACKAJAIAIoAkhrQYECagwBC0GBAiACKAJIIAIoAkBraws2AhAgAigCVCACKAIsNgI8IAIoAlQgAigCKDYCQAvBEAECfyMAQSBrIgIkACACIAA2AhggAiAB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Ai8BEDsBACACLQATIQEgAigCKCIAKAKYLSEDIAAgACgCoC0iAEEBajYCoC0gACADaiABOgAAIAIgAi8BEEF/ajsBECACKAIoIAItABNBgNkAai0AAEECdGpBmAlqIgAgAC8BAEEBajsBACACKAIoQYgTagJ/IAIvARBBgAJIBEAgAi8BEC0AgFUMAQsgAi8BEEEHdUGAAmotAIBVC0ECdGoiACAALwEAQQFqOwEAIAIgAigCKCgCoC0gAigCKCgCnC1BAWtGNgIgIAIoAigiACAAKAJ0IAIoAigoAmBrNgJ0IAIoAigiACACKAIoKAJgIAAoAmxqNgJsIAIoAihBADYCYAwBCyACIAIoAigiACgCOCAAKAJsai0AADoADyACKAIoIgAoAqQtIAAoAqAtQQF0akEAOwEAIAItAA8hASACKAIoIgAoApgtIQMgACAAKAKgLSIAQQFqNgKgLSAAIANqIAE6AAAgAigCKCACLQAPQQJ0aiIAIAAvAZQBQQFqOwGUASACIAIoAigoAqAtIAIoAigoApwtQQFrRjYCICACKAIoIgAgACgCdEF/ajYCdCACKAIoIgAgACgCbEEBajYCbAsgAigCIARAIAIoAigCfyACKAIoKAJcQQBOBEAgAigCKCgCOCACKAIoKAJcagwBC0EACyACKAIoKAJsIAIoAigoAlxrQQAQKSACKAIoIAIoAigoAmw2AlwgAigCKCgCABAdIAIoAigoAgAoAhBFBEAgAkEANgIsDAQLCwwBCwsgAigCKEEANgK0LSACKAIkQQRGBEAgAigCKAJ/IAIoAigoAlxBAE4EQCACKAIoKAI4IAIoAigoAlxqDAELQQALIAIoAigoAmwgAigCKCgCXGtBARApIAIoAiggAigCKCgCbDYCXCACKAIoKAIAEB0gAigCKCgCACgCEEUEQCACQQI2AiwMAgsgAkEDNgIsDAELIAIoAigoAqAtBEAgAigCKAJ/IAIoAigoAlxBAE4EQCACKAIoKAI4IAIoAigoAlxqDAELQQALIAIoAigoAmwgAigCKCgCXGtBABApIAIoAiggAigCKCgCbDYCXCACKAIoKAIAEB0gAigCKCgCACgCEEUEQCACQQA2AiwMAgsLIAJBATYCLAsgAigCLCEAIAJBMGokACAAC8AFAQJ/IwBBIGsiAiQAIAIgADYCGCACIAE2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EB0gAigCLCgCGEEASgRAIAIoAixBACACKAIsKAIYazYCGAsgAkEAQQEgAigCLCgCFBs2AjwLIAIoAjwhACACQUBrJAAgAAuOAgEBfyMAQSBrIgEgADYCHCABIAEoAhwoAiw2AgwgASABKAIcKAJMNgIYIAEgASgCHCgCRCABKAIYQQF0ajYCEANAIAEgASgCEEF+aiIANgIQIAEgAC8BADYCFCABKAIQAn8gASgCFCABKAIMTwRAIAEoAhQgASgCDGsMAQtBAAs7AQAgASABKAIYQX9qIgA2AhggAA0ACyABIAEoAgw2AhggASABKAIcKAJAIAEoAhhBAXRqNgIQA0AgASABKAIQQX5qIgA2AhAgASAALwEANgIUIAEoAhACfyABKAIUIAEoAgxPBEAgASgCFCABKAIMawwBC0EACzsBACABIAEoAhhBf2oiADYCGCAADQALC0UAQaCcAUIANwMAQZicAUIANwMAQZCcAUIANwMAQYicAUIANwMAQYCcAUIANwMAQfibAUIANwMAQfCbAUIANwMAQfCbAQuoAgEBfyMAQRBrIgEkACABIAA2AgwgASgCDCABKAIMKAIsQQF0NgI8IAEoAgwoAkQgASgCDCgCTEEBa0EBdGpBADsBACABKAIMKAJEQQAgASgCDCgCTEEBa0EBdBAzIAEoAgwgASgCDCgChAFBDGxBsOoAai8BAjYCgAEgASgCDCABKAIMKAKEAUEMbEGw6gBqLwEANgKMASABKAIMIAEoAgwoAoQBQQxsQbDqAGovAQQ2ApABIAEoAgwgASgCDCgChAFBDGxBsOoAai8BBjYCfCABKAIMQQA2AmwgASgCDEEANgJcIAEoAgxBADYCdCABKAIMQQA2ArQtIAEoAgxBAjYCeCABKAIMQQI2AmAgASgCDEEANgJoIAEoAgxBADYCSCABQRBqJAALmwIBAX8jAEEQayIBJAAgASAANgIIAkAgASgCCBB0BEAgAUF+NgIMDAELIAEoAghBADYCFCABKAIIQQA2AgggASgCCEEANgIYIAEoAghBAjYCLCABIAEoAggoAhw2AgQgASgCBEEANgIUIAEoAgQgASgCBCgCCDYCECABKAIEKAIYQQBIBEAgASgCBEEAIAEoAgQoAhhrNgIYCyABKAIEAn9BOSABKAIEKAIYQQJGDQAaQSpB8QAgASgCBCgC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KAIMQfwUajYCsBYgASgCDEGo2wA2ArgWIAEoAgxBADsBuC0gASgCDEEANgK8LSABKAIMELkBIAFBEGokAAvXDQEBfyMAQSBrIgMgADYCGCADIAE2AhQgAyACNgIQIAMgAygCGEEQdjYCDCADIAMoAhhB//8DcTYCGAJAIAMoAhBBAUYEQCADIAMoAhQtAAAgAygCGGo2AhggAygCGEHx/wNPBEAgAyADKAIYQfH/A2s2AhgLIAMgAygCGCADKAIMajYCDCADKAIMQfH/A08EQCADIAMoAgxB8f8DazYCDAsgAyADKAIYIAMoAgxBEHRyNgIcDAELIAMoAhRFBEAgA0EBNgIcDAELIAMoAhBBEEkEQANAIAMgAygCECIAQX9qNgIQIAAEQCADIAMoAhQiAEEBajYCFCADIAAtAAAgAygCGGo2AhggAyADKAIYIAMoAgxqNgIMDAELCyADKAIYQfH/A08EQCADIAMoAhhB8f8DazYCGAsgAyADKAIMQfH/A3A2AgwgAyADKAIYIAMoAgxBEHRyNgIcDAELA0AgAygCEEGwK0lFBEAgAyADKAIQQbArazYCECADQdsCNgIIA0AgAyADKAIULQAAIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhQtAAEgAygCGGo2AhggAyADKAIYIAMoAgxqNgIMIAMgAygCFC0AAiADKAIYajYCGCADIAMoAhggAygCDGo2AgwgAyADKAIULQADIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhQtAAQgAygCGGo2AhggAyADKAIYIAMoAgxqNgIMIAMgAygCFC0ABSADKAIYajYCGCADIAMoAhggAygCDGo2AgwgAyADKAIULQAGIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhQtAAcgAygCGGo2AhggAyADKAIYIAMoAgxqNgIMIAMgAygCFC0ACCADKAIYajYCGCADIAMoAhggAygCDGo2AgwgAyADKAIULQAJIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhQtAAogAygCGGo2AhggAyADKAIYIAMoAgxqNgIMIAMgAygCFC0ACyADKAIYajYCGCADIAMoAhggAygCDGo2AgwgAyADKAIULQAMIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhQtAA0gAygCGGo2AhggAyADKAIYIAMoAgxqNgIMIAMgAygCFC0ADiADKAIYajYCGCADIAMoAhggAygCDGo2AgwgAyADKAIULQAPIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhRBEGo2AhQgAyADKAIIQX9qIgA2AgggAA0ACyADIAMoAhhB8f8DcDYCGCADIAMoAgxB8f8DcDYCDAwBCwsgAygCEARAA0AgAygCEEEQSUUEQCADIAMoAhBBEGs2AhAgAyADKAIULQAAIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhQtAAEgAygCGGo2AhggAyADKAIYIAMoAgxqNgIMIAMgAygCFC0AAiADKAIYajYCGCADIAMoAhggAygCDGo2AgwgAyADKAIULQADIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhQtAAQgAygCGGo2AhggAyADKAIYIAMoAgxqNgIMIAMgAygCFC0ABSADKAIYajYCGCADIAMoAhggAygCDGo2AgwgAyADKAIULQAGIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhQtAAcgAygCGGo2AhggAyADKAIYIAMoAgxqNgIMIAMgAygCFC0ACCADKAIYajYCGCADIAMoAhggAygCDGo2AgwgAyADKAIULQAJIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhQtAAogAygCGGo2AhggAyADKAIYIAMoAgxqNgIMIAMgAygCFC0ACyADKAIYajYCGCADIAMoAhggAygCDGo2AgwgAyADKAIULQAMIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhQtAA0gAygCGGo2AhggAyADKAIYIAMoAgxqNgIMIAMgAygCFC0ADiADKAIYajYCGCADIAMoAhggAygCDGo2AgwgAyADKAIULQAPIAMoAhhqNgIYIAMgAygCGCADKAIMajYCDCADIAMoAhRBEGo2AhQMAQsLA0AgAyADKAIQIgBBf2o2AhAgAARAIAMgAygCFCIAQQFqNgIUIAMgAC0AACADKAIYajYCGCADIAMoAhggAygCDGo2AgwMAQsLIAMgAygCGEHx/wNwNgIYIAMgAygCDEHx/wNwNgIMCyADIAMoAhggAygC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CyABKAIIQQE2AiQgAUEANgIMCyABKAIMIQAgAUEQaiQAIAALgwEBAX8jAEEQayICJAAgAiAANgIIIAIgATcDAAJAIAIoAggoAiRBAUYEQCACKAIIQQxqQRJBABAVIAJBfzYCDAwBCyACKAIIQQAgAikDAEERECJCAFMEQCACQX82AgwMAQsgAigCCEEBNgIkIAJBADYCDAsgAigCDCEAIAJBEGokACAAC1sBAX8jAEEgayIDJAAgAyAANgIcIAMgATkDECADIAI5AwggAygCHARAIAMoAhwgAysDEDkDICADKAIcIAMrAwg5AyggAygCHEQAAAAAAAAAABBYCyADQSBqJAALWAEBfyMAQRBrIgEkACABIAA2AgwgASgCDARAIAEoAgxEAAAAAAAAAAA5AxggASgCDCgCAEQAAAAAAAAAACABKAIMKAIMIAEoAgwoAgQRGgALIAFBEGokAAtIAQF/IwBBEGsiASQAIAEgADYCDCABKAIMBEAgASgCDCgCCARAIAEoAgwoAgwgASgCDCgCCBEDAAsgASgCDBAWCyABQRBqJAALKwEBfyMAQRBrIgEkACABIAA2AgwgASgCDEQAAAAAAADwPxBYIAFBEGokAAucAgIBfwF8IwBBIGsiASAANwMQIAEgASkDELpEAAAAAAAA6D+jOQMIAkAgASsDCEQAAOD////vQWQEQCABQX82AgQMAQsgAQJ/IAErAwgiAkQAAAAAAADwQWMgAkQAAAAAAAAAAGZxBEAgAqsMAQtBAAs2AgQLAkAgASgCBEGAgICAeEsEQCABQYCAgIB4NgIcDAELIAEgASgCBEF/ajYCBCABIAEoAgQgASgCBEEBdnI2AgQgASABKAIEIAEoAgRBAnZyNgIEIAEgASgCBCABKAIEQQR2cjYCBCABIAEoAgQgASgCBEEIdnI2AgQgASABKAIEIAEoAgRBEHZyNgIEIAEgASgCBEEBajYCBCABIAEoAgQ2AhwLIAEoAhwLkwEBAX8jAEEgayIDJAAgAyAANgIYIAMgATcDECADIAI2AgwCQCADKQMQUARAIANBAToAHwwBCyADIAMpAxAQ/QI2AgggAygCCCADKAIYKAIATQRAIANBAToAHwwBCyADKAIYIAMoAgggAygCDBBaQQFxRQRAIANBADoAHwwBCyADQQE6AB8LIAMtAB8aIANBIGok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ACADKQMIQQAQKEEASARAIAMoAhQgAygCJCgCABAYIANCADcDKAwCCyADKAIkKAIAIANCBBAvQgRSBEAgAygCFCADKAIkKAIAEBggA0IANwMoDAILIAMoAABB0JadwABGBEAgAyADKQMIQgR8NwMICyADIAMpAwhCDHw3AwggAygCBEEAEIABQQFxBEAgAyADKQMIQgh8NwMICyADKQMIQv///////////wBWBEAgAygCFEEEQRYQFSADQgA3AygMAgsLIAMgAykDCDcDKAsgAykDKCEBIANBMGokACABCwYAQbScAQv/AQEBfyMAQRBrIgIkACACIAA2AgwgAiABOgALAkAgAigCDCgCEEEORgRAIAIoAgxBPzsBCgwBCyACKAIMKAIQQQxGBEAgAigCDEEuOwEKDAELAkAgAi0AC0EBcUUEQCACKAIMQQAQgAFBAXFFDQELIAIoAgxBLTsBCgwBCwJAIAIoAgwoAhBBCEcEQCACKAIMLwFSQQFHDQELIAIoAgxBFDsBCgwBCyACIAIoAgwoAjAQUiIAOwEIIABB//8DcUEASgRAIAIoAgwoAjAoAgAgAi8BCEEBa2otAABBL0YEQCACKAIMQRQ7AQoMAgsLIAIoAgxBCjsBCgsgAkEQaiQAC8ACAQF/IwBBMGsiAiQAIAIgADYCKCACQYACOwEmIAIgATYCICACIAIvASZBgAJxQQBHOgAbIAJBHkEuIAItABtBAXEbNgIcAkAgAigCKEEaQRwgAi0AG0EBcRusQQEQKEEASARAIAIoAiAgAigCKBAYIAJBfzYCLAwBCyACIAIoAihBBEEGIAItABtBAXEbrCACQQ5qIAIoAiAQQSIANgIIIABFBEAgAkF/NgIsDAELIAJBADYCFANAIAIoAhRBAkEDIAItABtBAXEbSARAIAIgAigCCBAeQf//A3EgAigCHGo2AhwgAiACKAIUQQFqNgIUDAELCyACKAIIEEhBAXFFBEAgAigCIEEUQQAQFSACKAIIEBcgAkF/NgIsDAELIAIoAggQFyACIAIoAhw2AiwLIAIoAiwhACACQTBqJAAgAAv/AwEBfyMAQSBrIgIkACACIAA2AhggAiABNgIUAkAgAigCGCgCEEHjAEcEQCACQQE6AB8MAQsgAiACKAIYKAI0IAJBEmpBgbICQYAGQQAQXzYCCAJAIAIoAggEQCACLwESQQdODQELIAIoAhRBFUEAEBUgAkEAOgAfDAELIAIgAigCCCACLwESrRAqIgA2AgwgAEUEQCACKAIUQRRBABAVIAJBADoAHwwBCyACQQE6AAcCQAJAAkAgAigCDBAeQX9qDgICAAELIAIoAhgpAyhCFFQEQCACQQA6AAcLDAELIAIoAhRBGEEAEBUgAigCDBAXIAJBADoAHwwBCyACKAIMQgIQHy8AAEHBigFHBEAgAigCFEEYQQAQFSACKAIMEBcgAkEAOgAfDAELAkACQAJAAkACQCACKAIMEIsBQX9qDgMAAQIDCyACQYECOwEEDAMLIAJBggI7AQQMAgsgAkGDAjsBBAwBCyACKAIUQRhBABAVIAIoAgwQFyACQQA6AB8MAQsgAi8BEkEHRwRAIAIoAhRBFUEAEBUgAigCDBAXIAJBADoAHwwBCyACKAIYIAItAAdBAXE6AAYgAigCGCACLwEEOwFSIAIoAgwQHkH//wNxIQAgAigCGCAANgIQIAIoAgwQFyACQQE6AB8LIAItAB9BAXEhACACQSBqJAAgAAu5AQEBfyMAQTBrIgIkACACIAA7AS4gAiABOwEsIAJCADcCACACQQA2AiggAkIANwIgIAJCADcCGCACQgA3AhAgAkIANwIIIAJBADYCICACIAIvASxBCXVB0ABqNgIUIAIgAi8BLEEFdUEPcUEBazYCECACIAIvASxBH3E2AgwgAiACLwEuQQt1NgIIIAIgAi8BLkEFdUE/cTYCBCACIAIvAS5BAXRBPnE2AgAgAhAMIQAgAkEwaiQAIAALTAECfyMAQRBrIgAkACAAQdgAEBkiATYCCAJAIAFFBEAgAEEANgIMDAELIAAoAggQXSAAIAAoAgg2AgwLIAAoAgwhASAAQRBqJAAgAQsHACAALwEwC+AIAQF/IwBBwAFrIgMkACADIAA2ArQBIAMgATYCsAEgAyACNwOoASADIAMoArQBKAIAEDUiAjcDIAJAIAJCAFMEQCADKAK0AUEIaiADKAK0ASgCABAYIANCfzcDuAEMAQsgAyADKQMgNwOgASADQQA6ABcgA0IANwMYA0AgAykDGCADKQOoAVQEQCADIAMoArQBKAJAIAMoArABIAMpAxinQQN0aikDAKdBBHRqNgIMIAMgAygCtAECfyADKAIMKAIEBEAgAygCDCgCBAwBCyADKAIMKAIAC0GABBBeIgA2AhAgAEEASARAIANCfzcDuAEMAwsgAygCEARAIANBAToAFwsgAyADKQMYQgF8NwMYDAELCyADIAMoArQBKAIAEDUiAjcDICACQgBTBEAgAygCtAFBCGogAygCtAEoAgAQGCADQn83A7gBDAELIAMgAykDICADKQOgAX03A5gBAkAgAykDoAFC/////w9YBEAgAykDqAFC//8DWA0BCyADQQE6ABcLIAMgA0EwakLiABAqIgA2AiwgAEUEQCADKAK0AUEIakEOQQAQFSADQn83A7gBDAELIAMtABdBAXEEQCADKAIsQbbTAEEEEEAgAygCLEIsEC4gAygCLEEtECAgAygCLEEtECAgAygCLEEAECEgAygCLEEAECEgAygCLCADKQOoARAuIAMoAiwgAykDqAEQLiADKAIsIAMpA5gBEC4gAygCLCADKQOgARAuIAMoAixBu9MAQQQQQCADKAIsQQAQISADKAIsIAMpA6ABIAMpA5gBfBAuIAMoAixBARAhCyADKAIsQcDTAEEEEEAgAygCLEEAECEgAygCLAJ+Qv//AyADKQOoAUL//wNaDQAaIAMpA6gBC6dB//8DcRAgIAMoAiwCfkL//wMgAykDqAFC//8DWg0AGiADKQOoAQunQf//A3EQICADKAIsAn9BfyADKQOYAUL/////D1oNABogAykDmAGnCxAhIAMoAiwCf0F/IAMpA6ABQv////8PWg0AGiADKQOgAacLECEgAwJ/IAMoArQBLQAoQQFxBEAgAygCtAEoAiQMAQsgAygCtAEoAiALNgKUASADKAIsAn8gAygClAEEQCADKAKUAS8BBAwBC0EAC0H//wNxECACfyMAQRBrIgAgAygCLDYCDCAAKAIMLQAAQQFxRQsEQCADKAK0AUEIakEUQQAQFSADKAIsEBcgA0J/NwO4AQwBCyADKAK0AQJ/IwBBEGsiACADKAIsNgIMIAAoAgwoAgQLAn4jAEEQayIAIAMoAiw2AgwCfiAAKAIMLQAAQQFxBEAgACgCDCkDEAwBC0IACwsQNkEASARAIAMoAiwQFyADQn83A7gBDAELIAMoAiwQFyADKAKUAQRAIAMoArQBIAMoApQBKAIAIAMoApQBLwEErRA2QQBIBEAgA0J/NwO4AQwCCwsgAyADKQOYATcDuAELIAMpA7gBIQIgA0HAAWokACACCwcAIAAoAiALCABBAUE4EHsLAwABCwvyjQEnAEGACAuUBU5vIGVycm9yAE11bHRpLWRpc2sgemlwIGFyY2hpdmVzIG5vdCBzdXBwb3J0ZWQAUmVuYW1pbmcgdGVtcG9yYXJ5IGZpbGUgZmFpbGVkAENsb3NpbmcgemlwIGFyY2hpdmUgZmFpbGVkAFNlZWsgZXJyb3IAUmVhZCBlcnJvcgBXcml0ZSBlcnJvcgBDUkMgZXJyb3IAQ29udGFpbmluZyB6aXAgYXJjaGl2ZSB3YXMgY2xvc2VkAE5vIHN1Y2ggZmlsZQBGaWxlIGFscmVhZHkgZXhpc3RzAENhbid0IG9wZW4gZmlsZQBGYWlsdXJlIHRvIGNyZWF0ZSB0ZW1wb3JhcnkgZmlsZQBabGliIGVycm9yAE1hbGxvYyBmYWlsdXJlAEVudHJ5IGhhcyBiZWVuIGNoYW5nZWQAQ29tcHJlc3Npb24gbWV0aG9kIG5vdCBzdXBwb3J0ZWQAUHJlbWF0dXJlIGVuZCBvZiBmaWxlAEludmFsaWQgYXJndW1lbnQATm90IGEgemlwIGFyY2hpdmUASW50ZXJuYWwgZXJyb3IAWmlwIGFyY2hpdmUgaW5jb25zaXN0ZW50AENhbid0IHJlbW92ZSBmaWxlAEVudHJ5IGhhcyBiZWVuIGRlbGV0ZWQARW5jcnlwdGlvbiBtZXRob2Qgbm90IHN1cHBvcnRlZABSZWFkLW9ubHkgYXJjaGl2ZQBObyBwYXNzd29yZCBwcm92aWRlZABXcm9uZyBwYXNzd29yZCBwcm92aWRlZABPcGVyYXRpb24gbm90IHN1cHBvcnRlZABSZXNvdXJjZSBzdGlsbCBpbiB1c2UAVGVsbCBlcnJvcgBDb21wcmVzc2VkIGRhdGEgaW52YWxpZABBoQ0LgAEEAAAJBAAALwQAAE4EAABpBAAAdAQAAH8EAACLBAAAlQQAALcEAADEBAAA2AQAAOgEAAAJBQAAFAUAACMFAAA6BQAAWwUAAHEFAACCBQAAlAUAAKMFAAC8BQAAzgUAAOUFAAAFBgAAFwYAACwGAABEBgAAXAYAAHIGAAB9BgAAIABBuA4LEQEAAAABAAAAAQAAAAEAAAABAEHcDgsJAQAAAAEAAAACAEGIDwsBAQBBqA8LAQEAQbQP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AJoACABaAAgA2gAIADoACAC6AAgAegAIAPoACAAGAAgAhgAIAEYACADGAAgAJgAIAKYACABmAAgA5gAIABYACACWAAgAVgAIANYACAA2AAgAtgAIAHYACAD2AAgADgAIAI4ACABOAAgAzgAIAC4ACACuAAgAbgAIAO4ACAAeAAgAngAIAF4ACADeAAgAPgAIAL4ACAB+AAgA/gAIAAEACACBAAgAQQAIAMEACAAhAAgAoQAIAGEACADhAAgAEQAIAJEACABRAAgA0QAIADEACACxAAgAcQAIAPEACAAJAAgAiQAIAEkACADJAAgAKQAIAKkACABpAAgA6QAIABkACACZAAgAWQAIANkACAA5AAgAuQAIAHkACAD5AAgABQAIAIUACABFAAgAxQAIACUACAClAAgAZQAIAOUACAAVAAgAlQAIAFUACADVAAgANQAIALUACAB1AAgA9QAIAA0ACACNAAgATQAIAM0ACAAtAAgArQAIAG0ACADtAAgAHQAIAJ0ACABdAAgA3QAIAD0ACAC9AAgAfQAIAP0ACAATAAkAEwEJAJMACQCTAQkAUwAJAFMBCQDTAAkA0wEJADMACQAzAQkAswAJALMBCQBzAAkAcwEJAPMACQDzAQkACwAJAAsBCQCLAAkAiwEJAEsACQBLAQkAywAJAMsBCQArAAkAKwEJAKsACQCrAQkAawAJAGsBCQDrAAkA6wEJABsACQAbAQkAmwAJAJsBCQBbAAkAWwEJANsACQDbAQkAOwAJADsBCQC7AAkAuwEJAHsACQB7AQkA+wAJAPsBCQAHAAkABwEJAIcACQCHAQkARwAJAEcBCQDHAAkAxwEJACcACQAnAQkApwAJAKcBCQBnAAkAZwEJAOcACQDnAQkAFwAJABcBCQCXAAkAlwEJAFcACQBXAQkA1wAJANcBCQA3AAkANwEJALcACQC3AQkAdwAJAHcBCQD3AAkA9wEJAA8ACQAPAQkAjwAJAI8BCQBPAAkATwEJAM8ACQDPAQkALwAJAC8BCQCvAAkArwEJAG8ACQBvAQkA7wAJAO8BCQAfAAkAHwEJAJ8ACQCfAQkAXwAJAF8BCQDfAAkA3wEJAD8ACQA/AQkAvwAJAL8BCQB/AAkAfwEJAP8ACQD/AQkAAAAHAEAABwAgAAcAYAAHABAABwBQAAcAMAAHAHAABwAIAAcASAAH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CBQAFQjjABMHKwAACHQAAAg0AAAJyAARBw0AAAhkAAAIJAAACagAAAgEAAAIhAAACEQAAAnoABAHCAAACFwAAAgcAAAJmAAUB1MAAAh8AAAIPAAACdgAEgcXAAAIbAAACCwAAAm4AAAIDAAACIwAAAhMAAAJ+AAQBwMAAAhSAAAIEgAVCKMAEwcjAAAIcgAACDIAAAnEABEHCwAACGIAAAgiAAAJpAAACAIAAAiCAAAIQgAACeQAEAcHAAAIWgAACBoAAAmUABQHQwAACHoAAAg6AAAJ1AASBxMAAAhqAAAIKgAACbQAAAgKAAAIigAACEoAAAn0ABAHBQAACFYAAAgWAEAIAAATBzMAAAh2AAAINgAACcwAEQcPAAAIZgAACCYAAAmsAAAIBgAACIYAAAhGAAAJ7AAQBwkAAAheAAAIHgAACZwAFAdjAAAIfgAACD4AAAncABIHGwAACG4AAAguAAAJvAAACA4AAAiOAAAITgAACfwAYAcAAAAIUQAACBEAFQiDABIHHwAACHEAAAgxAAAJwgAQBwoAAAhhAAAIIQAACaIAAAgBAAAIgQAACEEAAAniABAHBgAACFkAAAgZAAAJkgATBzsAAAh5AAAIOQAACdIAEQcRAAAIaQAACCkAAAmyAAAICQAACIkAAAhJAAAJ8gAQBwQAAAhVAAAIFQAQCAIBEwcrAAAIdQAACDUAAAnKABEHDQAACGUAAAglAAAJqgAACAUAAAiFAAAIRQAACeoAEAcIAAAIXQAACB0AAAmaABQHUwAACH0AAAg9AAAJ2gASBxcAAAhtAAAILQAACboAAAgNAAAIjQAACE0AAAn6ABAHAwAACFMAAAgTABUIwwATByMAAAhzAAAIMwAACcYAEQcLAAAIYwAACCMAAAmmAAAIAwAACIMAAAhDAAAJ5gAQBwcAAAhbAAAIGwAACZYAFAdDAAAIewAACDsAAAnWABIHEwAACGsAAAgrAAAJtgAACAsAAAiLAAAISwAACfYAEAcFAAAIVwAACBcAQAgAABMHMwAACHcAAAg3AAAJzgARBw8AAAhnAAAIJwAACa4AAAgHAAAIhwAACEcAAAnuABAHCQAACF8AAAgfAAAJngAUB2MAAAh/AAAIPwAACd4AEgcbAAAIbwAACC8AAAm+AAAIDwAACI8AAAhPAAAJ/gBgBwAAAAhQAAAIEAAUCHMAEgcfAAAIcAAACDAAAAnBABAHCgAACGAAAAggAAAJoQAACAAAAAiAAAAIQAAACeEAEAcGAAAIWAAACBgAAAmRABMHOwAACHgAAAg4AAAJ0QARBxEAAAhoAAAIKAAACbEAAAgIAAAIiAAACEgAAAnxABAHBAAACFQAAAgUABUI4wATBysAAAh0AAAINAAACckAEQcNAAAIZAAACCQAAAmpAAAIBAAACIQAAAhEAAAJ6QAQBwgAAAhcAAAIHAAACZkAFAdTAAAIfAAACDwAAAnZABIHFwAACGwAAAgsAAAJuQAACAwAAAiMAAAITAAACfkAEAcDAAAIUgAACBIAFQijABMHIwAACHIAAAgyAAAJxQARBwsAAAhiAAAIIgAACaUAAAgCAAAIggAACEIAAAnlABAHBwAACFoAAAgaAAAJlQAUB0MAAAh6AAAIOgAACdUAEgcTAAAIagAACCoAAAm1AAAICgAACIoAAAhKAAAJ9QAQBwUAAAhWAAAIFgBACAAAEwczAAAIdgAACDYAAAnNABEHDwAACGYAAAgmAAAJrQAACAYAAAiGAAAIRgAACe0AEAcJAAAIXgAACB4AAAmdABQHYwAACH4AAAg+AAAJ3QASBxsAAAhuAAAILgAACb0AAAgOAAAIjgAACE4AAAn9AGAHAAAACFEAAAgRABUIgwASBx8AAAhxAAAIMQAACcMAEAcKAAAIYQAACCEAAAmjAAAIAQAACIEAAAhBAAAJ4wAQBwYAAAhZAAAIGQAACZMAEwc7AAAIeQAACDkAAAnTABEHEQAACGkAAAgpAAAJswAACAkAAAiJAAAISQAACfMAEAcEAAAIVQAACBUAEAgCARMHKwAACHUAAAg1AAAJywARBw0AAAhlAAAIJQAACasAAAgFAAAIhQAACEUAAAnrABAHCAAACF0AAAgdAAAJmwAUB1MAAAh9AAAIPQAACdsAEgcXAAAIbQAACC0AAAm7AAAIDQAACI0AAAhNAAAJ+wAQBwMAAAhTAAAIEwAVCMMAEwcjAAAIcwAACDMAAAnHABEHCwAACGMAAAgjAAAJpwAACAMAAAiDAAAIQwAACecAEAcHAAAIWwAACBsAAAmXABQHQwAACHsAAAg7AAAJ1wASBxMAAAhrAAAIKwAACbcAAAgLAAAIiwAACEsAAAn3ABAHBQAACFcAAAgXAEAIAAATBzMAAAh3AAAINwAACc8AEQcPAAAIZwAACCcAAAmvAAAIBwAACIcAAAhHAAAJ7wAQBwkAAAhfAAAIHwAACZ8AFAdjAAAIfwAACD8AAAnfABIHGwAACG8AAAgvAAAJvwAACA8AAAiPAAAITwAACf8AEAUBABcFAQETBREAGwUBEBEFBQAZBQEEFQVBAB0FAUAQBQMAGAUBAhQFIQAcBQEgEgUJABoFAQgWBYEAQAUAABAFAgAXBYEBEwUZABsFARgRBQcAGQUBBhUFYQAdBQFgEAUEABgFAQMUBTEAHAUBMBIFDQAaBQEMFgXBAEAFAAAxLjIuMTEALSsgICAwWDB4AChudWxsKQBBsIMBC0ERAAoAERERAAAAAAUAAAAAAAAJAAAAAAsAAAAAAAAAABEADwoREREDCgcAAQAJCwsAAAkGCwAACwAGEQAAABEREQBBgYQBCyELAAAAAAAAAAARAAoKERERAAoAAAIACQsAAAAJAAsAAAsAQbuEAQsBDABBx4QBCxUMAAAAAAwAAAAACQwAAAAAAAwAAAwAQfWEAQsBDgBBgYUBCxUNAAAABA0AAAAACQ4AAAAAAA4AAA4AQa+FAQsBEABBu4UBCx4PAAAAAA8AAAAACRAAAAAAABAAABAAABIAAAASEhIAQfKFAQsOEgAAABISEgAAAAAAAAkAQaOGAQsBCwBBr4YBCxUKAAAAAAoAAAAACQsAAAAAAAsAAAsAQd2GAQsBDABB6YYBC0sMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBuYW4ATkFOAC4AQdyHAQsBFwBBg4gBCwX//////wBB0IgBC1cZEkQ7Aj8sRxQ9MzAKGwZGS0U3D0kOjhcDQB08aSs2H0otHAEgJSkhCAwVFiIuEDg+CzQxGGR0dXYvQQl/OREjQzJCiYqLBQQmKCcNKh41jAcaSJMTlJUAQbCJAQvdDklsbGVnYWwgYnl0ZSBzZXF1ZW5jZQBEb21haW4gZXJyb3IAUmVzdWx0IG5vdCByZXByZXNlbnRhYmxlAE5vdCBhIHR0eQBQZXJtaXNzaW9uIGRlbmllZABPcGVyYXRpb24gbm90IHBlcm1pdHRlZABObyBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5AE5vIHN1Y2ggcHJvY2VzcwBGaWxlIGV4aXN0cwBWYWx1ZSB0b28gbGFyZ2UgZm9yIGRhdGEgdHlwZQBObyBzcGFjZSBsZWZ0IG9uIGRldmljZQBPdXQgb2YgbWVtb3J5AFJlc291cmNlIGJ1c3kASW50ZXJydXB0ZWQgc3lzdGVtIGNhbGwAUmVzb3VyY2UgdGVtcG9yYXJpbHkgdW5hdmFpbGFibGUASW52YWxpZCBzZWVrAENyb3NzLWRldmljZSBsaW5rAFJlYWQtb25seSBmaWxlIHN5c3RlbQBEaXJlY3Rvcnkgbm90IGVtcHR5AENvbm5lY3Rpb24gcmVzZXQgYnkgcGVlcgBPcGVyYXRpb24gdGltZWQgb3V0AENvbm5lY3Rpb24gcmVmdXNlZABIb3N0IGlzIGRvd24ASG9zdCBpcyB1bnJlYWNoYWJsZQBBZGRyZXNzIGluIHVzZQBCcm9rZW4gcGlwZQBJL08gZXJyb3IATm8gc3VjaCBkZXZpY2Ugb3IgYWRkcmVzcwBCbG9jayBkZXZpY2UgcmVxdWlyZWQATm8gc3VjaCBkZXZpY2UATm90IGEgZGlyZWN0b3J5AElzIGEgZGlyZWN0b3J5AFRleHQgZmlsZSBidXN5AEV4ZWMgZm9ybWF0IGVycm9yAEludmFsaWQgYXJndW1lbnQAQXJndW1lbnQgbGlzdCB0b28gbG9uZwBTeW1ib2xpYyBsaW5rIGxvb3AARmlsZW5hbWUgdG9vIGxvbmcAVG9vIG1hbnkgb3BlbiBmaWxlcyBpbiBzeXN0ZW0ATm8gZmlsZSBkZXNjcmlwdG9ycyBhdmFpbGFibGUAQmFkIGZpbGUgZGVzY3JpcHRvcgBObyBjaGlsZCBwcm9jZXNzAEJhZCBhZGRyZXNzAEZpbGUgdG9vIGxhcmdlAFRvbyBtYW55IGxpbmtzAE5vIGxvY2tzIGF2YWlsYWJsZQBSZXNvdXJjZSBkZWFkbG9jayB3b3VsZCBvY2N1cgBTdGF0ZSBub3QgcmVjb3ZlcmFibGUAUHJldmlvdXMgb3duZXIgZGllZABPcGVyYXRpb24gY2FuY2VsZWQARnVuY3Rpb24gbm90IGltcGxlbWVudGVkAE5vIG1lc3NhZ2Ugb2YgZGVzaXJlZCB0eXBlAElkZW50aWZpZXIgcmVtb3ZlZABEZXZpY2Ugbm90IGEgc3RyZWFtAE5vIGRhdGEgYXZhaWxhYmxlAERldmljZSB0aW1lb3V0AE91dCBvZiBzdHJlYW1zIHJlc291cmNlcwBMaW5rIGhhcyBiZWVuIHNldmVyZWQAUHJvdG9jb2wgZXJyb3IAQmFkIG1lc3NhZ2UARmlsZSBkZXNjcmlwdG9yIGluIGJhZCBzdGF0ZQBOb3QgYSBzb2NrZXQARGVzdGluYXRpb24gYWRkcmVzcyByZXF1aXJlZABNZXNzYWdlIHRvbyBsYXJnZQBQcm90b2NvbCB3cm9uZyB0eXBlIGZvciBzb2NrZXQAUHJvdG9jb2wgbm90IGF2YWlsYWJsZQBQcm90b2NvbCBub3Qgc3VwcG9ydGVkAFNvY2tldCB0eXBlIG5vdCBzdXBwb3J0ZWQATm90IHN1cHBvcnRlZABQcm90b2NvbCBmYW1pbHkgbm90IHN1cHBvcnRlZABBZGRyZXNzIGZhbWlseSBub3Qgc3VwcG9ydGVkIGJ5IHByb3RvY29sAEFkZHJlc3Mgbm90IGF2YWlsYWJsZQBOZXR3b3JrIGlzIGRvd24ATmV0d29yayB1bnJlYWNoYWJsZQBDb25uZWN0aW9uIHJlc2V0IGJ5IG5ldHdvcmsAQ29ubmVjdGlvbiBhYm9ydGVkAE5vIGJ1ZmZlciBzcGFjZSBhdmFpbGFibGUAU29ja2V0IGlzIGNvbm5lY3RlZABTb2NrZXQgbm90IGNvbm5lY3RlZABDYW5ub3Qgc2VuZCBhZnRlciBzb2NrZXQgc2h1dGRvd24AT3BlcmF0aW9uIGFscmVhZHkgaW4gcHJvZ3Jlc3MAT3BlcmF0aW9uIGluIHByb2dyZXNzAFN0YWxlIGZpbGUgaGFuZGxlAFJlbW90ZSBJL08gZXJyb3IAUXVvdGEgZXhjZWVkZWQATm8gbWVkaXVtIGZvdW5kAFdyb25nIG1lZGl1bSB0eXBlAE5vIGVycm9yIGluZm9ybWF0aW9uAABVbmtub3duIGVycm9yICVkACVzJXMlcwAAOiAAL3Byb2Mvc2VsZi9mZC8AL2Rldi91cmFuZG9tAHJ3YQAlcy5YWFhYWFgAcitiAHJiAFBLBQYAQZCYAQtOCgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAAAEAAAAIAAAAEEwAADBMAEGQmgELAlBQAEHImgELCR8AAABkTQAAAwBB5JoBC4wBLfRRWM+MscBG9rXLKTEDxwRbcDC0Xf0geH+LmthZKVBoSImrp1YDbP+3zYg/1He0K6WjcPG65Kj8QYP92W/hinovLXSWBx8NCV4Ddixw90ClLKdvV0GoqnTfoFhkA0rHxDxTrq9fGAQVseNtKIarDKS/Q/DpUIE5VxZSN/////////////////////8=";function ne(){var e=function(){var e=new Error;if(!e.stack){try{throw new Error}catch(t){e=t}if(!e.stack)return"(no stack trace available)"}return e.stack.toString()}();return A.extraStackTrace&&(e+="\n"+A.extraStackTrace()),e.replace(/\b_Z[\w\d_]+/g,(function(e){return e==e?e:e+" ["+e+"]"}))}$(re)||(re=function(e){return A.locateFile?A.locateFile(e,u):u+e}(re)),O.push({func:function(){De()}});var ie={splitPath:function(e){return/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/.exec(e).slice(1)},normalizeArray:function(e,t){for(var r=0,n=e.length-1;n>=0;n--){var i=e[n];"."===i?e.splice(n,1):".."===i?(e.splice(n,1),r++):r&&(e.splice(n,1),r--)}if(t)for(;r;r--)e.unshift("..");return e},normalize:function(e){var t="/"===e.charAt(0),r="/"===e.substr(-1);return(e=ie.normalizeArray(e.split("/").filter((function(e){return!!e})),!t).join("/"))||t||(e="."),e&&r&&(e+="/"),(t?"/":"")+e},dirname:function(e){var t=ie.splitPath(e),r=t[0],n=t[1];return r||n?(n&&(n=n.substr(0,n.length-1)),r+n):"."},basename:function(e){if("/"===e)return"/";var t=e.lastIndexOf("/");return-1===t?e:e.substr(t+1)},extname:function(e){return ie.splitPath(e)[3]},join:function(){var e=Array.prototype.slice.call(arguments,0);return ie.normalize(e.join("/"))},join2:function(e,t){return ie.normalize(e+"/"+t)}};function Ae(e){return R[Se()>>2]=e,e}var oe={resolve:function(){for(var e="",t=!1,r=arguments.length-1;r>=-1&&!t;r--){var n=r>=0?arguments[r]:ue.cwd();if("string"!=typeof n)throw new TypeError("Arguments to path.resolve must be strings");if(!n)return"";e=n+"/"+e,t="/"===n.charAt(0)}return(t?"/":"")+(e=ie.normalizeArray(e.split("/").filter((function(e){return!!e})),!t).join("/"))||"."},relative:function(e,t){function r(e){for(var t=0;t=0&&""===e[r];r--);return t>r?[]:e.slice(t,r-t+1)}e=oe.resolve(e).substr(1),t=oe.resolve(t).substr(1);for(var n=r(e.split("/")),i=r(t.split("/")),A=Math.min(n.length,i.length),o=A,s=0;s0?r.slice(0,n).toString("utf-8"):null))return null;e.input=we(t,!0)}return e.input.shift()},put_char:function(e,t){null===t||10===t?(h(y(e.output,0)),e.output=[]):0!=t&&e.output.push(t)},flush:function(e){e.output&&e.output.length>0&&(h(y(e.output,0)),e.output=[])}},default_tty1_ops:{put_char:function(e,t){null===t||10===t?(f(y(e.output,0)),e.output=[]):0!=t&&e.output.push(t)},flush:function(e){e.output&&e.output.length>0&&(f(y(e.output,0)),e.output=[])}}},ae={ops_table:null,mount:function(e){return ae.createNode(null,"/",16895,0)},createNode:function(e,t,r,n){if(ue.isBlkdev(r)||ue.isFIFO(r))throw new ue.ErrnoError(63);ae.ops_table||(ae.ops_table={dir:{node:{getattr:ae.node_ops.getattr,setattr:ae.node_ops.setattr,lookup:ae.node_ops.lookup,mknod:ae.node_ops.mknod,rename:ae.node_ops.rename,unlink:ae.node_ops.unlink,rmdir:ae.node_ops.rmdir,readdir:ae.node_ops.readdir,symlink:ae.node_ops.symlink},stream:{llseek:ae.stream_ops.llseek}},file:{node:{getattr:ae.node_ops.getattr,setattr:ae.node_ops.setattr},stream:{llseek:ae.stream_ops.llseek,read:ae.stream_ops.read,write:ae.stream_ops.write,allocate:ae.stream_ops.allocate,mmap:ae.stream_ops.mmap,msync:ae.stream_ops.msync}},link:{node:{getattr:ae.node_ops.getattr,setattr:ae.node_ops.setattr,readlink:ae.node_ops.readlink},stream:{}},chrdev:{node:{getattr:ae.node_ops.getattr,setattr:ae.node_ops.setattr},stream:ue.chrdev_stream_ops}});var i=ue.createNode(e,t,r,n);return ue.isDir(i.mode)?(i.node_ops=ae.ops_table.dir.node,i.stream_ops=ae.ops_table.dir.stream,i.contents={}):ue.isFile(i.mode)?(i.node_ops=ae.ops_table.file.node,i.stream_ops=ae.ops_table.file.stream,i.usedBytes=0,i.contents=null):ue.isLink(i.mode)?(i.node_ops=ae.ops_table.link.node,i.stream_ops=ae.ops_table.link.stream):ue.isChrdev(i.mode)&&(i.node_ops=ae.ops_table.chrdev.node,i.stream_ops=ae.ops_table.chrdev.stream),i.timestamp=Date.now(),e&&(e.contents[t]=i),i},getFileDataAsRegularArray:function(e){if(e.contents&&e.contents.subarray){for(var t=[],r=0;r=t)){t=Math.max(t,r*(r<1048576?2:1.125)>>>0),0!=r&&(t=Math.max(t,256));var n=e.contents;e.contents=new Uint8Array(t),e.usedBytes>0&&e.contents.set(n.subarray(0,e.usedBytes),0)}},resizeFileStorage:function(e,t){if(e.usedBytes!=t){if(0==t)return e.contents=null,void(e.usedBytes=0);if(!e.contents||e.contents.subarray){var r=e.contents;return e.contents=new Uint8Array(t),r&&e.contents.set(r.subarray(0,Math.min(t,e.usedBytes))),void(e.usedBytes=t)}if(e.contents||(e.contents=[]),e.contents.length>t)e.contents.length=t;else for(;e.contents.length=e.node.usedBytes)return 0;var o=Math.min(e.node.usedBytes-i,n);if(o>8&&A.subarray)t.set(A.subarray(i,i+o),r);else for(var s=0;s0||n+r>2)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}return t.mode},realPath:function(e){for(var t=[];e.parent!==e;)t.push(e.name),e=e.parent;return t.push(e.mount.opts.root),t.reverse(),ie.join.apply(null,t)},flagsForNode:function(e){e&=-2097153,e&=-2049,e&=-32769,e&=-524289;var t=0;for(var r in ge.flagsForNodeMap)e&r&&(t|=ge.flagsForNodeMap[r],e^=r);if(e)throw new ue.ErrnoError(28);return t},node_ops:{getattr:function(e){var t,r=ge.realPath(e);try{t=de.lstatSync(r)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}return ge.isWindows&&!t.blksize&&(t.blksize=4096),ge.isWindows&&!t.blocks&&(t.blocks=(t.size+t.blksize-1)/t.blksize|0),{dev:t.dev,ino:t.ino,mode:t.mode,nlink:t.nlink,uid:t.uid,gid:t.gid,rdev:t.rdev,size:t.size,atime:t.atime,mtime:t.mtime,ctime:t.ctime,blksize:t.blksize,blocks:t.blocks}},setattr:function(e,t){var r=ge.realPath(e);try{if(void 0!==t.mode&&(de.chmodSync(r,t.mode),e.mode=t.mode),void 0!==t.timestamp){var n=new Date(t.timestamp);de.utimesSync(r,n,n)}void 0!==t.size&&de.truncateSync(r,t.size)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}},lookup:function(e,t){var r=ie.join2(ge.realPath(e),t),n=ge.getMode(r);return ge.createNode(e,t,n)},mknod:function(e,t,r,n){var i=ge.createNode(e,t,r,n),A=ge.realPath(i);try{ue.isDir(i.mode)?de.mkdirSync(A,i.mode):de.writeFileSync(A,"",{mode:i.mode})}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}return i},rename:function(e,t,r){var n=ge.realPath(e),i=ie.join2(ge.realPath(t),r);try{de.renameSync(n,i)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}e.name=r},unlink:function(e,t){var r=ie.join2(ge.realPath(e),t);try{de.unlinkSync(r)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}},rmdir:function(e,t){var r=ie.join2(ge.realPath(e),t);try{de.rmdirSync(r)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}},readdir:function(e){var t=ge.realPath(e);try{return de.readdirSync(t)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}},symlink:function(e,t,r){var n=ie.join2(ge.realPath(e),t);try{de.symlinkSync(r,n)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}},readlink:function(e){var t=ge.realPath(e);try{return t=de.readlinkSync(t),t=Ie.relative(Ie.resolve(e.mount.opts.root),t)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}}},stream_ops:{open:function(e){var t=ge.realPath(e.node);try{ue.isFile(e.node.mode)&&(e.nfd=de.openSync(t,ge.flagsForNode(e.flags)))}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}},close:function(e){try{ue.isFile(e.node.mode)&&e.nfd&&de.closeSync(e.nfd)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ge.convertNodeCode(e))}},read:function(e,t,r,n,i){if(0===n)return 0;try{return de.readSync(e.nfd,ge.bufferFrom(t.buffer),r,n,i)}catch(e){throw new ue.ErrnoError(ge.convertNodeCode(e))}},write:function(e,t,r,n,i){try{return de.writeSync(e.nfd,ge.bufferFrom(t.buffer),r,n,i)}catch(e){throw new ue.ErrnoError(ge.convertNodeCode(e))}},llseek:function(e,t,r){var n=t;if(1===r)n+=e.position;else if(2===r&&ue.isFile(e.node.mode))try{n+=de.fstatSync(e.nfd).size}catch(e){throw new ue.ErrnoError(ge.convertNodeCode(e))}if(n<0)throw new ue.ErrnoError(28);return n},mmap:function(e,t,r,n,i,A){if(E(0===t),!ue.isFile(e.node.mode))throw new ue.ErrnoError(43);var o=xe(r);return ge.stream_ops.read(e,M,o,r,n),{ptr:o,allocated:!0}},msync:function(e,t,r,n,i){if(!ue.isFile(e.node.mode))throw new ue.ErrnoError(43);if(2&i)return 0;ge.stream_ops.write(e,t,0,n,r,!1);return 0}}},le={lookupPath:function(e){return{path:e,node:{mode:ge.getMode(e)}}},createStandardStreams:function(){ue.streams[0]={fd:0,nfd:0,position:0,path:"",flags:0,tty:!0,seekable:!1};for(var e=1;e<3;e++)ue.streams[e]={fd:e,nfd:e,position:0,path:"",flags:577,tty:!0,seekable:!1}},cwd:function(){return process.cwd()},chdir:function(){process.chdir.apply(void 0,arguments)},mknod:function(e,t){ue.isDir(e)?de.mkdirSync(e,t):de.writeFileSync(e,"",{mode:t})},mkdir:function(){de.mkdirSync.apply(void 0,arguments)},symlink:function(){de.symlinkSync.apply(void 0,arguments)},rename:function(){de.renameSync.apply(void 0,arguments)},rmdir:function(){de.rmdirSync.apply(void 0,arguments)},readdir:function(){de.readdirSync.apply(void 0,arguments)},unlink:function(){de.unlinkSync.apply(void 0,arguments)},readlink:function(){return de.readlinkSync.apply(void 0,arguments)},stat:function(){return de.statSync.apply(void 0,arguments)},lstat:function(){return de.lstatSync.apply(void 0,arguments)},chmod:function(){de.chmodSync.apply(void 0,arguments)},fchmod:function(){de.fchmodSync.apply(void 0,arguments)},chown:function(){de.chownSync.apply(void 0,arguments)},fchown:function(){de.fchownSync.apply(void 0,arguments)},truncate:function(){de.truncateSync.apply(void 0,arguments)},ftruncate:function(){de.ftruncateSync.apply(void 0,arguments)},utime:function(){de.utimesSync.apply(void 0,arguments)},open:function(e,t,r,n){"string"==typeof t&&(t=me.modeStringToFlags(t));var i=de.openSync(e,ge.flagsForNode(t),r),A=null!=n?n:ue.nextfd(i),o={fd:A,nfd:i,position:0,path:e,flags:t,seekable:!0};return ue.streams[A]=o,o},close:function(e){e.stream_ops||de.closeSync(e.nfd),ue.closeStream(e.fd)},llseek:function(e,t,r){if(e.stream_ops)return me.llseek(e,t,r);var n=t;if(1===r)n+=e.position;else if(2===r)n+=de.fstatSync(e.nfd).size;else if(0!==r)throw new ue.ErrnoError(ce.EINVAL);if(n<0)throw new ue.ErrnoError(ce.EINVAL);return e.position=n,n},read:function(e,t,r,n,i){if(e.stream_ops)return me.read(e,t,r,n,i);var A=void 0!==i;!A&&e.seekable&&(i=e.position);var o=de.readSync(e.nfd,ge.bufferFrom(t.buffer),r,n,i);return A||(e.position+=o),o},write:function(e,t,r,n,i){if(e.stream_ops)return me.write(e,t,r,n,i);1024&e.flags&&ue.llseek(e,0,2);var A=void 0!==i;!A&&e.seekable&&(i=e.position);var o=de.writeSync(e.nfd,ge.bufferFrom(t.buffer),r,n,i);return A||(e.position+=o),o},allocate:function(){throw new ue.ErrnoError(ce.EOPNOTSUPP)},mmap:function(){throw new ue.ErrnoError(ce.ENODEV)},msync:function(){return 0},munmap:function(){return 0},ioctl:function(){throw new ue.ErrnoError(ce.ENOTTY)}},ue={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:!1,ignorePermissions:!0,trackingDelegate:{},tracking:{openFlags:{READ:1,WRITE:2}},ErrnoError:null,genericErrors:{},filesystems:null,syncFSRequests:0,handleFSError:function(e){if(!(e instanceof ue.ErrnoError))throw e+" : "+ne();return Ae(e.errno)},lookupPath:function(e,t){if(t=t||{},!(e=oe.resolve(ue.cwd(),e)))return{path:"",node:null};var r={follow_mount:!0,recurse_count:0};for(var n in r)void 0===t[n]&&(t[n]=r[n]);if(t.recurse_count>8)throw new ue.ErrnoError(32);for(var i=ie.normalizeArray(e.split("/").filter((function(e){return!!e})),!1),A=ue.root,o="/",s=0;s40)throw new ue.ErrnoError(32)}}return{path:o,node:A}},getPath:function(e){for(var t;;){if(ue.isRoot(e)){var r=e.mount.mountpoint;return t?"/"!==r[r.length-1]?r+"/"+t:r+t:r}t=t?e.name+"/"+t:e.name,e=e.parent}},hashName:function(e,t){for(var r=0,n=0;n>>0)%ue.nameTable.length},hashAddNode:function(e){var t=ue.hashName(e.parent.id,e.name);e.name_next=ue.nameTable[t],ue.nameTable[t]=e},hashRemoveNode:function(e){var t=ue.hashName(e.parent.id,e.name);if(ue.nameTable[t]===e)ue.nameTable[t]=e.name_next;else for(var r=ue.nameTable[t];r;){if(r.name_next===e){r.name_next=e.name_next;break}r=r.name_next}},lookupNode:function(e,t){var r=ue.mayLookup(e);if(r)throw new ue.ErrnoError(r,e);for(var n=ue.hashName(e.id,t),i=ue.nameTable[n];i;i=i.name_next){var A=i.name;if(i.parent.id===e.id&&A===t)return i}return ue.lookup(e,t)},createNode:function(e,t,r,n){var i=new ue.FSNode(e,t,r,n);return ue.hashAddNode(i),i},destroyNode:function(e){ue.hashRemoveNode(e)},isRoot:function(e){return e===e.parent},isMountpoint:function(e){return!!e.mounted},isFile:function(e){return 32768==(61440&e)},isDir:function(e){return 16384==(61440&e)},isLink:function(e){return 40960==(61440&e)},isChrdev:function(e){return 8192==(61440&e)},isBlkdev:function(e){return 24576==(61440&e)},isFIFO:function(e){return 4096==(61440&e)},isSocket:function(e){return 49152==(49152&e)},flagModes:{r:0,rs:1052672,"r+":2,w:577,wx:705,xw:705,"w+":578,"wx+":706,"xw+":706,a:1089,ax:1217,xa:1217,"a+":1090,"ax+":1218,"xa+":1218},modeStringToFlags:function(e){var t=ue.flagModes[e];if(void 0===t)throw new Error("Unknown file open mode: "+e);return t},flagsToPermissionString:function(e){var t=["r","w","rw"][3&e];return 512&e&&(t+="w"),t},nodePermissions:function(e,t){return ue.ignorePermissions||(-1===t.indexOf("r")||292&e.mode)&&(-1===t.indexOf("w")||146&e.mode)&&(-1===t.indexOf("x")||73&e.mode)?0:2},mayLookup:function(e){var t=ue.nodePermissions(e,"x");return t||(e.node_ops.lookup?0:2)},mayCreate:function(e,t){try{ue.lookupNode(e,t);return 20}catch(e){}return ue.nodePermissions(e,"wx")},mayDelete:function(e,t,r){var n;try{n=ue.lookupNode(e,t)}catch(e){return e.errno}var i=ue.nodePermissions(e,"wx");if(i)return i;if(r){if(!ue.isDir(n.mode))return 54;if(ue.isRoot(n)||ue.getPath(n)===ue.cwd())return 10}else if(ue.isDir(n.mode))return 31;return 0},mayOpen:function(e,t){return e?ue.isLink(e.mode)?32:ue.isDir(e.mode)&&("r"!==ue.flagsToPermissionString(t)||512&t)?31:ue.nodePermissions(e,ue.flagsToPermissionString(t)):44},MAX_OPEN_FDS:4096,nextfd:function(e,t){e=e||0,t=t||ue.MAX_OPEN_FDS;for(var r=e;r<=t;r++)if(!ue.streams[r])return r;throw new ue.ErrnoError(33)},getStream:function(e){return ue.streams[e]},createStream:function(e,t,r){ue.FSStream||(ue.FSStream=function(){},ue.FSStream.prototype={object:{get:function(){return this.node},set:function(e){this.node=e}},isRead:{get:function(){return 1!=(2097155&this.flags)}},isWrite:{get:function(){return 0!=(2097155&this.flags)}},isAppend:{get:function(){return 1024&this.flags}}});var n=new ue.FSStream;for(var i in e)n[i]=e[i];e=n;var A=ue.nextfd(t,r);return e.fd=A,ue.streams[A]=e,e},closeStream:function(e){ue.streams[e]=null},chrdev_stream_ops:{open:function(e){var t=ue.getDevice(e.node.rdev);e.stream_ops=t.stream_ops,e.stream_ops.open&&e.stream_ops.open(e)},llseek:function(){throw new ue.ErrnoError(70)}},major:function(e){return e>>8},minor:function(e){return 255&e},makedev:function(e,t){return e<<8|t},registerDevice:function(e,t){ue.devices[e]={stream_ops:t}},getDevice:function(e){return ue.devices[e]},getMounts:function(e){for(var t=[],r=[e];r.length;){var n=r.pop();t.push(n),r.push.apply(r,n.mounts)}return t},syncfs:function(e,t){"function"==typeof e&&(t=e,e=!1),ue.syncFSRequests++,ue.syncFSRequests>1&&f("warning: "+ue.syncFSRequests+" FS.syncfs operations in flight at once, probably just doing extra work");var r=ue.getMounts(ue.root.mount),n=0;function i(e){return ue.syncFSRequests--,t(e)}function A(e){if(e)return A.errored?void 0:(A.errored=!0,i(e));++n>=r.length&&i(null)}r.forEach((function(t){if(!t.type.syncfs)return A(null);t.type.syncfs(t,e,A)}))},mount:function(e,t,r){var n,i="/"===r,A=!r;if(i&&ue.root)throw new ue.ErrnoError(10);if(!i&&!A){var o=ue.lookupPath(r,{follow_mount:!1});if(r=o.path,n=o.node,ue.isMountpoint(n))throw new ue.ErrnoError(10);if(!ue.isDir(n.mode))throw new ue.ErrnoError(54)}var s={type:e,opts:t,mountpoint:r,mounts:[]},a=e.mount(s);return a.mount=s,s.root=a,i?ue.root=a:n&&(n.mounted=s,n.mount&&n.mount.mounts.push(s)),a},unmount:function(e){var t=ue.lookupPath(e,{follow_mount:!1});if(!ue.isMountpoint(t.node))throw new ue.ErrnoError(28);var r=t.node,n=r.mounted,i=ue.getMounts(n);Object.keys(ue.nameTable).forEach((function(e){for(var t=ue.nameTable[e];t;){var r=t.name_next;-1!==i.indexOf(t.mount)&&ue.destroyNode(t),t=r}})),r.mounted=null;var A=r.mount.mounts.indexOf(n);r.mount.mounts.splice(A,1)},lookup:function(e,t){return e.node_ops.lookup(e,t)},mknod:function(e,t,r){var n=ue.lookupPath(e,{parent:!0}).node,i=ie.basename(e);if(!i||"."===i||".."===i)throw new ue.ErrnoError(28);var A=ue.mayCreate(n,i);if(A)throw new ue.ErrnoError(A);if(!n.node_ops.mknod)throw new ue.ErrnoError(63);return n.node_ops.mknod(n,i,t,r)},create:function(e,t){return t=void 0!==t?t:438,t&=4095,t|=32768,ue.mknod(e,t,0)},mkdir:function(e,t){return t=void 0!==t?t:511,t&=1023,t|=16384,ue.mknod(e,t,0)},mkdirTree:function(e,t){for(var r=e.split("/"),n="",i=0;ithis.length-1||e<0)){var t=e%this.chunkSize,r=e/this.chunkSize|0;return this.getter(r)[t]}},A.prototype.setDataGetter=function(e){this.getter=e},A.prototype.cacheLength=function(){var e=new XMLHttpRequest;if(e.open("HEAD",r,!1),e.send(null),!(e.status>=200&&e.status<300||304===e.status))throw new Error("Couldn't load "+r+". Status: "+e.status);var t,n=Number(e.getResponseHeader("Content-length")),i=(t=e.getResponseHeader("Accept-Ranges"))&&"bytes"===t,A=(t=e.getResponseHeader("Content-Encoding"))&&"gzip"===t,o=1048576;i||(o=n);var s=this;s.setDataGetter((function(e){var t=e*o,i=(e+1)*o-1;if(i=Math.min(i,n-1),void 0===s.chunks[e]&&(s.chunks[e]=function(e,t){if(e>t)throw new Error("invalid range ("+e+", "+t+") or no bytes requested!");if(t>n-1)throw new Error("only "+n+" bytes available! programmer error!");var i=new XMLHttpRequest;if(i.open("GET",r,!1),n!==o&&i.setRequestHeader("Range","bytes="+e+"-"+t),"undefined"!=typeof Uint8Array&&(i.responseType="arraybuffer"),i.overrideMimeType&&i.overrideMimeType("text/plain; charset=x-user-defined"),i.send(null),!(i.status>=200&&i.status<300||304===i.status))throw new Error("Couldn't load "+r+". Status: "+i.status);return void 0!==i.response?new Uint8Array(i.response||[]):we(i.responseText||"",!0)}(t,i)),void 0===s.chunks[e])throw new Error("doXHR failed!");return s.chunks[e]})),!A&&n||(o=n=1,n=this.getter(0).length,o=n,h("LazyFiles on gzip forces download of the whole file when length is accessed")),this._length=n,this._chunkSize=o,this.lengthKnown=!0},"undefined"!=typeof XMLHttpRequest)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var o={isDevice:!1,url:r},s=ue.createFile(e,t,o,n,i);o.contents?s.contents=o.contents:o.url&&(s.contents=null,s.url=o.url),Object.defineProperties(s,{usedBytes:{get:function(){return this.contents.length}}});var a={};return Object.keys(s.stream_ops).forEach((function(e){var t=s.stream_ops[e];a[e]=function(){if(!ue.forceLoadFile(s))throw new ue.ErrnoError(29);return t.apply(null,arguments)}})),a.read=function(e,t,r,n,i){if(!ue.forceLoadFile(s))throw new ue.ErrnoError(29);var A=e.node.contents;if(i>=A.length)return 0;var o=Math.min(A.length-i,n);if(A.slice)for(var a=0;a>2]=n.dev,R[r+4>>2]=0,R[r+8>>2]=n.ino,R[r+12>>2]=n.mode,R[r+16>>2]=n.nlink,R[r+20>>2]=n.uid,R[r+24>>2]=n.gid,R[r+28>>2]=n.rdev,R[r+32>>2]=0,te=[n.size>>>0,(ee=n.size,+G(ee)>=1?ee>0?(0|J(+H(ee/4294967296),4294967295))>>>0:~~+_((ee-+(~~ee>>>0))/4294967296)>>>0:0)],R[r+40>>2]=te[0],R[r+44>>2]=te[1],R[r+48>>2]=4096,R[r+52>>2]=n.blocks,R[r+56>>2]=n.atime.getTime()/1e3|0,R[r+60>>2]=0,R[r+64>>2]=n.mtime.getTime()/1e3|0,R[r+68>>2]=0,R[r+72>>2]=n.ctime.getTime()/1e3|0,R[r+76>>2]=0,te=[n.ino>>>0,(ee=n.ino,+G(ee)>=1?ee>0?(0|J(+H(ee/4294967296),4294967295))>>>0:~~+_((ee-+(~~ee>>>0))/4294967296)>>>0:0)],R[r+80>>2]=te[0],R[r+84>>2]=te[1],0},doMsync:function(e,t,r,n,i){var A=F.slice(e,e+r);ue.msync(t,A,i,r,n)},doMkdir:function(e,t){return"/"===(e=ie.normalize(e))[e.length-1]&&(e=e.substr(0,e.length-1)),ue.mkdir(e,t,0),0},doMknod:function(e,t,r){switch(61440&t){case 32768:case 8192:case 24576:case 4096:case 49152:break;default:return-28}return ue.mknod(e,t,r),0},doReadlink:function(e,t,r){if(r<=0)return-28;var n=ue.readlink(e),i=Math.min(r,D(n)),A=M[t+i];return b(n,t,r+1),M[t+i]=A,i},doAccess:function(e,t){if(-8&t)return-28;var r;if(!(r=ue.lookupPath(e,{follow:!0}).node))return-44;var n="";return 4&t&&(n+="r"),2&t&&(n+="w"),1&t&&(n+="x"),n&&ue.nodePermissions(r,n)?-2:0},doDup:function(e,t,r){var n=ue.getStream(r);return n&&ue.close(n),ue.open(e,t,0,r,r).fd},doReadv:function(e,t,r,n){for(var i=0,A=0;A>2],s=R[t+(8*A+4)>>2],a=ue.read(e,M,o,s,n);if(a<0)return-1;if(i+=a,a>2],s=R[t+(8*A+4)>>2],a=ue.write(e,M,o,s,n);if(a<0)return-1;i+=a}return i},varargs:void 0,get:function(){return he.varargs+=4,R[he.varargs-4>>2]},getStr:function(e){return Q(e)},getStreamFromFD:function(e){var t=ue.getStream(e);if(!t)throw new ue.ErrnoError(8);return t},get64:function(e,t){return e}};function fe(e){try{return C.grow(e-k.byteLength+65535>>>16),L(C.buffer),1}catch(e){}}var pe=(b("GMT",20704,4),20704);var Ce=function(e,t,r,n){e||(e=this),this.parent=e,this.mount=e.mount,this.mounted=null,this.id=ue.nextInode++,this.name=t,this.mode=r,this.node_ops={},this.stream_ops={},this.rdev=n};Object.defineProperties(Ce.prototype,{read:{get:function(){return 365==(365&this.mode)},set:function(e){e?this.mode|=365:this.mode&=-366}},write:{get:function(){return 146==(146&this.mode)},set:function(e){e?this.mode|=146:this.mode&=-147}},isFolder:{get:function(){return ue.isDir(this.mode)}},isDevice:{get:function(){return ue.isChrdev(this.mode)}}}),ue.FSNode=Ce,ue.staticInit();var de=i,Ie=r(85622);ge.staticInit();var Ee=function(e){return function(){try{return e.apply(this,arguments)}catch(e){if(!e.code)throw e;throw new ue.ErrnoError(ce[e.code])}}},me=Object.assign({},ue);for(var Be in le)ue[Be]=Ee(le[Be]);function we(e,t,r){var n=r>0?r:D(e)+1,i=new Array(n),A=v(e,i,0,i.length);return t&&(i.length=A),i}"function"==typeof atob&&atob;function ye(e){if($(e))return function(e){var t;try{t=Buffer.from(e,"base64")}catch(r){t=new Buffer(e,"base64")}return new Uint8Array(t.buffer,t.byteOffset,t.byteLength)}(e.slice("data:application/octet-stream;base64,".length))}var Qe,ve={p:function(e,t){try{return e=he.getStr(e),ue.chmod(e,t),0}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),-e.errno}},e:function(e,t,r){he.varargs=r;try{var n=he.getStreamFromFD(e);switch(t){case 0:return(i=he.get())<0?-28:ue.open(n.path,n.flags,0,i).fd;case 1:case 2:return 0;case 3:return n.flags;case 4:var i=he.get();return n.flags|=i,0;case 12:i=he.get();return N[i+0>>1]=2,0;case 13:case 14:return 0;case 16:case 8:return-28;case 9:return Ae(28),-1;default:return-28}}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),-e.errno}},j:function(e,t){try{var r=he.getStreamFromFD(e);return he.doStat(ue.stat,r.path,t)}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),-e.errno}},o:function(e,t,r){he.varargs=r;try{var n=he.getStreamFromFD(e);switch(t){case 21509:case 21505:return n.tty?0:-59;case 21510:case 21511:case 21512:case 21506:case 21507:case 21508:return n.tty?0:-59;case 21519:if(!n.tty)return-59;var i=he.get();return R[i>>2]=0,0;case 21520:return n.tty?-28:-59;case 21531:i=he.get();return ue.ioctl(n,t,i);case 21523:case 21524:return n.tty?0:-59;default:Z("bad ioctl syscall "+t)}}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),-e.errno}},r:function(e,t,r){he.varargs=r;try{var n=he.getStr(e),i=he.get();return ue.open(n,t,i).fd}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),-e.errno}},q:function(e,t,r){try{var n=he.getStreamFromFD(e);return ue.read(n,M,t,r)}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),-e.errno}},h:function(e,t){try{return e=he.getStr(e),t=he.getStr(t),ue.rename(e,t),0}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),-e.errno}},s:function(e){try{return e=he.getStr(e),ue.rmdir(e),0}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),-e.errno}},c:function(e,t){try{return e=he.getStr(e),he.doStat(ue.stat,e,t)}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),-e.errno}},g:function(e){try{return e=he.getStr(e),ue.unlink(e),0}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),-e.errno}},t:function(e,t,r){F.copyWithin(e,t,t+r)},u:function(e){e>>>=0;var t=F.length;if(e>2147483648)return!1;for(var r,n,i=1;i<=4;i*=2){var A=t*(1+.2/i);if(A=Math.min(A,e+100663296),fe(Math.min(2147483648,((r=Math.max(16777216,e,A))%(n=65536)>0&&(r+=n-r%n),r))))return!0}return!1},f:function(e){try{var t=he.getStreamFromFD(e);return ue.close(t),0}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),e.errno}},i:function(e,t){try{var r=he.getStreamFromFD(e),n=r.tty?2:ue.isDir(r.mode)?3:ue.isLink(r.mode)?7:4;return M[t>>0]=n,0}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),e.errno}},n:function(e,t,r,n){try{var i=he.getStreamFromFD(e),A=he.doReadv(i,t,r);return R[n>>2]=A,0}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),e.errno}},l:function(e,t,r,n,i){try{var A=he.getStreamFromFD(e),o=4294967296*r+(t>>>0);return o<=-9007199254740992||o>=9007199254740992?-61:(ue.llseek(A,o,n),te=[A.position>>>0,(ee=A.position,+G(ee)>=1?ee>0?(0|J(+H(ee/4294967296),4294967295))>>>0:~~+_((ee-+(~~ee>>>0))/4294967296)>>>0:0)],R[i>>2]=te[0],R[i+4>>2]=te[1],A.getdents&&0===o&&0===n&&(A.getdents=null),0)}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),e.errno}},d:function(e,t,r,n){try{var i=he.getStreamFromFD(e),A=he.doWritev(i,t,r);return R[n>>2]=A,0}catch(e){return void 0!==ue&&e instanceof ue.ErrnoError||Z(e),e.errno}},k:function(e){return function(e,t){var r=new Date(1e3*R[e>>2]);R[t>>2]=r.getUTCSeconds(),R[t+4>>2]=r.getUTCMinutes(),R[t+8>>2]=r.getUTCHours(),R[t+12>>2]=r.getUTCDate(),R[t+16>>2]=r.getUTCMonth(),R[t+20>>2]=r.getUTCFullYear()-1900,R[t+24>>2]=r.getUTCDay(),R[t+36>>2]=0,R[t+32>>2]=0;var n=Date.UTC(r.getUTCFullYear(),0,1,0,0,0,0),i=(r.getTime()-n)/864e5|0;return R[t+28>>2]=i,R[t+40>>2]=pe,t}(e,20656)},memory:C,a:function(e){0|e},table:d,b:function(e){var t=Date.now()/1e3|0;return e&&(R[e>>2]=t),t},m:function(e){!function e(){if(!e.called){e.called=!0,R[Fe()>>2]=60*(new Date).getTimezoneOffset();var t=(new Date).getFullYear(),r=new Date(t,0,1),n=new Date(t,6,1);R[Me()>>2]=Number(r.getTimezoneOffset()!=n.getTimezoneOffset());var i=a(r),A=a(n),o=S(i),s=S(A);n.getTimezoneOffset()>2]=o,R[ke()+4>>2]=s):(R[ke()>>2]=s,R[ke()+4>>2]=o)}function a(e){var t=e.toTimeString().match(/\(([A-Za-z ]+)\)$/);return t?t[1]:"GMT"}}();var t=Date.UTC(R[e+20>>2]+1900,R[e+16>>2],R[e+12>>2],R[e+8>>2],R[e+4>>2],R[e>>2],0),r=new Date(t);R[e+24>>2]=r.getUTCDay();var n=Date.UTC(r.getUTCFullYear(),0,1,0,0,0,0),i=(r.getTime()-n)/864e5|0;return R[e+28>>2]=i,r.getTime()/1e3|0}},be=function(){var e={a:ve};function t(e,t){var r=e.exports;A.asm=r,X()}if(V(),A.instantiateWasm)try{return A.instantiateWasm(e,t)}catch(e){return f("Module.instantiateWasm callback failed with error: "+e),!1}return function(){var r,n,i;try{i=function(){try{if(p)return new Uint8Array(p);var e=ye(re);if(e)return e;if(a)return a(re);throw"sync fetching of the wasm failed: you can preload it to Module['wasmBinary'] manually, or emcc.py will do that for you when generating HTML (but not JS)"}catch(e){Z(e)}}(),n=new WebAssembly.Module(i),r=new WebAssembly.Instance(n,e)}catch(e){var A=e.toString();throw f("failed to compile wasm module: "+A),(A.indexOf("imported Memory")>=0||A.indexOf("memory import")>=0)&&f("Memory size incompatibility issues may be due to changing INITIAL_MEMORY at runtime to something too large. Use ALLOW_MEMORY_GROWTH to allow any size memory (and also make sure not to set INITIAL_MEMORY at runtime to something smaller than it was at compile time)."),e}t(r)}(),A.asm}(),De=A.___wasm_call_ctors=be.v,Se=(A._zipstruct_stat=be.w,A._zipstruct_statS=be.x,A._zipstruct_stat_name=be.y,A._zipstruct_stat_index=be.z,A._zipstruct_stat_size=be.A,A._zipstruct_stat_mtime=be.B,A._zipstruct_error=be.C,A._zipstruct_errorS=be.D,A._zipstruct_error_code_zip=be.E,A._zipstruct_stat_comp_size=be.F,A._zipstruct_stat_comp_method=be.G,A._zip_close=be.H,A._zip_delete=be.I,A._zip_dir_add=be.J,A._zip_discard=be.K,A._zip_error_init_with_code=be.L,A._zip_get_error=be.M,A._zip_file_get_error=be.N,A._zip_error_strerror=be.O,A._zip_fclose=be.P,A._zip_file_add=be.Q,A._zip_file_get_external_attributes=be.R,A._zip_file_set_external_attributes=be.S,A._zip_file_set_mtime=be.T,A._zip_fopen=be.U,A._zip_fopen_index=be.V,A._zip_fread=be.W,A._zip_get_name=be.X,A._zip_get_num_entries=be.Y,A._zip_name_locate=be.Z,A._zip_open=be._,A._zip_open_from_source=be.$,A._zip_set_file_compression=be.aa,A._zip_source_buffer=be.ba,A._zip_source_buffer_create=be.ca,A._zip_source_close=be.da,A._zip_source_error=be.ea,A._zip_source_free=be.fa,A._zip_source_keep=be.ga,A._zip_source_open=be.ha,A._zip_source_read=be.ia,A._zip_source_seek=be.ja,A._zip_source_set_mtime=be.ka,A._zip_source_tell=be.la,A._zip_stat=be.ma,A._zip_stat_index=be.na,A._zip_ext_count_symlinks=be.oa,A.___errno_location=be.pa),ke=A.__get_tzname=be.qa,Me=A.__get_daylight=be.ra,Fe=A.__get_timezone=be.sa,Ne=A.stackSave=be.ta,Re=A.stackRestore=be.ua,Ke=A.stackAlloc=be.va,xe=A._malloc=be.wa;A._free=be.xa,A.dynCall_vi=be.ya;function Le(e){function t(){Qe||(Qe=!0,A.calledRun=!0,I||(!0,A.noFSInit||ue.init.initialized||ue.init(),se.init(),U(O),ue.ignorePermissions=!1,U(j),A.onRuntimeInitialized&&A.onRuntimeInitialized(),function(){if(A.postRun)for("function"==typeof A.postRun&&(A.postRun=[A.postRun]);A.postRun.length;)e=A.postRun.shift(),Y.unshift(e);var e;U(Y)}()))}e=e||l,q>0||(!function(){if(A.preRun)for("function"==typeof A.preRun&&(A.preRun=[A.preRun]);A.preRun.length;)e=A.preRun.shift(),T.unshift(e);var e;U(T)}(),q>0||(A.setStatus?(A.setStatus("Running..."),setTimeout((function(){setTimeout((function(){A.setStatus("")}),1),t()}),1)):t()))}if(A.cwrap=function(e,t,r,n){var i=(r=r||[]).every((function(e){return"number"===e}));return"string"!==t&&i&&!n?m(e):function(){return B(e,t,r,arguments)}},A.getValue=function(e,t,r){switch("*"===(t=t||"i8").charAt(t.length-1)&&(t="i32"),t){case"i1":case"i8":return M[e>>0];case"i16":return N[e>>1];case"i32":case"i64":return R[e>>2];case"float":return K[e>>2];case"double":return x[e>>3];default:Z("invalid type for getValue: "+t)}return null},W=function e(){Qe||Le(),Qe||(W=e)},A.run=Le,A.preInit)for("function"==typeof A.preInit&&(A.preInit=[A.preInit]);A.preInit.length>0;)A.preInit.pop()();Le()},98261:e=>{"use strict";function t(e,r,n,i){this.message=e,this.expected=r,this.found=n,this.location=i,this.name="SyntaxError","function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,t)}!function(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}(t,Error),t.buildMessage=function(e,t){var r={literal:function(e){return`"${i(e.text)}"`},class:function(e){var t,r="";for(t=0;t0){for(t=1,n=1;td&&(d=f,I=[]),I.push(e))}function Q(e,r,n){return new t(t.buildMessage(e,r),e,r,n)}function v(){var t,r,n,A;return t=f,(r=b())!==i?(47===e.charCodeAt(f)?(n="/",f++):(n=i,y(s)),n!==i&&(A=b())!==i?(p=t,t=r={from:r,descriptor:A}):(f=t,t=i)):(f=t,t=i),t===i&&(t=f,(r=b())!==i&&(p=t,r=function(e){return{descriptor:e}}(r)),t=r),t}function b(){var t,r,n,A;return t=f,(r=D())!==i?(64===e.charCodeAt(f)?(n="@",f++):(n=i,y(a)),n!==i&&(A=function(){var t,r,n;t=f,r=[],u.test(e.charAt(f))?(n=e.charAt(f),f++):(n=i,y(h));if(n!==i)for(;n!==i;)r.push(n),u.test(e.charAt(f))?(n=e.charAt(f),f++):(n=i,y(h));else r=i;r!==i&&(p=t,r=c());return t=r}())!==i?(p=t,t=r={fullName:r,description:A}):(f=t,t=i)):(f=t,t=i),t===i&&(t=f,(r=D())!==i&&(p=t,r=function(e){return{fullName:e}}(r)),t=r),t}function D(){var t,r,n;return t=f,64===e.charCodeAt(f)?(r="@",f++):(r=i,y(a)),r!==i&&S()!==i?(47===e.charCodeAt(f)?(n="/",f++):(n=i,y(s)),n!==i&&S()!==i?(p=t,t=r=c()):(f=t,t=i)):(f=t,t=i),t===i&&(t=f,(r=S())!==i&&(p=t,r=c()),t=r),t}function S(){var t,r,n;if(t=f,r=[],g.test(e.charAt(f))?(n=e.charAt(f),f++):(n=i,y(l)),n!==i)for(;n!==i;)r.push(n),g.test(e.charAt(f))?(n=e.charAt(f),f++):(n=i,y(l));else r=i;return r!==i&&(p=t,r=c()),t=r}if((n=o())!==i&&f===e.length)return n;throw n!==i&&f{"use strict";function t(e,r,n,i){this.message=e,this.expected=r,this.found=n,this.location=i,this.name="SyntaxError","function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,t)}!function(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}(t,Error),t.buildMessage=function(e,t){var r={literal:function(e){return'"'+i(e.text)+'"'},class:function(e){var t,r="";for(t=0;t0){for(t=1,n=1;t>",!1),I=ce(">",!1),E=ce("<<<",!1),m=ce("<",!1),B=ce("'",!1),w=ce('"',!1),y=function(e){return{type:"text",text:e}},Q=ce("\\",!1),v={type:"any"},b=/^[^']/,D=ge(["'"],!0,!1),S=function(e){return e.join("")},k=/^[^$"]/,M=ge(["$",'"'],!0,!1),F=ce("-",!1),N=ce("+",!1),R=/^[0-9]/,K=ge([["0","9"]],!1,!1),x=ce(".",!1),L=ce("*",!1),P=ce("/",!1),U=ce("$((",!1),T=ce("))",!1),O=ce("$(",!1),j=ce("${",!1),Y=ce(":-",!1),G=ce(":-}",!1),_=function(e){return{name:e}},H=ce("$",!1),J=/^[a-zA-Z0-9_]/,q=ge([["a","z"],["A","Z"],["0","9"],"_"],!1,!1),z=function(){return e.substring(ie,ne)},W=/^[@*?#a-zA-Z0-9_\-]/,V=ge(["@","*","?","#",["a","z"],["A","Z"],["0","9"],"_","-"],!1,!1),X=/^[(){}<>$|&; \t"']/,Z=ge(["(",")","{","}","<",">","$","|","&",";"," ","\t",'"',"'"],!1,!1),$=/^[<>&; \t"']/,ee=ge(["<",">","&",";"," ","\t",'"',"'"],!1,!1),te=/^[ \t]/,re=ge([" ","\t"],!1,!1),ne=0,ie=0,Ae=[{line:1,column:1}],oe=0,se=[],ae=0;if("startRule"in r){if(!(r.startRule in A))throw new Error("Can't start parsing from rule \""+r.startRule+'".');o=A[r.startRule]}function ce(e,t){return{type:"literal",text:e,ignoreCase:t}}function ge(e,t,r){return{type:"class",parts:e,inverted:t,ignoreCase:r}}function le(t){var r,n=Ae[t];if(n)return n;for(r=t-1;!Ae[r];)r--;for(n={line:(n=Ae[r]).line,column:n.column};roe&&(oe=ne,se=[]),se.push(e))}function fe(e,r,n){return new t(t.buildMessage(e,r),e,r,n)}function pe(){var e,t;return e=ne,(t=Ce())===i&&(t=null),t!==i&&(ie=e,t=t||[]),e=t}function Ce(){var e,t,r,n,A;if(e=ne,(t=Ie())!==i){for(r=[],n=Ue();n!==i;)r.push(n),n=Ue();r!==i&&(n=de())!==i?((A=function(){var e,t,r,n,A;e=ne,t=[],r=Ue();for(;r!==i;)t.push(r),r=Ue();if(t!==i)if((r=Ce())!==i){for(n=[],A=Ue();A!==i;)n.push(A),A=Ue();n!==i?(ie=e,e=t=r):(ne=e,e=i)}else ne=e,e=i;else ne=e,e=i;return e}())===i&&(A=null),A!==i?(ie=e,e=t=[t].concat(A||[])):(ne=e,e=i)):(ne=e,e=i)}else ne=e,e=i;if(e===i)if(e=ne,(t=Ie())!==i){for(r=[],n=Ue();n!==i;)r.push(n),n=Ue();r!==i?((n=de())===i&&(n=null),n!==i?(ie=e,e=t=function(e,t){return[e]}(t)):(ne=e,e=i)):(ne=e,e=i)}else ne=e,e=i;return e}function de(){var t;return 59===e.charCodeAt(ne)?(t=";",ne++):(t=i,0===ae&&he(s)),t}function Ie(){var t,r,n,A,o;return t=ne,(r=Ee())!==i?((n=function(){var t,r,n,A,o,s,g;t=ne,r=[],n=Ue();for(;n!==i;)r.push(n),n=Ue();if(r!==i)if((n=function(){var t;"&&"===e.substr(ne,2)?(t="&&",ne+=2):(t=i,0===ae&&he(a));t===i&&("||"===e.substr(ne,2)?(t="||",ne+=2):(t=i,0===ae&&he(c)));return t}())!==i){for(A=[],o=Ue();o!==i;)A.push(o),o=Ue();if(A!==i)if((o=Ie())!==i){for(s=[],g=Ue();g!==i;)s.push(g),g=Ue();s!==i?(ie=t,t=r={type:n,line:o}):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;else ne=t,t=i;return t}())===i&&(n=null),n!==i?(ie=t,A=r,t=r=(o=n)?{chain:A,then:o}:{chain:A}):(ne=t,t=i)):(ne=t,t=i),t}function Ee(){var t,r,n,A,o;return t=ne,(r=function(){var t,r,n,A,o,s,a,c,g,l,u;t=ne,r=[],n=Ue();for(;n!==i;)r.push(n),n=Ue();if(r!==i)if(40===e.charCodeAt(ne)?(n="(",ne++):(n=i,0===ae&&he(h)),n!==i){for(A=[],o=Ue();o!==i;)A.push(o),o=Ue();if(A!==i)if((o=Ce())!==i){for(s=[],a=Ue();a!==i;)s.push(a),a=Ue();if(s!==i)if(41===e.charCodeAt(ne)?(a=")",ne++):(a=i,0===ae&&he(f)),a!==i){for(c=[],g=Ue();g!==i;)c.push(g),g=Ue();if(c!==i){for(g=[],l=we();l!==i;)g.push(l),l=we();if(g!==i){for(l=[],u=Ue();u!==i;)l.push(u),u=Ue();l!==i?(ie=t,t=r={type:"subshell",subshell:o,args:g}):(ne=t,t=i)}else ne=t,t=i}else ne=t,t=i}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;else ne=t,t=i;if(t===i){for(t=ne,r=[],n=Ue();n!==i;)r.push(n),n=Ue();if(r!==i)if(123===e.charCodeAt(ne)?(n="{",ne++):(n=i,0===ae&&he(p)),n!==i){for(A=[],o=Ue();o!==i;)A.push(o),o=Ue();if(A!==i)if((o=Ce())!==i){for(s=[],a=Ue();a!==i;)s.push(a),a=Ue();if(s!==i)if(125===e.charCodeAt(ne)?(a="}",ne++):(a=i,0===ae&&he(C)),a!==i){for(c=[],g=Ue();g!==i;)c.push(g),g=Ue();if(c!==i){for(g=[],l=we();l!==i;)g.push(l),l=we();if(g!==i){for(l=[],u=Ue();u!==i;)l.push(u),u=Ue();l!==i?(ie=t,r=function(e,t){return{type:"group",group:e,args:t}}(o,g),t=r):(ne=t,t=i)}else ne=t,t=i}else ne=t,t=i}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;else ne=t,t=i;if(t===i){for(t=ne,r=[],n=Ue();n!==i;)r.push(n),n=Ue();if(r!==i){for(n=[],A=me();A!==i;)n.push(A),A=me();if(n!==i){for(A=[],o=Ue();o!==i;)A.push(o),o=Ue();if(A!==i){if(o=[],(s=Be())!==i)for(;s!==i;)o.push(s),s=Be();else o=i;if(o!==i){for(s=[],a=Ue();a!==i;)s.push(a),a=Ue();s!==i?(ie=t,r=function(e,t){return{type:"command",args:t,envs:e}}(n,o),t=r):(ne=t,t=i)}else ne=t,t=i}else ne=t,t=i}else ne=t,t=i}else ne=t,t=i;if(t===i){for(t=ne,r=[],n=Ue();n!==i;)r.push(n),n=Ue();if(r!==i){if(n=[],(A=me())!==i)for(;A!==i;)n.push(A),A=me();else n=i;if(n!==i){for(A=[],o=Ue();o!==i;)A.push(o),o=Ue();A!==i?(ie=t,t=r={type:"envs",envs:n}):(ne=t,t=i)}else ne=t,t=i}else ne=t,t=i}}}return t}())!==i?((n=function(){var t,r,n,A,o,s,a;t=ne,r=[],n=Ue();for(;n!==i;)r.push(n),n=Ue();if(r!==i)if((n=function(){var t;"|&"===e.substr(ne,2)?(t="|&",ne+=2):(t=i,0===ae&&he(g));t===i&&(124===e.charCodeAt(ne)?(t="|",ne++):(t=i,0===ae&&he(l)));return t}())!==i){for(A=[],o=Ue();o!==i;)A.push(o),o=Ue();if(A!==i)if((o=Ee())!==i){for(s=[],a=Ue();a!==i;)s.push(a),a=Ue();s!==i?(ie=t,t=r={type:n,chain:o}):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;else ne=t,t=i;return t}())===i&&(n=null),n!==i?(ie=t,A=r,t=r=(o=n)?{...A,then:o}:A):(ne=t,t=i)):(ne=t,t=i),t}function me(){var t,r,n,A,o,s;if(t=ne,(r=Ke())!==i)if(61===e.charCodeAt(ne)?(n="=",ne++):(n=i,0===ae&&he(u)),n!==i)if((A=Qe())!==i){for(o=[],s=Ue();s!==i;)o.push(s),s=Ue();o!==i?(ie=t,t=r={name:r,args:[A]}):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i;else ne=t,t=i;if(t===i)if(t=ne,(r=Ke())!==i)if(61===e.charCodeAt(ne)?(n="=",ne++):(n=i,0===ae&&he(u)),n!==i){for(A=[],o=Ue();o!==i;)A.push(o),o=Ue();A!==i?(ie=t,t=r=function(e){return{name:e,args:[]}}(r)):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i;return t}function Be(){var e,t,r;for(e=ne,t=[],r=Ue();r!==i;)t.push(r),r=Ue();if(t!==i&&(r=we())!==i?(ie=e,e=t=r):(ne=e,e=i),e===i){for(e=ne,t=[],r=Ue();r!==i;)t.push(r),r=Ue();t!==i&&(r=ye())!==i?(ie=e,e=t=r):(ne=e,e=i)}return e}function we(){var t,r,n,A;for(t=ne,r=[],n=Ue();n!==i;)r.push(n),n=Ue();return r!==i?(">>"===e.substr(ne,2)?(n=">>",ne+=2):(n=i,0===ae&&he(d)),n===i&&(62===e.charCodeAt(ne)?(n=">",ne++):(n=i,0===ae&&he(I)),n===i&&("<<<"===e.substr(ne,3)?(n="<<<",ne+=3):(n=i,0===ae&&he(E)),n===i&&(60===e.charCodeAt(ne)?(n="<",ne++):(n=i,0===ae&&he(m))))),n!==i&&(A=ye())!==i?(ie=t,t=r={type:"redirection",subtype:n,args:[A]}):(ne=t,t=i)):(ne=t,t=i),t}function ye(){var e,t,r;for(e=ne,t=[],r=Ue();r!==i;)t.push(r),r=Ue();return t!==i&&(r=Qe())!==i?(ie=e,e=t=r):(ne=e,e=i),e}function Qe(){var e,t,r,n;if(e=ne,t=[],(r=ve())!==i)for(;r!==i;)t.push(r),r=ve();else t=i;return t!==i&&(ie=e,n=t,t={type:"argument",segments:[].concat(...n)}),e=t}function ve(){var t,r;return t=ne,(r=function(){var t,r,n,A;t=ne,39===e.charCodeAt(ne)?(r="'",ne++):(r=i,0===ae&&he(B));r!==i&&(n=function(){var t,r,n,A,o;t=ne,r=[],n=ne,92===e.charCodeAt(ne)?(A="\\",ne++):(A=i,0===ae&&he(Q));A!==i?(e.length>ne?(o=e.charAt(ne),ne++):(o=i,0===ae&&he(v)),o!==i?(ie=n,n=A=o):(ne=n,n=i)):(ne=n,n=i);n===i&&(b.test(e.charAt(ne))?(n=e.charAt(ne),ne++):(n=i,0===ae&&he(D)));for(;n!==i;)r.push(n),n=ne,92===e.charCodeAt(ne)?(A="\\",ne++):(A=i,0===ae&&he(Q)),A!==i?(e.length>ne?(o=e.charAt(ne),ne++):(o=i,0===ae&&he(v)),o!==i?(ie=n,n=A=o):(ne=n,n=i)):(ne=n,n=i),n===i&&(b.test(e.charAt(ne))?(n=e.charAt(ne),ne++):(n=i,0===ae&&he(D)));r!==i&&(ie=t,r=S(r));return t=r}())!==i?(39===e.charCodeAt(ne)?(A="'",ne++):(A=i,0===ae&&he(B)),A!==i?(ie=t,r=function(e){return[{type:"text",text:e}]}(n),t=r):(ne=t,t=i)):(ne=t,t=i);return t}())!==i&&(ie=t,r=r),(t=r)===i&&(t=ne,(r=function(){var t,r,n,A;t=ne,34===e.charCodeAt(ne)?(r='"',ne++):(r=i,0===ae&&he(w));if(r!==i){for(n=[],A=be();A!==i;)n.push(A),A=be();n!==i?(34===e.charCodeAt(ne)?(A='"',ne++):(A=i,0===ae&&he(w)),A!==i?(ie=t,t=r=n):(ne=t,t=i)):(ne=t,t=i)}else ne=t,t=i;return t}())!==i&&(ie=t,r=r),(t=r)===i&&(t=ne,(r=function(){var e,t,r;if(e=ne,t=[],(r=De())!==i)for(;r!==i;)t.push(r),r=De();else t=i;t!==i&&(ie=e,t=t);return e=t}())!==i&&(ie=t,r=r),t=r)),t}function be(){var t,r,n;return t=ne,(r=Fe())!==i&&(ie=t,r={type:"arithmetic",arithmetic:r,quoted:!0}),(t=r)===i&&(t=ne,(r=Ne())!==i&&(ie=t,r={type:"shell",shell:r,quoted:!0}),(t=r)===i&&(t=ne,(r=Re())!==i&&(ie=t,n=r,r={type:"variable",...n,quoted:!0}),(t=r)===i&&(t=ne,(r=function(){var t,r,n,A,o;t=ne,r=[],n=ne,92===e.charCodeAt(ne)?(A="\\",ne++):(A=i,0===ae&&he(Q));A!==i?(e.length>ne?(o=e.charAt(ne),ne++):(o=i,0===ae&&he(v)),o!==i?(ie=n,n=A=o):(ne=n,n=i)):(ne=n,n=i);n===i&&(k.test(e.charAt(ne))?(n=e.charAt(ne),ne++):(n=i,0===ae&&he(M)));if(n!==i)for(;n!==i;)r.push(n),n=ne,92===e.charCodeAt(ne)?(A="\\",ne++):(A=i,0===ae&&he(Q)),A!==i?(e.length>ne?(o=e.charAt(ne),ne++):(o=i,0===ae&&he(v)),o!==i?(ie=n,n=A=o):(ne=n,n=i)):(ne=n,n=i),n===i&&(k.test(e.charAt(ne))?(n=e.charAt(ne),ne++):(n=i,0===ae&&he(M)));else r=i;r!==i&&(ie=t,r=S(r));return t=r}())!==i&&(ie=t,r=y(r)),t=r))),t}function De(){var t,n,A;return t=ne,(n=Fe())!==i&&(ie=t,n={type:"arithmetic",arithmetic:n,quoted:!1}),(t=n)===i&&(t=ne,(n=Ne())!==i&&(ie=t,n={type:"shell",shell:n,quoted:!1}),(t=n)===i&&(t=ne,(n=Re())!==i&&(ie=t,A=n,n={type:"variable",...A,quoted:!1}),(t=n)===i&&(t=ne,(n=function(){var t,n;t=ne,(n=function(){var t,r,n,A,o;t=ne,r=[],n=ne,A=ne,ae++,o=Pe(),ae--,o===i?A=void 0:(ne=A,A=i);A!==i?(e.length>ne?(o=e.charAt(ne),ne++):(o=i,0===ae&&he(v)),o!==i?(ie=n,n=A=o):(ne=n,n=i)):(ne=n,n=i);if(n!==i)for(;n!==i;)r.push(n),n=ne,A=ne,ae++,o=Pe(),ae--,o===i?A=void 0:(ne=A,A=i),A!==i?(e.length>ne?(o=e.charAt(ne),ne++):(o=i,0===ae&&he(v)),o!==i?(ie=n,n=A=o):(ne=n,n=i)):(ne=n,n=i);else r=i;r!==i&&(ie=t,r=S(r));return t=r}())!==i?(ie=ne,A=n,(r.isGlobPattern(A)?void 0:i)!==i?(ie=t,t=n=n):(ne=t,t=i)):(ne=t,t=i);var A;return t}())!==i&&(ie=t,n={type:"glob",pattern:n}),(t=n)===i&&(t=ne,(n=function(){var t,r,n,A,o;t=ne,r=[],n=ne,92===e.charCodeAt(ne)?(A="\\",ne++):(A=i,0===ae&&he(Q));A!==i?(e.length>ne?(o=e.charAt(ne),ne++):(o=i,0===ae&&he(v)),o!==i?(ie=n,n=A=o):(ne=n,n=i)):(ne=n,n=i);n===i&&(n=ne,A=ne,ae++,o=Le(),ae--,o===i?A=void 0:(ne=A,A=i),A!==i?(e.length>ne?(o=e.charAt(ne),ne++):(o=i,0===ae&&he(v)),o!==i?(ie=n,n=A=o):(ne=n,n=i)):(ne=n,n=i));if(n!==i)for(;n!==i;)r.push(n),n=ne,92===e.charCodeAt(ne)?(A="\\",ne++):(A=i,0===ae&&he(Q)),A!==i?(e.length>ne?(o=e.charAt(ne),ne++):(o=i,0===ae&&he(v)),o!==i?(ie=n,n=A=o):(ne=n,n=i)):(ne=n,n=i),n===i&&(n=ne,A=ne,ae++,o=Le(),ae--,o===i?A=void 0:(ne=A,A=i),A!==i?(e.length>ne?(o=e.charAt(ne),ne++):(o=i,0===ae&&he(v)),o!==i?(ie=n,n=A=o):(ne=n,n=i)):(ne=n,n=i));else r=i;r!==i&&(ie=t,r=S(r));return t=r}())!==i&&(ie=t,n=y(n)),t=n)))),t}function Se(){var t,r,n,A,o,s,a,c;if(t=ne,45===e.charCodeAt(ne)?(r="-",ne++):(r=i,0===ae&&he(F)),r===i&&(43===e.charCodeAt(ne)?(r="+",ne++):(r=i,0===ae&&he(N))),r===i&&(r=null),r!==i){if(n=[],R.test(e.charAt(ne))?(A=e.charAt(ne),ne++):(A=i,0===ae&&he(K)),A!==i)for(;A!==i;)n.push(A),R.test(e.charAt(ne))?(A=e.charAt(ne),ne++):(A=i,0===ae&&he(K));else n=i;if(n!==i)if(46===e.charCodeAt(ne)?(A=".",ne++):(A=i,0===ae&&he(x)),A!==i){if(o=[],R.test(e.charAt(ne))?(s=e.charAt(ne),ne++):(s=i,0===ae&&he(K)),s!==i)for(;s!==i;)o.push(s),R.test(e.charAt(ne))?(s=e.charAt(ne),ne++):(s=i,0===ae&&he(K));else o=i;o!==i?(ie=t,a=o,t=r={type:"number",value:("-"===r?-1:1)*parseFloat(n.join("")+"."+a.join(""))}):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;if(t===i){if(t=ne,45===e.charCodeAt(ne)?(r="-",ne++):(r=i,0===ae&&he(F)),r===i&&(43===e.charCodeAt(ne)?(r="+",ne++):(r=i,0===ae&&he(N))),r===i&&(r=null),r!==i){if(n=[],R.test(e.charAt(ne))?(A=e.charAt(ne),ne++):(A=i,0===ae&&he(K)),A!==i)for(;A!==i;)n.push(A),R.test(e.charAt(ne))?(A=e.charAt(ne),ne++):(A=i,0===ae&&he(K));else n=i;n!==i?(ie=t,t=r=function(e,t){return{type:"number",value:("-"===e?-1:1)*parseInt(t.join(""))}}(r,n)):(ne=t,t=i)}else ne=t,t=i;if(t===i&&(t=ne,(r=Re())!==i&&(ie=t,c=r,r={type:"variable",...c}),(t=r)===i&&(t=ne,(r=xe())!==i&&(ie=t,r={type:"variable",name:r}),(t=r)===i)))if(t=ne,40===e.charCodeAt(ne)?(r="(",ne++):(r=i,0===ae&&he(h)),r!==i){for(n=[],A=Ue();A!==i;)n.push(A),A=Ue();if(n!==i)if((A=Me())!==i){for(o=[],s=Ue();s!==i;)o.push(s),s=Ue();o!==i?(41===e.charCodeAt(ne)?(s=")",ne++):(s=i,0===ae&&he(f)),s!==i?(ie=t,t=r=A):(ne=t,t=i)):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i}return t}function ke(){var t,r,n,A,o,s;if(t=ne,(r=Se())!==i){for(n=[],A=Ue();A!==i;)n.push(A),A=Ue();if(n!==i)if(42===e.charCodeAt(ne)?(A="*",ne++):(A=i,0===ae&&he(L)),A!==i){for(o=[],s=Ue();s!==i;)o.push(s),s=Ue();o!==i&&(s=ke())!==i?(ie=t,t=r={type:"multiplication",left:r,right:s}):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;if(t===i){if(t=ne,(r=Se())!==i){for(n=[],A=Ue();A!==i;)n.push(A),A=Ue();if(n!==i)if(47===e.charCodeAt(ne)?(A="/",ne++):(A=i,0===ae&&he(P)),A!==i){for(o=[],s=Ue();s!==i;)o.push(s),s=Ue();o!==i&&(s=ke())!==i?(ie=t,t=r=function(e,t){return{type:"division",left:e,right:t}}(r,s)):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;t===i&&(t=Se())}return t}function Me(){var t,r,n,A,o,s;if(t=ne,(r=ke())!==i){for(n=[],A=Ue();A!==i;)n.push(A),A=Ue();if(n!==i)if(43===e.charCodeAt(ne)?(A="+",ne++):(A=i,0===ae&&he(N)),A!==i){for(o=[],s=Ue();s!==i;)o.push(s),s=Ue();o!==i&&(s=Me())!==i?(ie=t,t=r={type:"addition",left:r,right:s}):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;if(t===i){if(t=ne,(r=ke())!==i){for(n=[],A=Ue();A!==i;)n.push(A),A=Ue();if(n!==i)if(45===e.charCodeAt(ne)?(A="-",ne++):(A=i,0===ae&&he(F)),A!==i){for(o=[],s=Ue();s!==i;)o.push(s),s=Ue();o!==i&&(s=Me())!==i?(ie=t,t=r=function(e,t){return{type:"subtraction",left:e,right:t}}(r,s)):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;t===i&&(t=ke())}return t}function Fe(){var t,r,n,A,o,s;if(t=ne,"$(("===e.substr(ne,3)?(r="$((",ne+=3):(r=i,0===ae&&he(U)),r!==i){for(n=[],A=Ue();A!==i;)n.push(A),A=Ue();if(n!==i)if((A=Me())!==i){for(o=[],s=Ue();s!==i;)o.push(s),s=Ue();o!==i?("))"===e.substr(ne,2)?(s="))",ne+=2):(s=i,0===ae&&he(T)),s!==i?(ie=t,t=r=A):(ne=t,t=i)):(ne=t,t=i)}else ne=t,t=i;else ne=t,t=i}else ne=t,t=i;return t}function Ne(){var t,r,n,A;return t=ne,"$("===e.substr(ne,2)?(r="$(",ne+=2):(r=i,0===ae&&he(O)),r!==i&&(n=Ce())!==i?(41===e.charCodeAt(ne)?(A=")",ne++):(A=i,0===ae&&he(f)),A!==i?(ie=t,t=r=n):(ne=t,t=i)):(ne=t,t=i),t}function Re(){var t,r,n,A,o,s;return t=ne,"${"===e.substr(ne,2)?(r="${",ne+=2):(r=i,0===ae&&he(j)),r!==i&&(n=xe())!==i?(":-"===e.substr(ne,2)?(A=":-",ne+=2):(A=i,0===ae&&he(Y)),A!==i&&(o=function(){var e,t,r,n,A;for(e=ne,t=[],r=Ue();r!==i;)t.push(r),r=Ue();if(t!==i){if(r=[],(n=ye())!==i)for(;n!==i;)r.push(n),n=ye();else r=i;if(r!==i){for(n=[],A=Ue();A!==i;)n.push(A),A=Ue();n!==i?(ie=e,e=t=r):(ne=e,e=i)}else ne=e,e=i}else ne=e,e=i;return e}())!==i?(125===e.charCodeAt(ne)?(s="}",ne++):(s=i,0===ae&&he(C)),s!==i?(ie=t,t=r={name:n,defaultValue:o}):(ne=t,t=i)):(ne=t,t=i)):(ne=t,t=i),t===i&&(t=ne,"${"===e.substr(ne,2)?(r="${",ne+=2):(r=i,0===ae&&he(j)),r!==i&&(n=xe())!==i?(":-}"===e.substr(ne,3)?(A=":-}",ne+=3):(A=i,0===ae&&he(G)),A!==i?(ie=t,t=r=function(e){return{name:e,defaultValue:[]}}(n)):(ne=t,t=i)):(ne=t,t=i),t===i&&(t=ne,"${"===e.substr(ne,2)?(r="${",ne+=2):(r=i,0===ae&&he(j)),r!==i&&(n=xe())!==i?(125===e.charCodeAt(ne)?(A="}",ne++):(A=i,0===ae&&he(C)),A!==i?(ie=t,t=r=_(n)):(ne=t,t=i)):(ne=t,t=i),t===i&&(t=ne,36===e.charCodeAt(ne)?(r="$",ne++):(r=i,0===ae&&he(H)),r!==i&&(n=xe())!==i?(ie=t,t=r=_(n)):(ne=t,t=i)))),t}function Ke(){var t,r,n;if(t=ne,r=[],J.test(e.charAt(ne))?(n=e.charAt(ne),ne++):(n=i,0===ae&&he(q)),n!==i)for(;n!==i;)r.push(n),J.test(e.charAt(ne))?(n=e.charAt(ne),ne++):(n=i,0===ae&&he(q));else r=i;return r!==i&&(ie=t,r=z()),t=r}function xe(){var t,r,n;if(t=ne,r=[],W.test(e.charAt(ne))?(n=e.charAt(ne),ne++):(n=i,0===ae&&he(V)),n!==i)for(;n!==i;)r.push(n),W.test(e.charAt(ne))?(n=e.charAt(ne),ne++):(n=i,0===ae&&he(V));else r=i;return r!==i&&(ie=t,r=z()),t=r}function Le(){var t;return X.test(e.charAt(ne))?(t=e.charAt(ne),ne++):(t=i,0===ae&&he(Z)),t}function Pe(){var t;return $.test(e.charAt(ne))?(t=e.charAt(ne),ne++):(t=i,0===ae&&he(ee)),t}function Ue(){var t,r;if(t=[],te.test(e.charAt(ne))?(r=e.charAt(ne),ne++):(r=i,0===ae&&he(re)),r!==i)for(;r!==i;)t.push(r),te.test(e.charAt(ne))?(r=e.charAt(ne),ne++):(r=i,0===ae&&he(re));else t=i;return t}if((n=o())!==i&&ne===e.length)return n;throw n!==i&&ne{"use strict";function t(e,r,n,i){this.message=e,this.expected=r,this.found=n,this.location=i,this.name="SyntaxError","function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,t)}!function(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}(t,Error),t.buildMessage=function(e,t){var r={literal:function(e){return`"${i(e.text)}"`},class:function(e){var t,r="";for(t=0;t0){for(t=1,n=1;t'"%@`\-]/,I=Ae(["\r","\n","\t"," ","?",":",",","]","[","{","}","#","&","*","!","|",">","'",'"',"%","@","`","-"],!0,!1),E=/^[^\r\n\t ,\][{}:#"']/,m=Ae(["\r","\n","\t"," ",",","]","[","{","}",":","#",'"',"'"],!0,!1),B=function(){return ne().replace(/^ *| *$/g,"")},w=ie("--",!1),y=/^[a-zA-Z\/0-9]/,Q=Ae([["a","z"],["A","Z"],"/",["0","9"]],!1,!1),v=/^[^\r\n\t :,]/,b=Ae(["\r","\n","\t"," ",":",","],!0,!1),D=ie("null",!1),S=ie("true",!1),k=ie("false",!1),M=oe("string"),F=ie('"',!1),N=/^[^"\\\0-\x1F\x7F]/,R=Ae(['"',"\\",["\0",""],""],!0,!1),K=ie('\\"',!1),x=ie("\\\\",!1),L=ie("\\/",!1),P=ie("\\b",!1),U=ie("\\f",!1),T=ie("\\n",!1),O=ie("\\r",!1),j=ie("\\t",!1),Y=ie("\\u",!1),G=/^[0-9a-fA-F]/,_=Ae([["0","9"],["a","f"],["A","F"]],!1,!1),H=oe("blank space"),J=/^[ \t]/,q=Ae([" ","\t"],!1,!1),z=(oe("white space"),Ae([" ","\t","\n","\r"],!1,!1),ie("\r\n",!1)),W=ie("\n",!1),V=ie("\r",!1),X=0,Z=0,$=[{line:1,column:1}],ee=0,te=[],re=0;if("startRule"in r){if(!(r.startRule in A))throw new Error(`Can't start parsing from rule "${r.startRule}".`);o=A[r.startRule]}function ne(){return e.substring(Z,X)}function ie(e,t){return{type:"literal",text:e,ignoreCase:t}}function Ae(e,t,r){return{type:"class",parts:e,inverted:t,ignoreCase:r}}function oe(e){return{type:"other",description:e}}function se(t){var r,n=$[t];if(n)return n;for(r=t-1;!$[r];)r--;for(n={line:(n=$[r]).line,column:n.column};ree&&(ee=X,te=[]),te.push(e))}function ge(e,r,n){return new t(t.buildMessage(e,r),e,r,n)}function le(){return he()}function ue(){var t,r,n;return t=X,Ce()!==i?(45===e.charCodeAt(X)?(r="-",X++):(r=i,0===re&&ce(s)),r!==i&&be()!==i&&(n=pe())!==i?(Z=t,t=n):(X=t,t=i)):(X=t,t=i),t}function he(){var e,t,r,n;for(e=X,t=[],r=fe();r!==i;)t.push(r),r=fe();return t!==i&&(Z=e,n=t,t=Object.assign({},...n)),e=t}function fe(){var t,r,n,A,o,s,f,p,C,d,I,E;if(t=X,(r=be())===i&&(r=null),r!==i){if(n=X,35===e.charCodeAt(X)?(A="#",X++):(A=i,0===re&&ce(a)),A!==i){if(o=[],s=X,f=X,re++,p=Se(),re--,p===i?f=void 0:(X=f,f=i),f!==i?(e.length>X?(p=e.charAt(X),X++):(p=i,0===re&&ce(c)),p!==i?s=f=[f,p]:(X=s,s=i)):(X=s,s=i),s!==i)for(;s!==i;)o.push(s),s=X,f=X,re++,p=Se(),re--,p===i?f=void 0:(X=f,f=i),f!==i?(e.length>X?(p=e.charAt(X),X++):(p=i,0===re&&ce(c)),p!==i?s=f=[f,p]:(X=s,s=i)):(X=s,s=i);else o=i;o!==i?n=A=[A,o]:(X=n,n=i)}else X=n,n=i;if(n===i&&(n=null),n!==i){if(A=[],(o=De())!==i)for(;o!==i;)A.push(o),o=De();else A=i;A!==i?(Z=t,t=r={}):(X=t,t=i)}else X=t,t=i}else X=t,t=i;if(t===i&&(t=X,(r=Ce())!==i&&(n=function(){var e;(e=ye())===i&&(e=me());return e}())!==i?((A=be())===i&&(A=null),A!==i?(58===e.charCodeAt(X)?(o=":",X++):(o=i,0===re&&ce(g)),o!==i?((s=be())===i&&(s=null),s!==i&&(f=pe())!==i?(Z=t,t=r=l(n,f)):(X=t,t=i)):(X=t,t=i)):(X=t,t=i)):(X=t,t=i),t===i&&(t=X,(r=Ce())!==i&&(n=Ee())!==i?((A=be())===i&&(A=null),A!==i?(58===e.charCodeAt(X)?(o=":",X++):(o=i,0===re&&ce(g)),o!==i?((s=be())===i&&(s=null),s!==i&&(f=pe())!==i?(Z=t,t=r=l(n,f)):(X=t,t=i)):(X=t,t=i)):(X=t,t=i)):(X=t,t=i),t===i))){if(t=X,(r=Ce())!==i)if((n=Ee())!==i)if((A=be())!==i)if((o=function(){var e;(e=we())===i&&(e=ye())===i&&(e=Be());return e}())!==i){if(s=[],(f=De())!==i)for(;f!==i;)s.push(f),f=De();else s=i;s!==i?(Z=t,t=r=l(n,o)):(X=t,t=i)}else X=t,t=i;else X=t,t=i;else X=t,t=i;else X=t,t=i;if(t===i)if(t=X,(r=Ce())!==i)if((n=Ee())!==i){if(A=[],o=X,(s=be())===i&&(s=null),s!==i?(44===e.charCodeAt(X)?(f=",",X++):(f=i,0===re&&ce(u)),f!==i?((p=be())===i&&(p=null),p!==i&&(C=Ee())!==i?(Z=o,o=s=h(0,C)):(X=o,o=i)):(X=o,o=i)):(X=o,o=i),o!==i)for(;o!==i;)A.push(o),o=X,(s=be())===i&&(s=null),s!==i?(44===e.charCodeAt(X)?(f=",",X++):(f=i,0===re&&ce(u)),f!==i?((p=be())===i&&(p=null),p!==i&&(C=Ee())!==i?(Z=o,o=s=h(0,C)):(X=o,o=i)):(X=o,o=i)):(X=o,o=i);else A=i;A!==i?((o=be())===i&&(o=null),o!==i?(58===e.charCodeAt(X)?(s=":",X++):(s=i,0===re&&ce(g)),s!==i?((f=be())===i&&(f=null),f!==i&&(p=pe())!==i?(Z=t,d=n,I=A,E=p,t=r=Object.assign({},...[d].concat(I).map(e=>({[e]:E})))):(X=t,t=i)):(X=t,t=i)):(X=t,t=i)):(X=t,t=i)}else X=t,t=i;else X=t,t=i}return t}function pe(){var t,r,n,A,o,a,c;if(t=X,r=X,re++,n=X,(A=Se())!==i&&(o=function(){var t,r,n;t=X,r=[],32===e.charCodeAt(X)?(n=" ",X++):(n=i,0===re&&ce(p));for(;n!==i;)r.push(n),32===e.charCodeAt(X)?(n=" ",X++):(n=i,0===re&&ce(p));r!==i?(Z=X,(n=(n=r.length===(Me+1)*ke)?void 0:i)!==i?t=r=[r,n]:(X=t,t=i)):(X=t,t=i);return t}())!==i?(45===e.charCodeAt(X)?(a="-",X++):(a=i,0===re&&ce(s)),a!==i&&(c=be())!==i?n=A=[A,o,a,c]:(X=n,n=i)):(X=n,n=i),re--,n!==i?(X=r,r=void 0):r=i,r!==i&&(n=De())!==i&&(A=de())!==i&&(o=function(){var e,t,r,n;for(e=X,t=[],r=ue();r!==i;)t.push(r),r=ue();return t!==i&&(Z=e,n=t,t=[].concat(...n)),e=t}())!==i&&(a=Ie())!==i?(Z=t,t=r=o):(X=t,t=i),t===i&&(t=X,(r=Se())!==i&&(n=de())!==i&&(A=he())!==i&&(o=Ie())!==i?(Z=t,t=r=A):(X=t,t=i),t===i))if(t=X,(r=function(){var t;(t=we())===i&&(t=function(){var t,r;t=X,"true"===e.substr(X,4)?(r="true",X+=4):(r=i,0===re&&ce(S));r!==i&&(Z=t,r=!0);(t=r)===i&&(t=X,"false"===e.substr(X,5)?(r="false",X+=5):(r=i,0===re&&ce(k)),r!==i&&(Z=t,r=!1),t=r);return t}())===i&&(t=ye())===i&&(t=me());return t}())!==i){if(n=[],(A=De())!==i)for(;A!==i;)n.push(A),A=De();else n=i;n!==i?(Z=t,t=r=r):(X=t,t=i)}else X=t,t=i;return t}function Ce(){var t,r,n;for(re++,t=X,r=[],32===e.charCodeAt(X)?(n=" ",X++):(n=i,0===re&&ce(p));n!==i;)r.push(n),32===e.charCodeAt(X)?(n=" ",X++):(n=i,0===re&&ce(p));return r!==i?(Z=X,(n=(n=r.length===Me*ke)?void 0:i)!==i?t=r=[r,n]:(X=t,t=i)):(X=t,t=i),re--,t===i&&(r=i,0===re&&ce(f)),t}function de(){return Z=X,Me++,!0?void 0:i}function Ie(){return Z=X,Me--,!0?void 0:i}function Ee(){var e,t,r;if((e=ye())===i){if(e=X,t=[],(r=Be())!==i)for(;r!==i;)t.push(r),r=Be();else t=i;t!==i&&(Z=e,t=ne()),e=t}return e}function me(){var t,r,n,A,o,s;if(re++,t=X,d.test(e.charAt(X))?(r=e.charAt(X),X++):(r=i,0===re&&ce(I)),r!==i){for(n=[],A=X,(o=be())===i&&(o=null),o!==i?(E.test(e.charAt(X))?(s=e.charAt(X),X++):(s=i,0===re&&ce(m)),s!==i?A=o=[o,s]:(X=A,A=i)):(X=A,A=i);A!==i;)n.push(A),A=X,(o=be())===i&&(o=null),o!==i?(E.test(e.charAt(X))?(s=e.charAt(X),X++):(s=i,0===re&&ce(m)),s!==i?A=o=[o,s]:(X=A,A=i)):(X=A,A=i);n!==i?(Z=t,t=r=B()):(X=t,t=i)}else X=t,t=i;return re--,t===i&&(r=i,0===re&&ce(C)),t}function Be(){var t,r,n,A,o;if(t=X,"--"===e.substr(X,2)?(r="--",X+=2):(r=i,0===re&&ce(w)),r===i&&(r=null),r!==i)if(y.test(e.charAt(X))?(n=e.charAt(X),X++):(n=i,0===re&&ce(Q)),n!==i){for(A=[],v.test(e.charAt(X))?(o=e.charAt(X),X++):(o=i,0===re&&ce(b));o!==i;)A.push(o),v.test(e.charAt(X))?(o=e.charAt(X),X++):(o=i,0===re&&ce(b));A!==i?(Z=t,t=r=B()):(X=t,t=i)}else X=t,t=i;else X=t,t=i;return t}function we(){var t,r;return t=X,"null"===e.substr(X,4)?(r="null",X+=4):(r=i,0===re&&ce(D)),r!==i&&(Z=t,r=null),t=r}function ye(){var t,r,n,A;return re++,t=X,34===e.charCodeAt(X)?(r='"',X++):(r=i,0===re&&ce(F)),r!==i?(34===e.charCodeAt(X)?(n='"',X++):(n=i,0===re&&ce(F)),n!==i?(Z=t,t=r=""):(X=t,t=i)):(X=t,t=i),t===i&&(t=X,34===e.charCodeAt(X)?(r='"',X++):(r=i,0===re&&ce(F)),r!==i&&(n=function(){var e,t,r;if(e=X,t=[],(r=Qe())!==i)for(;r!==i;)t.push(r),r=Qe();else t=i;t!==i&&(Z=e,t=t.join(""));return e=t}())!==i?(34===e.charCodeAt(X)?(A='"',X++):(A=i,0===re&&ce(F)),A!==i?(Z=t,t=r=n):(X=t,t=i)):(X=t,t=i)),re--,t===i&&(r=i,0===re&&ce(M)),t}function Qe(){var t,r,n,A,o,s,a,c,g,l;return N.test(e.charAt(X))?(t=e.charAt(X),X++):(t=i,0===re&&ce(R)),t===i&&(t=X,'\\"'===e.substr(X,2)?(r='\\"',X+=2):(r=i,0===re&&ce(K)),r!==i&&(Z=t,r='"'),(t=r)===i&&(t=X,"\\\\"===e.substr(X,2)?(r="\\\\",X+=2):(r=i,0===re&&ce(x)),r!==i&&(Z=t,r="\\"),(t=r)===i&&(t=X,"\\/"===e.substr(X,2)?(r="\\/",X+=2):(r=i,0===re&&ce(L)),r!==i&&(Z=t,r="/"),(t=r)===i&&(t=X,"\\b"===e.substr(X,2)?(r="\\b",X+=2):(r=i,0===re&&ce(P)),r!==i&&(Z=t,r="\b"),(t=r)===i&&(t=X,"\\f"===e.substr(X,2)?(r="\\f",X+=2):(r=i,0===re&&ce(U)),r!==i&&(Z=t,r="\f"),(t=r)===i&&(t=X,"\\n"===e.substr(X,2)?(r="\\n",X+=2):(r=i,0===re&&ce(T)),r!==i&&(Z=t,r="\n"),(t=r)===i&&(t=X,"\\r"===e.substr(X,2)?(r="\\r",X+=2):(r=i,0===re&&ce(O)),r!==i&&(Z=t,r="\r"),(t=r)===i&&(t=X,"\\t"===e.substr(X,2)?(r="\\t",X+=2):(r=i,0===re&&ce(j)),r!==i&&(Z=t,r="\t"),(t=r)===i&&(t=X,"\\u"===e.substr(X,2)?(r="\\u",X+=2):(r=i,0===re&&ce(Y)),r!==i&&(n=ve())!==i&&(A=ve())!==i&&(o=ve())!==i&&(s=ve())!==i?(Z=t,a=n,c=A,g=o,l=s,t=r=String.fromCharCode(parseInt(`0x${a}${c}${g}${l}`))):(X=t,t=i)))))))))),t}function ve(){var t;return G.test(e.charAt(X))?(t=e.charAt(X),X++):(t=i,0===re&&ce(_)),t}function be(){var t,r;if(re++,t=[],J.test(e.charAt(X))?(r=e.charAt(X),X++):(r=i,0===re&&ce(q)),r!==i)for(;r!==i;)t.push(r),J.test(e.charAt(X))?(r=e.charAt(X),X++):(r=i,0===re&&ce(q));else t=i;return re--,t===i&&(r=i,0===re&&ce(H)),t}function De(){var e,t,r,n,A,o;if(e=X,(t=Se())!==i){for(r=[],n=X,(A=be())===i&&(A=null),A!==i&&(o=Se())!==i?n=A=[A,o]:(X=n,n=i);n!==i;)r.push(n),n=X,(A=be())===i&&(A=null),A!==i&&(o=Se())!==i?n=A=[A,o]:(X=n,n=i);r!==i?e=t=[t,r]:(X=e,e=i)}else X=e,e=i;return e}function Se(){var t;return"\r\n"===e.substr(X,2)?(t="\r\n",X+=2):(t=i,0===re&&ce(z)),t===i&&(10===e.charCodeAt(X)?(t="\n",X++):(t=i,0===re&&ce(W)),t===i&&(13===e.charCodeAt(X)?(t="\r",X++):(t=i,0===re&&ce(V)))),t}const ke=2;let Me=0;if((n=o())!==i&&X===e.length)return n;throw n!==i&&X{let n;e.exports=()=>(void 0===n&&(n=r(78761).brotliDecompressSync(Buffer.from("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","base64")).toString()),n)},42357:e=>{"use strict";e.exports=require("assert")},64293:e=>{"use strict";e.exports=require("buffer")},63129:e=>{"use strict";e.exports=require("child_process")},27619:e=>{"use strict";e.exports=require("constants")},76417:e=>{"use strict";e.exports=require("crypto")},40881:e=>{"use strict";e.exports=require("dns")},28614:e=>{"use strict";e.exports=require("events")},35747:e=>{"use strict";e.exports=require("fs")},98605:e=>{"use strict";e.exports=require("http")},97565:e=>{"use strict";e.exports=require("http2")},57211:e=>{"use strict";e.exports=require("https")},32282:e=>{"use strict";e.exports=require("module")},11631:e=>{"use strict";e.exports=require("net")},12087:e=>{"use strict";e.exports=require("os")},85622:e=>{"use strict";e.exports=require("path")},71191:e=>{"use strict";e.exports=require("querystring")},51058:e=>{"use strict";e.exports=require("readline")},92413:e=>{"use strict";e.exports=require("stream")},24304:e=>{"use strict";e.exports=require("string_decoder")},4016:e=>{"use strict";e.exports=require("tls")},33867:e=>{"use strict";e.exports=require("tty")},78835:e=>{"use strict";e.exports=require("url")},31669:e=>{"use strict";e.exports=require("util")},68987:e=>{"use strict";e.exports=require("v8")},92184:e=>{"use strict";e.exports=require("vm")},78761:e=>{"use strict";e.exports=require("zlib")}},__webpack_module_cache__={};function __webpack_require__(e){if(__webpack_module_cache__[e])return __webpack_module_cache__[e].exports;var t=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e].call(t.exports,t,t.exports,__webpack_require__),t.loaded=!0,t.exports}return __webpack_require__.c=__webpack_module_cache__,__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t},__webpack_require__.t=function(e,t){if(1&t&&(e=this(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);__webpack_require__.r(r);var n={};if(2&t&&"object"==typeof e&&e)for(const t in e)n[t]=()=>e[t];return n.default=()=>e,__webpack_require__.d(r,n),r},__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},__webpack_require__.hmd=e=>((e=Object.create(e)).children||(e.children=[]),Object.defineProperty(e,"exports",{enumerable:!0,set:()=>{throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+e.id)}}),e),__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),__webpack_require__.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},__webpack_require__.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),__webpack_require__(28638)})(); \ No newline at end of file diff --git a/.yarnrc.yml b/.yarnrc.yml deleted file mode 100644 index b758837b..00000000 --- a/.yarnrc.yml +++ /dev/null @@ -1 +0,0 @@ -yarnPath: ".yarn/releases/yarn-berry.cjs" diff --git a/README.md b/README.md index 9c7af796..53251ad6 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ ## Developers +TODO: This entire section is out of date since porting PW to Kotlin. + Tests status diff --git a/assets_generation/index.ts b/assets_generation/index.ts deleted file mode 100644 index 32fecd4d..00000000 --- a/assets_generation/index.ts +++ /dev/null @@ -1,14 +0,0 @@ -/** - * Used by static asset generation scripts. - */ -export const RESOURCE_DIR = "./assets_generation/resources"; - -/** - * Static assets directory used by runtime code. - */ -export const ASSETS_DIR = "./assets"; - -/** - * Source directory of runtime code. - */ -export const SRC_DIR = "./src"; diff --git a/assets_generation/quest_stats.ts b/assets_generation/quest_stats.ts deleted file mode 100644 index 3a362c95..00000000 --- a/assets_generation/quest_stats.ts +++ /dev/null @@ -1,388 +0,0 @@ -import { walk_quests } from "./walk_quests"; -import { RESOURCE_DIR } from "./index"; -import { NpcType } from "../src/core/data_formats/parsing/quest/npc_types"; -import { QuestNpc } from "../src/core/data_formats/parsing/quest/QuestNpc"; -import { EntityProp, EntityPropType } from "../src/core/data_formats/parsing/quest/properties"; -import { - entity_data, - EntityType, - get_entity_prop_value, - get_entity_type, - is_npc_type, - Quest, - QuestEntity, -} from "../src/core/data_formats/parsing/quest/Quest"; -import { ObjectType } from "../src/core/data_formats/parsing/quest/object_types"; -import { QuestObject } from "../src/core/data_formats/parsing/quest/QuestObject"; - -const prop_cache = new Map(); - -print_quest_entity_stats({ npcs: true, objects: true, print: "stats" }); - -function print_quest_entity_stats(config: { - npcs?: boolean; - objects?: boolean; - print?: "stats" | "code"; -}): void { - const npcs_by_type: Map< - NpcType, - { entity: QuestNpc; quest: string; count: number }[] - > = new Map(); - const objects_by_type: Map< - ObjectType, - { entity: QuestObject; quest: string; count: number }[] - > = new Map(); - - walk_quests( - { - path: `${RESOURCE_DIR}/tethealla_v0.143_quests`, - exclude: ["/battle", "/chl/ep1", "/chl/ep4", "/shop"], - }, - ({ quest }) => { - if (config.npcs) { - process_entities(quest, quest.npcs, npcs_by_type); - } - - if (config.objects) { - process_entities(quest, quest.objects, objects_by_type); - } - }, - ); - - if (config.npcs) { - if (config.print === "code") { - print_entity_code(npcs_by_type); - } else { - print_entity_property_stats(npcs_by_type); - } - } - - if (config.objects) { - if (config.print === "code") { - print_entity_code(objects_by_type); - } else { - print_entity_property_stats(objects_by_type); - } - } -} - -function print_entity_property_stats( - entities_by_type: Map, -): void { - const sorted = [...entities_by_type.entries()].sort(([a_type], [b_type]) => a_type - b_type); - - for (const [type, entities] of sorted) { - const props = get_properties(type); - - /* eslint-disable no-console */ - console.log(ObjectType[type] ?? NpcType[type]); - console.log(" cnt " + props.map(col_print_name).join(" ")); - - const sorted = entities.sort((a, b) => b.count - a.count).slice(0, 5); - - for (const { entity, quest, count } of sorted) { - console.log( - ` ${count.toString().padStart(3, " ")} ` + - props.map(p => col_print_value(entity, p)).join(" ") + - ` ${quest}`, - ); - } - /* eslint-enable no-console */ - } -} - -/** - * Used to populate the switch in set_npc_default_data or set_object_default_data. - * Prints code of the following form (view is assumed to be a DataView). - * - * ```ts - * case EntityType.$ENTITY_TYPE: - * view.set$PROP_TYPE($OFFSET, $VALUE, true); // $PROP_NAME - * break; - * ``` - */ -function print_entity_code( - entities_by_type: Map, -): void { - for (const [type, entities] of [...entities_by_type.entries()].sort( - ([a_type], [b_type]) => a_type - b_type, - )) { - const is_npc = is_npc_type(type); - const { entity } = entities.sort((a, b) => b.count - a.count)[0]; - - const props = get_properties(type) - .map(prop => { - const value = - prop.type === EntityPropType.Angle - ? entity.view.getInt32(prop.offset, true) - : get_entity_prop_value(entity, prop); - return [prop, value] as const; - }) - .filter(([prop, value]) => { - if (!is_npc && prop.offset >= 40 && prop.offset < 52) { - return value !== 1; - } else { - return value !== 0; - } - }); - - if (props.length === 0) continue; - - /* eslint-disable no-console */ - if (is_npc) { - console.log(`case NpcType.${NpcType[type]}:`); - } else { - console.log(`case ObjectType.${ObjectType[type]}:`); - } - - for (const [prop, value] of props) { - let prop_type: string; - - switch (prop.type) { - case EntityPropType.U8: - prop_type = "Uint8"; - break; - case EntityPropType.U16: - prop_type = "Uint16"; - break; - case EntityPropType.U32: - prop_type = "Uint32"; - break; - case EntityPropType.I8: - prop_type = "Int8"; - break; - case EntityPropType.I16: - prop_type = "Int16"; - break; - case EntityPropType.I32: - prop_type = "Int32"; - break; - case EntityPropType.F32: - prop_type = "Float32"; - break; - case EntityPropType.Angle: - prop_type = "Int32"; - break; - default: - throw new Error(`EntityPropType.${EntityPropType[prop.type]} not supported.`); - } - - const offset = prop.offset; - const comment = prop.name === "Unknown" ? "" : ` // ${prop.name}`; - - console.log(` view.set${prop_type}(${offset}, ${value}, true);${comment}`); - } - - console.log(" break;"); - /* eslint-enable no-console */ - } -} - -function process_entities( - quest: Quest, - entities: readonly QuestEntity[], - entities_by_type: Map, -): void { - for (const entity of entities) { - const type = get_entity_type(entity); - const existing_entities = entities_by_type.get(type); - - if (existing_entities == undefined) { - entities_by_type.set(type, [{ entity, quest: quest.name, count: 1 }]); - } else { - const found = existing_entities.find(({ entity: entity_2 }) => - entities_equal(entity, entity_2, type), - ); - - if (found) { - found.count++; - } else { - existing_entities.push({ entity, quest: quest.name, count: 1 }); - } - } - } -} - -/** - * @returns the entity's properties enriched with many default properties. - */ -function get_properties(type: EntityType): EntityProp[] { - let props = prop_cache.get(type); - - if (props) { - return props; - } - - if (is_npc_type(type)) { - props = [ - { - name: "Unknown", - offset: 2, - type: EntityPropType.I16, - }, - { - name: "Unknown", - offset: 4, - type: EntityPropType.I16, - }, - { - name: "Clone count", - offset: 6, - type: EntityPropType.I16, - }, - { - name: "Unknown", - offset: 8, - type: EntityPropType.I16, - }, - { - name: "Unknown", - offset: 10, - type: EntityPropType.I16, - }, - { - name: "Scale x", - offset: 44, - type: EntityPropType.F32, - }, - { - name: "Scale y", - offset: 48, - type: EntityPropType.F32, - }, - { - name: "Scale z", - offset: 52, - type: EntityPropType.F32, - }, - { - name: "Unknown", - offset: 68, - type: EntityPropType.I16, - }, - { - name: "Unknown", - offset: 70, - type: EntityPropType.I16, - }, - ]; - } else { - props = [ - { - name: "Unknown", - offset: 2, - type: EntityPropType.I16, - }, - { - name: "Unknown", - offset: 4, - type: EntityPropType.I16, - }, - { - name: "Unknown", - offset: 6, - type: EntityPropType.I16, - }, - { - name: "Unknown", - offset: 14, - type: EntityPropType.I16, - }, - { - name: "Scale x", - offset: 40, - type: EntityPropType.F32, - }, - { - name: "Scale y", - offset: 44, - type: EntityPropType.F32, - }, - { - name: "Scale z", - offset: 48, - type: EntityPropType.F32, - }, - { - name: "Unknown", - offset: 56, - type: EntityPropType.I32, - }, - { - name: "Unknown", - offset: 60, - type: EntityPropType.I32, - }, - { - name: "Unknown", - offset: 64, - type: EntityPropType.I32, - }, - ]; - } - - outer: for (const entity_prop of entity_data(type).properties) { - for (let i = 0; i < props.length; i++) { - const prop = props[i]; - - if (entity_prop.offset === prop.offset) { - props.splice(i, 1, entity_prop); - continue outer; - } else if (entity_prop.offset < prop.offset) { - props.splice(i, 0, entity_prop); - continue outer; - } - } - - props.push(entity_prop); - } - - return props; -} - -function col_print_name(prop: EntityProp): string { - const width = col_width(prop); - return prop.name.slice(0, width).padStart(width, " "); -} - -function col_print_value(entity: QuestEntity, prop: EntityProp): string { - const value = get_entity_prop_value(entity, prop); - const str = - prop.type === EntityPropType.F32 || prop.type === EntityPropType.Angle - ? value.toFixed(3) - : value.toString(); - return str.padStart(col_width(prop), " "); -} - -function col_width(prop: EntityProp): number { - switch (prop.type) { - case EntityPropType.U8: - return 3; - case EntityPropType.U16: - return 5; - case EntityPropType.U32: - return 10; - case EntityPropType.I8: - return 4; - case EntityPropType.I16: - return 6; - case EntityPropType.I32: - return 11; - case EntityPropType.F32: - return 10; - case EntityPropType.Angle: - return 4; - default: - throw new Error(`EntityPropType.${EntityPropType[prop.type]} not supported.`); - } -} - -function entities_equal(a: QuestEntity, b: QuestEntity, type: EntityType): boolean { - for (const prop of get_properties(type)) { - if (get_entity_prop_value(a, prop) !== get_entity_prop_value(b, prop)) { - return false; - } - } - - return true; -} diff --git a/assets_generation/update_drops_ephinea.ts b/assets_generation/update_drops_ephinea.ts deleted file mode 100644 index 4385e2d9..00000000 --- a/assets_generation/update_drops_ephinea.ts +++ /dev/null @@ -1,183 +0,0 @@ -import * as cheerio from "cheerio"; -import { writeFileSync } from "fs"; -import fetch from "node-fetch"; -import { ASSETS_DIR } from "."; -import { Difficulty, SectionId, SectionIds } from "../src/core/model"; -import { - name_and_episode_to_npc_type, - NpcType, -} from "../src/core/data_formats/parsing/quest/npc_types"; -import { ItemTypeDto } from "../src/core/dto/ItemTypeDto"; -import { BoxDropDto, EnemyDropDto } from "../src/hunt_optimizer/dto/drops"; -import { LogManager } from "../src/core/logging"; - -const logger = LogManager.get("assets_generation/update_drops_ephinea"); - -export async function update_drops_from_website(item_types: ItemTypeDto[]): Promise { - logger.info("Updating item drops."); - - const normal = await download(item_types, Difficulty.Normal); - const hard = await download(item_types, Difficulty.Hard); - const vhard = await download(item_types, Difficulty.VHard, "very-hard"); - const ultimate = await download(item_types, Difficulty.Ultimate); - - const enemy_json = JSON.stringify( - [...normal.enemy_drops, ...hard.enemy_drops, ...vhard.enemy_drops, ...ultimate.enemy_drops], - null, - 4, - ); - - writeFileSync(`${ASSETS_DIR}/enemy_drops.ephinea.json`, enemy_json); - - const box_json = JSON.stringify( - [...normal.box_drops, ...hard.box_drops, ...vhard.box_drops, ...ultimate.box_drops], - null, - 4, - ); - - writeFileSync(`${ASSETS_DIR}/box_drops.ephinea.json`, box_json); - - logger.info("Done updating item drops."); -} - -async function download( - item_types: ItemTypeDto[], - difficulty: Difficulty, - difficulty_url: string = Difficulty[difficulty].toLowerCase(), -): Promise<{ enemy_drops: EnemyDropDto[]; box_drops: BoxDropDto[]; items: Set }> { - const response = await fetch(`https://ephinea.pioneer2.net/drop-charts/${difficulty_url}/`); - const body = await response.text(); - const $ = cheerio.load(body); - - let episode = 1; - const data: { - enemy_drops: EnemyDropDto[]; - box_drops: BoxDropDto[]; - items: Set; - } = { - enemy_drops: [], - box_drops: [], - items: new Set(), - }; - - $("table").each((table_i, table) => { - const is_box = table_i >= 3; - - $("tr", table).each((_, tr) => { - const enemy_or_box_text = $(tr.firstChild).text(); - - if (enemy_or_box_text.trim() === "") { - return; - } else if (enemy_or_box_text.startsWith("EPISODE ")) { - episode = parseInt(enemy_or_box_text.slice(-1), 10); - return; - } - - try { - let enemy_or_box = - enemy_or_box_text.split("/")[difficulty === Difficulty.Ultimate ? 1 : 0] || - enemy_or_box_text; - - if (enemy_or_box === "Halo Rappy") { - enemy_or_box = "Hallo Rappy"; - } else if (enemy_or_box === "Dal Ral Lie") { - enemy_or_box = "Dal Ra Lie"; - } else if (enemy_or_box === "Vol Opt ver. 2") { - enemy_or_box = "Vol Opt ver.2"; - } else if (enemy_or_box === "Za Boota") { - enemy_or_box = "Ze Boota"; - } else if (enemy_or_box === "Saint Million") { - enemy_or_box = "Saint-Milion"; - } - - $("td", tr).each((td_i, td) => { - if (td_i === 0) { - return; - } - - const section_id = SectionIds[td_i - 1]; - - if (is_box) { - // TODO: - // $('font font', td).each((_, font) => { - // const item = $('b', font).text(); - // const rateNum = parseFloat($('sup', font).text()); - // const rateDenom = parseFloat($('sub', font).text()); - - // data.boxDrops.push({ - // difficulty: Difficulty[difficulty], - // episode, - // sectionId: SectionId[sectionId], - // box: enemyOrBox, - // item, - // dropRate: rateNum / rateDenom - // }); - - // data.items.add(item); - // }); - return; - } else { - const item = $("font b", td).text(); - - if (item.trim() === "") { - return; - } - - try { - const item_type = item_types.find(i => i.name === item); - - if (!item_type) { - throw new Error(`No item type found with name "${item}".`); - } - - const npc_type = name_and_episode_to_npc_type(enemy_or_box, episode); - - if (!npc_type) { - throw new Error(`Couldn't retrieve NpcType.`); - } - - const title = ($("font abbr", td).attr("title") ?? "").replace( - "\r", - "", - ); - const [ - , - drop_rate_num, - drop_rate_denom, - ] = /Drop Rate: (\d+)\/(\d+(\.\d+)?)/g.exec(title)!.map(parseFloat); - const [ - , - rare_rate_num, - rare_rate_denom, - ] = /Rare Rate: (\d+)\/(\d+(\.\d+)?)/g.exec(title)!.map(parseFloat); - - data.enemy_drops.push({ - difficulty: Difficulty[difficulty], - episode, - section_id: SectionId[section_id], - enemy: NpcType[npc_type], - item_type_id: item_type.id, - drop_rate: drop_rate_num / drop_rate_denom, - rare_rate: rare_rate_num / rare_rate_denom, - }); - - data.items.add(item); - } catch (e) { - logger.error( - `Error while processing item ${item} of ${enemy_or_box} in episode ${episode} ${Difficulty[difficulty]}.`, - e, - ); - } - } - }); - } catch (e) { - logger.error( - `Error while processing ${enemy_or_box_text} in episode ${episode} ${difficulty}.`, - e, - ); - } - }); - }); - - return data; -} diff --git a/assets_generation/update_ephinea_data.ts b/assets_generation/update_ephinea_data.ts deleted file mode 100644 index f0390488..00000000 --- a/assets_generation/update_ephinea_data.ts +++ /dev/null @@ -1,1143 +0,0 @@ -import { readFileSync, writeFileSync } from "fs"; -import { ASSETS_DIR, RESOURCE_DIR } from "."; -import { BufferCursor } from "../src/core/data_formats/block/cursor/BufferCursor"; -import { ItemPmt, parse_item_pmt } from "../src/core/data_formats/parsing/itempmt"; -import { QuestData } from "../src/core/data_formats/parsing/quest"; -import { parse_unitxt, Unitxt } from "../src/core/data_formats/parsing/unitxt"; -import { Difficulties, Difficulty, SectionId, SectionIds } from "../src/core/model"; -import { update_drops_from_website } from "./update_drops_ephinea"; -import { Episode, EPISODES } from "../src/core/data_formats/parsing/quest/Episode"; -import { npc_data, NPC_TYPES, NpcType } from "../src/core/data_formats/parsing/quest/npc_types"; -import { Endianness } from "../src/core/data_formats/block/Endianness"; -import { ItemTypeDto } from "../src/core/dto/ItemTypeDto"; -import { QuestDto } from "../src/hunt_optimizer/dto/QuestDto"; -import { BoxDropDto, EnemyDropDto } from "../src/hunt_optimizer/dto/drops"; -import { LogManager } from "../src/core/logging"; -import { Severity } from "../src/core/Severity"; -import { unwrap } from "../src/core/Result"; -import { get_npc_type } from "../src/core/data_formats/parsing/quest/QuestNpc"; -import { walk_quests } from "./walk_quests"; - -const logger = LogManager.get("assets_generation/update_ephinea_data"); - -LogManager.default_severity = Severity.Error; -logger.severity = Severity.Info; -LogManager.get("static/update_drops_ephinea").severity = Severity.Info; - -/** - * Used by static data generation scripts. - */ -const EPHINEA_RESOURCE_DIR = `${RESOURCE_DIR}/ephinea`; -/** - * Enable this if we ever get the Ephinea ItemPT.gsl file. - */ -const USE_ITEMPT = false; - -update().catch(e => logger.error(e)); - -/** - * ItemPMT.bin and ItemPT.gsl comes from stock Tethealla. ItemPT.gsl is not used at the moment. - * unitxt_j.prs comes from the Ephinea client. - * TODO: manual fixes: - * - Clio is equipable by HUnewearls - * - Red Ring has a requirement of 180, not 108 - */ -async function update(): Promise { - logger.info("Updating static Ephinea data."); - - const unitxt = load_unitxt(); - const item_names = unitxt[1]; - const items = update_items(item_names); - - if (USE_ITEMPT) { - const item_pt = load_item_pt(); - update_drops(item_pt); - } else { - await update_drops_from_website(items); - } - - update_quests(); - - logger.info("Done updating static Ephinea data."); -} - -/** - * Shop quests are not processed. - * - * TODO: Missing quests: - * - Maximum Attack 4th Stage -1R- - * - Maximum Attack 4th Stage -2R- - * - Maximum Attack 4th Stage -4R- - * - Knight of Coral - * - Knight of Coral Advent - * - CAL's Clock Challenge - * Note: The MA4R quests use a random area variation per area from the ABC MA quests. E.g. MA4-1R will use a random caves 2 variation from MA4-1A, MA4-1B or MA4-1C. Same for mines 2 and ruins 2. - */ -function update_quests(): void { - logger.info("Updating quest data."); - - const quests: QuestDto[] = []; - walk_quests({ path: `${EPHINEA_RESOURCE_DIR}/ship-config/quest` }, q => - process_quest(quests, q), - ); - - quests.sort((a, b) => a.episode - b.episode || a.name.localeCompare(b.name)); - - const id_counts = quests.reduce( - (counts, q) => counts.set(q.id, (counts.get(q.id) || 0) + 1), - new Map(), - ); - - for (const [id, count] of id_counts.entries()) { - if (count > 1) { - logger.error(`Duplicate quest ID ${id}, NOT writing quests file.`); - return; - } - } - - writeFileSync(`${ASSETS_DIR}/quests.ephinea.json`, JSON.stringify(quests, null, 4)); - - logger.info("Done updating quest data."); -} - -function process_quest(quests: QuestDto[], { quest }: QuestData): void { - logger.trace(`Processing quest "${quest.name}".`); - - if (quest.id == null) { - throw new Error("No id."); - } - - const enemy_counts: { [npc_type_code: string]: number } = {}; - - for (const npc of quest.npcs) { - const type = get_npc_type(npc); - - if (npc_data(type).enemy) { - enemy_counts[NpcType[type]] = (enemy_counts[NpcType[type]] || 0) + 1; - } - } - - quests.push({ - id: quest.id, - name: quest.name, - episode: quest.episode, - enemy_counts: enemy_counts, - }); -} - -function load_unitxt(): Unitxt { - logger.info("Loading unitxt_j.prs."); - - const buf = readFileSync(`${EPHINEA_RESOURCE_DIR}/client/data/unitxt_j.prs`); - - const unitxt = unwrap(parse_unitxt(new BufferCursor(buf, Endianness.Little))); - // Strip custom Ephinea items until we have the Ephinea ItemPMT.bin. - unitxt[1].splice(177, 50); - unitxt[1].splice(639, 59); - - logger.info("Done loading unitxt_j.prs."); - return unitxt; -} - -function update_items(item_names: string[]): ItemTypeDto[] { - logger.info("Updating item type data."); - - const buf = readFileSync(`${EPHINEA_RESOURCE_DIR}/ship-config/param/ItemPMT.bin`); - - const item_pmt = parse_item_pmt(new BufferCursor(buf, Endianness.Little)); - const item_types = new Array(); - const ids = new Set(); - - item_pmt.weapons.forEach((category, category_i) => { - category.forEach((weapon, i) => { - const id = (category_i << 8) + i; - - if (!ids.has(id)) { - ids.add(id); - item_types.push({ - class: "weapon", - id, - name: item_names[weapon.id], - min_atp: weapon.min_atp, - max_atp: weapon.max_atp, - ata: weapon.ata, - max_grind: weapon.max_grind, - required_atp: weapon.req_atp, - }); - } - }); - }); - - item_pmt.armors.forEach((armor, i) => { - const id = 0x10100 + i; - - if (!ids.has(id)) { - ids.add(id); - - const stats = get_stat_boosts(item_pmt, armor.stat_boost); - stats.min_evp += armor.evp; - stats.min_dfp += armor.dfp; - - item_types.push({ - class: "armor", - id, - name: item_names[armor.id], - ...stats, - max_evp: stats.min_evp + armor.evp_range, - max_dfp: stats.min_dfp + armor.dfp_range, - }); - } - }); - - item_pmt.shields.forEach((shield, i) => { - const id = 0x10200 + i; - - if (!ids.has(id)) { - ids.add(id); - - const stats = get_stat_boosts(item_pmt, shield.stat_boost); - stats.min_evp += shield.evp; - stats.min_dfp += shield.dfp; - - item_types.push({ - class: "shield", - id, - name: item_names[shield.id], - ...stats, - max_evp: stats.min_evp + shield.evp_range, - max_dfp: stats.min_dfp + shield.dfp_range, - }); - } - }); - - item_pmt.units.forEach((unit, i) => { - const id = 0x10300 + i; - - if (!ids.has(id)) { - ids.add(id); - item_types.push({ - class: "unit", - id, - name: item_names[unit.id], - }); - } - }); - - item_pmt.tools.forEach((category, category_i) => { - category.forEach((tool, i) => { - const id = (0x30000 | (category_i << 8)) + i; - - if (!ids.has(id)) { - ids.add(id); - item_types.push({ - class: "tool", - id, - name: item_names[tool.id], - }); - } - }); - }); - - writeFileSync(`${ASSETS_DIR}/item_types.ephinea.json`, JSON.stringify(item_types, null, 4)); - - logger.info("Done updating item type data."); - return item_types; -} - -function update_drops(item_pt: ItemPt): void { - logger.info("Updating drop data."); - - const enemy_drops = new Array(); - - for (const diff of Difficulties) { - for (const ep of EPISODES) { - for (const sid of SectionIds) { - enemy_drops.push(...load_enemy_drops(item_pt, diff, ep, sid)); - } - } - } - - writeFileSync(`${ASSETS_DIR}/enemy_drops.ephinea.json`, JSON.stringify(enemy_drops, null, 4)); - - const box_drops = new Array(); - - for (const diff of Difficulties) { - for (const ep of EPISODES) { - for (const sid of SectionIds) { - box_drops.push(...load_box_drops(diff, ep, sid)); - } - } - } - - writeFileSync(`${ASSETS_DIR}/box_drops.ephinea.json`, JSON.stringify(box_drops, null, 4)); - - logger.info("Done updating drop data."); -} - -type ItemP = { - dar_table: Map; -}; -type ItemPt = ItemP[][][]; - -function load_item_pt(): ItemPt { - logger.info("Loading ItemPT.gsl."); - - const table: ItemPt = []; - const buf = readFileSync(`${EPHINEA_RESOURCE_DIR}/ship-config/param/ItemPT.gsl`); - const cursor = new BufferCursor(buf, Endianness.Big); - - cursor.seek(0x3000); - - // ItemPT.gsl was extracted from PSO for XBox, so it only contains data for ep. I and II. - // Episode IV data is based on the ep. I and II data. - for (const episode of [Episode.I, Episode.II]) { - table[episode] = []; - - for (const diff of Difficulties) { - table[episode][diff] = []; - - for (const sid of SectionIds) { - const dar_table = new Map(); - - table[episode][diff][sid] = { - dar_table, - }; - - const start_pos = cursor.position; - cursor.seek(1608); - const enemy_dar = cursor.u8_array(100); - - for (const npc of NPC_TYPES) { - if (npc_data(npc).episode !== episode) continue; - - switch (npc) { - case NpcType.Dragon: - case NpcType.DeRolLe: - case NpcType.VolOptPart1: - case NpcType.DarkFalz: - case NpcType.BarbaRay: - case NpcType.GolDragon: - case NpcType.GalGryphon: - case NpcType.OlgaFlow: - case NpcType.SaintMilion: - case NpcType.Shambertin: - case NpcType.Kondrieu: - dar_table.set(npc, 1); - continue; - } - - const pt_index = npc_type_to_pt_index(npc); - - if (pt_index != null) { - dar_table.set(npc, enemy_dar[pt_index] / 100); - } - } - - cursor.seek_start(start_pos + 0x1000); - } - } - } - - table[Episode.IV] = []; - - for (const diff of Difficulties) { - table[Episode.IV][diff] = []; - - for (const sid of SectionIds) { - const dar_table = new Map(); - - table[Episode.IV][diff][sid] = { - dar_table, - }; - - for (const npc of NPC_TYPES) { - if (npc_data(npc).episode !== Episode.IV) continue; - - switch (npc) { - case NpcType.SandRappy: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.RagRappy)!, - ); - break; - case NpcType.DelRappy: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.AlRappy)!, - ); - break; - case NpcType.Astark: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Hildebear)!, - ); - break; - case NpcType.SatelliteLizard: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.SavageWolf)!, - ); - break; - case NpcType.Yowie: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.BarbarousWolf)!, - ); - break; - case NpcType.MerissaA: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.PofuillySlime)!, - ); - break; - case NpcType.MerissaAA: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.PouillySlime)!, - ); - break; - case NpcType.Girtablulu: - dar_table.set( - npc, - table[Episode.II][diff][sid].dar_table.get(NpcType.Mericarol)!, - ); - break; - case NpcType.Zu: - dar_table.set( - npc, - table[Episode.II][diff][sid].dar_table.get(NpcType.GiGue)!, - ); - break; - case NpcType.Pazuzu: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Hildeblue)!, - ); - break; - case NpcType.Boota: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Booma)!, - ); - break; - case NpcType.ZeBoota: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Gobooma)!, - ); - break; - case NpcType.BaBoota: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Gigobooma)!, - ); - break; - case NpcType.Dorphon: - dar_table.set( - npc, - table[Episode.II][diff][sid].dar_table.get(NpcType.Delbiter)!, - ); - break; - case NpcType.DorphonEclair: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Hildeblue)!, - ); - break; - case NpcType.Goran: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Dimenian)!, - ); - break; - case NpcType.PyroGoran: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.LaDimenian)!, - ); - break; - case NpcType.GoranDetonator: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.SoDimenian)!, - ); - break; - case NpcType.SaintMilion: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.DarkFalz)!, - ); - break; - case NpcType.Shambertin: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.DarkFalz)!, - ); - break; - case NpcType.Kondrieu: - dar_table.set( - npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.DarkFalz)!, - ); - break; - } - } - } - } - - logger.info("Done loading ItemPT.gsl."); - return table; -} - -function load_enemy_drops( - item_pt: ItemPt, - difficulty: Difficulty, - episode: Episode, - section_id: SectionId, -): EnemyDropDto[] { - const drops: EnemyDropDto[] = []; - const drops_buf = readFileSync( - `${EPHINEA_RESOURCE_DIR}/login-config/drop/ep${episode}_mob_${difficulty}_${section_id}.txt`, - ); - - let line_no = 0; - let prev_line = ""; - - for (const line of drops_buf.toString("utf8").split("\n")) { - const trimmed = line.trim(); - if (trimmed.startsWith("#")) continue; - - if (line_no % 2 == 1) { - const enemy = get_enemy_type(episode, Math.floor(line_no / 2)); - - if (enemy) { - const rare_rate = expand_drop_rate(parseInt(prev_line, 10)); - const item_type_id = parseInt(trimmed, 16); - const dar = item_pt[episode][difficulty][section_id].dar_table.get(enemy); - - if (dar == null) { - logger.error(`No DAR found for ${NpcType[enemy]}.`); - } else if (rare_rate > 0 && item_type_id) { - drops.push({ - difficulty: Difficulty[difficulty], - episode, - section_id: SectionId[section_id], - enemy: NpcType[enemy], - item_type_id: item_type_id, - drop_rate: dar, - rare_rate: rare_rate, - }); - } - } - } - - prev_line = trimmed; - line_no++; - } - - return drops; -} - -function load_box_drops( - difficulty: Difficulty, - episode: Episode, - section_id: SectionId, -): BoxDropDto[] { - const drops: BoxDropDto[] = []; - const drops_buf = readFileSync( - `${EPHINEA_RESOURCE_DIR}/login-config/drop/ep${episode}_box_${difficulty}_${section_id}.txt`, - ); - - let line_no = 0; - let prev_line = ""; - let prev_prev_line = ""; - - for (const line of drops_buf.toString("utf8").split("\n")) { - const trimmed = line.trim(); - if (trimmed.startsWith("#")) continue; - - if (line_no % 3 == 2) { - const area_id = parseInt(prev_prev_line, 10); - const drop_rate = expand_drop_rate(parseInt(prev_line, 10)); - const item_type_id = parseInt(trimmed, 16); - - if (drop_rate > 0 && item_type_id) { - drops.push({ - difficulty: Difficulty[difficulty], - episode, - section_id: SectionId[section_id], - area_id: area_id, - item_type_id: item_type_id, - drop_rate: drop_rate, - }); - } - } - - prev_prev_line = prev_line; - prev_line = trimmed; - line_no++; - } - - return drops; -} - -function get_stat_boosts( - item_pmt: ItemPmt, - stat_boost_index: number, -): { - atp: number; - ata: number; - min_evp: number; - min_dfp: number; - mst: number; - hp: number; - lck: number; -} { - const stat_boost = item_pmt.stat_boosts[stat_boost_index]; - let atp = 0; - let ata = 0; - let min_evp = 0; - let min_dfp = 0; - let mst = 0; - let hp = 0; - let lck = 0; - - switch (stat_boost.stat_1) { - case 1: - atp += stat_boost.amount_1; - break; - case 2: - ata += stat_boost.amount_1; - break; - case 3: - min_evp += stat_boost.amount_1; - break; - case 4: - min_dfp += stat_boost.amount_1; - break; - case 5: - mst += stat_boost.amount_1; - break; - case 6: - hp += stat_boost.amount_1; - break; - case 7: - lck += stat_boost.amount_1; - break; - case 8: - atp += stat_boost.amount_1; - ata += stat_boost.amount_1; - min_evp += stat_boost.amount_1; - min_dfp += stat_boost.amount_1; - mst += stat_boost.amount_1; - hp += stat_boost.amount_1; - lck += stat_boost.amount_1; - break; - case 9: - atp -= stat_boost.amount_1; - break; - case 10: - ata -= stat_boost.amount_1; - break; - case 11: - min_evp -= stat_boost.amount_1; - break; - case 12: - min_dfp -= stat_boost.amount_1; - break; - case 13: - mst -= stat_boost.amount_1; - break; - case 14: - hp -= stat_boost.amount_1; - break; - case 15: - lck -= stat_boost.amount_1; - break; - case 16: - atp -= stat_boost.amount_1; - ata -= stat_boost.amount_1; - min_evp -= stat_boost.amount_1; - min_dfp -= stat_boost.amount_1; - mst -= stat_boost.amount_1; - hp -= stat_boost.amount_1; - lck -= stat_boost.amount_1; - break; - } - - return { atp, ata, min_evp, min_dfp, mst, hp, lck }; -} - -function get_enemy_type(episode: Episode, index: number): NpcType | undefined { - if (episode === Episode.I) { - return [ - undefined, - - NpcType.Hildebear, - NpcType.Hildeblue, - NpcType.Mothmant, - NpcType.Monest, - NpcType.RagRappy, - NpcType.AlRappy, - NpcType.SavageWolf, - NpcType.BarbarousWolf, - NpcType.Booma, - NpcType.Gobooma, - NpcType.Gigobooma, - - NpcType.GrassAssassin, - NpcType.PoisonLily, - NpcType.NarLily, - NpcType.NanoDragon, - NpcType.EvilShark, - NpcType.PalShark, - NpcType.GuilShark, - NpcType.PofuillySlime, - NpcType.PouillySlime, - NpcType.PanArms, - NpcType.Migium, - NpcType.Hidoom, - - NpcType.Dubchic, - NpcType.Garanz, - NpcType.SinowBeat, - NpcType.SinowGold, - NpcType.Canadine, - NpcType.Canane, - NpcType.Delsaber, - NpcType.ChaosSorcerer, - undefined, - undefined, - NpcType.DarkGunner, - NpcType.DeathGunner, - NpcType.ChaosBringer, - NpcType.DarkBelra, - NpcType.Claw, - NpcType.Bulk, - NpcType.Bulclaw, - NpcType.Dimenian, - NpcType.LaDimenian, - NpcType.SoDimenian, - - NpcType.Dragon, - NpcType.DeRolLe, - NpcType.VolOptPart1, - NpcType.DarkFalz, - - undefined, - undefined, - - NpcType.Gilchic, - ][index]; - } else if (episode === Episode.II) { - return [ - undefined, - - NpcType.Hildebear2, - NpcType.Hildeblue2, - NpcType.Mothmant2, - NpcType.Monest2, - NpcType.RagRappy2, - undefined, - NpcType.SavageWolf2, - NpcType.BarbarousWolf2, - undefined, - undefined, - undefined, - NpcType.GrassAssassin2, - NpcType.PoisonLily2, - NpcType.NarLily2, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - NpcType.PanArms2, - NpcType.Migium2, - NpcType.Hidoom2, - NpcType.Dubchic2, - NpcType.Garanz2, - undefined, - undefined, - undefined, - undefined, - NpcType.Delsaber2, - NpcType.ChaosSorcerer2, - undefined, - undefined, - undefined, - undefined, - undefined, - NpcType.DarkBelra2, - undefined, - undefined, - undefined, - NpcType.Dimenian2, - NpcType.LaDimenian2, - NpcType.SoDimenian2, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - NpcType.Gilchic2, - NpcType.LoveRappy, - - NpcType.Merillia, - NpcType.Meriltas, - NpcType.Gee, - NpcType.GiGue, - NpcType.Mericarol, - NpcType.Merikle, - NpcType.Mericus, - NpcType.UlGibbon, - NpcType.ZolGibbon, - NpcType.Gibbles, - NpcType.SinowBerill, - NpcType.SinowSpigell, - - NpcType.Dolmolm, - NpcType.Dolmdarl, - NpcType.Morfos, - undefined, - NpcType.Recon, - NpcType.SinowZoa, - NpcType.SinowZele, - NpcType.Deldepth, - NpcType.Delbiter, - - NpcType.BarbaRay, - undefined, - undefined, - NpcType.GolDragon, - NpcType.GalGryphon, - NpcType.OlgaFlow, - - NpcType.StRappy, - NpcType.HalloRappy, - NpcType.EggRappy, - - NpcType.IllGill, - NpcType.DelLily, - NpcType.Epsilon, - ][index]; - } else { - return [ - undefined, - - NpcType.Astark, - NpcType.Yowie, - NpcType.SatelliteLizard, - NpcType.MerissaA, - NpcType.MerissaAA, - NpcType.Girtablulu, - NpcType.Zu, - NpcType.Pazuzu, - NpcType.Boota, - NpcType.ZeBoota, - NpcType.BaBoota, - NpcType.Dorphon, - NpcType.DorphonEclair, - - NpcType.Goran, - NpcType.GoranDetonator, - NpcType.PyroGoran, - NpcType.SandRappy, - NpcType.DelRappy, - - NpcType.SaintMilion, - NpcType.Shambertin, - NpcType.Kondrieu, - ][index]; - } -} - -function expand_drop_rate(pc: number): number { - let shift = ((pc >> 3) & 0x1f) - 4; - if (shift < 0) shift = 0; - return ((2 << shift) * ((pc & 7) + 7)) / 4294967296; -} - -function npc_type_to_pt_index(type: NpcType): number | undefined { - switch (type) { - // Episode I Forest - - case NpcType.Hildebear: - return 1; - case NpcType.Hildeblue: - return 2; - case NpcType.RagRappy: - return 5; - case NpcType.AlRappy: - return 6; - case NpcType.Monest: - return 4; - case NpcType.Mothmant: - return 3; - case NpcType.SavageWolf: - return 7; - case NpcType.BarbarousWolf: - return 8; - case NpcType.Booma: - return 9; - case NpcType.Gobooma: - return 10; - case NpcType.Gigobooma: - return 11; - case NpcType.Dragon: - return 44; - - // Episode I Caves - - case NpcType.GrassAssassin: - return 12; - case NpcType.PoisonLily: - return 13; - case NpcType.NarLily: - return 14; - case NpcType.NanoDragon: - return 15; - case NpcType.EvilShark: - return 16; - case NpcType.PalShark: - return 17; - case NpcType.GuilShark: - return 18; - case NpcType.PofuillySlime: - return 19; - case NpcType.PouillySlime: - return 20; - case NpcType.PanArms: - return 21; - case NpcType.Migium: - return 22; - case NpcType.Hidoom: - return 23; - case NpcType.DeRolLe: - return 45; - - // Episode I Mines - - case NpcType.Dubchic: - return 24; - case NpcType.Gilchic: - return 50; - case NpcType.Garanz: - return 25; - case NpcType.SinowBeat: - return 26; - case NpcType.SinowGold: - return 27; - case NpcType.Canadine: - return 28; - case NpcType.Canane: - return 29; - case NpcType.Dubswitch: - return undefined; - case NpcType.VolOptPart1: - return 46; - case NpcType.VolOptPart2: - return undefined; - - // Episode I Ruins - - case NpcType.Delsaber: - return 30; - case NpcType.ChaosSorcerer: - return 31; - case NpcType.DarkGunner: - return 34; - case NpcType.DeathGunner: - return 35; - case NpcType.ChaosBringer: - return 36; - case NpcType.DarkBelra: - return 37; - case NpcType.Dimenian: - return 41; - case NpcType.LaDimenian: - return 42; - case NpcType.SoDimenian: - return 43; - case NpcType.Bulclaw: - return 40; - case NpcType.Bulk: - return 39; - case NpcType.Claw: - return 38; - case NpcType.DarkFalz: - return 47; - - // Episode II VR Temple - - case NpcType.Hildebear2: - return 1; - case NpcType.Hildeblue2: - return 2; - case NpcType.RagRappy2: - return 5; - case NpcType.LoveRappy: - return 51; - case NpcType.StRappy: - return 79; - case NpcType.HalloRappy: - return 80; - case NpcType.EggRappy: - return 81; - case NpcType.Monest2: - return 4; - case NpcType.Mothmant2: - return 3; - case NpcType.PoisonLily2: - return 13; - case NpcType.NarLily2: - return 14; - case NpcType.GrassAssassin2: - return 12; - case NpcType.Dimenian2: - return 41; - case NpcType.LaDimenian2: - return 42; - case NpcType.SoDimenian2: - return 43; - case NpcType.DarkBelra2: - return 37; - case NpcType.BarbaRay: - return 73; - - // Episode II VR Spaceship - - case NpcType.SavageWolf2: - return 7; - case NpcType.BarbarousWolf2: - return 8; - case NpcType.PanArms2: - return 21; - case NpcType.Migium2: - return 22; - case NpcType.Hidoom2: - return 23; - case NpcType.Dubchic2: - return 24; - case NpcType.Gilchic2: - return 50; - case NpcType.Garanz2: - return 25; - case NpcType.Dubswitch2: - return undefined; - case NpcType.Delsaber2: - return 30; - case NpcType.ChaosSorcerer2: - return 31; - case NpcType.GolDragon: - return 76; - - // Episode II Central Control Area - - case NpcType.SinowBerill: - return 62; - case NpcType.SinowSpigell: - return 63; - case NpcType.Merillia: - return 52; - case NpcType.Meriltas: - return 53; - case NpcType.Mericarol: - return 56; - case NpcType.Mericus: - return 58; - case NpcType.Merikle: - return 57; - case NpcType.UlGibbon: - return 59; - case NpcType.ZolGibbon: - return 60; - case NpcType.Gibbles: - return 61; - case NpcType.Gee: - return 54; - case NpcType.GiGue: - return 55; - case NpcType.IllGill: - return 82; - case NpcType.DelLily: - return 83; - case NpcType.Epsilon: - return 84; - case NpcType.GalGryphon: - return 77; - - // Episode II Seabed - - case NpcType.Deldepth: - return 71; - case NpcType.Delbiter: - return 72; - case NpcType.Dolmolm: - return 64; - case NpcType.Dolmdarl: - return 65; - case NpcType.Morfos: - return 66; - case NpcType.Recobox: - return 67; - case NpcType.Recon: - return 68; - case NpcType.SinowZoa: - return 69; - case NpcType.SinowZele: - return 70; - case NpcType.OlgaFlow: - return 78; - - // Episode IV - - case NpcType.SandRappy: - return 17; - case NpcType.DelRappy: - return 18; - case NpcType.Astark: - return 1; - case NpcType.SatelliteLizard: - return 3; - case NpcType.Yowie: - return 2; - case NpcType.MerissaA: - return 4; - case NpcType.MerissaAA: - return 5; - case NpcType.Girtablulu: - return 6; - case NpcType.Zu: - return 7; - case NpcType.Pazuzu: - return 8; - case NpcType.Boota: - return 9; - case NpcType.ZeBoota: - return 10; - case NpcType.BaBoota: - return 11; - case NpcType.Dorphon: - return 12; - case NpcType.DorphonEclair: - return 13; - case NpcType.Goran: - return 14; - case NpcType.PyroGoran: - return 16; - case NpcType.GoranDetonator: - return 15; - case NpcType.SaintMilion: - return 19; - case NpcType.Shambertin: - return 20; - case NpcType.Kondrieu: - return 21; - - default: - return undefined; - } -} diff --git a/assets_generation/update_generic_data.ts b/assets_generation/update_generic_data.ts deleted file mode 100644 index 7236afd0..00000000 --- a/assets_generation/update_generic_data.ts +++ /dev/null @@ -1,227 +0,0 @@ -import { readFileSync, writeFileSync } from "fs"; -import { ASSETS_DIR, RESOURCE_DIR, SRC_DIR } from "."; -import { BufferCursor } from "../src/core/data_formats/block/cursor/BufferCursor"; -import { parse_rlc } from "../src/core/data_formats/parsing/rlc"; -import * as yaml from "yaml"; -import { Endianness } from "../src/core/data_formats/block/Endianness"; -import { LogManager } from "../src/core/logging"; -import { Severity } from "../src/core/Severity"; -import { unwrap } from "../src/core/Result"; - -const logger = LogManager.get("assets_generation/update_generic_data"); - -LogManager.default_severity = Severity.Trace; - -const OPCODES_YML_FILE = `${RESOURCE_DIR}/asm/opcodes.yml`; -const OPCODES_SRC_FILE = `${SRC_DIR}/core/data_formats/asm/opcodes.ts`; - -update(); - -function update(): void { - logger.info("Updating generic static data."); - - update_opcodes(); - extract_player_animations(); - - logger.info("Done updating generic static data."); -} - -function extract_player_animations(): void { - logger.info("Extracting player animations."); - - const buf = readFileSync(`${RESOURCE_DIR}/plymotiondata.rlc`); - let i = 0; - - for (const file of unwrap(parse_rlc(new BufferCursor(buf, Endianness.Big)))) { - writeFileSync( - `${ASSETS_DIR}/player/animation/animation_${(i++).toString().padStart(3, "0")}.njm`, - new Uint8Array(file.array_buffer()), - ); - } - - logger.info("Done extracting player animations."); -} - -function update_opcodes(): void { - logger.info("Generating opcodes."); - - // Add manual code. - const opcodes_src = readFileSync(OPCODES_SRC_FILE, { - encoding: "utf-8", - }); - const file_lines: string[] = []; - let in_manual_code = true; - let generated_lines_insert_point = 0; - - opcodes_src.split("\n").forEach((line, i) => { - if (in_manual_code) { - if (line.includes("!!! GENERATED_CODE_START !!!")) { - in_manual_code = false; - generated_lines_insert_point = i + 1; - } - - file_lines.push(line); - } else { - if (line.includes("!!! GENERATED_CODE_END !!!")) { - in_manual_code = true; - file_lines.push(line); - } - } - }); - - // Add generated code. - const yml = readFileSync(OPCODES_YML_FILE, { encoding: "utf-8" }); - const input = yaml.parse(yml); - const generated_lines: string[] = []; - let i = 0; - - for (let code = 0; code <= 0xff; code++) { - const opcode = input.opcodes[i]; - - if (opcode && opcode.code === code) { - opcode_to_code(generated_lines, code, opcode); - i++; - } else { - opcode_to_code(generated_lines, code); - } - } - - for (let code = 0xf800; code <= 0xf9ff; code++) { - const opcode = input.opcodes[i]; - - if (opcode && opcode.code === code) { - opcode_to_code(generated_lines, code, opcode); - i++; - } else { - opcode_to_code(generated_lines, code); - } - } - - // Write final file. - file_lines.splice(generated_lines_insert_point, 0, ...generated_lines); - writeFileSync(OPCODES_SRC_FILE, file_lines.join("\n")); - - logger.info("Done generating opcodes."); -} - -function opcode_to_code(output: string[], code: number, opcode?: any): void { - const code_str = code.toString(16).padStart(code < 256 ? 2 : 4, "0"); - const mnemonic: string = (opcode && opcode.mnemonic) || `unknown_${code_str}`; - const var_name = - "OP_" + - mnemonic - .replace("!=", "ne") - .replace("<=", "le") - .replace(">=", "ge") - .replace("<", "l") - .replace(">", "g") - .replace("=", "e") - .toUpperCase(); - - if (opcode) { - const stack_interaction = - opcode.stack === "push" - ? "StackInteraction.Push" - : opcode.stack === "pop" - ? "StackInteraction.Pop" - : "undefined"; - - const params = params_to_code(opcode.params); - - output.push(`export const ${var_name} = (OPCODES[0x${code_str}] = new_opcode( - 0x${code_str}, - "${mnemonic}", - ${(opcode.doc && JSON.stringify(opcode.doc)) || "undefined"}, - [${params}], - ${stack_interaction} -));`); - } else { - output.push(`export const ${var_name} = (OPCODES[0x${code_str}] = new_opcode( - 0x${code_str}, - "${mnemonic}", - undefined, - [], - undefined -));`); - } -} - -function params_to_code(params: any[]): string { - return params - .map((param: any) => { - let type: string; - - switch (param.type) { - case "any": - type = "TYPE_ANY"; - break; - case "byte": - type = "TYPE_BYTE"; - break; - case "word": - type = "TYPE_WORD"; - break; - case "dword": - type = "TYPE_DWORD"; - break; - case "float": - type = "TYPE_FLOAT"; - break; - case "label": - type = "TYPE_LABEL"; - break; - case "instruction_label": - type = "TYPE_I_LABEL"; - break; - case "data_label": - type = "TYPE_D_LABEL"; - break; - case "string_label": - type = "TYPE_S_LABEL"; - break; - case "string": - type = "TYPE_STRING"; - break; - case "instruction_label_var": - type = "TYPE_I_LABEL_VAR"; - break; - case "reg_ref": - type = "TYPE_REG_REF"; - break; - case "reg_tup_ref": - type = `{ kind: Kind.RegTupRef, register_tuples: [${params_to_code( - param.reg_tup, - )}] }`; - break; - case "reg_ref_var": - type = "TYPE_REG_REF_VAR"; - break; - case "pointer": - type = "TYPE_POINTER"; - break; - default: - throw new Error(`Type ${param.type} not implemented.`); - } - - const doc = (param.doc && JSON.stringify(param.doc)) || "undefined"; - let access: string; - - switch (param.access) { - case "read": - access = "ParamAccess.Read"; - break; - case "write": - access = "ParamAccess.Write"; - break; - case "read_write": - access = "ParamAccess.ReadWrite"; - break; - default: - access = "undefined"; - break; - } - - return `new_param(${type}, ${doc}, ${access})`; - }) - .join(", "); -} diff --git a/assets_generation/walk_quests.ts b/assets_generation/walk_quests.ts deleted file mode 100644 index 85ae6f70..00000000 --- a/assets_generation/walk_quests.ts +++ /dev/null @@ -1,114 +0,0 @@ -import { readdirSync, readFileSync, statSync } from "fs"; -import { parse_qst_to_quest, QuestData } from "../src/core/data_formats/parsing/quest"; -import { BufferCursor } from "../src/core/data_formats/block/cursor/BufferCursor"; -import { Endianness } from "../src/core/data_formats/block/Endianness"; -import { LogManager } from "../src/core/logging"; -import { Severity } from "../src/core/Severity"; - -const logger = LogManager.get("assets_generation/walk_quests"); - -/** - * Applies process to all QST files in a directory. Uses the 106 QST files - * provided with Tethealla version 0.143 by default. - */ -export function walk_quests( - config: { path: string; suppress_parser_log?: boolean; exclude?: readonly string[] }, - process: (quest: QuestData) => void, -): void { - const loggers = (config.suppress_parser_log !== false - ? [ - "core/data_formats/asm/data_flow_analysis/register_value", - "core/data_formats/parsing/quest", - "core/data_formats/parsing/quest/bin", - "core/data_formats/parsing/quest/object_code", - "core/data_formats/parsing/quest/qst", - ] - : [] - ).map(logger_name => { - const logger = LogManager.get(logger_name); - const old = logger.severity; - logger.severity = Severity.Error; - return [logger, old] as const; - }); - - try { - walk_qst_files(config, (p, _, contents) => { - try { - const result = parse_qst_to_quest( - new BufferCursor(contents, Endianness.Little), - true, - ); - - if (result.success) { - process(result.value); - } else { - logger.error(`Couldn't process ${p}.`); - } - } catch (e) { - logger.error(`Couldn't parse ${p}.`, e); - } - }); - } finally { - for (const [logger, severity] of loggers) { - logger.severity = severity; - } - } -} - -/** - * Applies f to all 106 QST files provided with Tethealla version 0.143. - * f is called with the path to the file, the file name and the content of the file. - */ -export function walk_qst_files( - config: { path?: string; exclude?: readonly string[] }, - f: (path: string, file_name: string, contents: Buffer) => void, -): void { - const path = config.path ?? "assets_generation/resources/tethealla_v0.143_quests"; - - // BUG: Battle quests are not always parsed in the same way. - // Could be a bug in Jest or Node as the quest parsing code has no randomness or dependency on mutable state. - // TODO: Some quests can not yet be parsed correctly. - let exclude: readonly string[]; - - if (config.exclude) { - exclude = config.exclude; - } else if (config.path == undefined) { - exclude = [ - "/battle", // Battle mode quests. - "/ep2/event/ma4-a.qst", // .qst seems corrupt, doesn't work in qedit either. - ]; - } else { - exclude = []; - } - - const idx = path.lastIndexOf("/"); - walk_qst_files_internal( - f, - path, - idx === -1 || idx >= path.length - 1 ? path : path.slice(idx + 1), - exclude, - ); -} - -function walk_qst_files_internal( - f: (path: string, file_name: string, contents: Buffer) => void, - path: string, - name: string, - exclude: readonly string[], -): void { - if (exclude.some(e => path.includes(e))) { - return; - } - - const stat = statSync(path); - - if (stat.isFile()) { - if (path.endsWith(".qst")) { - f(path, name, readFileSync(path)); - } - } else if (stat.isDirectory()) { - for (const file of readdirSync(path)) { - walk_qst_files_internal(f, `${path}/${file}`, file, exclude); - } - } -} diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 00000000..da018522 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,25 @@ +import org.jetbrains.kotlin.gradle.tasks.Kotlin2JsCompile + +plugins { + kotlin("multiplatform") version "1.4.10" apply false + kotlin("js") version "1.4.10" apply false +} + +tasks.wrapper { + gradleVersion = "6.6.1" +} + +subprojects { + project.extra["kotlinLoggingVersion"] = "2.0.2" + + repositories { + jcenter() + } + + tasks.withType { + kotlinOptions.freeCompilerArgs += listOf( + "-Xopt-in=kotlin.ExperimentalUnsignedTypes", + "-Xopt-in=kotlin.time.ExperimentalTime" + ) + } +} diff --git a/core/build.gradle.kts b/core/build.gradle.kts new file mode 100644 index 00000000..7bd99b74 --- /dev/null +++ b/core/build.gradle.kts @@ -0,0 +1,36 @@ +plugins { + kotlin("multiplatform") +} + +val kotlinLoggingVersion: String by project.extra + +kotlin { + js { + browser {} + } + + sourceSets { + commonMain { + dependencies { + api("io.github.microutils:kotlin-logging:$kotlinLoggingVersion") + } + } + + commonTest { + dependencies { + implementation(kotlin("test-common")) + implementation(kotlin("test-annotations-common")) + } + } + + val jsTest by getting { + dependencies { + implementation(kotlin("test-js")) + } + } + } +} + +tasks.register("test") { + dependsOn("allTests") +} diff --git a/core/src/commonMain/kotlin/world/phantasmal/core/FastCast.kt b/core/src/commonMain/kotlin/world/phantasmal/core/FastCast.kt new file mode 100644 index 00000000..1b813a5e --- /dev/null +++ b/core/src/commonMain/kotlin/world/phantasmal/core/FastCast.kt @@ -0,0 +1,3 @@ +package world.phantasmal.core + +expect fun Any?.fastCast(): T diff --git a/core/src/commonMain/kotlin/world/phantasmal/core/PwResult.kt b/core/src/commonMain/kotlin/world/phantasmal/core/PwResult.kt new file mode 100644 index 00000000..8976bf3c --- /dev/null +++ b/core/src/commonMain/kotlin/world/phantasmal/core/PwResult.kt @@ -0,0 +1,73 @@ +package world.phantasmal.core + +import mu.KLogger + +sealed class PwResult(val problems: List) { + fun unwrap(): T = when (this) { + is Success -> value + is Failure -> error(problems.joinToString("\n") { "[${it.severity}] ${it.uiMessage}" }) + } + + companion object { + fun build(logger: KLogger): PwResultBuilder = + PwResultBuilder(logger) + } +} + +class Success(val value: T, problems: List) : PwResult(problems) + +class Failure(problems: List) : PwResult(problems) + +class Problem( + val severity: Severity, + /** + * Readable message meant for users. + */ + val uiMessage: String, +) + +enum class Severity { + Info, + Warning, + Error, +} + +/** + * Useful for building up a [PwResult] and logging problems at the same time. + */ +class PwResultBuilder(private val logger: KLogger) { + private val problems: MutableList = mutableListOf() + + /** + * Add a problem to the problems list and log it with [logger]. + */ + fun addProblem( + severity: Severity, + uiMessage: String, + message: String? = null, + cause: Throwable? = null, + ): PwResultBuilder { + when (severity) { + Severity.Info -> logger.info(cause) { message ?: uiMessage } + Severity.Warning -> logger.warn(cause) { message ?: uiMessage } + Severity.Error -> logger.error(cause) { message ?: uiMessage } + } + + problems.add(Problem(severity, uiMessage)); + return this; + } + + /** + * Add the given result's problems. + */ + fun addResult(result: PwResult<*>): PwResultBuilder { + problems.addAll(result.problems) + return this; + } + + fun success(value: T): Success = + Success(value, problems) + + fun failure(): Failure = + Failure(problems) +} diff --git a/core/src/commonMain/kotlin/world/phantasmal/core/disposable/Creation.kt b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/Creation.kt new file mode 100644 index 00000000..b3f34358 --- /dev/null +++ b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/Creation.kt @@ -0,0 +1,3 @@ +package world.phantasmal.core.disposable + +fun disposable(dispose: () -> Unit): Disposable = SimpleDisposable(dispose) diff --git a/core/src/commonMain/kotlin/world/phantasmal/core/disposable/Disposable.kt b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/Disposable.kt new file mode 100644 index 00000000..41fd3867 --- /dev/null +++ b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/Disposable.kt @@ -0,0 +1,27 @@ +package world.phantasmal.core.disposable + +/** + * Objects implementing this interface should be disposed when they're not used anymore. This is to + * avoid resource leaks. + */ +interface Disposable { + /** + * Releases any held resources. + */ + fun dispose() +} + +/** + * Executes the given function on this disposable and then disposes it whether an exception is + * thrown or not. + * + * @param block a function to process this [Disposable] resource. + * @return the result of [block] invoked on this resource. + */ +inline fun D.use(block: (D) -> R): R { + try { + return block(this) + } finally { + dispose() + } +} diff --git a/core/src/commonMain/kotlin/world/phantasmal/core/disposable/DisposableContainer.kt b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/DisposableContainer.kt new file mode 100644 index 00000000..f52f4e9e --- /dev/null +++ b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/DisposableContainer.kt @@ -0,0 +1,23 @@ +package world.phantasmal.core.disposable + +/** + * Abstract utility class for classes that need to keep track of many disposables. + */ +abstract class DisposableContainer : TrackedDisposable() { + private val disposer = Disposer() + + override fun internalDispose() { + disposer.dispose() + } + + protected fun addDisposable(disposable: T): T { + return disposer.add(disposable); + } + + protected fun addDisposables(vararg disposables: Disposable) { + disposer.addAll(*disposables); + } + + protected fun removeDisposable(disposable: Disposable) = + disposer.remove(disposable) +} diff --git a/core/src/commonMain/kotlin/world/phantasmal/core/disposable/Disposer.kt b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/Disposer.kt new file mode 100644 index 00000000..5f8aae86 --- /dev/null +++ b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/Disposer.kt @@ -0,0 +1,80 @@ +package world.phantasmal.core.disposable + +/** + * Container for disposables. Takes ownership of all held disposables and automatically disposes + * them when the Disposer is disposed. + */ +class Disposer : TrackedDisposable() { + private val disposables = mutableListOf() + + /** + * The amount of held disposables. + */ + val size: Int get() = disposables.size + + /** + * Add a single disposable and return the given disposable. + */ + fun add(disposable: T): T { + if (disposed) { + disposable.dispose() + } else { + disposables.add(disposable) + } + + return disposable + } + + /** + * Add 0 or more disposables. + */ + fun addAll(disposables: Iterable) { + if (disposed) { + disposables.forEach { it.dispose() } + } else { + this.disposables.addAll(disposables) + } + } + + /** + * Add 0 or more disposables. + */ + fun addAll(vararg disposables: Disposable) { + if (disposed) { + disposables.forEach { it.dispose() } + } else { + this.disposables.addAll(disposables) + } + } + + fun isEmpty(): Boolean = disposables.isEmpty() + + /** + * Removes and disposes the given [disposable]. + */ + fun remove(disposable: Disposable) { + disposables.remove(disposable) + disposable.dispose() + } + + /** + * Removes and disposes [amount] disposables at the given [index]. + */ + fun removeAt(index: Int, amount: Int = 1) { + repeat(amount) { + disposables.removeAt(index).dispose() + } + } + + /** + * Disposes all held disposables. + */ + fun disposeAll() { + disposables.forEach { it.dispose() } + disposables.clear() + } + + override fun internalDispose() { + disposeAll() + } +} diff --git a/core/src/commonMain/kotlin/world/phantasmal/core/disposable/SimpleDisposable.kt b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/SimpleDisposable.kt new file mode 100644 index 00000000..58b0a4c5 --- /dev/null +++ b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/SimpleDisposable.kt @@ -0,0 +1,8 @@ +package world.phantasmal.core.disposable + +class SimpleDisposable(private val dispose: () -> Unit) : TrackedDisposable() { + override fun internalDispose() { + // Use invoke to avoid calling the dispose method instead of the dispose property. + dispose.invoke() + } +} diff --git a/core/src/commonMain/kotlin/world/phantasmal/core/disposable/TrackedDisposable.kt b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/TrackedDisposable.kt new file mode 100644 index 00000000..833742a5 --- /dev/null +++ b/core/src/commonMain/kotlin/world/phantasmal/core/disposable/TrackedDisposable.kt @@ -0,0 +1,39 @@ +package world.phantasmal.core.disposable + +/** + * A global count is kept of all undisposed instances of this class. + * This count can be used to find memory leaks. + */ +abstract class TrackedDisposable : Disposable { + var disposed = false + private set + + init { + disposableCount++ + } + + final override fun dispose() { + if (!disposed) { + disposed = true + disposableCount-- + internalDispose() + } + } + + protected abstract fun internalDispose() + + companion object { + var disposableCount: Int = 0 + private set + + fun checkNoLeaks(block: () -> Unit) { + val count = disposableCount + + try { + block() + } finally { + check(count == disposableCount) { "TrackedDisposables were leaked." } + } + } + } +} diff --git a/core/src/commonTest/kotlin/world/phantasmal/core/disposable/DisposerTests.kt b/core/src/commonTest/kotlin/world/phantasmal/core/disposable/DisposerTests.kt new file mode 100644 index 00000000..7799b58f --- /dev/null +++ b/core/src/commonTest/kotlin/world/phantasmal/core/disposable/DisposerTests.kt @@ -0,0 +1,133 @@ +package world.phantasmal.core.disposable + +import kotlin.test.Test +import kotlin.test.assertEquals +import kotlin.test.assertFalse +import kotlin.test.assertTrue + +class DisposerTests { + @Test + fun calling_add_or_add_all_should_increase_size_correctly() { + TrackedDisposable.checkNoLeaks { + val disposer = Disposer() + assertEquals(disposer.size, 0) + + disposer.add(dummy()) + assertEquals(disposer.size, 1) + + disposer.addAll(dummy(), dummy()) + assertEquals(disposer.size, 3) + + disposer.add(dummy()) + assertEquals(disposer.size, 4) + + disposer.addAll(dummy(), dummy()) + assertEquals(disposer.size, 6) + + disposer.dispose() + } + } + + @Test + fun a_disposer_should_dispose_all_its_disposables_when_disposed() { + TrackedDisposable.checkNoLeaks { + val disposer = Disposer() + var disposablesDisposed = 0 + + for (i in 1..5) { + disposer.add(object : Disposable { + override fun dispose() { + disposablesDisposed++ + } + }) + } + + disposer.addAll((1..5).map { + object : Disposable { + override fun dispose() { + disposablesDisposed++ + } + } + }) + + disposer.dispose() + + assertEquals(10, disposablesDisposed) + } + } + + @Test + fun dispose_all_should_dispose_all_disposables() { + TrackedDisposable.checkNoLeaks { + val disposer = Disposer() + + var disposablesDisposed = 0 + + for (i in 1..5) { + disposer.add(object : Disposable { + override fun dispose() { + disposablesDisposed++ + } + }) + } + + disposer.disposeAll() + + assertEquals(5, disposablesDisposed) + + disposer.dispose() + } + } + + @Test + fun size_and_is_empty_should_correctly_reflect_the_contained_disposables() { + TrackedDisposable.checkNoLeaks { + val disposer = Disposer() + + assertEquals(disposer.size, 0) + assertTrue(disposer.isEmpty()) + + for (i in 1..5) { + disposer.add(dummy()) + + assertEquals(disposer.size, i) + assertFalse(disposer.isEmpty()) + } + + disposer.dispose() + + assertEquals(disposer.size, 0) + assertTrue(disposer.isEmpty()) + } + } + + @Test + fun a_disposer_should_dispose_added_disposables_after_being_disposed() { + TrackedDisposable.checkNoLeaks { + val disposer = Disposer() + disposer.dispose() + + var disposedCount = 0 + + for (i in 1..3) { + disposer.add(object : Disposable { + override fun dispose() { + disposedCount++ + } + }) + } + + disposer.addAll((1..3).map { + object : Disposable { + override fun dispose() { + disposedCount++ + } + } + }) + + assertEquals(6, disposedCount) + } + } + + private fun dummy(): Disposable = disposable {} +} diff --git a/core/src/commonTest/kotlin/world/phantasmal/core/disposable/TrackedDisposableTests.kt b/core/src/commonTest/kotlin/world/phantasmal/core/disposable/TrackedDisposableTests.kt new file mode 100644 index 00000000..1b01900a --- /dev/null +++ b/core/src/commonTest/kotlin/world/phantasmal/core/disposable/TrackedDisposableTests.kt @@ -0,0 +1,51 @@ +package world.phantasmal.core.disposable + +import kotlin.test.Test +import kotlin.test.assertEquals +import kotlin.test.assertFalse +import kotlin.test.assertTrue + +class TrackedDisposableTests { + @Test + fun count_should_go_up_when_created_and_down_when_disposed() { + val initialCount = TrackedDisposable.disposableCount + + val disposable = object : TrackedDisposable() { + override fun internalDispose() {} + } + + assertEquals(initialCount + 1, TrackedDisposable.disposableCount) + + disposable.dispose() + + assertEquals(initialCount, TrackedDisposable.disposableCount) + } + + @Test + fun double_dispose_should_not_increase_count() { + val initialCount = TrackedDisposable.disposableCount + + val disposable = object : TrackedDisposable() { + override fun internalDispose() {} + } + + for (i in 1..5) { + disposable.dispose() + } + + assertEquals(initialCount, TrackedDisposable.disposableCount) + } + + @Test + fun disposed_property_should_be_set_correctly() { + val disposable = object : TrackedDisposable() { + override fun internalDispose() {} + } + + assertFalse(disposable.disposed) + + disposable.dispose() + + assertTrue(disposable.disposed) + } +} diff --git a/core/src/jsMain/kotlin/world/phantasmal/core/FastCast.kt b/core/src/jsMain/kotlin/world/phantasmal/core/FastCast.kt new file mode 100644 index 00000000..5e5d26b2 --- /dev/null +++ b/core/src/jsMain/kotlin/world/phantasmal/core/FastCast.kt @@ -0,0 +1,3 @@ +package world.phantasmal.core + +actual fun Any?.fastCast(): T = unsafeCast() diff --git a/deploy.ps1 b/deploy.ps1 deleted file mode 100644 index 12f9b7ab..00000000 --- a/deploy.ps1 +++ /dev/null @@ -1,39 +0,0 @@ -# Script for deploying to gh-pages. -# Requires a git ./deployment directory which tracks a gh-pages branch. - -Write-Output "Running tests." -yarn test -if ($LastExitCode -ne 0) { throw "Tests failed." } - -Write-Output "Generating production build." -yarn build -if ($LastExitCode -ne 0) { throw "Build failed." } - -Write-Output "Deleting ./deployment contents." -Remove-Item -Recurse ./deployment/* - -Write-Output "Copying dist to ./deployment." -Copy-Item -Recurse ./dist/* ./deployment -Write-Output "www.phantasmal.world" > deployment/CNAME - -Write-Output "Bumping version." -$version = Get-Content -Path version.txt -$version = $version / 1 + 1 -Write-Output $version > version.txt - -Write-Output "Committing and pushing to gh-pages." -Set-Location ./deployment -git pull -if ($LastExitCode -ne 0) { throw "Git pull failed." } -git add . -if ($LastExitCode -ne 0) { throw "Git add failed." } -git commit -m "Release $version." -if ($LastExitCode -ne 0) { throw "Git commit failed." } -git push -if ($LastExitCode -ne 0) { throw "Git push failed." } - -Set-Location .. - -Write-Output "" -Write-Output "Deployed release $version successfully." -Write-Output "" diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 00000000..5b52f144 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,2 @@ +kotlin.code.style=official +kotlin.mpp.stability.nowarn=true diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..62d4c053550b91381bbd28b1afc82d634bf73a8a GIT binary patch literal 58910 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 literal 0 HcmV?d00001 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000..12d38de6 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 00000000..fbd7c515 --- /dev/null +++ b/gradlew @@ -0,0 +1,185 @@ +#!/usr/bin/env sh + +# +# Copyright 2015 the original author or authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin or MSYS, switch paths to Windows format before running java +if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=`expr $i + 1` + done + case $i in + 0) set -- ;; + 1) set -- "$args0" ;; + 2) set -- "$args0" "$args1" ;; + 3) set -- "$args0" "$args1" "$args2" ;; + 4) set -- "$args0" "$args1" "$args2" "$args3" ;; + 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=`save "$@"` + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 00000000..5093609d --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,104 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/jest.config.js b/jest.config.js deleted file mode 100644 index 0fc6683c..00000000 --- a/jest.config.js +++ /dev/null @@ -1,21 +0,0 @@ -module.exports = { - preset: "ts-jest", - moduleDirectories: ["node_modules"], - setupFiles: ["./test/src/setup.js", "jest-canvas-mock"], - roots: ["./src", "./test"], - modulePathIgnorePatterns: [ - "/node_modules/", - // Ignore prs-rs browser package and only use testing package. - "/src/core/data_formats/compression/prs/pkg", - ], - moduleNameMapper: { - "\\.(css|gif|jpg|png|svg|ttf)$": "/src/__mocks__/static_files.js", - "^monaco-editor$": "/node_modules/monaco-editor/esm/vs/editor/editor.main.js", - "^worker-loader!": "/src/__mocks__/webworkers.js", - }, - globals: { - "ts-jest": { - isolatedModules: true, - }, - }, -}; diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts new file mode 100644 index 00000000..b77b9b23 --- /dev/null +++ b/lib/build.gradle.kts @@ -0,0 +1,41 @@ +plugins { + kotlin("multiplatform") +} + +val kotlinLoggingVersion: String by project.extra + +kotlin { + js { + browser() + } + + sourceSets { + all { + languageSettings.useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes") + } + + commonMain { + dependencies { + api(project(":core")) + api("io.github.microutils:kotlin-logging:$kotlinLoggingVersion") + } + } + + commonTest { + dependencies { + implementation(kotlin("test-common")) + implementation(kotlin("test-annotations-common")) + } + } + + val jsTest by getting { + dependencies { + implementation(kotlin("test-js")) + } + } + } +} + +tasks.register("test") { + dependsOn("allTests") +} diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/cursor/Cursor.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/cursor/Cursor.kt new file mode 100644 index 00000000..577e625d --- /dev/null +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/cursor/Cursor.kt @@ -0,0 +1,122 @@ +package world.phantasmal.lib.cursor + +/** + * A cursor for reading binary data. + */ +interface Cursor { + val size: UInt + + /** + * The position from where bytes will be read or written. + */ + val position: UInt + + /** + * Byte order mode. + */ + var endianness: Endianness + + val bytesLeft: UInt + + /** + * Seek forward or backward by a number of bytes. + * + * @param offset if positive, seeks forward by offset bytes, otherwise seeks backward by -offset bytes. + */ + fun seek(offset: Int): Cursor + + /** + * Seek forward from the start of the cursor by a number of bytes. + * + * @param offset smaller than size + */ + fun seekStart(offset: UInt): Cursor + + /** + * Seek backward from the end of the cursor by a number of bytes. + * + * @param offset smaller than size + */ + fun seekEnd(offset: UInt): Cursor + + /** + * Reads an unsigned 8-bit integer and increments position by 1. + */ + fun u8(): UByte + + /** + * Reads an unsigned 16-bit integer and increments position by 2. + */ + fun u16(): UShort + + /** + * Reads an unsigned 32-bit integer and increments position by 4. + */ + fun u32(): UInt + + /** + * Reads an signed 8-bit integer and increments position by 1. + */ + fun i8(): Byte + + /** + * Reads a signed 16-bit integer and increments position by 2. + */ + fun i16(): Short + + /** + * Reads a signed 32-bit integer and increments position by 4. + */ + fun i32(): Int + + /** + * Reads a 32-bit floating point number and increments position by 4. + */ + fun f32(): Float + + /** + * Reads [n] unsigned 8-bit integers and increments position by [n]. + */ + fun u8Array(n: UInt): UByteArray + + /** + * Reads [n] unsigned 16-bit integers and increments position by 2[n]. + */ + fun u16Array(n: UInt): UShortArray + + /** + * Reads [n] unsigned 32-bit integers and increments position by 4[n]. + */ + fun u32Array(n: UInt): UIntArray + + /** + * Reads [n] signed 32-bit integers and increments position by 4[n]. + */ + fun i32Array(n: UInt): IntArray + + /** + * Consumes a variable number of bytes. + * + * @param size the amount bytes to consume. + * @return a write-through view containing size bytes. + */ + fun take(size: UInt): Cursor + + /** + * Consumes up to [maxByteLength] bytes. + */ + fun stringAscii( + maxByteLength: UInt, + nullTerminated: Boolean, + dropRemaining: Boolean, + ): String + + /** + * Consumes up to [maxByteLength] bytes. + */ + fun stringUtf16( + maxByteLength: UInt, + nullTerminated: Boolean, + dropRemaining: Boolean, + ): String +} diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/cursor/Endianness.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/cursor/Endianness.kt new file mode 100644 index 00000000..534fb36b --- /dev/null +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/cursor/Endianness.kt @@ -0,0 +1,6 @@ +package world.phantasmal.lib.cursor + +enum class Endianness { + Little, + Big +} diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/Iff.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/Iff.kt new file mode 100644 index 00000000..bccf3a05 --- /dev/null +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/Iff.kt @@ -0,0 +1,60 @@ +package world.phantasmal.lib.fileformats + +import mu.KotlinLogging +import world.phantasmal.core.PwResult +import world.phantasmal.core.Severity +import world.phantasmal.lib.cursor.Cursor + +private val logger = KotlinLogging.logger {} + +class IffChunk(val type: UInt, val data: Cursor) + +class IffChunkHeader(val type: UInt, val size: UInt) + +/** + * PSO uses a little endian variant of the IFF format. + * IFF files contain chunks preceded by an 8-byte header. + * The header consists of 4 ASCII characters for the "Type ID" and a 32-bit integer specifying the chunk size. + */ +fun parseIff(cursor: Cursor): PwResult> = + parse(cursor) { chunkCursor, type, size -> IffChunk(type, chunkCursor.take(size)) } + +/** + * Parses just the chunk headers. + */ +fun parseIffHeaders(cursor: Cursor): PwResult> = + parse(cursor) { _, type, size -> IffChunkHeader(type, size) } + +private fun parse( + cursor: Cursor, + getChunk: (Cursor, type: UInt, size: UInt) -> T, +): PwResult> { + val result = PwResult.build>(logger) + val chunks = mutableListOf() + var corrupted = false + + while (cursor.bytesLeft >= 8u) { + val type = cursor.u32() + val sizePos = cursor.position + val size = cursor.u32() + + if (size > cursor.bytesLeft) { + corrupted = true + result.addProblem( + if (chunks.isEmpty()) Severity.Error else Severity.Warning, + "IFF file corrupted.", + "Size $size was too large (only ${cursor.bytesLeft} bytes left) at position $sizePos." + ) + + break + } + + chunks.add(getChunk(cursor, type, size)) + } + + return if (corrupted && chunks.isEmpty()) { + result.failure() + } else { + result.success(chunks) + } +} diff --git a/src/core/data_formats/parsing/quest/properties.ts b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/EntityProp.kt similarity index 64% rename from src/core/data_formats/parsing/quest/properties.ts rename to lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/EntityProp.kt index 1d93b30d..af628c9a 100644 --- a/src/core/data_formats/parsing/quest/properties.ts +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/EntityProp.kt @@ -1,14 +1,16 @@ +package world.phantasmal.lib.fileformats.quest + /** * Represents a configurable property for accessing parts of entity data of which the use is not * fully understood or ambiguous. */ -export type EntityProp = { - readonly name: string; - readonly offset: number; - readonly type: EntityPropType; -}; +class EntityProp( + val name: String, + val offset: Int, + val type: EntityPropType, +) -export enum EntityPropType { +enum class EntityPropType { U8, U16, U32, @@ -16,6 +18,7 @@ export enum EntityPropType { I16, I32, F32, + /** * Signed 32-bit integer that represents an angle. 0x10000 is 360°. */ diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/EntityType.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/EntityType.kt new file mode 100644 index 00000000..2cbde31e --- /dev/null +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/EntityType.kt @@ -0,0 +1,13 @@ +package world.phantasmal.lib.fileformats.quest + +interface EntityType { + /** + * Unique name. E.g. an episode II Delsaber would have (Ep. II) appended to its name. + */ + val uniqueName: String + /** + * Name used in the game. + * Might conflict with other NPC names (e.g. Delsaber from ep. I and ep. II). + */ + val simpleName: String +} diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/Episode.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/Episode.kt new file mode 100644 index 00000000..e80deda8 --- /dev/null +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/Episode.kt @@ -0,0 +1,7 @@ +package world.phantasmal.lib.fileformats.quest + +enum class Episode { + I, + II, + IV, +} diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/NpcType.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/NpcType.kt new file mode 100644 index 00000000..56c3a2a7 --- /dev/null +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileformats/quest/NpcType.kt @@ -0,0 +1,1481 @@ +package world.phantasmal.lib.fileformats.quest + +private val FRIENDLY_NPC_PROPERTIES = listOf( + EntityProp(name = "Movement distance", offset = 44, type = EntityPropType.F32), + EntityProp(name = "Hide register", offset = 52, type = EntityPropType.F32), + EntityProp(name = "Character ID", offset = 56, type = EntityPropType.F32), + EntityProp(name = "Script label", offset = 60, type = EntityPropType.F32), + EntityProp(name = "Movement flag", offset = 64, type = EntityPropType.I32) +) + +enum class NpcType( + override val uniqueName: String, + override val simpleName: String = uniqueName, + val ultimateName: String = simpleName, + val episode: Episode? = null, + val enemy: Boolean = false, + rareType: (() -> NpcType)? = null, + /** + * IDs of the areas this NPC can be found in. + */ + val areaIds: List, + /** + * Type ID used by the game. + */ + val typeId: Int? = null, + /** + * Skin value used by the game. + */ + val skin: Int? = null, + /** + * Boolean specifying whether an NPC is the regular or special variant. + * Sometimes signifies a variant (e.g. Barbarous Wolf), sometimes a rare variant (e.g. Pouilly + * Slime). + */ + val special: Boolean? = null, + /** + * NPC-specific properties. + */ + val properties: List = emptyList(), +) : EntityType { + + // + // Unknown NPCs + // + + Unknown( + uniqueName = "Unknown", + areaIds = listOf(), + ), + + // + // Friendly NPCs + // + + FemaleFat( + uniqueName = "Female Fat", + areaIds = listOf(0), + typeId = 4, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + FemaleMacho( + uniqueName = "Female Macho", + areaIds = listOf(0), + typeId = 5, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + FemaleTall( + uniqueName = "Female Tall", + areaIds = listOf(0), + typeId = 7, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + MaleDwarf( + uniqueName = "Male Dwarf", + areaIds = listOf(0), + typeId = 10, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + MaleFat( + uniqueName = "Male Fat", + areaIds = listOf(0), + typeId = 11, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + MaleMacho( + uniqueName = "Male Macho", + areaIds = listOf(0), + typeId = 12, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + MaleOld( + uniqueName = "Male Old", + areaIds = listOf(0), + typeId = 13, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + BlueSoldier( + uniqueName = "Blue Soldier", + areaIds = listOf(0), + typeId = 25, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + RedSoldier( + uniqueName = "Red Soldier", + areaIds = listOf(0), + typeId = 26, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + Principal( + uniqueName = "Principal", + areaIds = listOf(0), + typeId = 27, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + Tekker( + uniqueName = "Tekker", + areaIds = listOf(0), + typeId = 28, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + GuildLady( + uniqueName = "Guild Lady", + areaIds = listOf(0), + typeId = 29, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + Scientist( + uniqueName = "Scientist", + areaIds = listOf(0), + typeId = 30, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + Nurse( + uniqueName = "Nurse", + areaIds = listOf(0), + typeId = 31, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + Irene( + uniqueName = "Irene", + areaIds = listOf(0), + typeId = 32, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + ItemShop( + uniqueName = "Item Shop", + areaIds = listOf(0), + typeId = 241, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + Nurse2( + uniqueName = "Nurse (Ep. II)", + simpleName = "Nurse", + episode = Episode.II, + areaIds = listOf(0), + typeId = 254, + skin = 0, + special = false, + properties = FRIENDLY_NPC_PROPERTIES, + ), + + // + // Enemy NPCs + // + + // Episode I Forest + + Hildebear( + uniqueName = "Hildebear", + ultimateName = "Hildelt", + episode = Episode.I, + enemy = true, + rareType = { Hildeblue }, + areaIds = listOf(1, 2), + typeId = 64, + skin = 0, + special = false, + ), + Hildeblue( + uniqueName = "Hildeblue", + ultimateName = "Hildetorr", + episode = Episode.I, + enemy = true, + areaIds = listOf(1, 2), + typeId = 64, + skin = 1, + special = false, + ), + RagRappy( + uniqueName = "Rag Rappy", + ultimateName = "El Rappy", + episode = Episode.I, + enemy = true, + rareType = { AlRappy }, + areaIds = listOf(1, 2), + typeId = 65, + skin = 0, + special = false, + ), + AlRappy( + uniqueName = "Al Rappy", + ultimateName = "Pal Rappy", + episode = Episode.I, + enemy = true, + areaIds = listOf(1, 2), + typeId = 65, + skin = 1, + special = false, + ), + Monest( + uniqueName = "Monest", + ultimateName = "Mothvist", + episode = Episode.I, + enemy = true, + areaIds = listOf(1, 2), + typeId = 66, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "State", offset = 44, type = EntityPropType.F32), + EntityProp(name = "Start number", offset = 48, type = EntityPropType.F32), + EntityProp(name = "Total number", offset = 52, type = EntityPropType.F32) + ), + ), + Mothmant( + uniqueName = "Mothmant", + ultimateName = "Mothvert", + episode = Episode.I, + enemy = true, + areaIds = listOf(), + ), + SavageWolf( + uniqueName = "Savage Wolf", + ultimateName = "Gulgus", + episode = Episode.I, + enemy = true, + areaIds = listOf(1, 2), + typeId = 67, + skin = 0, + special = false, + properties = listOf(EntityProp(name = "Group ID", offset = 44, type = EntityPropType.F32)), + ), + BarbarousWolf( + uniqueName = "Barbarous Wolf", + ultimateName = "Gulgus-Gue", + episode = Episode.I, + enemy = true, + areaIds = listOf(1, 2), + typeId = 67, + skin = 0, + special = true, + properties = listOf(EntityProp(name = "Group ID", offset = 44, type = EntityPropType.F32)), + ), + Booma( + uniqueName = "Booma", + ultimateName = "Bartle", + episode = Episode.I, + enemy = true, + areaIds = listOf(1, 2), + typeId = 68, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + Gobooma( + uniqueName = "Gobooma", + ultimateName = "Barble", + episode = Episode.I, + enemy = true, + areaIds = listOf(1, 2), + typeId = 68, + skin = 1, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + Gigobooma( + uniqueName = "Gigobooma", + ultimateName = "Tollaw", + episode = Episode.I, + enemy = true, + areaIds = listOf(1, 2), + typeId = 68, + skin = 2, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + Dragon( + uniqueName = "Dragon", + ultimateName = "Sil Dragon", + episode = Episode.I, + enemy = true, + areaIds = listOf(11), + typeId = 192, + skin = 0, + special = false, + ), + + // Episode I Caves + + GrassAssassin( + uniqueName = "Grass Assassin", + ultimateName = "Crimson Assassin", + episode = Episode.I, + enemy = true, + areaIds = listOf(3, 4, 5), + typeId = 96, + skin = 0, + special = false, + ), + PoisonLily( + uniqueName = "Poison Lily", + ultimateName = "Ob Lily", + episode = Episode.I, + enemy = true, + rareType = { NarLily }, + areaIds = listOf(3, 4, 5), + typeId = 97, + skin = 0, + special = false, + ), + NarLily( + uniqueName = "Nar Lily", + ultimateName = "Mil Lily", + episode = Episode.I, + enemy = true, + areaIds = listOf(3, 4, 5), + typeId = 97, + skin = 1, + special = true, + ), + NanoDragon( + uniqueName = "Nano Dragon", + episode = Episode.I, + enemy = true, + areaIds = listOf(3, 4, 5), + typeId = 98, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "Spawn flag", offset = 64, type = EntityPropType.I32) + ), + ), + EvilShark( + uniqueName = "Evil Shark", + ultimateName = "Vulmer", + episode = Episode.I, + enemy = true, + areaIds = listOf(3, 4, 5), + typeId = 99, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + PalShark( + uniqueName = "Pal Shark", + ultimateName = "Govulmer", + episode = Episode.I, + enemy = true, + areaIds = listOf(3, 4, 5), + typeId = 99, + skin = 1, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + GuilShark( + uniqueName = "Guil Shark", + ultimateName = "Melqueek", + episode = Episode.I, + enemy = true, + areaIds = listOf(3, 4, 5), + typeId = 99, + skin = 2, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + PofuillySlime( + uniqueName = "Pofuilly Slime", + episode = Episode.I, + enemy = true, + rareType = { PouillySlime }, + areaIds = listOf(3, 4, 5), + typeId = 100, + skin = 0, + special = false, + ), + PouillySlime( + uniqueName = "Pouilly Slime", + episode = Episode.I, + enemy = true, + areaIds = listOf(3, 4, 5), + typeId = 100, + skin = 0, + special = true, + ), + PanArms( + uniqueName = "Pan Arms", + episode = Episode.I, + enemy = true, + areaIds = listOf(3, 4, 5), + typeId = 101, + skin = 0, + special = false, + ), + Migium( + uniqueName = "Migium", + episode = Episode.I, + enemy = true, + areaIds = listOf(), + ), + Hidoom( + uniqueName = "Hidoom", + episode = Episode.I, + enemy = true, + areaIds = listOf(), + ), + DeRolLe( + uniqueName = "De Rol Le", + ultimateName = "Dal Ra Lie", + episode = Episode.I, + enemy = true, + areaIds = listOf(12), + typeId = 193, + skin = 0, + special = false, + ), + + // Episode I Mines + + Dubchic( + uniqueName = "Dubchic", + ultimateName = "Dubchich", + episode = Episode.I, + enemy = true, + areaIds = listOf(6, 7), + typeId = 128, + skin = 0, + special = false, + ), + Gilchic( + uniqueName = "Gilchic", + ultimateName = "Gilchich", + episode = Episode.I, + enemy = true, + areaIds = listOf(6, 7), + typeId = 128, + skin = 1, + special = false, + ), + Garanz( + uniqueName = "Garanz", + ultimateName = "Baranz", + episode = Episode.I, + enemy = true, + areaIds = listOf(6, 7), + typeId = 129, + skin = 0, + special = false, + ), + SinowBeat( + uniqueName = "Sinow Beat", + ultimateName = "Sinow Blue", + episode = Episode.I, + enemy = true, + areaIds = listOf(6, 7), + typeId = 130, + skin = 0, + special = false, + ), + SinowGold( + uniqueName = "Sinow Gold", + ultimateName = "Sinow Red", + episode = Episode.I, + enemy = true, + areaIds = listOf(6, 7), + typeId = 130, + skin = 0, + special = true, + ), + Canadine( + uniqueName = "Canadine", + ultimateName = "Canabin", + episode = Episode.I, + enemy = true, + areaIds = listOf(6, 7), + typeId = 131, + skin = 0, + special = false, + ), + Canane( + uniqueName = "Canane", + ultimateName = "Canune", + episode = Episode.I, + enemy = true, + areaIds = listOf(6, 7), + typeId = 132, + skin = 0, + special = false, + ), + Dubswitch( + uniqueName = "Dubswitch", + episode = Episode.I, + enemy = true, + areaIds = listOf(6, 7), + typeId = 133, + skin = 0, + special = false, + ), + VolOptPart1( + uniqueName = "Vol Opt (Part 1)", + simpleName = "Vol Opt", + ultimateName = "Vol Opt ver.2", + episode = Episode.I, + enemy = true, + areaIds = listOf(13), + typeId = 194, + skin = 0, + special = false, + ), + VolOptPart2( + uniqueName = "Vol Opt (Part 2)", + simpleName = "Vol Opt", + ultimateName = "Vol Opt ver.2", + episode = Episode.I, + enemy = true, + areaIds = listOf(13), + typeId = 197, + skin = 0, + special = false, + ), + + // Episode I Ruins + + Delsaber( + uniqueName = "Delsaber", + episode = Episode.I, + enemy = true, + areaIds = listOf(8, 9, 10), + typeId = 160, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "Jump distance", offset = 44, type = EntityPropType.F32), + EntityProp(name = "Block HP", offset = 48, type = EntityPropType.F32) + ), + ), + ChaosSorcerer( + uniqueName = "Chaos Sorcerer", + ultimateName = "Gran Sorcerer", + episode = Episode.I, + enemy = true, + areaIds = listOf(8, 9, 10), + typeId = 161, + skin = 0, + special = false, + ), + DarkGunner( + uniqueName = "Dark Gunner", + episode = Episode.I, + enemy = true, + areaIds = listOf(8, 9, 10), + typeId = 162, + skin = 0, + special = false, + ), + DeathGunner( + uniqueName = "Death Gunner", + episode = Episode.I, + enemy = true, + areaIds = listOf(), + ), + ChaosBringer( + uniqueName = "Chaos Bringer", + ultimateName = "Dark Bringer", + episode = Episode.I, + enemy = true, + areaIds = listOf(8, 9, 10), + typeId = 164, + skin = 0, + special = false, + ), + DarkBelra( + uniqueName = "Dark Belra", + ultimateName = "Indi Belra", + episode = Episode.I, + enemy = true, + areaIds = listOf(8, 9, 10), + typeId = 165, + skin = 0, + special = false, + ), + Dimenian( + uniqueName = "Dimenian", + ultimateName = "Arlan", + episode = Episode.I, + enemy = true, + areaIds = listOf(8, 9, 10), + typeId = 166, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + LaDimenian( + uniqueName = "La Dimenian", + ultimateName = "Merlan", + episode = Episode.I, + enemy = true, + areaIds = listOf(8, 9, 10), + typeId = 166, + skin = 1, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + SoDimenian( + uniqueName = "So Dimenian", + ultimateName = "Del-D", + episode = Episode.I, + enemy = true, + areaIds = listOf(8, 9, 10), + typeId = 166, + skin = 2, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + Bulclaw( + uniqueName = "Bulclaw", + episode = Episode.I, + enemy = true, + areaIds = listOf(8, 9, 10), + typeId = 167, + skin = 0, + special = false, + ), + Bulk( + uniqueName = "Bulk", + episode = Episode.I, + enemy = true, + areaIds = listOf(), + ), + Claw( + uniqueName = "Claw", + episode = Episode.I, + enemy = true, + areaIds = listOf(8, 9, 10), + typeId = 168, + skin = 0, + special = false, + ), + DarkFalz( + uniqueName = "Dark Falz", + episode = Episode.I, + enemy = true, + areaIds = listOf(14), + typeId = 200, + skin = 0, + special = false, + ), + + // Episode II VR Temple + + Hildebear2( + uniqueName = "Hildebear (Ep. II)", + simpleName = "Hildebear", + ultimateName = "Hildelt", + episode = Episode.II, + enemy = true, + rareType = { Hildeblue2 }, + areaIds = listOf(1, 2), + typeId = 64, + skin = 0, + special = false, + ), + Hildeblue2( + uniqueName = "Hildeblue (Ep. II)", + simpleName = "Hildeblue", + ultimateName = "Hildetorr", + episode = Episode.II, + enemy = true, + areaIds = listOf(1, 2), + typeId = 64, + skin = 1, + special = false, + ), + RagRappy2( + uniqueName = "Rag Rappy (Ep. II)", + simpleName = "Rag Rappy", + ultimateName = "El Rappy", + episode = Episode.II, + enemy = true, + rareType = { LoveRappy }, + areaIds = listOf(1, 2), + typeId = 65, + skin = 0, + special = false, + ), + LoveRappy( + uniqueName = "Love Rappy", + episode = Episode.II, + enemy = true, + areaIds = listOf(1, 2), + typeId = 65, + skin = 1, + special = false, + ), + StRappy( + uniqueName = "St. Rappy", + episode = Episode.II, + enemy = true, + areaIds = listOf(), + ), + HalloRappy( + uniqueName = "Hallo Rappy", + episode = Episode.II, + enemy = true, + areaIds = listOf(), + ), + EggRappy( + uniqueName = "Egg Rappy", + episode = Episode.II, + enemy = true, + areaIds = listOf(), + ), + Monest2( + uniqueName = "Monest (Ep. II)", + simpleName = "Monest", + ultimateName = "Mothvist", + episode = Episode.II, + enemy = true, + areaIds = listOf(1, 2), + typeId = 66, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "State", offset = 44, type = EntityPropType.F32), + EntityProp(name = "Start number", offset = 48, type = EntityPropType.F32), + EntityProp(name = "Total number", offset = 52, type = EntityPropType.F32) + ), + ), + Mothmant2( + uniqueName = "Mothmant", + ultimateName = "Mothvert", + episode = Episode.II, + enemy = true, + areaIds = listOf(), + ), + PoisonLily2( + uniqueName = "Poison Lily (Ep. II)", + simpleName = "Poison Lily", + ultimateName = "Ob Lily", + episode = Episode.II, + enemy = true, + rareType = { NarLily2 }, + areaIds = listOf(1, 2), + typeId = 97, + skin = 0, + special = false, + ), + NarLily2( + uniqueName = "Nar Lily (Ep. II)", + simpleName = "Nar Lily", + ultimateName = "Mil Lily", + episode = Episode.II, + enemy = true, + areaIds = listOf(1, 2), + typeId = 97, + skin = 1, + special = false, + ), + GrassAssassin2( + uniqueName = "Grass Assassin (Ep. II)", + simpleName = "Grass Assassin", + ultimateName = "Crimson Assassin", + episode = Episode.II, + enemy = true, + areaIds = listOf(1, 2), + typeId = 96, + skin = 0, + special = false, + ), + Dimenian2( + uniqueName = "Dimenian (Ep. II)", + simpleName = "Dimenian", + ultimateName = "Arlan", + episode = Episode.II, + enemy = true, + areaIds = listOf(1, 2), + typeId = 166, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + LaDimenian2( + uniqueName = "La Dimenian (Ep. II)", + simpleName = "La Dimenian", + ultimateName = "Merlan", + episode = Episode.II, + enemy = true, + areaIds = listOf(1, 2), + typeId = 166, + skin = 1, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + SoDimenian2( + uniqueName = "So Dimenian (Ep. II)", + simpleName = "So Dimenian", + ultimateName = "Del-D", + episode = Episode.II, + enemy = true, + areaIds = listOf(1, 2), + typeId = 166, + skin = 2, + special = false, + properties = listOf( + EntityProp(name = "Idle distance", offset = 48, type = EntityPropType.F32) + ), + ), + DarkBelra2( + uniqueName = "Dark Belra (Ep. II)", + simpleName = "Dark Belra", + ultimateName = "Indi Belra", + episode = Episode.II, + enemy = true, + areaIds = listOf(1, 2), + typeId = 165, + skin = 0, + special = false, + ), + BarbaRay( + uniqueName = "Barba Ray", + episode = Episode.II, + enemy = true, + areaIds = listOf(14), + typeId = 203, + skin = 0, + special = false, + ), + + // Episode II VR Spaceship + + SavageWolf2( + uniqueName = "Savage Wolf (Ep. II)", + simpleName = "Savage Wolf", + ultimateName = "Gulgus", + episode = Episode.II, + enemy = true, + areaIds = listOf(3, 4), + typeId = 67, + skin = 0, + special = false, + properties = listOf(EntityProp(name = "Group ID", offset = 44, type = EntityPropType.F32)), + ), + BarbarousWolf2( + uniqueName = "Barbarous Wolf (Ep. II)", + simpleName = "Barbarous Wolf", + ultimateName = "Gulgus-Gue", + episode = Episode.II, + enemy = true, + areaIds = listOf(3, 4), + typeId = 67, + skin = 0, + special = true, + properties = listOf(EntityProp(name = "Group ID", offset = 44, type = EntityPropType.F32)), + ), + PanArms2( + uniqueName = "Pan Arms (Ep. II)", + simpleName = "Pan Arms", + episode = Episode.II, + enemy = true, + areaIds = listOf(3, 4), + typeId = 101, + skin = 0, + special = false, + ), + Migium2( + uniqueName = "Migium (Ep. II)", + simpleName = "Migium", + episode = Episode.II, + enemy = true, + areaIds = listOf(), + ), + Hidoom2( + uniqueName = "Hidoom (Ep. II)", + simpleName = "Hidoom", + episode = Episode.II, + enemy = true, + areaIds = listOf(), + ), + Dubchic2( + uniqueName = "Dubchic (Ep. II)", + simpleName = "Dubchic", + ultimateName = "Dubchich", + episode = Episode.II, + enemy = true, + areaIds = listOf(3, 4), + typeId = 128, + skin = 0, + special = false, + ), + Gilchic2( + uniqueName = "Gilchic (Ep. II)", + simpleName = "Gilchic", + ultimateName = "Gilchich", + episode = Episode.II, + enemy = true, + areaIds = listOf(3, 4), + typeId = 128, + skin = 1, + special = false, + ), + Garanz2( + uniqueName = "Garanz (Ep. II)", + simpleName = "Garanz", + ultimateName = "Baranz", + episode = Episode.II, + enemy = true, + areaIds = listOf(3, 4), + typeId = 129, + skin = 0, + special = false, + ), + Dubswitch2( + uniqueName = "Dubswitch (Ep. II)", + simpleName = "Dubswitch", + episode = Episode.II, + enemy = true, + areaIds = listOf(3, 4), + typeId = 133, + skin = 0, + special = false, + ), + Delsaber2( + uniqueName = "Delsaber (Ep. II)", + simpleName = "Delsaber", + episode = Episode.II, + enemy = true, + areaIds = listOf(3, 4), + typeId = 160, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "Jump distance", offset = 44, type = EntityPropType.F32), + EntityProp(name = "Block HP", offset = 48, type = EntityPropType.F32) + ), + ), + ChaosSorcerer2( + uniqueName = "Chaos Sorcerer (Ep. II)", + simpleName = "Chaos Sorcerer", + ultimateName = "Gran Sorcerer", + episode = Episode.II, + enemy = true, + areaIds = listOf(3, 4), + typeId = 161, + skin = 0, + special = false, + ), + GolDragon( + uniqueName = "Gol Dragon", + episode = Episode.II, + enemy = true, + areaIds = listOf(15), + typeId = 204, + skin = 0, + special = false, + ), + + // Episode II Central Control Area + + SinowBerill( + uniqueName = "Sinow Berill", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16), + typeId = 212, + skin = 0, + special = false, + ), + SinowSpigell( + uniqueName = "Sinow Spigell", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16), + typeId = 212, + skin = 1, + special = false, + ), + Merillia( + uniqueName = "Merillia", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16), + typeId = 213, + skin = 0, + special = false, + ), + Meriltas( + uniqueName = "Meriltas", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16), + typeId = 213, + skin = 1, + special = false, + ), + Mericarol( + uniqueName = "Mericarol", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16, 17), + typeId = 214, + skin = 0, + special = false, + ), + Mericus( + uniqueName = "Mericus", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16, 17), + typeId = 214, + skin = 1, + special = false, + ), + Merikle( + uniqueName = "Merikle", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16, 17), + typeId = 214, + skin = 2, + special = false, + ), + UlGibbon( + uniqueName = "Ul Gibbon", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16), + typeId = 215, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "Spot appear", offset = 44, type = EntityPropType.F32), + EntityProp(name = "Jump appear", offset = 48, type = EntityPropType.F32), + EntityProp(name = "Back jump", offset = 52, type = EntityPropType.F32), + EntityProp(name = "Run tech", offset = 56, type = EntityPropType.F32), + EntityProp(name = "Back tech", offset = 60, type = EntityPropType.F32) + ), + ), + ZolGibbon( + uniqueName = "Zol Gibbon", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16), + typeId = 215, + skin = 1, + special = false, + properties = listOf( + EntityProp(name = "Spot appear", offset = 44, type = EntityPropType.F32), + EntityProp(name = "Jump appear", offset = 48, type = EntityPropType.F32), + EntityProp(name = "Back jump", offset = 52, type = EntityPropType.F32), + EntityProp(name = "Run tech", offset = 56, type = EntityPropType.F32), + EntityProp(name = "Back tech", offset = 60, type = EntityPropType.F32) + ), + ), + Gibbles( + uniqueName = "Gibbles", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16, 17), + typeId = 216, + skin = 0, + special = false, + ), + Gee( + uniqueName = "Gee", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16), + typeId = 217, + skin = 0, + special = false, + ), + GiGue( + uniqueName = "Gi Gue", + episode = Episode.II, + enemy = true, + areaIds = listOf(5, 6, 7, 8, 9, 16, 17), + typeId = 218, + skin = 0, + special = false, + ), + IllGill( + uniqueName = "Ill Gill", + episode = Episode.II, + enemy = true, + areaIds = listOf(17), + typeId = 225, + skin = 0, + special = false, + ), + DelLily( + uniqueName = "Del Lily", + episode = Episode.II, + enemy = true, + areaIds = listOf(17), + typeId = 97, + skin = 0, + special = false, + ), + Epsilon( + uniqueName = "Epsilon", + episode = Episode.II, + enemy = true, + areaIds = listOf(17), + typeId = 224, + skin = 0, + special = false, + ), + GalGryphon( + uniqueName = "Gal Gryphon", + episode = Episode.II, + enemy = true, + areaIds = listOf(12), + typeId = 192, + skin = 0, + special = false, + ), + + // Episode II Seabed + + Deldepth( + uniqueName = "Deldepth", + episode = Episode.II, + enemy = true, + areaIds = listOf(10, 11), + typeId = 219, + skin = 0, + special = false, + ), + Delbiter( + uniqueName = "Delbiter", + episode = Episode.II, + enemy = true, + areaIds = listOf(10, 11, 17), + typeId = 220, + skin = 0, + special = false, + properties = listOf( + EntityProp(name = "Howl percent", offset = 44, type = EntityPropType.F32), + EntityProp(name = "Confuse percent", offset = 48, type = EntityPropType.F32), + EntityProp(name = "Confuse distance", offset = 52, type = EntityPropType.F32), + EntityProp(name = "Laser percent", offset = 56, type = EntityPropType.F32), + EntityProp(name = "Charge percent", offset = 60, type = EntityPropType.F32), + EntityProp(name = "Type", offset = 64, type = EntityPropType.I32) + ), + ), + Dolmolm( + uniqueName = "Dolmolm", + episode = Episode.II, + enemy = true, + areaIds = listOf(10, 11), + typeId = 221, + skin = 0, + special = false, + ), + Dolmdarl( + uniqueName = "Dolmdarl", + episode = Episode.II, + enemy = true, + areaIds = listOf(10, 11), + typeId = 221, + skin = 1, + special = false, + ), + Morfos( + uniqueName = "Morfos", + episode = Episode.II, + enemy = true, + areaIds = listOf(10, 11), + typeId = 222, + skin = 0, + special = false, + ), + Recobox( + uniqueName = "Recobox", + episode = Episode.II, + enemy = true, + areaIds = listOf(10, 11, 17), + typeId = 223, + skin = 0, + special = false, + ), + Recon( + uniqueName = "Recon", + episode = Episode.II, + enemy = true, + areaIds = listOf(), + ), + SinowZoa( + uniqueName = "Sinow Zoa", + episode = Episode.II, + enemy = true, + areaIds = listOf(10, 11), + typeId = 224, + skin = 0, + special = false, + ), + SinowZele( + uniqueName = "Sinow Zele", + episode = Episode.II, + enemy = true, + areaIds = listOf(10, 11), + typeId = 224, + skin = 1, + special = false, + ), + OlgaFlow( + uniqueName = "Olga Flow", + episode = Episode.II, + enemy = true, + areaIds = listOf(13), + typeId = 202, + skin = 0, + special = false, + ), + + // Episode IV + + SandRappy( + uniqueName = "Sand Rappy", + episode = Episode.IV, + enemy = true, + rareType = { DelRappy }, + areaIds = listOf(1, 2, 3, 4, 5, 6, 7, 8), + typeId = 65, + skin = 0, + special = false, + ), + DelRappy( + uniqueName = "Del Rappy", + episode = Episode.IV, + enemy = true, + areaIds = listOf(1, 2, 3, 4, 5, 6, 7, 8), + typeId = 65, + skin = 1, + special = false, + ), + Astark( + uniqueName = "Astark", + episode = Episode.IV, + enemy = true, + areaIds = listOf(1, 2, 3, 4, 5, 6, 7, 8), + typeId = 272, + skin = 0, + special = false, + ), + SatelliteLizard( + uniqueName = "Satellite Lizard", + episode = Episode.IV, + enemy = true, + areaIds = listOf(1, 2, 3, 4, 5, 6, 7, 8), + typeId = 273, + skin = 0, + special = false, + ), + Yowie( + uniqueName = "Yowie", + episode = Episode.IV, + enemy = true, + areaIds = listOf(1, 2, 3, 4, 5, 6, 7, 8), + typeId = 273, + skin = 0, + special = true, + ), + MerissaA( + uniqueName = "Merissa A", + episode = Episode.IV, + enemy = true, + rareType = { MerissaAA }, + areaIds = listOf(6, 7, 8), + typeId = 274, + skin = 0, + special = false, + ), + MerissaAA( + uniqueName = "Merissa AA", + episode = Episode.IV, + enemy = true, + areaIds = listOf(6, 7, 8), + typeId = 274, + skin = 1, + special = false, + ), + Girtablulu( + uniqueName = "Girtablulu", + episode = Episode.IV, + enemy = true, + areaIds = listOf(6, 7, 8), + typeId = 275, + skin = 0, + special = false, + ), + Zu( + uniqueName = "Zu", + episode = Episode.IV, + enemy = true, + rareType = { Pazuzu }, + areaIds = listOf(1, 2, 3, 4, 5, 6, 7, 8), + typeId = 276, + skin = 0, + special = false, + ), + Pazuzu( + uniqueName = "Pazuzu", + episode = Episode.IV, + enemy = true, + areaIds = listOf(1, 2, 3, 4, 5, 6, 7, 8), + typeId = 276, + skin = 1, + special = false, + ), + Boota( + uniqueName = "Boota", + episode = Episode.IV, + enemy = true, + areaIds = listOf(1, 2, 3, 4, 5), + typeId = 277, + skin = 0, + special = false, + ), + ZeBoota( + uniqueName = "Ze Boota", + episode = Episode.IV, + enemy = true, + areaIds = listOf(1, 2, 3, 4, 5), + typeId = 277, + skin = 1, + special = false, + ), + BaBoota( + uniqueName = "Ba Boota", + episode = Episode.IV, + enemy = true, + areaIds = listOf(1, 2, 3, 4, 5), + typeId = 277, + skin = 2, + special = false, + ), + Dorphon( + uniqueName = "Dorphon", + episode = Episode.IV, + enemy = true, + rareType = { DorphonEclair }, + areaIds = listOf(1, 2, 3, 4, 5), + typeId = 278, + skin = 0, + special = false, + ), + DorphonEclair( + uniqueName = "Dorphon Eclair", + episode = Episode.IV, + enemy = true, + areaIds = listOf(1, 2, 3, 4, 5), + typeId = 278, + skin = 1, + special = false, + ), + Goran( + uniqueName = "Goran", + episode = Episode.IV, + enemy = true, + areaIds = listOf(6, 7, 8), + typeId = 279, + skin = 0, + special = false, + ), + PyroGoran( + uniqueName = "Pyro Goran", + episode = Episode.IV, + enemy = true, + areaIds = listOf(6, 7, 8), + typeId = 279, + skin = 1, + special = false, + ), + GoranDetonator( + uniqueName = "Goran Detonator", + episode = Episode.IV, + enemy = true, + areaIds = listOf(6, 7, 8), + typeId = 279, + skin = 2, + special = false, + ), + SaintMilion( + uniqueName = "Saint-Milion", + episode = Episode.IV, + enemy = true, + rareType = { Kondrieu }, + areaIds = listOf(9), + typeId = 281, + skin = 0, + special = false, + ), + Shambertin( + uniqueName = "Shambertin", + episode = Episode.IV, + enemy = true, + rareType = { Kondrieu }, + areaIds = listOf(9), + typeId = 281, + skin = 1, + special = false, + ), + Kondrieu( + uniqueName = "Kondrieu", + episode = Episode.IV, + enemy = true, + areaIds = listOf(9), + typeId = 281, + skin = 0, + special = true, + ); + + /** + * The type of this NPC's rare variant if it has one. + */ + val rareType: NpcType? by lazy { rareType?.invoke() } +} diff --git a/observable/build.gradle.kts b/observable/build.gradle.kts new file mode 100644 index 00000000..f9e84520 --- /dev/null +++ b/observable/build.gradle.kts @@ -0,0 +1,30 @@ +plugins { + kotlin("multiplatform") +} + +kotlin { + js { + browser {} + } + + sourceSets { + commonMain { + dependencies { + implementation(project(":core")) + } + } + + commonTest { + dependencies { + implementation(kotlin("test-common")) + implementation(kotlin("test-annotations-common")) + } + } + + val jsTest by getting { + dependencies { + implementation(kotlin("test-js")) + } + } + } +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/Emitter.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/Emitter.kt new file mode 100644 index 00000000..7966fd47 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/Emitter.kt @@ -0,0 +1,5 @@ +package world.phantasmal.observable + +interface Emitter : Observable { + fun emit(event: ChangeEvent) +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/Observable.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/Observable.kt new file mode 100644 index 00000000..5965b601 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/Observable.kt @@ -0,0 +1,7 @@ +package world.phantasmal.observable + +import world.phantasmal.core.disposable.Disposable + +interface Observable { + fun observe(observer: Observer): Disposable +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/Observer.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/Observer.kt new file mode 100644 index 00000000..0c7c71bd --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/Observer.kt @@ -0,0 +1,7 @@ +package world.phantasmal.observable + +open class ChangeEvent(val value: T) { + operator fun component1() = value +} + +typealias Observer = (event: ChangeEvent) -> Unit diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/SimpleEmitter.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/SimpleEmitter.kt new file mode 100644 index 00000000..7dd9fb30 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/SimpleEmitter.kt @@ -0,0 +1,20 @@ +package world.phantasmal.observable + +import world.phantasmal.core.disposable.Disposable +import world.phantasmal.core.disposable.disposable + +class SimpleEmitter : Emitter { + private val observers = mutableListOf>() + + override fun observe(observer: Observer): Disposable { + observers.add(observer) + + return disposable { + observers.remove(observer) + } + } + + override fun emit(event: ChangeEvent) { + observers.forEach { it(event) } + } +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/AbstractVal.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/AbstractVal.kt new file mode 100644 index 00000000..69a7e4a6 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/AbstractVal.kt @@ -0,0 +1,29 @@ +package world.phantasmal.observable.value + +import world.phantasmal.core.disposable.Disposable +import world.phantasmal.core.disposable.disposable +import world.phantasmal.observable.Observer + +abstract class AbstractVal : Val { + protected val observers: MutableList> = mutableListOf() + + final override fun observe(observer: Observer): Disposable = + observe(callNow = false, observer) + + override fun observe(callNow: Boolean, observer: ValObserver): Disposable { + observers.add(observer) + + if (callNow) { + observer(ValChangeEvent(value, value)) + } + + return disposable { + observers.remove(observer) + } + } + + protected fun emit(oldValue: T) { + val event = ValChangeEvent(value, oldValue) + observers.forEach { it(event) } + } +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/DelegatingVal.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/DelegatingVal.kt new file mode 100644 index 00000000..8ccb1dc9 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/DelegatingVal.kt @@ -0,0 +1,17 @@ +package world.phantasmal.observable.value + +class DelegatingVal( + private val getter: () -> T, + private val setter: (T) -> Unit, +) : AbstractVal(), MutableVal { + override var value: T + get() = getter() + set(value) { + val oldValue = getter() + + if (value != oldValue) { + setter(value) + emit(oldValue) + } + } +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/DependentVal.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/DependentVal.kt new file mode 100644 index 00000000..ec7791c7 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/DependentVal.kt @@ -0,0 +1,47 @@ +package world.phantasmal.observable.value + +import world.phantasmal.core.disposable.Disposable +import world.phantasmal.core.disposable.disposable +import world.phantasmal.core.fastCast + +class DependentVal( + private val dependencies: Iterable>, + private val operation: () -> T, +) : AbstractVal() { + private var dependencyDisposables: MutableList = mutableListOf() + private var internalValue: T? = null + + override val value: T + get() { + return if (dependencyDisposables.isEmpty()) { + operation() + } else { + internalValue.fastCast() + } + } + + override fun observe(callNow: Boolean, observer: ValObserver): Disposable { + if (dependencyDisposables.isEmpty()) { + internalValue = operation() + + dependencyDisposables.addAll(dependencies.map { dependency -> + dependency.observe { + val oldValue = internalValue + internalValue = operation() + emit(oldValue.fastCast()) + } + }) + } + + val superDisposable = super.observe(callNow, observer) + + return disposable { + superDisposable.dispose() + + if (observers.isEmpty()) { + dependencyDisposables.forEach { it.dispose() } + dependencyDisposables.clear() + } + } + } +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/MutableVal.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/MutableVal.kt new file mode 100644 index 00000000..3d1b774c --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/MutableVal.kt @@ -0,0 +1,11 @@ +package world.phantasmal.observable.value + +import kotlin.reflect.KProperty + +interface MutableVal : Val { + override var value: T + + operator fun setValue(thisRef: Any?, property: KProperty<*>, value: T) { + this.value = value + } +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/SimpleVal.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/SimpleVal.kt new file mode 100644 index 00000000..5cda0466 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/SimpleVal.kt @@ -0,0 +1,12 @@ +package world.phantasmal.observable.value + +class SimpleVal(value: T) : AbstractVal(), MutableVal { + override var value: T = value + set(value) { + if (value != field) { + val oldValue = field + field = value + emit(oldValue) + } + } +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/StaticVal.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/StaticVal.kt new file mode 100644 index 00000000..5b878b94 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/StaticVal.kt @@ -0,0 +1,22 @@ +package world.phantasmal.observable.value + +import world.phantasmal.core.disposable.Disposable +import world.phantasmal.observable.Observer + +class StaticVal(override val value: T) : Val { + override fun observe(callNow: Boolean, observer: ValObserver): Disposable { + if (callNow) { + observer(ValChangeEvent(value, value)) + } + + return StaticValDisposable + } + + override fun observe(observer: Observer): Disposable = StaticValDisposable + + private object StaticValDisposable : Disposable { + override fun dispose() { + // Do nothing. + } + } +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/Val.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/Val.kt new file mode 100644 index 00000000..6f5dab7b --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/Val.kt @@ -0,0 +1,28 @@ +package world.phantasmal.observable.value + +import world.phantasmal.core.disposable.Disposable +import world.phantasmal.observable.Observable +import kotlin.reflect.KProperty + +/** + * An observable with the notion of a current [value]. + */ +interface Val : Observable { + val value: T + + operator fun getValue(thisRef: Any?, property: KProperty<*>): T = value + + /** + * @param callNow Call [observer] immediately with the current [mutableVal]. + */ + fun observe(callNow: Boolean = false, observer: ValObserver): Disposable + + fun transform(transform: (T) -> R): Val = + DependentVal(listOf(this)) { transform(value) } + + fun transform(v2: Val, transform: (T, T2) -> R): Val = + DependentVal(listOf(this, v2)) { transform(value, v2.value) } + + fun flatTransform(transform: (T) -> Val): Val = + TODO() +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValCreation.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValCreation.kt new file mode 100644 index 00000000..ef4ed768 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValCreation.kt @@ -0,0 +1,25 @@ +package world.phantasmal.observable.value + +private val TRUE_VAL: Val = StaticVal(true) +private val FALSE_VAL: Val = StaticVal(false) +private val NULL_VALL: Val = StaticVal(null) + +fun value(value: T): Val = StaticVal(value) + +fun trueVal(): Val = TRUE_VAL + +fun falseVal(): Val = FALSE_VAL + +fun nullVal(): Val = NULL_VALL + +/** + * Creates a [MutableVal] with initial value [value]. + */ +fun mutableVal(value: T): MutableVal = SimpleVal(value) + +/** + * Creates a [MutableVal] which calls [getter] or [setter] when its value is being read or written + * to, respectively. + */ +fun mutableVal(getter: () -> T, setter: (T) -> Unit): MutableVal = + DelegatingVal(getter, setter) diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValExtensions.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValExtensions.kt new file mode 100644 index 00000000..6473d044 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValExtensions.kt @@ -0,0 +1,13 @@ +package world.phantasmal.observable.value + +infix fun Val.and(other: Val): Val = + transform(other) { a, b -> a && b } + +infix fun Val.or(other: Val): Val = + transform(other) { a, b -> a || b } + +// Use != because of https://youtrack.jetbrains.com/issue/KT-31277. +infix fun Val.xor(other: Val): Val = + transform(other) { a, b -> a != b } + +operator fun Val.not(): Val = transform { !it } diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValObserver.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValObserver.kt new file mode 100644 index 00000000..80474585 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/ValObserver.kt @@ -0,0 +1,9 @@ +package world.phantasmal.observable.value + +import world.phantasmal.observable.ChangeEvent + +class ValChangeEvent(value: T, val oldValue: T) : ChangeEvent(value) { + operator fun component2() = oldValue +} + +typealias ValObserver = (event: ValChangeEvent) -> Unit diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/FoldedVal.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/FoldedVal.kt new file mode 100644 index 00000000..a0d977aa --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/FoldedVal.kt @@ -0,0 +1,50 @@ +package world.phantasmal.observable.value.list + +import world.phantasmal.core.disposable.Disposable +import world.phantasmal.core.disposable.disposable +import world.phantasmal.core.fastCast +import world.phantasmal.observable.value.AbstractVal +import world.phantasmal.observable.value.ValObserver + +class FoldedVal( + private val dependency: ListVal, + private val initial: R, + private val operation: (R, T) -> R, +) : AbstractVal() { + private var dependencyDisposable: Disposable? = null + private var internalValue: R? = null + + override val value: R + get() { + return if (dependencyDisposable == null) { + computeValue() + } else { + internalValue.fastCast() + } + } + + override fun observe(callNow: Boolean, observer: ValObserver): Disposable { + val superDisposable = super.observe(callNow, observer) + + if (dependencyDisposable == null) { + internalValue = computeValue() + + dependencyDisposable = dependency.observe { + val oldValue = internalValue + internalValue = computeValue() + emit(oldValue.fastCast()) + } + } + + return disposable { + superDisposable.dispose() + + if (observers.isEmpty()) { + dependencyDisposable?.dispose() + dependencyDisposable = null + } + } + } + + private fun computeValue(): R = dependency.value.fold(initial, operation) +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListVal.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListVal.kt new file mode 100644 index 00000000..fe320f88 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListVal.kt @@ -0,0 +1,17 @@ +package world.phantasmal.observable.value.list + +import world.phantasmal.core.disposable.Disposable +import world.phantasmal.observable.value.Val +import kotlin.reflect.KProperty + +interface ListVal : Val>, List { + val sizeVal: Val + + fun observeList(observer: ListValObserver): Disposable + + fun sumBy(selector: (E) -> Int): Val = + fold(0) { acc, el -> acc + selector(el) } + + fun fold(initialValue: R, operation: (R, E) -> R): Val = + FoldedVal(this, initialValue, operation) +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListValCreation.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListValCreation.kt new file mode 100644 index 00000000..89e6342e --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListValCreation.kt @@ -0,0 +1,6 @@ +package world.phantasmal.observable.value.list + +fun mutableListVal( + elements: MutableList = mutableListOf(), + extractObservables: ObservablesExtractor? = null +): MutableListVal = SimpleListVal(elements, extractObservables) diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListValObserver.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListValObserver.kt new file mode 100644 index 00000000..c264cbd1 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/ListValObserver.kt @@ -0,0 +1,16 @@ +package world.phantasmal.observable.value.list + +sealed class ListValChangeEvent { + class Change( + val index: Int, + val removed: List, + val inserted: List + ) : ListValChangeEvent() + + class ElementChange( + val index: Int, + val updated: List + ) : ListValChangeEvent() +} + +typealias ListValObserver = (change: ListValChangeEvent) -> Unit diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/MutableListVal.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/MutableListVal.kt new file mode 100644 index 00000000..e179feae --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/MutableListVal.kt @@ -0,0 +1,8 @@ +package world.phantasmal.observable.value.list + +import world.phantasmal.observable.value.MutableVal +import kotlin.reflect.KProperty + +interface MutableListVal : ListVal, MutableVal>, MutableList { + override operator fun getValue(thisRef: Any?, property: KProperty<*>): MutableList = this +} diff --git a/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/SimpleListVal.kt b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/SimpleListVal.kt new file mode 100644 index 00000000..5fedbac0 --- /dev/null +++ b/observable/src/commonMain/kotlin/world/phantasmal/observable/value/list/SimpleListVal.kt @@ -0,0 +1,212 @@ +package world.phantasmal.observable.value.list + +import mu.KotlinLogging +import world.phantasmal.core.disposable.Disposable +import world.phantasmal.core.disposable.disposable +import world.phantasmal.observable.Observable +import world.phantasmal.observable.Observer +import world.phantasmal.observable.value.* + +typealias ObservablesExtractor = (element: E) -> Array> + +class SimpleListVal( + private val elements: MutableList, + /** + * Extractor function called on each element in this list. Changes to the returned observables + * will be propagated via ElementChange events. + */ + private val extractObservables: ObservablesExtractor? = null, +) : AbstractMutableList(), MutableListVal { + companion object { + private val logger = KotlinLogging.logger {} + } + + override var value: List = elements + set(value) { + val removed = ArrayList(elements) + elements.clear() + elements.addAll(value) + finalizeUpdate( + ListValChangeEvent.Change( + index = 0, + removed = removed, + inserted = value + ) + ) + } + + private val mutableSizeVal: MutableVal = mutableVal(elements.size) + + override val sizeVal: Val = mutableSizeVal + + override val size: Int by sizeVal + + /** + * Internal observers which observe observables related to this list's elements so that their + * changes can be propagated via ElementChange events. + */ + private val elementObservers = mutableListOf() + + /** + * External list observers which are observing this list. + */ + private val listObservers = mutableListOf>() + + /** + * External regular observers which are observing this list. + */ + private val observers = mutableListOf>>() + + override fun get(index: Int): E = elements[index] + + override fun set(index: Int, element: E): E { + val removed = elements.set(index, element) + finalizeUpdate(ListValChangeEvent.Change(index, listOf(removed), listOf(element))) + return removed + } + + override fun add(index: Int, element: E) { + elements.add(index, element) + finalizeUpdate(ListValChangeEvent.Change(index, emptyList(), listOf(element))) + } + + override fun removeAt(index: Int): E { + val removed = elements.removeAt(index) + finalizeUpdate(ListValChangeEvent.Change(index, listOf(removed), emptyList())) + return removed + } + + override fun observe(observer: Observer>): Disposable = + observe(callNow = false, observer) + + override fun observe(callNow: Boolean, observer: ValObserver>): Disposable { + if (elementObservers.isEmpty() && extractObservables != null) { + replaceElementObservers(0, elementObservers.size, elements) + } + + observers.add(observer) + + if (callNow) { + observer(ValChangeEvent(value, value)) + } + + return disposable { + observers.remove(observer) + disposeElementObserversIfNecessary() + } + } + + override fun observeList(observer: ListValObserver): Disposable { + if (elementObservers.isEmpty() && extractObservables != null) { + replaceElementObservers(0, elementObservers.size, elements) + } + + listObservers.add(observer) + + return disposable { + listObservers.remove(observer) + disposeElementObserversIfNecessary() + } + } + + /** + * Does the following in the given order: + * - Updates element observers + * - Emits size ValChangeEvent if necessary + * - Emits ListValChangeEvent + * - Emits ValChangeEvent + */ + private fun finalizeUpdate(event: ListValChangeEvent) { + if ( + (listObservers.isNotEmpty() || observers.isNotEmpty()) && + extractObservables != null && + event is ListValChangeEvent.Change + ) { + replaceElementObservers(event.index, event.removed.size, event.inserted) + } + + mutableSizeVal.value = elements.size + + listObservers.forEach { observer: ListValObserver -> + try { + observer(event) + } catch (e: Throwable) { + logger.error(e) { "List observer threw exception." } + } + } + + val regularEvent = ValChangeEvent(value, value) + + observers.forEach { observer: ValObserver> -> + try { + observer(regularEvent) + } catch (e: Throwable) { + logger.error(e) { "Observer threw exception." } + } + } + } + + private fun replaceElementObservers(from: Int, amountRemoved: Int, insertedElements: List) { + for (i in 1..amountRemoved) { + elementObservers.removeAt(from).observers.forEach { observer -> + try { + observer.dispose() + } catch (e: Throwable) { + logger.error(e) { "Observer threw exception during disposal." } + } + } + } + + var index = from + + elementObservers.addAll( + from, + insertedElements.map { element -> + ElementObserver( + index++, + element, + extractObservables!!(element) + ) + } + ) + + val shift = insertedElements.size - amountRemoved + + while (index < elementObservers.size) { + elementObservers[index++].index += shift + } + } + + private fun disposeElementObserversIfNecessary() { + if (listObservers.isEmpty() && observers.isEmpty()) { + elementObservers.forEach { elementObserver: ElementObserver -> + elementObserver.observers.forEach { observer -> + try { + observer.dispose() + } catch (e: Throwable) { + logger.error(e) { "Observer threw exception during disposal." } + } + } + } + + elementObservers.clear() + } + } + + private inner class ElementObserver( + var index: Int, + element: E, + observables: Array>, + ) { + val observers = Array(observables.size) { + observables[it].observe { + finalizeUpdate( + ListValChangeEvent.ElementChange( + index, + listOf(element) + ) + ) + } + } + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/SimpleEmitterTests.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/SimpleEmitterTests.kt new file mode 100644 index 00000000..117c365f --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/SimpleEmitterTests.kt @@ -0,0 +1,14 @@ +package world.phantasmal.observable + +import world.phantasmal.observable.test.TestSuite +import kotlin.test.Test + +class SimpleEmitterTests : TestSuite() { + @Test + fun observable_tests() { + observableTests { + val observable = SimpleEmitter() + ObservableAndEmit(observable) { observable.emit(ChangeEvent(Any())) } + } + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/TestObservable.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/TestObservable.kt new file mode 100644 index 00000000..829514c5 --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/TestObservable.kt @@ -0,0 +1,52 @@ +package world.phantasmal.observable + +// Test suite for all Observable implementations. +// These functions are called from type-specific unit tests. + +import world.phantasmal.core.disposable.use +import kotlin.test.assertEquals + +typealias ObservableAndEmit = Pair, () -> Unit> + +fun observableTests(create: () -> ObservableAndEmit) { + observableShouldCallObserversWhenEventsAreEmitted(create) + observableShouldNotCallObserversAfterTheyAreDisposed(create) +} + +private fun observableShouldCallObserversWhenEventsAreEmitted(create: () -> ObservableAndEmit) { + val (observable, emit) = create() + val changes = mutableListOf>() + + observable.observe { c -> + changes.add(c) + }.use { + emit() + + assertEquals(1, changes.size) + + emit() + emit() + emit() + + assertEquals(4, changes.size) + } +} + +private fun observableShouldNotCallObserversAfterTheyAreDisposed(create: () -> ObservableAndEmit) { + val (observable, emit) = create() + val changes = mutableListOf>() + + observable.observe { c -> + changes.add(c) + }.use { + emit() + + assertEquals(1, changes.size) + + emit() + emit() + emit() + + assertEquals(4, changes.size) + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/test/TestSuite.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/test/TestSuite.kt new file mode 100644 index 00000000..8ff29308 --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/test/TestSuite.kt @@ -0,0 +1,24 @@ +package world.phantasmal.observable.test + +import world.phantasmal.core.disposable.TrackedDisposable +import kotlin.test.AfterTest +import kotlin.test.BeforeTest +import kotlin.test.assertEquals + +abstract class TestSuite { + private var initialDisposableCount: Int = 0 + + @BeforeTest + fun before() { + initialDisposableCount = TrackedDisposable.disposableCount + } + + @AfterTest + fun after() { + assertEquals( + initialDisposableCount, + TrackedDisposable.disposableCount, + "TrackedDisposables were leaked" + ) + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/value/DelegatingValTests.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/DelegatingValTests.kt new file mode 100644 index 00000000..a2d66c29 --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/DelegatingValTests.kt @@ -0,0 +1,29 @@ +package world.phantasmal.observable.value + +import world.phantasmal.observable.observableTests +import world.phantasmal.observable.test.TestSuite +import kotlin.test.Test + +class DelegatingValTests : TestSuite() { + @Test + fun observable_tests() { + observableTests(::create) + } + + @Test + fun val_tests() { + valTests(::create, ::createBoolean) + } + + private fun create(): ValAndEmit<*> { + var v = 0 + val value = DelegatingVal({ v }, { v = it }) + return ValAndEmit(value) { value.value += 2 } + } + + private fun createBoolean(bool: Boolean): ValAndEmit { + var v = bool + val value = DelegatingVal({ v }, { v = it }) + return ValAndEmit(value) { value.value = !value.value } + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/value/DependentValTests.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/DependentValTests.kt new file mode 100644 index 00000000..4bca8dae --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/DependentValTests.kt @@ -0,0 +1,29 @@ +package world.phantasmal.observable.value + +import world.phantasmal.observable.observableTests +import world.phantasmal.observable.test.TestSuite +import kotlin.test.Test + +class DependentValTests : TestSuite() { + @Test + fun observable_tests() { + observableTests(::create) + } + + @Test + fun val_tests() { + valTests(::create, ::createBoolean) + } + + private fun create(): ValAndEmit<*> { + val v = SimpleVal(0) + val value = DependentVal(listOf(v)) { 2 * v.value } + return ValAndEmit(value) { v.value += 2 } + } + + private fun createBoolean(bool: Boolean): ValAndEmit { + val v = SimpleVal(bool) + val value = DependentVal(listOf(v)) { v.value } + return ValAndEmit(value) { v.value = !v.value } + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/value/SimpleValTests.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/SimpleValTests.kt new file mode 100644 index 00000000..00d49e8e --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/SimpleValTests.kt @@ -0,0 +1,27 @@ +package world.phantasmal.observable.value + +import world.phantasmal.observable.observableTests +import world.phantasmal.observable.test.TestSuite +import kotlin.test.Test + +class SimpleValTests : TestSuite() { + @Test + fun observable_tests() { + observableTests(::create) + } + + @Test + fun val_tests() { + valTests(::create, ::createBoolean) + } + + private fun create(): ValAndEmit<*> { + val value = SimpleVal(1) + return ValAndEmit(value) { value.value += 2 } + } + + private fun createBoolean(bool: Boolean): ValAndEmit { + val value = SimpleVal(bool) + return ValAndEmit(value) { value.value = !value.value } + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/value/StaticValTests.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/StaticValTests.kt new file mode 100644 index 00000000..aa64bfe1 --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/StaticValTests.kt @@ -0,0 +1,15 @@ +package world.phantasmal.observable.value + +import world.phantasmal.observable.test.TestSuite +import kotlin.test.Test + +class StaticValTests : TestSuite() { + @Test + fun observing_StaticVal_should_never_create_leaks() { + val static = StaticVal("test value") + + static.observe {} + static.observe(callNow = false) {} + static.observe(callNow = true) {} + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/value/TestVal.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/TestVal.kt new file mode 100644 index 00000000..d9dff392 --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/TestVal.kt @@ -0,0 +1,76 @@ +package world.phantasmal.observable.value + +// Test suite for all Val implementations. +// These functions are called from type-specific unit tests. + +import world.phantasmal.core.disposable.use +import world.phantasmal.observable.ChangeEvent +import kotlin.test.assertEquals +import kotlin.test.assertFalse +import kotlin.test.assertTrue + +typealias ValAndEmit = Pair, () -> Unit> + +fun valTests( + create: () -> ValAndEmit<*>, + createBoolean: ((Boolean) -> ValAndEmit)?, +) { + valShouldRespectCallNowArgument(create) + + if (createBoolean != null) { + testValBooleanExtensions(createBoolean) + } +} + +/** + * When Val::observe is called with callNow = true, it should call the observer immediately. + * Otherwise it should only call the observer when it changes. + */ +private fun valShouldRespectCallNowArgument(create: () -> ValAndEmit<*>) { + val (value, emit) = create() + val changes = mutableListOf>() + + // Test callNow = true + value.observe(callNow = false) { c -> + changes.add(c) + }.use { + emit() + + assertEquals(1, changes.size) + } + + // Test callNow = false + changes.clear() + + value.observe(callNow = true) { c -> + changes.add(c) + }.use { + emit() + + assertEquals(2, changes.size) + } +} + +private fun testValBooleanExtensions(create: (Boolean) -> ValAndEmit) { + listOf(true, false).forEach { bool -> + val (value) = create(bool) + + // Test the test setup first. + assertEquals(bool, value.value) + + // Test `and`. + assertEquals(bool, (value and trueVal()).value) + assertFalse((value and falseVal()).value) + + // Test `or`. + assertTrue((value or trueVal()).value) + assertEquals(bool, (value or falseVal()).value) + + // Test `xor`. + assertEquals(!bool, (value xor trueVal()).value) + assertEquals(bool, (value xor falseVal()).value) + + // Test `!` (unary not). + assertEquals(!bool, (!value).value) + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/value/ValCreationTests.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/ValCreationTests.kt new file mode 100644 index 00000000..1f30f285 --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/ValCreationTests.kt @@ -0,0 +1,49 @@ +package world.phantasmal.observable.value + +import world.phantasmal.observable.test.TestSuite +import kotlin.test.* + +class ValCreationTests : TestSuite() { + @Test + fun test_value() { + assertEquals(7, value(7).value) + } + + @Test + fun test_trueVal() { + assertTrue(trueVal().value) + } + + @Test + fun test_falseVal() { + assertFalse(falseVal().value) + } + + @Test + fun test_nullVal() { + assertNull(nullVal().value) + } + + @Test + fun test_mutableVal_with_initial_value() { + val v = mutableVal(17) + + assertEquals(17, v.value) + + v.value = 201 + + assertEquals(201, v.value) + } + + @Test + fun test_mutableVal_with_getter_and_setter() { + var x = 17 + val v = mutableVal({ x }, { x = it }) + + assertEquals(17, v.value) + + v.value = 201 + + assertEquals(201, v.value) + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/value/list/SimpleListValTests.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/list/SimpleListValTests.kt new file mode 100644 index 00000000..20981045 --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/list/SimpleListValTests.kt @@ -0,0 +1,28 @@ +package world.phantasmal.observable.value.list + +import world.phantasmal.observable.observableTests +import world.phantasmal.observable.test.TestSuite +import world.phantasmal.observable.value.valTests +import kotlin.test.Test + +class SimpleListValTests : TestSuite() { + @Test + fun observable_tests() { + observableTests(::create) + } + + @Test + fun val_tests() { + valTests(::create, createBoolean = null) + } + + @Test + fun list_val_tests() { + listValTests(::create) + } + + private fun create(): ListValAndAdd { + val value = SimpleListVal(mutableListOf()) + return ListValAndAdd(value) { value.add(7) } + } +} diff --git a/observable/src/commonTest/kotlin/world/phantasmal/observable/value/list/TestListVal.kt b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/list/TestListVal.kt new file mode 100644 index 00000000..e87800a3 --- /dev/null +++ b/observable/src/commonTest/kotlin/world/phantasmal/observable/value/list/TestListVal.kt @@ -0,0 +1,30 @@ +package world.phantasmal.observable.value.list + +// Test suite for all ListVal implementations. +// These functions are called from type-specific unit tests. + +import world.phantasmal.core.disposable.use +import kotlin.test.assertEquals + +typealias ListValAndAdd = Pair, () -> Unit> + +fun listValTests(create: () -> ListValAndAdd) { + listValShouldUpdateSizeValCorrectly(create) +} + +private fun listValShouldUpdateSizeValCorrectly(create: () -> ListValAndAdd) { + val (list: List<*>, add) = create() + + assertEquals(0, list.sizeVal.value) + + var observedSize = 0 + + list.sizeVal.observe { observedSize = it.value }.use { + for (i in 1..3) { + add() + + assertEquals(i, list.sizeVal.value) + assertEquals(i, observedSize) + } + } +} diff --git a/package.json b/package.json deleted file mode 100644 index b8aff624..00000000 --- a/package.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "name": "phantasmal-world", - "version": "0.1.0", - "private": true, - "license": "MIT", - "dependencies": { - "camera-controls": "^1.22.1", - "core-js": "^3.6.5", - "golden-layout": "^1.5.9", - "javascript-lp-solver": "0.4.17", - "lodash": "^4.17.19", - "luxon": "^1.24.1", - "monaco-editor": "^0.20.0", - "three": "^0.118.3" - }, - "optionalDependencies": { - "prs-rs": "file:src/core/data_formats/compression/prs/pkg" - }, - "scripts": { - "start": "webpack-dev-server --config webpack.dev.js", - "check": "yarn lint && yarn check_formatting", - "lint": "echo 'Linting...' && eslint \"{src,assets_generation,test}/**/*.{ts,tsx}\" && echo 'No linting issues.'", - "check_formatting": "prettier --check \"{src,assets_generation,test}/**/*.{ts,tsx}\"", - "test": "jest", - "build": "yarn build_bundle", - "build_bundle": "webpack --config webpack.prod.js", - "build_prs_rs": "wasm-pack build src/core/data_formats/compression/prs", - "build_prs_rs_browser": "yarn build_prs_rs -t bundler && yarn upgrade prs-rs", - "build_prs_rs_testing": "yarn build_prs_rs -t nodejs -d 'test/pkg'", - "update_generic_data": "ts-node --project=tsconfig-scripts.json assets_generation/update_generic_data.ts", - "update_ephinea_data": "ts-node --project=tsconfig-scripts.json assets_generation/update_ephinea_data.ts", - "quest_stats": "ts-node --project=tsconfig-scripts.json assets_generation/quest_stats.ts" - }, - "devDependencies": { - "@fortawesome/fontawesome-free": "^5.13.1", - "@types/cheerio": "^0.22.21", - "@types/jest": "^26.0.4", - "@types/lodash": "^4.14.157", - "@types/luxon": "^1.24.1", - "@types/node-fetch": "^2.5.7", - "@typescript-eslint/eslint-plugin": "^4.2.0", - "@typescript-eslint/parser": "^4.2.0", - "cheerio": "^1.0.0-rc.3", - "clean-webpack-plugin": "^3.0.0", - "copy-webpack-plugin": "^6.0.3", - "css-loader": "^3.6.0", - "dotenv": "^8.2.0", - "dotenv-webpack": "^2.0.0", - "eslint": "^7.9.0", - "eslint-config-prettier": "^6.12.0", - "eslint-plugin-prettier": "^3.1.4", - "file-loader": "^6.0.0", - "fork-ts-checker-webpack-plugin": "^5.2.0", - "html-webpack-plugin": "^4.3.0", - "jest": "^26.4.2", - "jest-canvas-mock": "^2.2.0", - "jquery": "^3.5.1", - "mini-css-extract-plugin": "^0.9.0", - "monaco-editor-webpack-plugin": "^1.9.0", - "node-fetch": "^2.6.0", - "optimize-css-assets-webpack-plugin": "^5.0.3", - "pnp-webpack-plugin": "^1.6.4", - "prettier": "^2.0.5", - "terser-webpack-plugin": "^2.3.7", - "ts-jest": "^26.4.0", - "ts-loader": "^8.0.4", - "ts-node": "^9.0.0", - "typescript": "^4.0.3", - "webpack": "^4.43.0", - "webpack-cli": "^3.3.12", - "webpack-dev-server": "^3.11.0", - "webpack-merge": "^5.0.9", - "worker-loader": "^2.0.0", - "yaml": "^1.10.0" - } -} diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 00000000..ad9d596b --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,3 @@ +rootProject.name = "phantasmal-world" + +include("core", "lib", "observable", "web", "webui") diff --git a/src/__mocks__/monaco-editor.js b/src/__mocks__/monaco-editor.js deleted file mode 100644 index 616c432f..00000000 --- a/src/__mocks__/monaco-editor.js +++ /dev/null @@ -1,91 +0,0 @@ -/* eslint-disable @typescript-eslint/no-empty-function,@typescript-eslint/explicit-function-return-type */ -class Editor { - addCommand() {} - getAction() {} - addAction() { - return { dispose() {} }; - } - trigger() {} - updateOptions() {} - setModel() {} - setPosition() {} - getLineDecorations() {} - deltaDecorations() {} - revealLineInCenterIfOutsideViewport() {} - revealPositionInCenterIfOutsideViewport() {} - onDidFocusEditorWidget() { - return { dispose() {} }; - } - onMouseDown() { - return { dispose() {} }; - } - onMouseUp() { - return { dispose() {} }; - } - focus() {} - layout() {} - onDidChangeCursorPosition() { - return { dispose() {} }; - } - dispose() {} -} - -exports.editor = { - defineTheme() {}, - createModel() {}, - create() { - return new Editor(); - }, -}; - -exports.languages = { - CompletionItemKind: { - Method: 0, - Function: 1, - Constructor: 2, - Field: 3, - Variable: 4, - Class: 5, - Struct: 6, - Interface: 7, - Module: 8, - Property: 9, - Event: 10, - Operator: 11, - Unit: 12, - Value: 13, - Constant: 14, - Enum: 15, - EnumMember: 16, - Keyword: 17, - Text: 18, - Color: 19, - File: 20, - Reference: 21, - Customcolor: 22, - Folder: 23, - TypeParameter: 24, - Snippet: 25, - }, - register() {}, - setMonarchTokensProvider() {}, - registerCompletionItemProvider() {}, - registerSignatureHelpProvider() {}, - setLanguageConfiguration() {}, - registerDefinitionProvider() {}, - registerHoverProvider() {}, -}; - -exports.KeyMod = { - CtrlCmd: 0, - Shift: 1, - Alt: 2, - WinCtrl: 3, -}; - -exports.KeyCode = { - LeftArrow: 15, - UpArrow: 16, - RightArrow: 17, - DownArrow: 18, -}; diff --git a/src/__mocks__/static_files.js b/src/__mocks__/static_files.js deleted file mode 100644 index f053ebf7..00000000 --- a/src/__mocks__/static_files.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = {}; diff --git a/src/__mocks__/webworkers.js b/src/__mocks__/webworkers.js deleted file mode 100644 index 6614e494..00000000 --- a/src/__mocks__/webworkers.js +++ /dev/null @@ -1,6 +0,0 @@ -class Worker { - onmessage() {} - postMessage() {} -} - -module.exports = Worker; diff --git a/src/application/controllers/NavigationController.test.ts b/src/application/controllers/NavigationController.test.ts deleted file mode 100644 index 0e66802f..00000000 --- a/src/application/controllers/NavigationController.test.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { NavigationController } from "./NavigationController"; -import { GuiStore } from "../../core/stores/GuiStore"; -import { StubClock } from "../../../test/src/core/StubClock"; - -test("Internet time should be calculated correctly.", () => { - for (const [time, beats] of [ - ["00:00:00", 41], - ["13:10:12", 590], - ["22:59:59", 999], - ["23:00:00", 0], - ["23:59:59", 41], - ]) { - const ctrl = new NavigationController( - new GuiStore(), - new StubClock(new Date(`2020-01-01T${time}Z`)), - ); - - expect(ctrl.internet_time.val).toBe(`@${beats}`); - } -}); diff --git a/src/application/controllers/NavigationController.ts b/src/application/controllers/NavigationController.ts deleted file mode 100644 index dc043f00..00000000 --- a/src/application/controllers/NavigationController.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { Controller } from "../../core/controllers/Controller"; -import { Property } from "../../core/observable/property/Property"; -import { GuiStore, GuiTool } from "../../core/stores/GuiStore"; -import { property } from "../../core/observable"; -import { Clock } from "../../core/Clock"; - -export class NavigationController extends Controller { - private readonly _internet_time = property("@"); - private readonly internet_time_interval: any; - - readonly tool: Property; - readonly internet_time: Property = this._internet_time; - - constructor(private readonly gui_store: GuiStore, private readonly clock: Clock) { - super(); - - this.tool = gui_store.tool; - this.internet_time_interval = setInterval(this.set_internet_time, 1000); - this.set_internet_time(); - } - - dispose(): void { - super.dispose(); - clearInterval(this.internet_time_interval); - } - - set_tool(tool: GuiTool): void { - this.gui_store.set_tool(tool); - } - - private set_internet_time = (): void => { - const now = this.clock.now(); - const s = now.getUTCSeconds(); - const m = now.getUTCMinutes(); - const h = (now.getUTCHours() + 1) % 24; // Internet time is calculated from UTC+01:00. - this._internet_time.val = `@${Math.floor((s + 60 * (m + 60 * h)) / 86.4)}`; - }; -} diff --git a/src/application/gui/ApplicationView.css b/src/application/gui/ApplicationView.css deleted file mode 100644 index 19962c15..00000000 --- a/src/application/gui/ApplicationView.css +++ /dev/null @@ -1,5 +0,0 @@ -.application_ApplicationView { - position: fixed; - top: 0; - left: 0; -} diff --git a/src/application/gui/ApplicationView.ts b/src/application/gui/ApplicationView.ts deleted file mode 100644 index 1be57d0e..00000000 --- a/src/application/gui/ApplicationView.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { NavigationView } from "./NavigationView"; -import { MainContentView } from "./MainContentView"; -import { div } from "../../core/gui/dom"; -import "./ApplicationView.css"; -import { ResizableView } from "../../core/gui/ResizableView"; - -/** - * The top-level view which contains all other views. - */ -export class ApplicationView extends ResizableView { - readonly element: HTMLElement; - - constructor( - private readonly navigation_view: NavigationView, - private readonly main_content_view: MainContentView, - ) { - super(); - - this.element = div( - { className: "application_ApplicationView" }, - this.navigation_view.element, - this.main_content_view.element, - ); - this.element.id = "root"; - - this.add(navigation_view); - this.add(main_content_view); - - this.finalize_construction(ApplicationView); - } - - resize(width: number, height: number): this { - super.resize(width, height); - this.main_content_view.resize(width, height - this.navigation_view.height); - return this; - } -} diff --git a/src/application/gui/MainContentView.ts b/src/application/gui/MainContentView.ts deleted file mode 100644 index d8c6c063..00000000 --- a/src/application/gui/MainContentView.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { GuiStore, GuiTool } from "../../core/stores/GuiStore"; -import { LazyWidget } from "../../core/gui/LazyWidget"; -import { div } from "../../core/gui/dom"; -import { ResizableView } from "../../core/gui/ResizableView"; -import { Widget } from "../../core/gui/Widget"; -import { Resizable } from "../../core/gui/Resizable"; - -export class MainContentView extends ResizableView { - private tool_views: Map; - private current_tool_view?: LazyWidget; - - readonly element = div({ className: "application_MainContentView" }); - - constructor(gui_store: GuiStore, tool_views: [GuiTool, () => Promise][]) { - super(); - - this.tool_views = new Map( - tool_views.map(([tool, create_view]) => [tool, this.add(new LazyWidget(create_view))]), - ); - - for (const tool_view of this.tool_views.values()) { - this.element.append(tool_view.element); - } - - this.disposables( - gui_store.tool.observe(({ value }) => this.set_current_tool(value), { call_now: true }), - ); - - this.finalize_construction(MainContentView); - } - - resize(width: number, height: number): this { - super.resize(width, height); - - for (const tool_view of this.tool_views.values()) { - tool_view.resize(width, height); - } - - return this; - } - - private set_current_tool(tool: GuiTool): void { - if (this.current_tool_view) { - this.current_tool_view.visible.val = false; - this.current_tool_view.deactivate(); - } - - this.current_tool_view = this.tool_views.get(tool); - - if (this.current_tool_view) { - this.current_tool_view.visible.val = true; - this.current_tool_view.activate(); - } - } -} diff --git a/src/application/gui/NavigationButton.css b/src/application/gui/NavigationButton.css deleted file mode 100644 index 3f51e995..00000000 --- a/src/application/gui/NavigationButton.css +++ /dev/null @@ -1,24 +0,0 @@ -.application_NavigationButton input { - display: none; -} - -.application_NavigationButton label { - box-sizing: border-box; - display: inline-flex; - flex-direction: row; - align-items: center; - font-size: 13px; - height: 100%; - padding: 0 20px; - color: hsl(0, 0%, 65%); -} - -.application_NavigationButton label:hover { - color: hsl(0, 0%, 85%); - background-color: hsl(0, 0%, 12%); -} - -.application_NavigationButton input:checked + label { - color: hsl(0, 0%, 85%); - background-color: var(--bg-color); -} diff --git a/src/application/gui/NavigationButton.ts b/src/application/gui/NavigationButton.ts deleted file mode 100644 index 6e52a035..00000000 --- a/src/application/gui/NavigationButton.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { GuiTool } from "../../core/stores/GuiStore"; -import "./NavigationButton.css"; -import { input, label, span } from "../../core/gui/dom"; -import { Control } from "../../core/gui/Control"; - -export class NavigationButton extends Control { - readonly element = span({ className: "application_NavigationButton" }); - - private input: HTMLInputElement = input(); - private label: HTMLLabelElement = label(); - - constructor(tool: GuiTool, text: string) { - super(); - - const tool_str = GuiTool[tool]; - - this.input.type = "radio"; - this.input.name = "application_NavigationButton"; - this.input.value = tool_str; - this.input.id = `application_NavigationButton_${tool_str}`; - - this.label.append(text); - this.label.htmlFor = `application_NavigationButton_${tool_str}`; - - this.element.append(this.input, this.label); - - this.finalize_construction(NavigationButton); - } - - set checked(checked: boolean) { - this.input.checked = checked; - } -} diff --git a/src/application/gui/NavigationView.css b/src/application/gui/NavigationView.css deleted file mode 100644 index 31a97687..00000000 --- a/src/application/gui/NavigationView.css +++ /dev/null @@ -1,40 +0,0 @@ -.application_NavigationView { - box-sizing: border-box; - display: flex; - flex-direction: row; - align-items: stretch; - background-color: hsl(0, 0%, 10%); - border-bottom: solid 2px var(--bg-color); -} - -.application_NavigationView_spacer { - flex: 1; -} - -.application_NavigationView_server { - display: flex; - align-items: center; -} - -.application_NavigationView_server > * { - margin: 0 2px; -} - -.application_NavigationView_time { - display: flex; - align-items: center; -} - -.application_NavigationView_github { - display: flex; - flex-direction: row; - align-items: center; - justify-content: center; - width: 30px; - font-size: 16px; - color: var(--control-text-color); -} - -.application_NavigationView_github:hover { - color: var(--control-text-color-hover); -} diff --git a/src/application/gui/NavigationView.test.ts b/src/application/gui/NavigationView.test.ts deleted file mode 100644 index 6e8641cc..00000000 --- a/src/application/gui/NavigationView.test.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { NavigationView } from "./NavigationView"; -import { NavigationController } from "../controllers/NavigationController"; -import { GuiStore } from "../../core/stores/GuiStore"; -import { StubClock } from "../../../test/src/core/StubClock"; - -test("Should render correctly.", () => { - const view = new NavigationView( - new NavigationController(new GuiStore(), new StubClock(new Date("2020-01-01T00:30:01Z"))), - ); - - expect(view.element).toMatchSnapshot( - "It should render a button per tool, the selected server, internet time and a github link icon.", - ); -}); diff --git a/src/application/gui/NavigationView.ts b/src/application/gui/NavigationView.ts deleted file mode 100644 index dcfe9689..00000000 --- a/src/application/gui/NavigationView.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { a, div, icon, Icon, span } from "../../core/gui/dom"; -import "./NavigationView.css"; -import { GuiTool } from "../../core/stores/GuiStore"; -import { NavigationButton } from "./NavigationButton"; -import { Select } from "../../core/gui/Select"; -import { View } from "../../core/gui/View"; -import { NavigationController } from "../controllers/NavigationController"; - -const TOOLS: [GuiTool, string][] = [ - [GuiTool.Viewer, "Viewer"], - [GuiTool.QuestEditor, "Quest Editor"], - [GuiTool.HuntOptimizer, "Hunt Optimizer"], -]; - -export class NavigationView extends View { - private readonly buttons = new Map( - TOOLS.map(([value, text]) => [value, this.add(new NavigationButton(value, text))]), - ); - private readonly server_select = this.add( - new Select({ - label: "Server:", - items: ["Ephinea"], - to_label: server => server, - enabled: false, - selected: "Ephinea", - tooltip: "Only Ephinea is supported at the moment", - }), - ); - private readonly time_element = span({ - className: "application_NavigationView_time", - title: "Internet time in beats", - }); - - readonly element = div( - { className: "application_NavigationView" }, - - ...[...this.buttons.values()].map(button => button.element), - - div({ className: "application_NavigationView_spacer" }), - - span( - { className: "application_NavigationView_server" }, - this.server_select.label!.element, - this.server_select.element, - ), - - this.time_element, - - a( - { - className: "application_NavigationView_github", - href: "https://github.com/DaanVandenBosch/phantasmal-world", - title: "Phantasmal World is open source, code available on GitHub", - }, - icon(Icon.GitHub), - ), - ); - - readonly height = 30; - - constructor(private readonly ctrl: NavigationController) { - super(); - - this.element.style.height = `${this.height}px`; - this.element.addEventListener("mousedown", this.mousedown); - - this.disposables( - ctrl.tool.observe(({ value }) => this.mark_tool_button(value), { call_now: true }), - - ctrl.internet_time.observe(({ value }) => (this.time_element.textContent = value), { - call_now: true, - }), - ); - - this.finalize_construction(NavigationView); - } - - private mousedown = (e: MouseEvent): void => { - if (e.target instanceof HTMLLabelElement && e.target.control instanceof HTMLInputElement) { - this.ctrl.set_tool((GuiTool as any)[e.target.control.value]); - } - }; - - private mark_tool_button = (tool: GuiTool): void => { - const button = this.buttons.get(tool); - if (button) button.checked = true; - }; -} diff --git a/src/application/gui/__snapshots__/NavigationView.test.ts.snap b/src/application/gui/__snapshots__/NavigationView.test.ts.snap deleted file mode 100644 index 1f942d32..00000000 --- a/src/application/gui/__snapshots__/NavigationView.test.ts.snap +++ /dev/null @@ -1,131 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Should render correctly.: It should render a button per tool, the selected server, internet time and a github link icon. 1`] = ` -

- - - - - - - - - - - - -
- - -
- - -
-
- - @62 - - - - - - -
-`; diff --git a/src/application/index.test.ts b/src/application/index.test.ts deleted file mode 100644 index fbd8fc7e..00000000 --- a/src/application/index.test.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { initialize_application } from "./index"; -import { FileSystemHttpClient } from "../../test/src/core/FileSystemHttpClient"; -import { pw_test, timeout } from "../../test/src/utils"; -import { Random } from "../core/Random"; -import { Severity } from "../core/Severity"; -import { StubClock } from "../../test/src/core/StubClock"; -import { STUB_RENDERER } from "../../test/src/core/rendering/StubRenderer"; - -for (const path of [undefined, "/viewer", "/quest_editor", "/hunt_optimizer"]) { - const with_path = path == undefined ? "without specific path" : `with path ${path}`; - - test( - `Initialization and shutdown ${with_path} should succeed without throwing or logging errors.`, - pw_test({ max_log_severity: Severity.Warning }, async disposer => { - if (path != undefined) { - window.location.hash = path; - } - - const app = disposer.add( - initialize_application( - new FileSystemHttpClient(), - new Random(() => 0.27), - new StubClock(new Date("2020-01-01T15:40:20Z")), - () => STUB_RENDERER, - ), - ); - - expect(app).toBeDefined(); - - await timeout(1000); - }), - ); -} diff --git a/src/application/index.ts b/src/application/index.ts deleted file mode 100644 index 1377323c..00000000 --- a/src/application/index.ts +++ /dev/null @@ -1,152 +0,0 @@ -import { HttpClient } from "../core/HttpClient"; -import { Disposable } from "../core/observable/Disposable"; -import { GuiStore, GuiTool } from "../core/stores/GuiStore"; -import { create_item_type_stores } from "../core/stores/ItemTypeStore"; -import { create_item_drop_stores } from "../hunt_optimizer/stores/ItemDropStore"; -import { ApplicationView } from "./gui/ApplicationView"; -import { throttle } from "lodash"; -import { DisposableThreeRenderer } from "../core/rendering/Renderer"; -import { Disposer } from "../core/observable/Disposer"; -import { disposable_custom_listener, disposable_listener } from "../core/gui/dom"; -import { Random } from "../core/Random"; -import { NavigationController } from "./controllers/NavigationController"; -import { NavigationView } from "./gui/NavigationView"; -import { MainContentView } from "./gui/MainContentView"; -import { Clock } from "../core/Clock"; - -export function initialize_application( - http_client: HttpClient, - random: Random, - clock: Clock, - create_three_renderer: () => DisposableThreeRenderer, -): Disposable { - const disposer = new Disposer(); - - // Disable native undo/redo. - disposer.add(disposable_custom_listener(document, "beforeinput", before_input)); - // Work-around for FireFox: - disposer.add(disposable_listener(document, "keydown", keydown)); - - // Disable native drag-and-drop to avoid users dragging in unsupported file formats and leaving - // the application unexpectedly. - disposer.add_all( - disposable_listener(document, "dragenter", dragenter), - disposable_listener(document, "dragover", dragover), - disposable_listener(document, "drop", drop), - ); - - // Initialize core stores shared by several submodules. - const gui_store = disposer.add(new GuiStore()); - const item_type_stores = disposer.add(create_item_type_stores(http_client, gui_store)); - const item_drop_stores = disposer.add( - create_item_drop_stores(http_client, gui_store, item_type_stores), - ); - - // Controllers. - const navigation_controller = disposer.add(new NavigationController(gui_store, clock)); - - // Initialize application view. - const application_view = disposer.add( - new ApplicationView( - new NavigationView(navigation_controller), - new MainContentView(gui_store, [ - [ - GuiTool.Viewer, - async () => { - const { initialize_viewer } = await import("../viewer"); - const viewer = disposer.add( - initialize_viewer( - http_client, - random, - gui_store, - create_three_renderer, - ), - ); - - return viewer.view; - }, - ], - [ - GuiTool.QuestEditor, - async () => { - const { initialize_quest_editor } = await import("../quest_editor"); - const quest_editor = disposer.add( - initialize_quest_editor(http_client, gui_store, create_three_renderer), - ); - - return quest_editor.view; - }, - ], - [ - GuiTool.HuntOptimizer, - async () => { - const { initialize_hunt_optimizer } = await import("../hunt_optimizer"); - const hunt_optimizer = disposer.add( - initialize_hunt_optimizer( - http_client, - gui_store, - item_type_stores, - item_drop_stores, - ), - ); - - return hunt_optimizer.view; - }, - ], - ]), - ), - ); - - // Resize the view on window resize. - const resize = throttle( - () => { - application_view.resize(window.innerWidth, window.innerHeight); - }, - 100, - { leading: true, trailing: true }, - ); - - resize(); - document.body.append(application_view.element); - application_view.activate(); - - disposer.add(disposable_listener(window, "resize", resize)); - - return { - dispose(): void { - disposer.dispose(); - }, - }; -} - -function before_input(e: Event): void { - const ie = e as any; - - if (ie.inputType === "historyUndo" || ie.inputType === "historyRedo") { - e.preventDefault(); - } -} - -function keydown(e: Event): void { - const kbe = e as KeyboardEvent; - - if (kbe.ctrlKey && !kbe.altKey && kbe.key.toUpperCase() === "Z") { - kbe.preventDefault(); - } -} - -function dragenter(e: DragEvent): void { - e.preventDefault(); - - if (e.dataTransfer) { - e.dataTransfer.dropEffect = "none"; - } -} - -function dragover(e: DragEvent): void { - dragenter(e); -} - -function drop(e: DragEvent): void { - dragenter(e); -} diff --git a/src/core/Clock.ts b/src/core/Clock.ts deleted file mode 100644 index d7d9c0af..00000000 --- a/src/core/Clock.ts +++ /dev/null @@ -1,9 +0,0 @@ -export interface Clock { - now(): Date; -} - -export class DateClock implements Clock { - now(): Date { - return new Date(); - } -} diff --git a/src/core/DisposablePromise.test.ts b/src/core/DisposablePromise.test.ts deleted file mode 100644 index 707dd377..00000000 --- a/src/core/DisposablePromise.test.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { DisposablePromise } from "./DisposablePromise"; -import { timeout } from "../../test/src/utils"; - -test("It should resolve correctly.", () => { - return new DisposablePromise((resolve, reject) => { - resolve(700); - resolve(800); - reject(new Error()); - resolve(900); - reject(new Error()); - }).then( - x => { - expect(x).toBe(700); - }, - () => { - throw new Error("Should never be called."); - }, - ); -}); - -test("It should reject correctly.", () => { - return new DisposablePromise((resolve, reject) => { - reject(new Error("ERROR")); - resolve(700); - resolve(800); - reject(new Error()); - resolve(900); - reject(new Error()); - }).then( - () => { - throw new Error("Should never be called."); - }, - err => { - expect((err as Error).message).toBe("ERROR"); - }, - ); -}); - -test("It should dispose correctly.", async () => { - let resolve: (value: number) => void; - let value = 7; - let cancel_called = false; - - const promise = new DisposablePromise( - r => { - resolve = r; - }, - () => { - cancel_called = true; - }, - ); - - await timeout(0); - - promise.dispose(); - - expect(cancel_called).toBe(true); - - resolve!(13); - - promise.then( - v => { - value = v; - }, - () => { - throw new Error("Should never be called."); - }, - ); - - await timeout(0); - - expect(value).toBe(7); -}); diff --git a/src/core/DisposablePromise.ts b/src/core/DisposablePromise.ts deleted file mode 100644 index d85c6204..00000000 --- a/src/core/DisposablePromise.ts +++ /dev/null @@ -1,253 +0,0 @@ -import { Disposable } from "./observable/Disposable"; -import { is_promise_like } from "./util"; - -enum State { - Pending, - Fulfilled, - Rejected, - Disposed, -} - -export class DisposablePromise implements Promise, Disposable { - static all(values: Iterable>): DisposablePromise { - return new DisposablePromise( - (resolve, reject) => { - const results: T[] = []; - let len = 0; - - function add_result(r: T): void { - results.push(r); - - if (results.length === len) { - resolve(results); - } - } - - for (const value of values) { - len++; - - if (is_promise_like(value)) { - value.then(add_result, reject); - } else { - add_result(value); - } - } - }, - () => { - for (const value of values) { - if (value instanceof DisposablePromise) { - value.dispose(); - } - } - }, - ); - } - - static resolve(value: T | PromiseLike, dispose?: () => void): DisposablePromise { - if (is_promise_like(value)) { - return new DisposablePromise((resolve, reject) => { - value.then(resolve, reject); - }, dispose); - } else { - return new DisposablePromise(resolve => { - resolve(value); - }, dispose); - } - } - - private state: State = State.Pending; - private value?: T; - private reason?: any; - - private readonly fulfillment_listeners: ((value: T) => unknown)[] = []; - private readonly rejection_listeners: ((reason: any) => unknown)[] = []; - private readonly disposal_handler?: () => void; - - [Symbol.toStringTag] = "DisposablePromise"; - - constructor( - executor: ( - resolve: (value: T | PromiseLike) => void, - reject: (reason?: any) => void, - ) => void, - dispose?: () => void, - ) { - this.disposal_handler = dispose; - - executor(this.executor_resolve, this.executor_reject); - } - - private executor_resolve = (value: T | PromiseLike): void => { - if (is_promise_like(value)) { - if (this.state !== State.Pending) return; - - value.then( - p_value => { - this.fulfilled(p_value); - }, - p_reason => { - this.rejected(p_reason); - }, - ); - } else { - this.fulfilled(value); - } - }; - - private executor_reject = (reason?: any): void => { - this.rejected(reason); - }; - - private fulfilled(value: T): void { - if (this.state !== State.Pending) return; - - this.state = State.Fulfilled; - this.value = value; - - for (const listener of this.fulfillment_listeners) { - listener(value); - } - - this.fulfillment_listeners.splice(0); - this.rejection_listeners.splice(0); - } - - private rejected(reason?: any): void { - if (this.state !== State.Pending) return; - - this.state = State.Rejected; - this.reason = reason; - - for (const listener of this.rejection_listeners) { - listener(reason); - } - - this.fulfillment_listeners.splice(0); - this.rejection_listeners.splice(0); - } - - then( - onfulfilled?: ((value: T) => TResult1 | PromiseLike) | undefined | null, - onrejected?: ((reason: any) => TResult2 | PromiseLike) | undefined | null, - ): DisposablePromise { - return new DisposablePromise( - (resolve, reject) => { - if (onfulfilled == undefined) { - this.add_fulfillment_listener(resolve as any); - } else { - this.add_fulfillment_listener(value => { - try { - resolve(onfulfilled(value)); - } catch (e) { - reject(e); - } - }); - } - - if (onrejected == undefined) { - this.add_rejection_listener(reject); - } else { - this.add_rejection_listener(reason => { - try { - resolve(onrejected(reason)); - } catch (e) { - reject(e); - } - }); - } - }, - () => this.dispose(), - ); - } - - catch( - onrejected?: ((reason: any) => PromiseLike | TResult) | undefined | null, - ): DisposablePromise { - return new DisposablePromise( - (resolve, reject) => { - this.add_fulfillment_listener(resolve as any); - - if (onrejected == undefined) { - this.add_rejection_listener(reject); - } else { - this.add_rejection_listener(reason => { - try { - resolve(onrejected(reason)); - } catch (e) { - reject(e); - } - }); - } - }, - () => this.dispose(), - ); - } - - finally(onfinally?: (() => void) | undefined | null): DisposablePromise { - if (onfinally == undefined) { - return this; - } else { - return new DisposablePromise( - (resolve, reject) => { - this.add_fulfillment_listener(value => { - try { - onfinally(); - resolve(value); - } catch (e) { - reject(e); - } - }); - - this.add_rejection_listener(value => { - try { - onfinally(); - reject(value); - } catch (e) { - reject(e); - } - }); - }, - () => this.dispose(), - ); - } - } - - /** - * Cancels the promise. After calling this method, any then, catch or finally handlers will not - * be called. - */ - dispose(): void { - if (this.state !== State.Disposed) { - this.state = State.Disposed; - this.disposal_handler?.(); - } - } - - private add_fulfillment_listener(listener: (value: T) => unknown): void { - switch (this.state) { - case State.Pending: - this.fulfillment_listeners.push(listener); - break; - case State.Fulfilled: - listener(this.value!); - break; - case State.Rejected: - case State.Disposed: - break; - } - } - - private add_rejection_listener(listener: (reason: any) => unknown): void { - switch (this.state) { - case State.Pending: - this.rejection_listeners.push(listener); - break; - case State.Rejected: - listener(this.reason); - break; - case State.Fulfilled: - case State.Disposed: - break; - } - } -} diff --git a/src/core/HttpClient.ts b/src/core/HttpClient.ts deleted file mode 100644 index 508001cf..00000000 --- a/src/core/HttpClient.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { DisposablePromise } from "./DisposablePromise"; - -export interface HttpClient { - get(url: string): HttpResponse; -} - -export interface HttpResponse { - json(): DisposablePromise; - - array_buffer(): DisposablePromise; -} - -/** - * This client uses {@link fetch}. - */ -export class FetchClient implements HttpClient { - get(url: string): HttpResponse { - const aborter = new AbortController(); - const response = fetch(process.env.PUBLIC_URL + url, { signal: aborter.signal }); - return { - json(): DisposablePromise { - return new DisposablePromise( - (resolve, reject) => { - response - .then(r => r.json()) - .then( - json => resolve(json), - error => reject(error), - ); - }, - () => aborter.abort(), - ); - }, - - array_buffer(): DisposablePromise { - return new DisposablePromise( - (resolve, reject) => { - response - .then(r => r.arrayBuffer()) - .then( - buf => resolve(buf), - error => reject(error), - ); - }, - () => aborter.abort(), - ); - }, - }; - } -} - -/** - * This client simple throws an error when used. - */ -export class StubHttpClient implements HttpClient { - get(url: string): HttpResponse { - return { - json(): DisposablePromise { - throw new Error(`Stub client's json method invoked for get request to "${url}".`); - }, - - array_buffer(): DisposablePromise { - throw new Error( - `Stub client's array_buffer method invoked for get request to "${url}".`, - ); - }, - }; - } -} diff --git a/src/core/Random.ts b/src/core/Random.ts deleted file mode 100644 index d2c5840b..00000000 --- a/src/core/Random.ts +++ /dev/null @@ -1,18 +0,0 @@ -export class Random { - constructor(private readonly random_number: () => number = Math.random) {} - /** - * @param min - The minimum value, inclusive. - * @param max - The maximum value, exclusive. - * @returns A random integer between `min` and `max`. - */ - integer(min: number, max: number): number { - return min + Math.floor(this.random_number() * (max - min)); - } - - /** - * @returns A random element from `array`. - */ - sample_array(array: readonly T[]): T { - return array[this.integer(0, array.length)]; - } -} diff --git a/src/core/Result.ts b/src/core/Result.ts deleted file mode 100644 index eeac2abd..00000000 --- a/src/core/Result.ts +++ /dev/null @@ -1,89 +0,0 @@ -import { Logging } from "./logging"; -import { Severity } from "./Severity"; - -export type Result = Success | Failure; - -export type Success = { - readonly success: true; - readonly value: T; - readonly problems: readonly Problem[]; -}; - -export type Failure = { - readonly success: false; - readonly value?: never; - readonly problems: readonly Problem[]; -}; - -export type Problem = { - readonly severity: Severity; - /** - * Readable message meant for users. - */ - readonly ui_message: string; -}; - -export function success(value: T, ...problems: readonly Problem[]): Success { - return { - success: true, - value, - problems, - }; -} - -export function failure(...problems: readonly Problem[]): Failure { - return { - success: false, - problems, - }; -} - -export function problem(severity: Severity, ui_message: string): Problem { - return { severity, ui_message }; -} - -/** - * "Unwraps" the given result by either return its value if it's a success or throwing an error with - * its problems as message if it was a failure. - */ -export function unwrap(result: Result): T { - if (result.success) { - return result.value; - } else { - throw new Error(result.problems.join("\n")); - } -} - -/** - * Useful for building up a {@link Result} and logging problems at the same time. - */ -export class ResultBuilder { - private readonly problems: Problem[] = []; - - constructor(private readonly logger: Logging) {} - - /** - * Add a problem to the problems array and log it with {@link logger}. - */ - add_problem(severity: Severity, ui_message: string, message?: string, cause?: unknown): this { - this.logger.log(severity, message ?? ui_message, cause); - this.problems.push({ severity, ui_message }); - return this; - } - - /** - * Add the given result's problems. - */ - add_result(result: Result): this { - this.problems.push(...result.problems); - return this; - } - - success(value: T): Success { - return success(value, ...this.problems); - } - - failure(): Failure { - return failure(...this.problems); - } -} diff --git a/src/core/Severity.ts b/src/core/Severity.ts deleted file mode 100644 index 2508e05e..00000000 --- a/src/core/Severity.ts +++ /dev/null @@ -1,20 +0,0 @@ -// Severities in order of importance. -import { enum_values } from "./enums"; -import { assert } from "./util"; - -export enum Severity { - Trace, - Debug, - Info, - Warning, - Error, - Off, -} - -export const Severities: readonly Severity[] = enum_values(Severity); - -export function severity_from_string(str: string): Severity { - const severity = (Severity as any)[str.slice(0, 1).toUpperCase() + str.slice(1).toLowerCase()]; - assert(severity != undefined, () => `"${str}" is not a valid severity.`); - return severity; -} diff --git a/src/core/controllers/Controller.ts b/src/core/controllers/Controller.ts deleted file mode 100644 index 544cb5d7..00000000 --- a/src/core/controllers/Controller.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Disposable } from "../observable/Disposable"; -import { Disposer } from "../observable/Disposer"; - -export abstract class Controller implements Disposable { - private readonly disposer = new Disposer(); - - dispose(): void { - this.disposer.dispose(); - } - - protected disposable(disposable: T): T { - return this.disposer.add(disposable); - } - - protected disposables(...disposables: Disposable[]): void { - this.disposer.add_all(...disposables); - } -} diff --git a/src/core/data_formats/asm/data_flow_analysis/ControlFlowGraph.test.ts b/src/core/data_formats/asm/data_flow_analysis/ControlFlowGraph.test.ts deleted file mode 100644 index a49a2db4..00000000 --- a/src/core/data_formats/asm/data_flow_analysis/ControlFlowGraph.test.ts +++ /dev/null @@ -1,160 +0,0 @@ -import { assemble } from "../../../../quest_editor/scripting/assembly"; -import { InstructionSegment, SegmentType } from "../instructions"; -import { BranchType, ControlFlowGraph } from "./ControlFlowGraph"; - -test("single instruction", () => { - const im = to_instructions(` - 0: - ret - `); - const cfg = ControlFlowGraph.create(im); - - expect(cfg.blocks.length).toBe(1); - - expect(cfg.blocks[0].start).toBe(0); - expect(cfg.blocks[0].end).toBe(1); - expect(cfg.blocks[0].branch_type).toBe(BranchType.Return); - expect(cfg.blocks[0].from.length).toBe(0); - expect(cfg.blocks[0].to.length).toBe(0); - expect(cfg.blocks[0].branch_labels.length).toBe(0); -}); - -test("single unconditional jump", () => { - const im = to_instructions(` - 0: - jmp 1 - 1: - ret - `); - const cfg = ControlFlowGraph.create(im); - - expect(cfg.blocks.length).toBe(2); - - expect(cfg.blocks[0].start).toBe(0); - expect(cfg.blocks[0].end).toBe(1); - expect(cfg.blocks[0].branch_type).toBe(BranchType.Jump); - expect(cfg.blocks[0].from.length).toBe(0); - expect(cfg.blocks[0].to.length).toBe(1); - expect(cfg.blocks[0].branch_labels.length).toBe(1); - - expect(cfg.blocks[1].start).toBe(0); - expect(cfg.blocks[1].end).toBe(1); - expect(cfg.blocks[1].branch_type).toBe(BranchType.Return); - expect(cfg.blocks[1].from.length).toBe(1); - expect(cfg.blocks[1].to.length).toBe(0); - expect(cfg.blocks[1].branch_labels.length).toBe(0); -}); - -test("single conditional jump", () => { - const im = to_instructions(` - 0: - jmp_= r1, r2, 1 - ret - 1: - ret - `); - const cfg = ControlFlowGraph.create(im); - - expect(cfg.blocks.length).toBe(3); - - expect(cfg.blocks[0].start).toBe(0); - expect(cfg.blocks[0].end).toBe(1); - expect(cfg.blocks[0].branch_type).toBe(BranchType.ConditionalJump); - expect(cfg.blocks[0].from.length).toBe(0); - expect(cfg.blocks[0].to.length).toBe(2); - expect(cfg.blocks[0].branch_labels.length).toBe(1); - - expect(cfg.blocks[1].start).toBe(1); - expect(cfg.blocks[1].end).toBe(2); - expect(cfg.blocks[1].branch_type).toBe(BranchType.Return); - expect(cfg.blocks[1].from.length).toBe(1); - expect(cfg.blocks[1].to.length).toBe(0); - expect(cfg.blocks[1].branch_labels.length).toBe(0); - - expect(cfg.blocks[2].start).toBe(0); - expect(cfg.blocks[2].end).toBe(1); - expect(cfg.blocks[2].branch_type).toBe(BranchType.Return); - expect(cfg.blocks[2].from.length).toBe(1); - expect(cfg.blocks[2].to.length).toBe(0); - expect(cfg.blocks[2].branch_labels.length).toBe(0); -}); - -test("single call", () => { - const im = to_instructions(` - 0: - call 1 - ret - 1: - ret - `); - const cfg = ControlFlowGraph.create(im); - - expect(cfg.blocks.length).toBe(3); - - expect(cfg.blocks[0].start).toBe(0); - expect(cfg.blocks[0].end).toBe(1); - expect(cfg.blocks[0].branch_type).toBe(BranchType.Call); - expect(cfg.blocks[0].from.length).toBe(0); - expect(cfg.blocks[0].to.length).toBe(1); - expect(cfg.blocks[0].branch_labels.length).toBe(1); - - expect(cfg.blocks[1].start).toBe(1); - expect(cfg.blocks[1].end).toBe(2); - expect(cfg.blocks[1].branch_type).toBe(BranchType.Return); - expect(cfg.blocks[1].from.length).toBe(1); - expect(cfg.blocks[1].to.length).toBe(0); - expect(cfg.blocks[1].branch_labels.length).toBe(0); - - expect(cfg.blocks[2].start).toBe(0); - expect(cfg.blocks[2].end).toBe(1); - expect(cfg.blocks[2].branch_type).toBe(BranchType.Return); - expect(cfg.blocks[2].from.length).toBe(1); - expect(cfg.blocks[2].to.length).toBe(1); - expect(cfg.blocks[2].branch_labels.length).toBe(0); -}); - -test("conditional jump with fall-through", () => { - const im = to_instructions(` - 0: - jmp_> r1, r2, 1 - nop - 1: - nop - ret - `); - const cfg = ControlFlowGraph.create(im); - - expect(cfg.blocks.length).toBe(3); - - expect(cfg.blocks[0].start).toBe(0); - expect(cfg.blocks[0].end).toBe(1); - expect(cfg.blocks[0].branch_type).toBe(BranchType.ConditionalJump); - expect(cfg.blocks[0].from.length).toBe(0); - expect(cfg.blocks[0].to.length).toBe(2); - expect(cfg.blocks[0].branch_labels.length).toBe(1); - - expect(cfg.blocks[1].start).toBe(1); - expect(cfg.blocks[1].end).toBe(2); - expect(cfg.blocks[1].branch_type).toBe(BranchType.None); - expect(cfg.blocks[1].from.length).toBe(1); - expect(cfg.blocks[1].to.length).toBe(1); - expect(cfg.blocks[1].branch_labels.length).toBe(0); - - expect(cfg.blocks[2].start).toBe(0); - expect(cfg.blocks[2].end).toBe(2); - expect(cfg.blocks[2].branch_type).toBe(BranchType.Return); - expect(cfg.blocks[2].from.length).toBe(2); - expect(cfg.blocks[2].to.length).toBe(0); - expect(cfg.blocks[2].branch_labels.length).toBe(0); -}); - -function to_instructions(assembly: string): InstructionSegment[] { - const { object_code, warnings, errors } = assemble(assembly.split("\n")); - - expect(warnings).toEqual([]); - expect(errors).toEqual([]); - - return object_code.filter( - segment => segment.type === SegmentType.Instructions, - ) as InstructionSegment[]; -} diff --git a/src/core/data_formats/asm/data_flow_analysis/ControlFlowGraph.ts b/src/core/data_formats/asm/data_flow_analysis/ControlFlowGraph.ts deleted file mode 100644 index ebcfa25a..00000000 --- a/src/core/data_formats/asm/data_flow_analysis/ControlFlowGraph.ts +++ /dev/null @@ -1,292 +0,0 @@ -import { Instruction, InstructionSegment } from "../instructions"; -import { - OP_CALL, - OP_JMP, - OP_JMP_E, - OP_JMP_G, - OP_JMP_GE, - OP_JMP_L, - OP_JMP_LE, - OP_JMP_NE, - OP_JMP_OFF, - OP_JMP_ON, - OP_JMPI_E, - OP_JMPI_G, - OP_JMPI_GE, - OP_JMPI_L, - OP_JMPI_LE, - OP_JMPI_NE, - OP_RET, - OP_SWITCH_CALL, - OP_SWITCH_JMP, - OP_UJMP_G, - OP_UJMP_GE, - OP_UJMP_L, - OP_UJMP_LE, - OP_UJMPI_G, - OP_UJMPI_GE, - OP_UJMPI_L, - OP_UJMPI_LE, - OP_VA_CALL, -} from "../opcodes"; - -export enum BranchType { - None, - Return, - Jump, - ConditionalJump, - Call, -} - -export class BasicBlock { - readonly segment: InstructionSegment; - readonly start: number; - readonly end: number; - readonly branch_type: BranchType; - /** - * Either jumps or calls, depending on `branch_type`. - */ - readonly branch_labels: number[]; - readonly from: BasicBlock[] = []; - readonly to: BasicBlock[] = []; - - constructor( - segment: InstructionSegment, - start: number, - end: number, - branch_type: BranchType, - branch_labels: number[], - ) { - this.segment = segment; - this.start = start; - this.end = end; - this.branch_type = branch_type; - this.branch_labels = branch_labels; - } - - link_to(other: BasicBlock): void { - if (!this.to.includes(other)) { - this.to.push(other); - other.from.push(this); - } - } - - index_of_instruction(instruction: Instruction): number { - const index = this.segment.instructions.indexOf(instruction, this.start); - return index < this.end ? index : -1; - } -} - -export class ControlFlowGraph { - readonly blocks: BasicBlock[] = []; - - private readonly instructions_to_block: Map = new Map(); - private readonly labels_to_block = new Map(); - - get_block_for_instruction(instruction: Instruction): BasicBlock | undefined { - return this.instructions_to_block.get(instruction); - } - - static create(segments: InstructionSegment[]): ControlFlowGraph { - const cfg = new ControlFlowGraph(); - // Mapping of labels to basic blocks. - - for (const segment of segments) { - this.create_basic_blocks(cfg, segment); - } - - this.link_blocks(cfg); - return cfg; - } - - private static create_basic_blocks(cfg: ControlFlowGraph, segment: InstructionSegment): void { - const len = segment.instructions.length; - let start = 0; - let first_block = true; - - for (let i = 0; i < len; i++) { - const inst = segment.instructions[i]; - - let branch_type: BranchType; - let branch_labels: number[]; - - switch (inst.opcode.code) { - // Return. - case OP_RET.code: - branch_type = BranchType.Return; - branch_labels = []; - break; - - // Unconditional jump. - case OP_JMP.code: - branch_type = BranchType.Jump; - branch_labels = [inst.args[0].value]; - break; - - // Conditional jumps. - case OP_JMP_ON.code: - case OP_JMP_OFF.code: - branch_type = BranchType.ConditionalJump; - branch_labels = [inst.args[0].value]; - break; - case OP_JMP_E.code: - case OP_JMPI_E.code: - case OP_JMP_NE.code: - case OP_JMPI_NE.code: - case OP_UJMP_G.code: - case OP_UJMPI_G.code: - case OP_JMP_G.code: - case OP_JMPI_G.code: - case OP_UJMP_L.code: - case OP_UJMPI_L.code: - case OP_JMP_L.code: - case OP_JMPI_L.code: - case OP_UJMP_GE.code: - case OP_UJMPI_GE.code: - case OP_JMP_GE.code: - case OP_JMPI_GE.code: - case OP_UJMP_LE.code: - case OP_UJMPI_LE.code: - case OP_JMP_LE.code: - case OP_JMPI_LE.code: - branch_type = BranchType.ConditionalJump; - branch_labels = [inst.args[2].value]; - break; - case OP_SWITCH_JMP.code: - branch_type = BranchType.ConditionalJump; - branch_labels = inst.args.slice(1).map(a => a.value); - break; - - // Calls. - case OP_CALL.code: - branch_type = BranchType.Call; - branch_labels = [inst.args[0].value]; - break; - case OP_VA_CALL.code: - branch_type = BranchType.Call; - branch_labels = [inst.args[0].value]; - break; - case OP_SWITCH_CALL.code: - branch_type = BranchType.Call; - branch_labels = inst.args.slice(1).map(a => a.value); - break; - - // All other opcodes. - default: - if (i === len - 1) { - branch_type = BranchType.None; - branch_labels = []; - break; - } else { - continue; - } - } - - const block = new BasicBlock(segment, start, i + 1, branch_type, branch_labels); - - for (let j = block.start; j < block.end; j++) { - cfg.instructions_to_block.set(block.segment.instructions[j], block); - } - - cfg.blocks.push(block); - - if (first_block) { - for (const label of segment.labels) { - cfg.labels_to_block.set(label, block); - } - - first_block = false; - } - - start = i + 1; - } - } - - private static link_blocks(cfg: ControlFlowGraph): void { - // Pairs of calling block and block to which callees should return to. - const callers: [BasicBlock, BasicBlock][] = []; - - for (let i = 0; i < cfg.blocks.length; i++) { - const block = cfg.blocks[i]; - const next_block = cfg.blocks[i + 1]; - - switch (block.branch_type) { - case BranchType.Return: - continue; - case BranchType.Call: - if (next_block) { - callers.push([block, next_block]); - } - break; - case BranchType.None: - case BranchType.ConditionalJump: - if (next_block) { - block.link_to(next_block); - } - break; - } - - for (const label of block.branch_labels) { - const to_block = cfg.labels_to_block.get(label); - - if (to_block) { - block.link_to(to_block); - } - } - } - - for (const [caller, ret] of callers) { - link_returning_blocks(cfg.labels_to_block, ret, caller); - } - } -} - -/** - * Links returning blocks to their callers. - * - * @param label_blocks - * @param ret Block the caller should return to. - * @param caller Calling block. - */ -function link_returning_blocks( - label_blocks: Map, - ret: BasicBlock, - caller: BasicBlock, -): void { - for (const label of caller.branch_labels) { - const callee = label_blocks.get(label); - - if (callee) { - if (callee.branch_type === BranchType.Return) { - callee.link_to(ret); - } else { - link_returning_blocks_recurse(new Set(), ret, callee); - } - } - } -} - -/** - * @param encountered For avoiding infinite loops. - * @param ret - * @param block - */ -function link_returning_blocks_recurse( - encountered: Set, - ret: BasicBlock, - block: BasicBlock, -): void { - if (encountered.has(block)) { - return; - } else { - encountered.add(block); - } - - for (const to_block of block.to) { - if (to_block.branch_type === BranchType.Return) { - to_block.link_to(ret); - } else { - link_returning_blocks_recurse(encountered, ret, to_block); - } - } -} diff --git a/src/core/data_formats/asm/data_flow_analysis/ValueSet.test.ts b/src/core/data_formats/asm/data_flow_analysis/ValueSet.test.ts deleted file mode 100644 index ec5f7c57..00000000 --- a/src/core/data_formats/asm/data_flow_analysis/ValueSet.test.ts +++ /dev/null @@ -1,84 +0,0 @@ -import { ValueSet } from "./ValueSet"; - -test("empty", () => { - const vs = new ValueSet(); - - expect(vs.size()).toBe(0); -}); - -test("get", () => { - const vs = new ValueSet().set_interval(10, 13).union(new ValueSet().set_interval(20, 22)); - - expect(vs.size()).toBe(7); - expect(vs.get(0)).toBe(10); - expect(vs.get(1)).toBe(11); - expect(vs.get(2)).toBe(12); - expect(vs.get(3)).toBe(13); - expect(vs.get(4)).toBe(20); - expect(vs.get(5)).toBe(21); - expect(vs.get(6)).toBe(22); -}); - -test("has", () => { - const vs = new ValueSet().set_interval(-20, 13).union(new ValueSet().set_interval(20, 22)); - - expect(vs.size()).toBe(37); - expect(vs.has(-9001)).toBe(false); - expect(vs.has(-21)).toBe(false); - expect(vs.has(-20)).toBe(true); - expect(vs.has(13)).toBe(true); - expect(vs.has(14)).toBe(false); - expect(vs.has(19)).toBe(false); - expect(vs.has(20)).toBe(true); - expect(vs.has(22)).toBe(true); - expect(vs.has(23)).toBe(false); - expect(vs.has(9001)).toBe(false); -}); - -test("set_value", () => { - const vs = new ValueSet(); - vs.set_value(100); - vs.set_value(4); - vs.set_value(24324); - - expect(vs.size()).toBe(1); - expect([...vs]).toEqual([24324]); -}); - -test("union", () => { - const c = new ValueSet() - .union(new ValueSet().set_value(21)) - .union(new ValueSet().set_value(4968)); - - expect(c.size()).toBe(2); - expect([...c]).toEqual([21, 4968]); -}); - -test("union of intervals", () => { - const a = new ValueSet() - .union(new ValueSet().set_interval(10, 12)) - .union(new ValueSet().set_interval(14, 16)); - - expect(a.size()).toBe(6); - expect([...a]).toEqual([10, 11, 12, 14, 15, 16]); - - a.union(new ValueSet().set_interval(13, 13)); - - expect(a.size()).toBe(7); - expect([...a]).toEqual([10, 11, 12, 13, 14, 15, 16]); - - a.union(new ValueSet().set_interval(1, 2)); - - expect(a.size()).toBe(9); - expect([...a]).toEqual([1, 2, 10, 11, 12, 13, 14, 15, 16]); - - a.union(new ValueSet().set_interval(30, 32)); - - expect(a.size()).toBe(12); - expect([...a]).toEqual([1, 2, 10, 11, 12, 13, 14, 15, 16, 30, 31, 32]); - - a.union(new ValueSet().set_interval(20, 21)); - - expect(a.size()).toBe(14); - expect([...a]).toEqual([1, 2, 10, 11, 12, 13, 14, 15, 16, 20, 21, 30, 31, 32]); -}); diff --git a/src/core/data_formats/asm/data_flow_analysis/ValueSet.ts b/src/core/data_formats/asm/data_flow_analysis/ValueSet.ts deleted file mode 100644 index dfa9383e..00000000 --- a/src/core/data_formats/asm/data_flow_analysis/ValueSet.ts +++ /dev/null @@ -1,196 +0,0 @@ -/** - * Represents a sorted set of integers. - */ -export class ValueSet { - /** - * Closed intervals [start, end]. - */ - private intervals: { start: number; end: number }[] = []; - - size(): number { - return this.intervals.reduce((acc, i) => acc + i.end - i.start + 1, 0); - } - - get(i: number): number | undefined { - for (const { start, end } of this.intervals) { - const size = end - start + 1; - - if (i < size) { - return start + i; - } else { - i -= size; - } - } - - return undefined; - } - - min(): number | undefined { - return this.intervals.length ? this.intervals[0].start : undefined; - } - - max(): number | undefined { - return this.intervals.length ? this.intervals[this.intervals.length - 1].end : undefined; - } - - has(value: number): boolean { - for (const int of this.intervals) { - if (int.start <= value && value <= int.end) { - return true; - } - } - - return false; - } - - /** - * Sets this ValueSet to the given integer. - * - * @param value integer value - */ - set_value(value: number): ValueSet { - this.intervals = [{ start: value, end: value }]; - return this; - } - - /** - * Sets this ValueSet to the values in the given interval. - * - * @param start lower bound, inclusive - * @param end upper bound, inclusive - */ - set_interval(start: number, end: number): ValueSet { - if (end < start) - throw new Error( - `Interval upper bound should be greater than or equal to lower bound, got [${start}, ${end}].`, - ); - - this.intervals = [{ start, end }]; - return this; - } - - /** - * Doesn't take into account interger overflow. - */ - scalar_add(s: number): ValueSet { - for (const int of this.intervals) { - int.start += s; - int.end += s; - } - - return this; - } - - /** - * Doesn't take into account interger overflow. - */ - scalar_sub(s: number): ValueSet { - return this.scalar_add(-s); - } - - /** - * Doesn't take into account interger overflow. - */ - scalar_mul(s: number): ValueSet { - for (const int of this.intervals) { - int.start *= s; - int.end *= s; - } - - return this; - } - - /** - * Integer division. - * Doesn't take into account interger overflow. - */ - scalar_div(s: number): ValueSet { - for (const int of this.intervals) { - int.start = Math.floor(int.start / s); - int.end = Math.floor(int.end / s); - } - - return this; - } - - union(other: ValueSet): ValueSet { - let i = 0; - - outer: for (const b of other.intervals) { - while (i < this.intervals.length) { - const a = this.intervals[i]; - - if (b.end < a.start - 1) { - this.intervals.splice(i, 0, b); - i++; - continue outer; - } else if (b.start <= a.end + 1) { - a.start = Math.min(a.start, b.start); - - let j = i; - - while (j < this.intervals.length) { - if (b.end > this.intervals[j].start) { - a.end = this.intervals[j].end; - j++; - } else { - break; - } - } - - this.intervals.splice(i + 1, j - i - 1); - a.end = Math.max(a.end, b.end); - i++; - continue outer; - } else { - i++; - } - } - - this.intervals.push(b); - } - - return this; - } - - to_array(): number[] { - const array: number[] = []; - - for (const { start, end } of this.intervals) { - for (let i = start; i <= end; i++) { - array.push(i); - } - } - - return array; - } - - [Symbol.iterator] = (): Iterator => { - let int_i = 0; - let value = NaN; - - return { - next: (): IteratorResult => { - let done = true; - - if (int_i < this.intervals.length) { - if (isNaN(value)) { - value = this.intervals[int_i].start; - done = false; - } else if (value > this.intervals[int_i].end) { - int_i++; - - if (int_i < this.intervals.length) { - value = this.intervals[int_i].start; - done = false; - } - } else { - done = false; - } - } - - return { done, value: value++ }; - }, - }; - }; -} diff --git a/src/core/data_formats/asm/data_flow_analysis/get_map_designations.ts b/src/core/data_formats/asm/data_flow_analysis/get_map_designations.ts deleted file mode 100644 index e5af5077..00000000 --- a/src/core/data_formats/asm/data_flow_analysis/get_map_designations.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { InstructionSegment } from "../instructions"; -import { ControlFlowGraph } from "./ControlFlowGraph"; -import { OP_BB_MAP_DESIGNATE, OP_MAP_DESIGNATE, OP_MAP_DESIGNATE_EX } from "../opcodes"; -import { get_register_value } from "./get_register_value"; -import { LogManager } from "../../../logging"; - -const logger = LogManager.get("core/data_formats/asm/data_flow_analysis/map_designations"); - -export function get_map_designations( - instruction_segments: InstructionSegment[], - func_0_segment: InstructionSegment, -): Map { - const map_designations = new Map(); - let cfg: ControlFlowGraph | undefined; - - for (const inst of func_0_segment.instructions) { - switch (inst.opcode.code) { - case OP_MAP_DESIGNATE.code: - case OP_MAP_DESIGNATE_EX.code: - { - if (!cfg) { - cfg = ControlFlowGraph.create(instruction_segments); - } - - const area_id = get_register_value(cfg, inst, inst.args[0].value); - - if (area_id.size() !== 1) { - logger.warn(`Couldn't determine area ID for map_designate instruction.`); - continue; - } - - const variant_id_register = - inst.args[0].value + (inst.opcode.code === OP_MAP_DESIGNATE.code ? 2 : 3); - const variant_id = get_register_value(cfg, inst, variant_id_register); - - if (variant_id.size() !== 1) { - logger.warn( - `Couldn't determine area variant ID for map_designate instruction.`, - ); - continue; - } - - map_designations.set(area_id.get(0)!, variant_id.get(0)!); - } - break; - - case OP_BB_MAP_DESIGNATE.code: - map_designations.set(inst.args[0].value, inst.args[2].value); - break; - } - } - - return map_designations; -} diff --git a/src/core/data_formats/asm/data_flow_analysis/get_register_value.test.ts b/src/core/data_formats/asm/data_flow_analysis/get_register_value.test.ts deleted file mode 100644 index e32c6590..00000000 --- a/src/core/data_formats/asm/data_flow_analysis/get_register_value.test.ts +++ /dev/null @@ -1,175 +0,0 @@ -import { OP_ADDI, OP_DIVI, OP_MULI, OP_SUBI, Opcode } from "../opcodes"; -import { ControlFlowGraph } from "./ControlFlowGraph"; -import { - MAX_REGISTER_VALUE, - MIN_REGISTER_VALUE, - get_register_value, - REGISTER_VALUES, -} from "./get_register_value"; -import { to_instructions } from "../../../../../test/src/utils"; - -test(`trivial case`, () => { - const im = to_instructions(` - 0: - ret - `); - const cfg = ControlFlowGraph.create(im); - const values = get_register_value(cfg, im[0].instructions[0], 6); - - expect(values.size()).toBe(0); -}); - -test(`single assignment`, () => { - const im = to_instructions(` - 0: - leti r6, 1337 - ret - `); - const cfg = ControlFlowGraph.create(im); - const values = get_register_value(cfg, im[0].instructions[1], 6); - - expect(values.size()).toBe(1); - expect(values.get(0)).toBe(1337); -}); - -test(`two code paths`, () => { - const im = to_instructions(` - 0: - jmp_> r1, r2, 1 - leti r10, 111 - jmp 2 - 1: - leti r10, 222 - 2: - ret - `); - const cfg = ControlFlowGraph.create(im); - const values = get_register_value(cfg, im[2].instructions[0], 10); - - expect(values.size()).toBe(2); - expect(values.get(0)).toBe(111); - expect(values.get(1)).toBe(222); -}); - -test(`loop`, () => { - const im = to_instructions(` - 0: - addi r10, 5 - jmpi_< r10, 500, 0 - ret - `); - const cfg = ControlFlowGraph.create(im); - const values = get_register_value(cfg, im[0].instructions[2], 10); - - expect(values.size()).toBe(REGISTER_VALUES); -}); - -test(`leta and leto`, () => { - const im = to_instructions(` - 0: - leta r0, r100 - leto r1, 100 - ret - `); - const cfg = ControlFlowGraph.create(im); - const r0 = get_register_value(cfg, im[0].instructions[2], 0); - - expect(r0.size()).toBe(REGISTER_VALUES); - expect(r0.min()).toBe(MIN_REGISTER_VALUE); - expect(r0.max()).toBe(MAX_REGISTER_VALUE); - - const r1 = get_register_value(cfg, im[0].instructions[2], 1); - - expect(r1.size()).toBe(REGISTER_VALUES); - expect(r1.min()).toBe(MIN_REGISTER_VALUE); - expect(r1.max()).toBe(MAX_REGISTER_VALUE); -}); - -test(`rev`, () => { - const im = to_instructions(` - 0: - leti r0, 10 - leti r1, 50 - get_random r0, r10 - rev r10 - leti r0, -10 - leti r1, 50 - get_random r0, r10 - rev r10 - leti r10, 0 - rev r10 - ret - `); - const cfg = ControlFlowGraph.create(im); - const v0 = get_register_value(cfg, im[0].instructions[4], 10); - - expect(v0.size()).toBe(1); - expect(v0.get(0)).toBe(0); - - const v1 = get_register_value(cfg, im[0].instructions[8], 10); - - expect(v1.size()).toBe(2); - expect(v1.to_array()).toEqual([0, 1]); - - const v2 = get_register_value(cfg, im[0].instructions[10], 10); - - expect(v2.size()).toBe(1); - expect(v2.get(0)).toBe(1); -}); - -/** - * Test an instruction taking a register and an integer. - * The instruction will be called with arguments r99, 15. r99 will be set to 10 or 20. - */ -function test_branched(opcode: Opcode, ...expected: number[]): void { - test(opcode.mnemonic, () => { - const im = to_instructions(` - 0: - leti r99, 10 - jmpi_= r0, 100, 1 - leti r99, 20 - 1: - ${opcode.mnemonic} r99, 15 - ret - `); - const cfg = ControlFlowGraph.create(im); - const values = get_register_value(cfg, im[1].instructions[1], 99); - - expect(values.size()).toBe(expected.length); - expect(values.to_array()).toEqual(expected); - }); -} - -test_branched(OP_ADDI, 25, 35); -test_branched(OP_SUBI, -5, 5); -test_branched(OP_MULI, 150, 300); -test_branched(OP_DIVI, 0, 1); - -test(`get_random`, () => { - const im = to_instructions(` - 0: - leti r0, 20 - leti r1, 20 - get_random r0, r10 - leti r1, 19 - get_random r0, r10 - leti r1, 25 - get_random r0, r10 - ret - `); - const cfg = ControlFlowGraph.create(im); - const v0 = get_register_value(cfg, im[0].instructions[3], 10); - - expect(v0.size()).toBe(1); - expect(v0.get(0)).toBe(20); - - const v1 = get_register_value(cfg, im[0].instructions[5], 10); - - expect(v1.size()).toBe(1); - expect(v1.get(0)).toBe(20); - - const v2 = get_register_value(cfg, im[0].instructions[7], 10); - - expect(v2.size()).toBe(5); - expect(v2.to_array()).toEqual([20, 21, 22, 23, 24]); -}); diff --git a/src/core/data_formats/asm/data_flow_analysis/get_register_value.ts b/src/core/data_formats/asm/data_flow_analysis/get_register_value.ts deleted file mode 100644 index 544333c6..00000000 --- a/src/core/data_formats/asm/data_flow_analysis/get_register_value.ts +++ /dev/null @@ -1,226 +0,0 @@ -import { Instruction } from "../instructions"; -import { - Kind, - MAX_SIGNED_DWORD_VALUE, - MIN_SIGNED_DWORD_VALUE, - OP_ADDI, - OP_CLEAR, - OP_DIVI, - OP_GET_DIFFLVL, - OP_GET_RANDOM, - OP_GET_SLOTNUMBER, - OP_IF_ZONE_CLEAR, - OP_LET, - OP_LETB, - OP_LETI, - OP_LETW, - OP_MULI, - OP_REV, - OP_SET, - OP_STACK_POPM, - OP_STACK_PUSHM, - OP_SUBI, - OP_SYNC_LETI, - ParamAccess, -} from "../opcodes"; -import { BasicBlock, ControlFlowGraph } from "./ControlFlowGraph"; -import { ValueSet } from "./ValueSet"; -import { LogManager } from "../../../logging"; - -const logger = LogManager.get("core/data_formats/asm/data_flow_analysis/register_value"); - -export const MIN_REGISTER_VALUE = MIN_SIGNED_DWORD_VALUE; -export const MAX_REGISTER_VALUE = MAX_SIGNED_DWORD_VALUE; -export const REGISTER_VALUES = Math.pow(2, 32); - -/** - * Computes the possible values of a register right before a specific instruction. - */ -export function get_register_value( - cfg: ControlFlowGraph, - instruction: Instruction, - register: number, -): ValueSet { - const block = cfg.get_block_for_instruction(instruction); - - if (block) { - return find_values( - new Context(), - new Set(), - block, - block.index_of_instruction(instruction), - register, - ); - } else { - return new ValueSet(); - } -} - -class Context { - iterations = 0; -} - -function find_values( - ctx: Context, - path: Set, - block: BasicBlock, - end: number, - register: number, -): ValueSet { - if (++ctx.iterations > 100) { - logger.warn("Too many iterations."); - return new ValueSet().set_interval(MIN_REGISTER_VALUE, MAX_REGISTER_VALUE); - } - - for (let i = end - 1; i >= block.start; i--) { - const instruction = block.segment.instructions[i]; - const args = instruction.args; - - switch (instruction.opcode.code) { - case OP_LET.code: - if (args[0].value === register) { - return find_values(ctx, new Set(path), block, i, args[1].value); - } - break; - case OP_LETI.code: - case OP_LETB.code: - case OP_LETW.code: - case OP_SYNC_LETI.code: - if (args[0].value === register) { - return new ValueSet().set_value(args[1].value); - } - break; - case OP_SET.code: - if (args[0].value === register) { - return new ValueSet().set_value(1); - } - break; - case OP_CLEAR.code: - if (args[0].value === register) { - return new ValueSet().set_value(0); - } - break; - case OP_REV.code: - if (args[0].value === register) { - const prev_vals = find_values(ctx, new Set(path), block, i, register); - const prev_size = prev_vals.size(); - - if (prev_size === 0 || (prev_size === 1 && prev_vals.get(0) === 0)) { - return new ValueSet().set_value(1); - } else if (prev_vals.has(0)) { - return new ValueSet().set_interval(0, 1); - } else { - return new ValueSet().set_value(0); - } - } - break; - case OP_ADDI.code: - if (args[0].value === register) { - const prev_vals = find_values(ctx, new Set(path), block, i, register); - return prev_vals.scalar_add(args[1].value); - } - break; - case OP_SUBI.code: - if (args[0].value === register) { - const prev_vals = find_values(ctx, new Set(path), block, i, register); - return prev_vals.scalar_sub(args[1].value); - } - break; - case OP_MULI.code: - if (args[0].value === register) { - const prev_vals = find_values(ctx, new Set(path), block, i, register); - return prev_vals.scalar_mul(args[1].value); - } - break; - case OP_DIVI.code: - if (args[0].value === register) { - const prev_vals = find_values(ctx, new Set(path), block, i, register); - return prev_vals.scalar_div(args[1].value); - } - break; - case OP_IF_ZONE_CLEAR.code: - if (args[0].value === register) { - return new ValueSet().set_interval(0, 1); - } - break; - case OP_GET_DIFFLVL.code: - if (args[0].value === register) { - return new ValueSet().set_interval(0, 2); - } - break; - case OP_GET_SLOTNUMBER.code: - if (args[0].value === register) { - return new ValueSet().set_interval(0, 3); - } - break; - case OP_GET_RANDOM.code: - if (args[1].value === register) { - // TODO: undefined values. - const min = find_values(ctx, new Set(path), block, i, args[0].value).min() || 0; - const max = Math.max( - find_values(ctx, new Set(path), block, i, args[0].value + 1).max() || 0, - min + 1, - ); - return new ValueSet().set_interval(min, max - 1); - } - break; - case OP_STACK_PUSHM.code: - case OP_STACK_POPM.code: - { - const min_reg = args[0].value; - const max_reg = args[0].value + args[1].value; - - if (min_reg <= register && register < max_reg) { - return new ValueSet().set_interval(MIN_REGISTER_VALUE, MAX_REGISTER_VALUE); - } - } - break; - default: - // Assume any other opcodes that write to the register can produce any value. - { - const params = instruction.opcode.params; - const arg_len = Math.min(args.length, params.length); - - for (let j = 0; j < arg_len; j++) { - const param = params[j]; - - if (param.type.kind == Kind.RegTupRef) { - const reg_ref = args[j].value; - let k = 0; - - for (const reg_param of param.type.register_tuples) { - if ( - (reg_param.access === ParamAccess.Write || - reg_param.access === ParamAccess.ReadWrite) && - reg_ref + k === register - ) { - return new ValueSet().set_interval( - MIN_REGISTER_VALUE, - MAX_REGISTER_VALUE, - ); - } - - k++; - } - } - } - } - break; - } - } - - const values = new ValueSet(); - path.add(block); - - for (const from of block.from) { - // Bail out from loops. - if (path.has(from)) { - values.set_interval(MIN_REGISTER_VALUE, MAX_REGISTER_VALUE); - break; - } - - values.union(find_values(ctx, new Set(path), from, from.end, register)); - } - - return values; -} diff --git a/src/core/data_formats/asm/data_flow_analysis/get_stack_value.ts b/src/core/data_formats/asm/data_flow_analysis/get_stack_value.ts deleted file mode 100644 index b2e150f6..00000000 --- a/src/core/data_formats/asm/data_flow_analysis/get_stack_value.ts +++ /dev/null @@ -1,120 +0,0 @@ -import { Instruction } from "../instructions"; -import { - MAX_SIGNED_DWORD_VALUE, - MIN_SIGNED_DWORD_VALUE, - OP_ARG_PUSHA, - OP_ARG_PUSHB, - OP_ARG_PUSHL, - OP_ARG_PUSHO, - OP_ARG_PUSHR, - OP_ARG_PUSHS, - OP_ARG_PUSHW, - StackInteraction, -} from "../opcodes"; -import { BasicBlock, ControlFlowGraph } from "./ControlFlowGraph"; -import { ValueSet } from "./ValueSet"; -import { get_register_value } from "./get_register_value"; -import { LogManager } from "../../../logging"; - -const logger = LogManager.get("core/data_formats/asm/data_flow_analysis/stack_value"); - -export const MIN_STACK_VALUE = MIN_SIGNED_DWORD_VALUE; -export const MAX_STACK_VALUE = MAX_SIGNED_DWORD_VALUE; - -/** - * Computes the possible values of a stack element at the nth position from the top right before a specific instruction. - */ -export function get_stack_value( - cfg: ControlFlowGraph, - instruction: Instruction, - position: number, -): ValueSet { - const block = cfg.get_block_for_instruction(instruction); - - if (block) { - return find_values( - new Context(cfg), - new Set(), - block, - block.index_of_instruction(instruction), - position, - ); - } else { - return new ValueSet(); - } -} - -class Context { - iterations = 0; - - constructor(readonly cfg: ControlFlowGraph) {} -} - -function find_values( - ctx: Context, - path: Set, - block: BasicBlock, - end: number, - position: number, -): ValueSet { - if (++ctx.iterations > 100) { - logger.warn("Too many iterations."); - return new ValueSet().set_interval(MIN_STACK_VALUE, MAX_STACK_VALUE); - } - - for (let i = end - 1; i >= block.start; i--) { - const instruction = block.segment.instructions[i]; - - if (instruction.opcode.stack === StackInteraction.Pop) { - position += instruction.opcode.params.length; - continue; - } - - const args = instruction.args; - - switch (instruction.opcode.code) { - case OP_ARG_PUSHR.code: - if (position === 0) { - return get_register_value(ctx.cfg, instruction, args[0].value); - } else { - position--; - break; - } - case OP_ARG_PUSHL.code: - case OP_ARG_PUSHB.code: - case OP_ARG_PUSHW.code: - if (position === 0) { - return new ValueSet().set_value(args[0].value); - } else { - position--; - break; - } - case OP_ARG_PUSHA.code: - case OP_ARG_PUSHO.code: - case OP_ARG_PUSHS.code: - if (position === 0) { - return new ValueSet().set_interval(MIN_STACK_VALUE, MAX_STACK_VALUE); - } else { - position--; - break; - } - default: - break; - } - } - - const values = new ValueSet(); - path.add(block); - - for (const from of block.from) { - // Bail out from loops. - if (path.has(from)) { - values.set_interval(MIN_STACK_VALUE, MAX_STACK_VALUE); - break; - } - - values.union(find_values(ctx, new Set(path), from, from.end, position)); - } - - return values; -} diff --git a/src/core/data_formats/asm/instructions.ts b/src/core/data_formats/asm/instructions.ts deleted file mode 100644 index 13b7250a..00000000 --- a/src/core/data_formats/asm/instructions.ts +++ /dev/null @@ -1,238 +0,0 @@ -import { Kind, Opcode } from "./opcodes"; -import { array_buffers_equal, arrays_equal } from "../../util"; -import { BinFormat } from "../parsing/quest/BinFormat"; - -/** - * Instruction invocation. - */ -export type Instruction = { - readonly opcode: Opcode; - readonly args: readonly Arg[]; - /** - * Maps each parameter by index to its arguments. - */ - readonly param_to_args: readonly Arg[][]; - readonly asm?: InstructionAsm; -}; - -export function new_instruction(opcode: Opcode, args: Arg[], asm?: InstructionAsm): Instruction { - const len = Math.min(opcode.params.length, args.length); - const param_to_args: Arg[][] = []; - - for (let i = 0; i < len; i++) { - const type = opcode.params[i].type; - const arg = args[i]; - param_to_args[i] = []; - - switch (type.kind) { - case Kind.ILabelVar: - case Kind.RegRefVar: - for (let j = i; j < args.length; j++) { - param_to_args[i].push(args[j]); - } - - break; - default: - param_to_args[i].push(arg); - break; - } - } - - return { - opcode, - args, - param_to_args, - asm, - }; -} - -/** - * @returns The byte size of the entire instruction, i.e. the sum of the opcode size and all - * argument sizes. - */ -export function instruction_size(instruction: Instruction, format: BinFormat): number { - const opcode = instruction.opcode; - const p_len = Math.min(opcode.params.length, instruction.param_to_args.length); - let arg_size = 0; - - for (let i = 0; i < p_len; i++) { - const type = opcode.params[i].type; - const args = instruction.param_to_args[i]; - - switch (type.kind) { - case Kind.Byte: - case Kind.RegRef: - case Kind.RegTupRef: - arg_size++; - break; - case Kind.Word: - case Kind.Label: - case Kind.ILabel: - case Kind.DLabel: - case Kind.SLabel: - arg_size += 2; - break; - case Kind.DWord: - case Kind.Float: - arg_size += 4; - break; - case Kind.String: - if (format == BinFormat.DC_GC) { - arg_size += (args[0].value as string).length + 1; - } else { - arg_size += 2 * (args[0].value as string).length + 2; - } - break; - case Kind.ILabelVar: - arg_size += 1 + 2 * args.length; - break; - case Kind.RegRefVar: - arg_size += 1 + args.length; - break; - default: - throw new Error(`Parameter type ${Kind[type.kind]} not implemented.`); - } - } - - return opcode.size + arg_size; -} - -function instructions_equal(a: Instruction, b: Instruction): boolean { - return a.opcode.code === b.opcode.code && arrays_equal(a.args, b.args, args_equal); -} - -export function clone_instruction(instr: Instruction): Instruction { - return { - opcode: instr.opcode, - args: instr.args.map(arg => ({ ...arg })), - param_to_args: instr.param_to_args.map(args => args.map(arg => ({ ...arg }))), - asm: instr.asm, - }; -} - -/** - * Instruction argument. - */ -export type Arg = { - readonly value: any; -}; - -export function new_arg(value: unknown): Arg { - return { value }; -} - -function args_equal(a: Arg, b: Arg): boolean { - return a.value === b.value; -} - -/** - * Position and length of related assembly code. - */ -export type AsmToken = { - readonly line_no: number; - readonly col: number; - readonly len: number; -}; - -/** - * Information about the related assembly code. - */ -export type InstructionAsm = { - readonly mnemonic?: AsmToken; - readonly args: AsmToken[]; - readonly stack_args: (AsmToken & { readonly value: number })[]; -}; - -export enum SegmentType { - Instructions, - Data, - String, -} - -/** - * Segment of object code. A segment starts with an instruction, byte or string character that is - * referenced by one or more labels. The segment ends right before the next instruction, byte or - * string character that is referenced by a label. - */ -export type Segment = InstructionSegment | DataSegment | StringSegment; - -export type InstructionSegment = { - type: SegmentType.Instructions; - labels: number[]; - instructions: Instruction[]; - asm: { - labels: AsmToken[]; - }; -}; - -export type DataSegment = { - type: SegmentType.Data; - labels: number[]; - data: ArrayBuffer; - asm: { - labels: AsmToken[]; - }; -}; - -export type StringSegment = { - type: SegmentType.String; - labels: number[]; - value: string; - asm: { - labels: AsmToken[]; - }; -}; - -function segments_equal(a: Segment, b: Segment): boolean { - if (a.type !== b.type || !arrays_equal(a.labels, b.labels)) return false; - - switch (a.type) { - case SegmentType.Instructions: - return arrays_equal( - a.instructions, - (b as InstructionSegment).instructions, - instructions_equal, - ); - - case SegmentType.Data: - return array_buffers_equal(a.data, (b as DataSegment).data); - - case SegmentType.String: - return a.value === (b as StringSegment).value; - } -} - -export function segment_arrays_equal(a: readonly Segment[], b: readonly Segment[]): boolean { - return arrays_equal(a, b, segments_equal); -} - -export function clone_segment(seg: Segment): Segment { - const labels = seg.labels.slice(); - const asm = { - labels: seg.asm.labels.map(label => ({ ...label })), - }; - - switch (seg.type) { - case SegmentType.Instructions: - return { - type: SegmentType.Instructions, - labels, - instructions: seg.instructions.map(instr => clone_instruction(instr)), - asm, - }; - case SegmentType.Data: - return { - type: SegmentType.Data, - labels, - data: seg.data.slice(0), - asm, - }; - case SegmentType.String: - return { - type: SegmentType.String, - labels, - value: seg.value, - asm, - }; - } -} diff --git a/src/core/data_formats/asm/opcodes.ts b/src/core/data_formats/asm/opcodes.ts deleted file mode 100644 index 15877db6..00000000 --- a/src/core/data_formats/asm/opcodes.ts +++ /dev/null @@ -1,8712 +0,0 @@ -/** - * Enumerates all the types that are not purely abstract. - */ -export enum Kind { - Any, - Byte, - Word, - DWord, - Float, - Label, - ILabel, - DLabel, - SLabel, - String, - ILabelVar, - RegRef, - RegTupRef, - RegRefVar, - Pointer, -} - -/** - * Abstract super type of all types. - */ -export type AnyType = - | ValueType - | RefType - | PointerType - | { - readonly kind: Kind.Any; - }; - -/** - * Purely abstract super type of all value types. - */ -export type ValueType = ByteType | WordType | DWordType | FloatType | LabelType; - -/** - * 8-Bit integer. - */ -export type ByteType = { - readonly kind: Kind.Byte; -}; - -/** - * 16-Bit integer. - */ -export type WordType = { - readonly kind: Kind.Word; -}; - -/** - * 32-Bit integer. - */ -export type DWordType = { - readonly kind: Kind.DWord; -}; - -/** - * 32-Bit floating point number. - */ -export type FloatType = { - readonly kind: Kind.Float; -}; - -/** - * Abstract super type of all label types. - */ -export type LabelType = - | ILabelType - | DLabelType - | SLabelType - | StringType - | ILabelVarType - | { - readonly kind: Kind.Label; - }; - -/** - * Named reference to an instruction. - */ -export type ILabelType = { - readonly kind: Kind.ILabel; -}; - -/** - * Named reference to a data segment. - */ -export type DLabelType = { - readonly kind: Kind.DLabel; -}; - -/** - * Named reference to a string segment. - */ -export type SLabelType = { - readonly kind: Kind.SLabel; -}; - -/** - * String of arbitrary size. - */ -export type StringType = { - readonly kind: Kind.String; -}; - -/** - * Arbitrary amount of instruction labels. - */ -export type ILabelVarType = { - readonly kind: Kind.ILabelVar; -}; - -/** - * Purely abstract super type of all reference types. - */ -export type RefType = RegRefType | RegTupRefType | RegRefVarType; - -/** - * Reference to one or more registers. - */ -export type RegRefType = { - readonly kind: Kind.RegRef; -}; - -/** - * Reference to a fixed amount of consecutive registers of specific types. - * The only parameterized type. - */ -export type RegTupRefType = { - readonly kind: Kind.RegTupRef; - readonly register_tuples: Param[]; -}; - -/** - * Arbitrary amount of register references. - */ -export type RegRefVarType = { - readonly kind: Kind.RegRefVar; -}; - -/** - * Raw memory pointer. - */ -export type PointerType = { - readonly kind: Kind.Pointer; -}; - -// Singleton type constants. -// No singleton constant for `RegTupRef` because it is parameterized. -export const TYPE_ANY: AnyType = { kind: Kind.Any }; -export const TYPE_BYTE: ByteType = { kind: Kind.Byte }; -export const TYPE_WORD: WordType = { kind: Kind.Word }; -export const TYPE_DWORD: DWordType = { kind: Kind.DWord }; -export const TYPE_FLOAT: FloatType = { kind: Kind.Float }; -export const TYPE_LABEL: LabelType = { kind: Kind.Label }; -export const TYPE_I_LABEL: ILabelType = { kind: Kind.ILabel }; -export const TYPE_D_LABEL: DLabelType = { kind: Kind.DLabel }; -export const TYPE_S_LABEL: SLabelType = { kind: Kind.SLabel }; -export const TYPE_STRING: StringType = { kind: Kind.String }; -export const TYPE_I_LABEL_VAR: ILabelVarType = { kind: Kind.ILabelVar }; -export const TYPE_REG_REF: RegRefType = { kind: Kind.RegRef }; -export const TYPE_REG_REF_VAR: RegRefVarType = { kind: Kind.RegRefVar }; -export const TYPE_POINTER: PointerType = { kind: Kind.Pointer }; - -export const MIN_SIGNED_DWORD_VALUE = -Math.pow(2, 31); -export const MAX_SIGNED_DWORD_VALUE = Math.pow(2, 31) - 1; -export const MIN_UNSIGNED_DWORD_VALUE = 0; -export const MAX_UNSIGNED_DWORD_VALUE = Math.pow(2, 32) - 1; -export const MIN_DWORD_VALUE = MIN_SIGNED_DWORD_VALUE; -export const MAX_DWORD_VALUE = MAX_UNSIGNED_DWORD_VALUE; - -export enum ParamAccess { - Read, - Write, - ReadWrite, -} - -export type Param = { - readonly type: AnyType; - /** - * Documentation string. - */ - readonly doc?: string; - /** - * The way referenced registers are accessed by the instruction. Only set when type is a register reference. - */ - readonly access?: ParamAccess; -}; - -function new_param(type: AnyType, doc?: string, access?: ParamAccess): Param { - return { - type, - doc, - access, - }; -} - -export enum StackInteraction { - Push, - Pop, -} - -export const OPCODES: Opcode[] = []; -export const OPCODES_BY_MNEMONIC = new Map(); - -/** - * Opcode for script object code. Invoked by {@link Instruction}s. - */ -export type Opcode = { - /** - * 1- Or 2-byte big-endian representation of this opcode as used in object code. - */ - readonly code: number; - /** - * String representation of this opcode as used in assembly. - */ - readonly mnemonic: string; - /** - * Documentation string. - */ - readonly doc?: string; - /** - * Byte size of the opcode, either 1 or 2. - */ - readonly size: number; - /** - * Parameters passed in directly or via the stack, depending on the value of `stack`. - */ - readonly params: readonly Param[]; - /** - * Stack interaction. - */ - readonly stack?: StackInteraction; -}; - -function new_opcode( - code: number, - mnemonic: string, - doc: string | undefined, - params: readonly Param[], - stack: StackInteraction | undefined, -): Opcode { - return { - code, - mnemonic, - doc, - size: code < 256 ? 1 : 2, - params, - stack, - }; -} - -// !!! GENERATED_CODE_START !!! -export const OP_NOP = (OPCODES[0x00] = new_opcode( - 0x00, - "nop", - "No operation, does nothing.", - [], - undefined, -)); -export const OP_RET = (OPCODES[0x01] = new_opcode( - 0x01, - "ret", - "Returns control to caller.", - [], - undefined, -)); -export const OP_SYNC = (OPCODES[0x02] = new_opcode( - 0x02, - "sync", - "Yields control for the rest of the current frame. Execution will continue the following frame.", - [], - undefined, -)); -export const OP_EXIT = (OPCODES[0x03] = new_opcode( - 0x03, - "exit", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_THREAD = (OPCODES[0x04] = new_opcode( - 0x04, - "thread", - "Starts a new thread. Thread execution will start at the given label.\nOften used to check a register every frame. Make sure to yield control with sync when looping.", - [new_param(TYPE_I_LABEL, undefined, undefined)], - undefined, -)); -export const OP_VA_START = (OPCODES[0x05] = new_opcode( - 0x05, - "va_start", - "Initializes a variable argument list.\nMake sure to call va_end after va_start and va_call.", - [], - undefined, -)); -export const OP_VA_END = (OPCODES[0x06] = new_opcode( - 0x06, - "va_end", - "Restores the registers overwritten by arg_push* instructions.\nCalled after va_call.", - [], - undefined, -)); -export const OP_VA_CALL = (OPCODES[0x07] = new_opcode( - 0x07, - "va_call", - "Calls the variable argument function at the given label.\nCalled after initializing the argument list with va_start and pushing arguments onto the stack with arg_push* instructions. Make sure to call va_end afterwards.", - [new_param(TYPE_I_LABEL, undefined, undefined)], - undefined, -)); -export const OP_LET = (OPCODES[0x08] = new_opcode( - 0x08, - "let", - "Sets the first register's value to second one's value.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_LETI = (OPCODES[0x09] = new_opcode( - 0x09, - "leti", - "Sets a register to the given value.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_LETB = (OPCODES[0x0a] = new_opcode( - 0x0a, - "letb", - "Sets a register to the given value.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_BYTE, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_BYTE, undefined, undefined), - ], - undefined, -)); -export const OP_LETW = (OPCODES[0x0b] = new_opcode( - 0x0b, - "letw", - "Sets a register to the given value.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_WORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_WORD, undefined, undefined), - ], - undefined, -)); -export const OP_LETA = (OPCODES[0x0c] = new_opcode( - 0x0c, - "leta", - "Sets the first register to the memory address of the second register. Not used by Sega.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_POINTER, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_LETO = (OPCODES[0x0d] = new_opcode( - 0x0d, - "leto", - "Sets a register to the memory address of the given label. Not used by Sega.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_POINTER, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_UNKNOWN_0E = (OPCODES[0x0e] = new_opcode( - 0x0e, - "unknown_0e", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_0F = (OPCODES[0x0f] = new_opcode( - 0x0f, - "unknown_0f", - undefined, - [], - undefined, -)); -export const OP_SET = (OPCODES[0x10] = new_opcode( - 0x10, - "set", - "Sets a register to 1.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_CLEAR = (OPCODES[0x11] = new_opcode( - 0x11, - "clear", - "Sets a register to 0.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_REV = (OPCODES[0x12] = new_opcode( - 0x12, - "rev", - "Sets a register to 1 if its current value is 0, otherwise sets it to 0.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.ReadWrite)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GSET = (OPCODES[0x13] = new_opcode( - 0x13, - "gset", - undefined, - [new_param(TYPE_WORD, undefined, undefined)], - undefined, -)); -export const OP_GCLEAR = (OPCODES[0x14] = new_opcode( - 0x14, - "gclear", - undefined, - [new_param(TYPE_WORD, undefined, undefined)], - undefined, -)); -export const OP_GREV = (OPCODES[0x15] = new_opcode( - 0x15, - "grev", - undefined, - [new_param(TYPE_WORD, undefined, undefined)], - undefined, -)); -export const OP_GLET = (OPCODES[0x16] = new_opcode( - 0x16, - "glet", - undefined, - [new_param(TYPE_WORD, undefined, undefined)], - undefined, -)); -export const OP_GGET = (OPCODES[0x17] = new_opcode( - 0x17, - "gget", - "Sets a register to value of the given flag.", - [ - new_param(TYPE_WORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_WORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ADD = (OPCODES[0x18] = new_opcode( - 0x18, - "add", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ADDI = (OPCODES[0x19] = new_opcode( - 0x19, - "addi", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_SUB = (OPCODES[0x1a] = new_opcode( - 0x1a, - "sub", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SUBI = (OPCODES[0x1b] = new_opcode( - 0x1b, - "subi", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_MUL = (OPCODES[0x1c] = new_opcode( - 0x1c, - "mul", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_MULI = (OPCODES[0x1d] = new_opcode( - 0x1d, - "muli", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_DIV = (OPCODES[0x1e] = new_opcode( - 0x1e, - "div", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_DIVI = (OPCODES[0x1f] = new_opcode( - 0x1f, - "divi", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_AND = (OPCODES[0x20] = new_opcode( - 0x20, - "and", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ANDI = (OPCODES[0x21] = new_opcode( - 0x21, - "andi", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_OR = (OPCODES[0x22] = new_opcode( - 0x22, - "or", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ORI = (OPCODES[0x23] = new_opcode( - 0x23, - "ori", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_XOR = (OPCODES[0x24] = new_opcode( - 0x24, - "xor", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_XORI = (OPCODES[0x25] = new_opcode( - 0x25, - "xori", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_MOD = (OPCODES[0x26] = new_opcode( - 0x26, - "mod", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_MODI = (OPCODES[0x27] = new_opcode( - 0x27, - "modi", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_JMP = (OPCODES[0x28] = new_opcode( - 0x28, - "jmp", - undefined, - [new_param(TYPE_I_LABEL, undefined, undefined)], - undefined, -)); -export const OP_CALL = (OPCODES[0x29] = new_opcode( - 0x29, - "call", - undefined, - [new_param(TYPE_I_LABEL, undefined, undefined)], - undefined, -)); -export const OP_JMP_ON = (OPCODES[0x2a] = new_opcode( - 0x2a, - "jmp_on", - undefined, - [ - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_REG_REF_VAR, undefined, ParamAccess.Read), - ], - undefined, -)); -export const OP_JMP_OFF = (OPCODES[0x2b] = new_opcode( - 0x2b, - "jmp_off", - undefined, - [ - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_REG_REF_VAR, undefined, ParamAccess.Read), - ], - undefined, -)); -export const OP_JMP_E = (OPCODES[0x2c] = new_opcode( - 0x2c, - "jmp_=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMPI_E = (OPCODES[0x2d] = new_opcode( - 0x2d, - "jmpi_=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMP_NE = (OPCODES[0x2e] = new_opcode( - 0x2e, - "jmp_!=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMPI_NE = (OPCODES[0x2f] = new_opcode( - 0x2f, - "jmpi_!=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_UJMP_G = (OPCODES[0x30] = new_opcode( - 0x30, - "ujmp_>", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_UJMPI_G = (OPCODES[0x31] = new_opcode( - 0x31, - "ujmpi_>", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMP_G = (OPCODES[0x32] = new_opcode( - 0x32, - "jmp_>", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMPI_G = (OPCODES[0x33] = new_opcode( - 0x33, - "jmpi_>", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_UJMP_L = (OPCODES[0x34] = new_opcode( - 0x34, - "ujmp_<", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_UJMPI_L = (OPCODES[0x35] = new_opcode( - 0x35, - "ujmpi_<", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMP_L = (OPCODES[0x36] = new_opcode( - 0x36, - "jmp_<", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMPI_L = (OPCODES[0x37] = new_opcode( - 0x37, - "jmpi_<", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_UJMP_GE = (OPCODES[0x38] = new_opcode( - 0x38, - "ujmp_>=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_UJMPI_GE = (OPCODES[0x39] = new_opcode( - 0x39, - "ujmpi_>=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMP_GE = (OPCODES[0x3a] = new_opcode( - 0x3a, - "jmp_>=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMPI_GE = (OPCODES[0x3b] = new_opcode( - 0x3b, - "jmpi_>=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_UJMP_LE = (OPCODES[0x3c] = new_opcode( - 0x3c, - "ujmp_<=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_UJMPI_LE = (OPCODES[0x3d] = new_opcode( - 0x3d, - "ujmpi_<=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMP_LE = (OPCODES[0x3e] = new_opcode( - 0x3e, - "jmp_<=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_JMPI_LE = (OPCODES[0x3f] = new_opcode( - 0x3f, - "jmpi_<=", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_SWITCH_JMP = (OPCODES[0x40] = new_opcode( - 0x40, - "switch_jmp", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL_VAR, undefined, undefined), - ], - undefined, -)); -export const OP_SWITCH_CALL = (OPCODES[0x41] = new_opcode( - 0x41, - "switch_call", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL_VAR, undefined, undefined), - ], - undefined, -)); -export const OP_STACK_PUSH = (OPCODES[0x42] = new_opcode( - 0x42, - "stack_push", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_STACK_POP = (OPCODES[0x43] = new_opcode( - 0x43, - "stack_pop", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_STACK_PUSHM = (OPCODES[0x44] = new_opcode( - 0x44, - "stack_pushm", - "Pushes the values of an arbitrary amount of registers onto the stack.", - [ - new_param(TYPE_REG_REF, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_STACK_POPM = (OPCODES[0x45] = new_opcode( - 0x45, - "stack_popm", - "Pops an arbitrary amount of values from the stack and writes them to registers.", - [ - new_param(TYPE_REG_REF, undefined, ParamAccess.Write), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_UNKNOWN_46 = (OPCODES[0x46] = new_opcode( - 0x46, - "unknown_46", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_47 = (OPCODES[0x47] = new_opcode( - 0x47, - "unknown_47", - undefined, - [], - undefined, -)); -export const OP_ARG_PUSHR = (OPCODES[0x48] = new_opcode( - 0x48, - "arg_pushr", - "Pushes the value of the given register onto the stack.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Push, -)); -export const OP_ARG_PUSHL = (OPCODES[0x49] = new_opcode( - 0x49, - "arg_pushl", - "Pushes the given value onto the stack.", - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Push, -)); -export const OP_ARG_PUSHB = (OPCODES[0x4a] = new_opcode( - 0x4a, - "arg_pushb", - "Pushes the given value onto the stack.", - [new_param(TYPE_BYTE, undefined, undefined)], - StackInteraction.Push, -)); -export const OP_ARG_PUSHW = (OPCODES[0x4b] = new_opcode( - 0x4b, - "arg_pushw", - "Pushes the given value onto the stack.", - [new_param(TYPE_WORD, undefined, undefined)], - StackInteraction.Push, -)); -export const OP_ARG_PUSHA = (OPCODES[0x4c] = new_opcode( - 0x4c, - "arg_pusha", - "Pushes the memory address of the given register onto the stack. Not used by Sega.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Push, -)); -export const OP_ARG_PUSHO = (OPCODES[0x4d] = new_opcode( - 0x4d, - "arg_pusho", - "Pushes the memory address of the given label onto the stack. Not used by Sega.", - [new_param(TYPE_LABEL, undefined, undefined)], - StackInteraction.Push, -)); -export const OP_ARG_PUSHS = (OPCODES[0x4e] = new_opcode( - 0x4e, - "arg_pushs", - "Pushes the given value onto the stack.", - [new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Push, -)); -export const OP_UNKNOWN_4F = (OPCODES[0x4f] = new_opcode( - 0x4f, - "unknown_4f", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_MESSAGE = (OPCODES[0x50] = new_opcode( - 0x50, - "message", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_LIST = (OPCODES[0x51] = new_opcode( - 0x51, - "list", - "Used to display a list of items and retrieve the item selected by the player.\nList items should be seperated by newlines. The selected item's index will be written to the given register.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_BYTE, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_STRING, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_FADEIN = (OPCODES[0x52] = new_opcode(0x52, "fadein", undefined, [], undefined)); -export const OP_FADEOUT = (OPCODES[0x53] = new_opcode(0x53, "fadeout", undefined, [], undefined)); -export const OP_SE = (OPCODES[0x54] = new_opcode( - 0x54, - "se", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_BGM = (OPCODES[0x55] = new_opcode( - 0x55, - "bgm", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_56 = (OPCODES[0x56] = new_opcode( - 0x56, - "unknown_56", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_57 = (OPCODES[0x57] = new_opcode( - 0x57, - "unknown_57", - undefined, - [], - undefined, -)); -export const OP_ENABLE = (OPCODES[0x58] = new_opcode( - 0x58, - "enable", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_DISABLE = (OPCODES[0x59] = new_opcode( - 0x59, - "disable", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_WINDOW_MSG = (OPCODES[0x5a] = new_opcode( - 0x5a, - "window_msg", - undefined, - [new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_ADD_MSG = (OPCODES[0x5b] = new_opcode( - 0x5b, - "add_msg", - undefined, - [new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_MESEND = (OPCODES[0x5c] = new_opcode(0x5c, "mesend", undefined, [], undefined)); -export const OP_GETTIME = (OPCODES[0x5d] = new_opcode( - 0x5d, - "gettime", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_WINEND = (OPCODES[0x5e] = new_opcode(0x5e, "winend", undefined, [], undefined)); -export const OP_UNKNOWN_5F = (OPCODES[0x5f] = new_opcode( - 0x5f, - "unknown_5f", - undefined, - [], - undefined, -)); -export const OP_NPC_CRT_V3 = (OPCODES[0x60] = new_opcode( - 0x60, - "npc_crt_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_NPC_STOP = (OPCODES[0x61] = new_opcode( - 0x61, - "npc_stop", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_NPC_PLAY = (OPCODES[0x62] = new_opcode( - 0x62, - "npc_play", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_NPC_KILL = (OPCODES[0x63] = new_opcode( - 0x63, - "npc_kill", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_NPC_NONT = (OPCODES[0x64] = new_opcode(0x64, "npc_nont", undefined, [], undefined)); -export const OP_NPC_TALK = (OPCODES[0x65] = new_opcode(0x65, "npc_talk", undefined, [], undefined)); -export const OP_NPC_CRP_V3 = (OPCODES[0x66] = new_opcode( - 0x66, - "npc_crp_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_ANY, undefined, ParamAccess.Read), - new_param(TYPE_ANY, undefined, ParamAccess.Read), - new_param(TYPE_ANY, undefined, ParamAccess.Read), - new_param(TYPE_I_LABEL, undefined, ParamAccess.Read), - new_param(TYPE_ANY, undefined, ParamAccess.Read), - new_param(TYPE_ANY, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_67 = (OPCODES[0x67] = new_opcode( - 0x67, - "unknown_67", - undefined, - [], - undefined, -)); -export const OP_CREATE_PIPE = (OPCODES[0x68] = new_opcode( - 0x68, - "create_pipe", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_P_HPSTAT_V3 = (OPCODES[0x69] = new_opcode( - 0x69, - "p_hpstat_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_P_DEAD_V3 = (OPCODES[0x6a] = new_opcode( - 0x6a, - "p_dead_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, "Player slot.", undefined), - ], - StackInteraction.Pop, -)); -export const OP_P_DISABLEWARP = (OPCODES[0x6b] = new_opcode( - 0x6b, - "p_disablewarp", - undefined, - [], - undefined, -)); -export const OP_P_ENABLEWARP = (OPCODES[0x6c] = new_opcode( - 0x6c, - "p_enablewarp", - undefined, - [], - undefined, -)); -export const OP_P_MOVE_V3 = (OPCODES[0x6d] = new_opcode( - 0x6d, - "p_move_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_P_LOOK = (OPCODES[0x6e] = new_opcode( - 0x6e, - "p_look", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_6F = (OPCODES[0x6f] = new_opcode( - 0x6f, - "unknown_6f", - undefined, - [], - undefined, -)); -export const OP_P_ACTION_DISABLE = (OPCODES[0x70] = new_opcode( - 0x70, - "p_action_disable", - undefined, - [], - undefined, -)); -export const OP_P_ACTION_ENABLE = (OPCODES[0x71] = new_opcode( - 0x71, - "p_action_enable", - undefined, - [], - undefined, -)); -export const OP_DISABLE_MOVEMENT1 = (OPCODES[0x72] = new_opcode( - 0x72, - "disable_movement1", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_ENABLE_MOVEMENT1 = (OPCODES[0x73] = new_opcode( - 0x73, - "enable_movement1", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_P_NONCOL = (OPCODES[0x74] = new_opcode(0x74, "p_noncol", undefined, [], undefined)); -export const OP_P_COL = (OPCODES[0x75] = new_opcode(0x75, "p_col", undefined, [], undefined)); -export const OP_P_SETPOS = (OPCODES[0x76] = new_opcode( - 0x76, - "p_setpos", - "Sets a player's position.", - [ - new_param(TYPE_DWORD, "Player slot.", undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, "X coordinate.", ParamAccess.Read), - new_param(TYPE_DWORD, "Y coordinate.", ParamAccess.Read), - new_param(TYPE_DWORD, "Z coordinate.", ParamAccess.Read), - new_param(TYPE_DWORD, "Y-axis rotation.", ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_P_RETURN_GUILD = (OPCODES[0x77] = new_opcode( - 0x77, - "p_return_guild", - undefined, - [], - undefined, -)); -export const OP_P_TALK_GUILD = (OPCODES[0x78] = new_opcode( - 0x78, - "p_talk_guild", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_NPC_TALK_PL_V3 = (OPCODES[0x79] = new_opcode( - 0x79, - "npc_talk_pl_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_NPC_TALK_KILL = (OPCODES[0x7a] = new_opcode( - 0x7a, - "npc_talk_kill", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_NPC_CRTPK_V3 = (OPCODES[0x7b] = new_opcode( - 0x7b, - "npc_crtpk_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_NPC_CRPPK_V3 = (OPCODES[0x7c] = new_opcode( - 0x7c, - "npc_crppk_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_NPC_CRPTALK_V3 = (OPCODES[0x7d] = new_opcode( - 0x7d, - "npc_crptalk_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_P_LOOK_AT_V1 = (OPCODES[0x7e] = new_opcode( - 0x7e, - "p_look_at_v1", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_NPC_CRP_ID_V3 = (OPCODES[0x7f] = new_opcode( - 0x7f, - "npc_crp_id_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_CAM_QUAKE = (OPCODES[0x80] = new_opcode( - 0x80, - "cam_quake", - undefined, - [], - undefined, -)); -export const OP_CAM_ADJ = (OPCODES[0x81] = new_opcode(0x81, "cam_adj", undefined, [], undefined)); -export const OP_CAM_ZMIN = (OPCODES[0x82] = new_opcode(0x82, "cam_zmin", undefined, [], undefined)); -export const OP_CAM_ZMOUT = (OPCODES[0x83] = new_opcode( - 0x83, - "cam_zmout", - undefined, - [], - undefined, -)); -export const OP_CAM_PAN_V3 = (OPCODES[0x84] = new_opcode( - 0x84, - "cam_pan_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GAME_LEV_SUPER = (OPCODES[0x85] = new_opcode( - 0x85, - "game_lev_super", - undefined, - [], - undefined, -)); -export const OP_GAME_LEV_RESET = (OPCODES[0x86] = new_opcode( - 0x86, - "game_lev_reset", - undefined, - [], - undefined, -)); -export const OP_POS_PIPE_V3 = (OPCODES[0x87] = new_opcode( - 0x87, - "pos_pipe_v3", - "Create a telepipe at a specific position for the given player slot that takes players back to Pioneer 2 or the Lab.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, "X coordinate.", ParamAccess.Read), - new_param(TYPE_DWORD, "Y coordinate.", ParamAccess.Read), - new_param(TYPE_DWORD, "Z coordinate.", ParamAccess.Read), - new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_IF_ZONE_CLEAR = (OPCODES[0x88] = new_opcode( - 0x88, - "if_zone_clear", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_CHK_ENE_NUM = (OPCODES[0x89] = new_opcode( - 0x89, - "chk_ene_num", - "Retrieves the amount of enemies killed during the quest.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNHIDE_OBJ = (OPCODES[0x8a] = new_opcode( - 0x8a, - "unhide_obj", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNHIDE_ENE = (OPCODES[0x8b] = new_opcode( - 0x8b, - "unhide_ene", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_AT_COORDS_CALL = (OPCODES[0x8c] = new_opcode( - 0x8c, - "at_coords_call", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_I_LABEL, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_AT_COORDS_TALK = (OPCODES[0x8d] = new_opcode( - 0x8d, - "at_coords_talk", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_I_LABEL, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_COL_NPCIN = (OPCODES[0x8e] = new_opcode( - 0x8e, - "col_npcin", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_I_LABEL, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_COL_NPCINR = (OPCODES[0x8f] = new_opcode( - 0x8f, - "col_npcinr", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SWITCH_ON = (OPCODES[0x90] = new_opcode( - 0x90, - "switch_on", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_SWITCH_OFF = (OPCODES[0x91] = new_opcode( - 0x91, - "switch_off", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_PLAYBGM_EPI = (OPCODES[0x92] = new_opcode( - 0x92, - "playbgm_epi", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_SET_MAINWARP = (OPCODES[0x93] = new_opcode( - 0x93, - "set_mainwarp", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_SET_OBJ_PARAM = (OPCODES[0x94] = new_opcode( - 0x94, - "set_obj_param", - "Creates a targetable object.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, "X coordinate.", ParamAccess.Read), - new_param(TYPE_DWORD, "Y coordinate.", ParamAccess.Read), - new_param(TYPE_DWORD, "Z coordinate.", ParamAccess.Read), - new_param(TYPE_DWORD, "Collision radius.", ParamAccess.Read), - new_param(TYPE_I_LABEL, "Function label.", ParamAccess.Read), - new_param(TYPE_DWORD, "Vertical position of the cursor.", ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - "Object handle.", - undefined, - ), - ], - undefined, -)); -export const OP_SET_FLOOR_HANDLER = (OPCODES[0x95] = new_opcode( - 0x95, - "set_floor_handler", - undefined, - [ - new_param(TYPE_DWORD, "Floor number.", undefined), - new_param(TYPE_I_LABEL, "Handler function label.", undefined), - ], - StackInteraction.Pop, -)); -export const OP_CLR_FLOOR_HANDLER = (OPCODES[0x96] = new_opcode( - 0x96, - "clr_floor_handler", - undefined, - [new_param(TYPE_DWORD, "Floor number.", undefined)], - StackInteraction.Pop, -)); -export const OP_COL_PLINAW = (OPCODES[0x97] = new_opcode( - 0x97, - "col_plinaw", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_HUD_HIDE = (OPCODES[0x98] = new_opcode(0x98, "hud_hide", undefined, [], undefined)); -export const OP_HUD_SHOW = (OPCODES[0x99] = new_opcode(0x99, "hud_show", undefined, [], undefined)); -export const OP_CINE_ENABLE = (OPCODES[0x9a] = new_opcode( - 0x9a, - "cine_enable", - undefined, - [], - undefined, -)); -export const OP_CINE_DISABLE = (OPCODES[0x9b] = new_opcode( - 0x9b, - "cine_disable", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_9C = (OPCODES[0x9c] = new_opcode( - 0x9c, - "unknown_9c", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_9D = (OPCODES[0x9d] = new_opcode( - 0x9d, - "unknown_9d", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_9E = (OPCODES[0x9e] = new_opcode( - 0x9e, - "unknown_9e", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_9F = (OPCODES[0x9f] = new_opcode( - 0x9f, - "unknown_9f", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_A0 = (OPCODES[0xa0] = new_opcode( - 0xa0, - "unknown_a0", - undefined, - [], - undefined, -)); -export const OP_SET_QT_FAILURE = (OPCODES[0xa1] = new_opcode( - 0xa1, - "set_qt_failure", - undefined, - [new_param(TYPE_I_LABEL, undefined, undefined)], - undefined, -)); -export const OP_SET_QT_SUCCESS = (OPCODES[0xa2] = new_opcode( - 0xa2, - "set_qt_success", - undefined, - [new_param(TYPE_I_LABEL, undefined, undefined)], - undefined, -)); -export const OP_CLR_QT_FAILURE = (OPCODES[0xa3] = new_opcode( - 0xa3, - "clr_qt_failure", - undefined, - [], - undefined, -)); -export const OP_CLR_QT_SUCCESS = (OPCODES[0xa4] = new_opcode( - 0xa4, - "clr_qt_success", - undefined, - [], - undefined, -)); -export const OP_SET_QT_CANCEL = (OPCODES[0xa5] = new_opcode( - 0xa5, - "set_qt_cancel", - undefined, - [new_param(TYPE_I_LABEL, undefined, undefined)], - undefined, -)); -export const OP_CLR_QT_CANCEL = (OPCODES[0xa6] = new_opcode( - 0xa6, - "clr_qt_cancel", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_A7 = (OPCODES[0xa7] = new_opcode( - 0xa7, - "unknown_a7", - undefined, - [], - undefined, -)); -export const OP_PL_WALK_V3 = (OPCODES[0xa8] = new_opcode( - 0xa8, - "pl_walk_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_A9 = (OPCODES[0xa9] = new_opcode( - 0xa9, - "unknown_a9", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_AA = (OPCODES[0xaa] = new_opcode( - 0xaa, - "unknown_aa", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_AB = (OPCODES[0xab] = new_opcode( - 0xab, - "unknown_ab", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_AC = (OPCODES[0xac] = new_opcode( - 0xac, - "unknown_ac", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_AD = (OPCODES[0xad] = new_opcode( - 0xad, - "unknown_ad", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_AE = (OPCODES[0xae] = new_opcode( - 0xae, - "unknown_ae", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_AF = (OPCODES[0xaf] = new_opcode( - 0xaf, - "unknown_af", - undefined, - [], - undefined, -)); -export const OP_PL_ADD_MESETA = (OPCODES[0xb0] = new_opcode( - 0xb0, - "pl_add_meseta", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_THREAD_STG = (OPCODES[0xb1] = new_opcode( - 0xb1, - "thread_stg", - undefined, - [new_param(TYPE_I_LABEL, undefined, undefined)], - undefined, -)); -export const OP_DEL_OBJ_PARAM = (OPCODES[0xb2] = new_opcode( - 0xb2, - "del_obj_param", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - "Object handle.", - undefined, - ), - ], - undefined, -)); -export const OP_ITEM_CREATE = (OPCODES[0xb3] = new_opcode( - 0xb3, - "item_create", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ITEM_CREATE2 = (OPCODES[0xb4] = new_opcode( - 0xb4, - "item_create2", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ITEM_DELETE = (OPCODES[0xb5] = new_opcode( - 0xb5, - "item_delete", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ITEM_DELETE2 = (OPCODES[0xb6] = new_opcode( - 0xb6, - "item_delete2", - "Deletes an item from the player's inventory.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ITEM_CHECK = (OPCODES[0xb7] = new_opcode( - 0xb7, - "item_check", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SETEVT = (OPCODES[0xb8] = new_opcode( - 0xb8, - "setevt", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_GET_DIFFLVL = (OPCODES[0xb9] = new_opcode( - 0xb9, - "get_difflvl", - "Sets the given register to the current difficulty. 0 For normal, 1 for hard and 2 for both very hard and ultimate.\nUse get_difficulty_level2 if you want to differentiate between very hard and ultimate.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_QT_EXIT = (OPCODES[0xba] = new_opcode( - 0xba, - "set_qt_exit", - undefined, - [new_param(TYPE_I_LABEL, undefined, undefined)], - undefined, -)); -export const OP_CLR_QT_EXIT = (OPCODES[0xbb] = new_opcode( - 0xbb, - "clr_qt_exit", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_BC = (OPCODES[0xbc] = new_opcode( - 0xbc, - "unknown_bc", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_BD = (OPCODES[0xbd] = new_opcode( - 0xbd, - "unknown_bd", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_BE = (OPCODES[0xbe] = new_opcode( - 0xbe, - "unknown_be", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_BF = (OPCODES[0xbf] = new_opcode( - 0xbf, - "unknown_bf", - undefined, - [], - undefined, -)); -export const OP_PARTICLE_V3 = (OPCODES[0xc0] = new_opcode( - 0xc0, - "particle_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_NPC_TEXT = (OPCODES[0xc1] = new_opcode( - 0xc1, - "npc_text", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_NPC_CHKWARP = (OPCODES[0xc2] = new_opcode( - 0xc2, - "npc_chkwarp", - undefined, - [], - undefined, -)); -export const OP_PL_PKOFF = (OPCODES[0xc3] = new_opcode(0xc3, "pl_pkoff", undefined, [], undefined)); -export const OP_MAP_DESIGNATE = (OPCODES[0xc4] = new_opcode( - 0xc4, - "map_designate", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_MASTERKEY_ON = (OPCODES[0xc5] = new_opcode( - 0xc5, - "masterkey_on", - undefined, - [], - undefined, -)); -export const OP_MASTERKEY_OFF = (OPCODES[0xc6] = new_opcode( - 0xc6, - "masterkey_off", - undefined, - [], - undefined, -)); -export const OP_WINDOW_TIME = (OPCODES[0xc7] = new_opcode( - 0xc7, - "window_time", - undefined, - [], - undefined, -)); -export const OP_WINEND_TIME = (OPCODES[0xc8] = new_opcode( - 0xc8, - "winend_time", - undefined, - [], - undefined, -)); -export const OP_WINSET_TIME = (OPCODES[0xc9] = new_opcode( - 0xc9, - "winset_time", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GETMTIME = (OPCODES[0xca] = new_opcode( - 0xca, - "getmtime", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_QUEST_BOARD_HANDLER = (OPCODES[0xcb] = new_opcode( - 0xcb, - "set_quest_board_handler", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_STRING, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_CLEAR_QUEST_BOARD_HANDLER = (OPCODES[0xcc] = new_opcode( - 0xcc, - "clear_quest_board_handler", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_PARTICLE_ID_V3 = (OPCODES[0xcd] = new_opcode( - 0xcd, - "particle_id_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_NPC_CRPTALK_ID_V3 = (OPCODES[0xce] = new_opcode( - 0xce, - "npc_crptalk_id_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_NPC_LANG_CLEAN = (OPCODES[0xcf] = new_opcode( - 0xcf, - "npc_lang_clean", - undefined, - [], - undefined, -)); -export const OP_PL_PKON = (OPCODES[0xd0] = new_opcode(0xd0, "pl_pkon", undefined, [], undefined)); -export const OP_PL_CHK_ITEM2 = (OPCODES[0xd1] = new_opcode( - 0xd1, - "pl_chk_item2", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ENABLE_MAINMENU = (OPCODES[0xd2] = new_opcode( - 0xd2, - "enable_mainmenu", - undefined, - [], - undefined, -)); -export const OP_DISABLE_MAINMENU = (OPCODES[0xd3] = new_opcode( - 0xd3, - "disable_mainmenu", - undefined, - [], - undefined, -)); -export const OP_START_BATTLEBGM = (OPCODES[0xd4] = new_opcode( - 0xd4, - "start_battlebgm", - undefined, - [], - undefined, -)); -export const OP_END_BATTLEBGM = (OPCODES[0xd5] = new_opcode( - 0xd5, - "end_battlebgm", - undefined, - [], - undefined, -)); -export const OP_DISP_MSG_QB = (OPCODES[0xd6] = new_opcode( - 0xd6, - "disp_msg_qb", - undefined, - [new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_CLOSE_MSG_QB = (OPCODES[0xd7] = new_opcode( - 0xd7, - "close_msg_qb", - undefined, - [], - undefined, -)); -export const OP_SET_EVENTFLAG_V3 = (OPCODES[0xd8] = new_opcode( - 0xd8, - "set_eventflag_v3", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_SYNC_LETI = (OPCODES[0xd9] = new_opcode( - 0xd9, - "sync_leti", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_SET_RETURNHUNTER = (OPCODES[0xda] = new_opcode( - 0xda, - "set_returnhunter", - undefined, - [], - undefined, -)); -export const OP_SET_RETURNCITY = (OPCODES[0xdb] = new_opcode( - 0xdb, - "set_returncity", - undefined, - [], - undefined, -)); -export const OP_LOAD_PVR = (OPCODES[0xdc] = new_opcode(0xdc, "load_pvr", undefined, [], undefined)); -export const OP_LOAD_MIDI = (OPCODES[0xdd] = new_opcode( - 0xdd, - "load_midi", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_DE = (OPCODES[0xde] = new_opcode( - 0xde, - "unknown_de", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_NPC_PARAM_V3 = (OPCODES[0xdf] = new_opcode( - 0xdf, - "npc_param_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_PAD_DRAGON = (OPCODES[0xe0] = new_opcode( - 0xe0, - "pad_dragon", - undefined, - [], - undefined, -)); -export const OP_CLEAR_MAINWARP = (OPCODES[0xe1] = new_opcode( - 0xe1, - "clear_mainwarp", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_PCAM_PARAM_V3 = (OPCODES[0xe2] = new_opcode( - 0xe2, - "pcam_param_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_START_SETEVT_V3 = (OPCODES[0xe3] = new_opcode( - 0xe3, - "start_setevt_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_WARP_ON = (OPCODES[0xe4] = new_opcode(0xe4, "warp_on", undefined, [], undefined)); -export const OP_WARP_OFF = (OPCODES[0xe5] = new_opcode(0xe5, "warp_off", undefined, [], undefined)); -export const OP_GET_SLOTNUMBER = (OPCODES[0xe6] = new_opcode( - 0xe6, - "get_slotnumber", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_SERVERNUMBER = (OPCODES[0xe7] = new_opcode( - 0xe7, - "get_servernumber", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_EVENTFLAG2 = (OPCODES[0xe8] = new_opcode( - 0xe8, - "set_eventflag2", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_RES = (OPCODES[0xe9] = new_opcode( - 0xe9, - "res", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_EA = (OPCODES[0xea] = new_opcode( - 0xea, - "unknown_ea", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - undefined, -)); -export const OP_ENABLE_BGMCTRL = (OPCODES[0xeb] = new_opcode( - 0xeb, - "enable_bgmctrl", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_SW_SEND = (OPCODES[0xec] = new_opcode( - 0xec, - "sw_send", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_CREATE_BGMCTRL = (OPCODES[0xed] = new_opcode( - 0xed, - "create_bgmctrl", - undefined, - [], - undefined, -)); -export const OP_PL_ADD_MESETA2 = (OPCODES[0xee] = new_opcode( - 0xee, - "pl_add_meseta2", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_SYNC_REGISTER = (OPCODES[0xef] = new_opcode( - 0xef, - "sync_register", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_SEND_REGWORK = (OPCODES[0xf0] = new_opcode( - 0xf0, - "send_regwork", - undefined, - [], - undefined, -)); -export const OP_LETI_FIXED_CAMERA_V3 = (OPCODES[0xf1] = new_opcode( - 0xf1, - "leti_fixed_camera_v3", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_DEFAULT_CAMERA_POS1 = (OPCODES[0xf2] = new_opcode( - 0xf2, - "default_camera_pos1", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F3 = (OPCODES[0xf3] = new_opcode( - 0xf3, - "unknown_f3", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F4 = (OPCODES[0xf4] = new_opcode( - 0xf4, - "unknown_f4", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F5 = (OPCODES[0xf5] = new_opcode( - 0xf5, - "unknown_f5", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F6 = (OPCODES[0xf6] = new_opcode( - 0xf6, - "unknown_f6", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F7 = (OPCODES[0xf7] = new_opcode( - 0xf7, - "unknown_f7", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8 = (OPCODES[0xf8] = new_opcode( - 0xf8, - "unknown_f8", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F9 = (OPCODES[0xf9] = new_opcode( - 0xf9, - "unknown_f9", - undefined, - [], - undefined, -)); -export const OP_GET_GC_NUMBER = (OPCODES[0xfa] = new_opcode( - 0xfa, - "get_gc_number", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_FB = (OPCODES[0xfb] = new_opcode( - 0xfb, - "unknown_fb", - undefined, - [new_param(TYPE_WORD, undefined, undefined)], - undefined, -)); -export const OP_UNKNOWN_FC = (OPCODES[0xfc] = new_opcode( - 0xfc, - "unknown_fc", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_FD = (OPCODES[0xfd] = new_opcode( - 0xfd, - "unknown_fd", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_FE = (OPCODES[0xfe] = new_opcode( - 0xfe, - "unknown_fe", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_FF = (OPCODES[0xff] = new_opcode( - 0xff, - "unknown_ff", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F800 = (OPCODES[0xf800] = new_opcode( - 0xf800, - "unknown_f800", - undefined, - [], - undefined, -)); -export const OP_SET_CHAT_CALLBACK = (OPCODES[0xf801] = new_opcode( - 0xf801, - "set_chat_callback", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_STRING, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F802 = (OPCODES[0xf802] = new_opcode( - 0xf802, - "unknown_f802", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F803 = (OPCODES[0xf803] = new_opcode( - 0xf803, - "unknown_f803", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F804 = (OPCODES[0xf804] = new_opcode( - 0xf804, - "unknown_f804", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F805 = (OPCODES[0xf805] = new_opcode( - 0xf805, - "unknown_f805", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F806 = (OPCODES[0xf806] = new_opcode( - 0xf806, - "unknown_f806", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F807 = (OPCODES[0xf807] = new_opcode( - 0xf807, - "unknown_f807", - undefined, - [], - undefined, -)); -export const OP_GET_DIFFICULTY_LEVEL2 = (OPCODES[0xf808] = new_opcode( - 0xf808, - "get_difficulty_level2", - "Sets the given register to the current difficulty. 0 For normal, 1 for hard, 2 for very hard and 3 for ultimate.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_NUMBER_OF_PLAYER1 = (OPCODES[0xf809] = new_opcode( - 0xf809, - "get_number_of_player1", - "Set the given register to the current number of players. Either 1, 2, 3 or 4.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_COORD_OF_PLAYER = (OPCODES[0xf80a] = new_opcode( - 0xf80a, - "get_coord_of_player", - "Retrieves a player's position.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, "X coordinate.", ParamAccess.Write), - new_param(TYPE_DWORD, "Y coordinate.", ParamAccess.Write), - new_param(TYPE_DWORD, "Z coordinate.", ParamAccess.Write), - ], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ENABLE_MAP = (OPCODES[0xf80b] = new_opcode( - 0xf80b, - "enable_map", - undefined, - [], - undefined, -)); -export const OP_DISABLE_MAP = (OPCODES[0xf80c] = new_opcode( - 0xf80c, - "disable_map", - undefined, - [], - undefined, -)); -export const OP_MAP_DESIGNATE_EX = (OPCODES[0xf80d] = new_opcode( - 0xf80d, - "map_designate_ex", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F80E = (OPCODES[0xf80e] = new_opcode( - 0xf80e, - "unknown_f80e", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F80F = (OPCODES[0xf80f] = new_opcode( - 0xf80f, - "unknown_f80f", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_BA_INITIAL_FLOOR = (OPCODES[0xf810] = new_opcode( - 0xf810, - "ba_initial_floor", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_SET_BA_RULES = (OPCODES[0xf811] = new_opcode( - 0xf811, - "set_ba_rules", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F812 = (OPCODES[0xf812] = new_opcode( - 0xf812, - "unknown_f812", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F813 = (OPCODES[0xf813] = new_opcode( - 0xf813, - "unknown_f813", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F814 = (OPCODES[0xf814] = new_opcode( - 0xf814, - "unknown_f814", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F815 = (OPCODES[0xf815] = new_opcode( - 0xf815, - "unknown_f815", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F816 = (OPCODES[0xf816] = new_opcode( - 0xf816, - "unknown_f816", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F817 = (OPCODES[0xf817] = new_opcode( - 0xf817, - "unknown_f817", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F818 = (OPCODES[0xf818] = new_opcode( - 0xf818, - "unknown_f818", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F819 = (OPCODES[0xf819] = new_opcode( - 0xf819, - "unknown_f819", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F81A = (OPCODES[0xf81a] = new_opcode( - 0xf81a, - "unknown_f81a", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F81B = (OPCODES[0xf81b] = new_opcode( - 0xf81b, - "unknown_f81b", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_BA_DISP_MSG = (OPCODES[0xf81c] = new_opcode( - 0xf81c, - "ba_disp_msg", - undefined, - [new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_DEATH_LVL_UP = (OPCODES[0xf81d] = new_opcode( - 0xf81d, - "death_lvl_up", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_DEATH_TECH_LVL_UP = (OPCODES[0xf81e] = new_opcode( - 0xf81e, - "death_tech_lvl_up", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F81F = (OPCODES[0xf81f] = new_opcode( - 0xf81f, - "unknown_f81f", - undefined, - [], - undefined, -)); -export const OP_CMODE_STAGE = (OPCODES[0xf820] = new_opcode( - 0xf820, - "cmode_stage", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F821 = (OPCODES[0xf821] = new_opcode( - 0xf821, - "unknown_f821", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F822 = (OPCODES[0xf822] = new_opcode( - 0xf822, - "unknown_f822", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F823 = (OPCODES[0xf823] = new_opcode( - 0xf823, - "unknown_f823", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F824 = (OPCODES[0xf824] = new_opcode( - 0xf824, - "unknown_f824", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_EXP_MULTIPLICATION = (OPCODES[0xf825] = new_opcode( - 0xf825, - "exp_multiplication", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_EXP_DIVISION = (OPCODES[0xf826] = new_opcode( - 0xf826, - "exp_division", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_USER_IS_DEAD = (OPCODES[0xf827] = new_opcode( - 0xf827, - "get_user_is_dead", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GO_FLOOR = (OPCODES[0xf828] = new_opcode( - 0xf828, - "go_floor", - "Sends a player to the given floor.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Floor ID.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F829 = (OPCODES[0xf829] = new_opcode( - 0xf829, - "unknown_f829", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F82A = (OPCODES[0xf82a] = new_opcode( - 0xf82a, - "unknown_f82a", - undefined, - [], - undefined, -)); -export const OP_UNLOCK_DOOR2 = (OPCODES[0xf82b] = new_opcode( - 0xf82b, - "unlock_door2", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_LOCK_DOOR2 = (OPCODES[0xf82c] = new_opcode( - 0xf82c, - "lock_door2", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_IF_SWITCH_NOT_PRESSED = (OPCODES[0xf82d] = new_opcode( - 0xf82d, - "if_switch_not_pressed", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Write), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_IF_SWITCH_PRESSED = (OPCODES[0xf82e] = new_opcode( - 0xf82e, - "if_switch_pressed", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, "Floor ID.", ParamAccess.Read), - new_param(TYPE_DWORD, "Switch ID.", ParamAccess.Read), - new_param( - TYPE_DWORD, - "Will be set to 1 if the switch is pressed, 0 otherwise.", - ParamAccess.Write, - ), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F82F = (OPCODES[0xf82f] = new_opcode( - 0xf82f, - "unknown_f82f", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_CONTROL_DRAGON = (OPCODES[0xf830] = new_opcode( - 0xf830, - "control_dragon", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_RELEASE_DRAGON = (OPCODES[0xf831] = new_opcode( - 0xf831, - "release_dragon", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F832 = (OPCODES[0xf832] = new_opcode( - 0xf832, - "unknown_f832", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F833 = (OPCODES[0xf833] = new_opcode( - 0xf833, - "unknown_f833", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F834 = (OPCODES[0xf834] = new_opcode( - 0xf834, - "unknown_f834", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F835 = (OPCODES[0xf835] = new_opcode( - 0xf835, - "unknown_f835", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F836 = (OPCODES[0xf836] = new_opcode( - 0xf836, - "unknown_f836", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F837 = (OPCODES[0xf837] = new_opcode( - 0xf837, - "unknown_f837", - undefined, - [], - undefined, -)); -export const OP_SHRINK = (OPCODES[0xf838] = new_opcode( - 0xf838, - "shrink", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNSHRINK = (OPCODES[0xf839] = new_opcode( - 0xf839, - "unshrink", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F83A = (OPCODES[0xf83a] = new_opcode( - 0xf83a, - "unknown_f83a", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F83B = (OPCODES[0xf83b] = new_opcode( - 0xf83b, - "unknown_f83b", - undefined, - [], - undefined, -)); -export const OP_DISPLAY_CLOCK2 = (OPCODES[0xf83c] = new_opcode( - 0xf83c, - "display_clock2", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F83D = (OPCODES[0xf83d] = new_opcode( - 0xf83d, - "unknown_f83d", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_DELETE_AREA_TITLE = (OPCODES[0xf83e] = new_opcode( - 0xf83e, - "delete_area_title", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F83F = (OPCODES[0xf83f] = new_opcode( - 0xf83f, - "unknown_f83f", - undefined, - [], - undefined, -)); -export const OP_LOAD_NPC_DATA = (OPCODES[0xf840] = new_opcode( - 0xf840, - "load_npc_data", - undefined, - [], - undefined, -)); -export const OP_GET_NPC_DATA = (OPCODES[0xf841] = new_opcode( - 0xf841, - "get_npc_data", - undefined, - [new_param(TYPE_D_LABEL, undefined, undefined)], - undefined, -)); -export const OP_UNKNOWN_F842 = (OPCODES[0xf842] = new_opcode( - 0xf842, - "unknown_f842", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F843 = (OPCODES[0xf843] = new_opcode( - 0xf843, - "unknown_f843", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F844 = (OPCODES[0xf844] = new_opcode( - 0xf844, - "unknown_f844", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F845 = (OPCODES[0xf845] = new_opcode( - 0xf845, - "unknown_f845", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F846 = (OPCODES[0xf846] = new_opcode( - 0xf846, - "unknown_f846", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F847 = (OPCODES[0xf847] = new_opcode( - 0xf847, - "unknown_f847", - undefined, - [], - undefined, -)); -export const OP_GIVE_DAMAGE_SCORE = (OPCODES[0xf848] = new_opcode( - 0xf848, - "give_damage_score", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_TAKE_DAMAGE_SCORE = (OPCODES[0xf849] = new_opcode( - 0xf849, - "take_damage_score", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNK_SCORE_F84A = (OPCODES[0xf84a] = new_opcode( - 0xf84a, - "unk_score_f84a", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNK_SCORE_F84B = (OPCODES[0xf84b] = new_opcode( - 0xf84b, - "unk_score_f84b", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_KILL_SCORE = (OPCODES[0xf84c] = new_opcode( - 0xf84c, - "kill_score", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_DEATH_SCORE = (OPCODES[0xf84d] = new_opcode( - 0xf84d, - "death_score", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNK_SCORE_F84E = (OPCODES[0xf84e] = new_opcode( - 0xf84e, - "unk_score_f84e", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ENEMY_DEATH_SCORE = (OPCODES[0xf84f] = new_opcode( - 0xf84f, - "enemy_death_score", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_MESETA_SCORE = (OPCODES[0xf850] = new_opcode( - 0xf850, - "meseta_score", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F851 = (OPCODES[0xf851] = new_opcode( - 0xf851, - "unknown_f851", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F852 = (OPCODES[0xf852] = new_opcode( - 0xf852, - "unknown_f852", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_REVERSE_WARPS = (OPCODES[0xf853] = new_opcode( - 0xf853, - "reverse_warps", - undefined, - [], - undefined, -)); -export const OP_UNREVERSE_WARPS = (OPCODES[0xf854] = new_opcode( - 0xf854, - "unreverse_warps", - undefined, - [], - undefined, -)); -export const OP_SET_ULT_MAP = (OPCODES[0xf855] = new_opcode( - 0xf855, - "set_ult_map", - undefined, - [], - undefined, -)); -export const OP_UNSET_ULT_MAP = (OPCODES[0xf856] = new_opcode( - 0xf856, - "unset_ult_map", - undefined, - [], - undefined, -)); -export const OP_SET_AREA_TITLE = (OPCODES[0xf857] = new_opcode( - 0xf857, - "set_area_title", - undefined, - [new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F858 = (OPCODES[0xf858] = new_opcode( - 0xf858, - "unknown_f858", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F859 = (OPCODES[0xf859] = new_opcode( - 0xf859, - "unknown_f859", - undefined, - [], - undefined, -)); -export const OP_EQUIP_ITEM = (OPCODES[0xf85a] = new_opcode( - 0xf85a, - "equip_item", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNEQUIP_ITEM = (OPCODES[0xf85b] = new_opcode( - 0xf85b, - "unequip_item", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F85C = (OPCODES[0xf85c] = new_opcode( - 0xf85c, - "unknown_f85c", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F85D = (OPCODES[0xf85d] = new_opcode( - 0xf85d, - "unknown_f85d", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F85E = (OPCODES[0xf85e] = new_opcode( - 0xf85e, - "unknown_f85e", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F85F = (OPCODES[0xf85f] = new_opcode( - 0xf85f, - "unknown_f85f", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F860 = (OPCODES[0xf860] = new_opcode( - 0xf860, - "unknown_f860", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F861 = (OPCODES[0xf861] = new_opcode( - 0xf861, - "unknown_f861", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F862 = (OPCODES[0xf862] = new_opcode( - 0xf862, - "unknown_f862", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F863 = (OPCODES[0xf863] = new_opcode( - 0xf863, - "unknown_f863", - undefined, - [], - undefined, -)); -export const OP_CMODE_RANK = (OPCODES[0xf864] = new_opcode( - 0xf864, - "cmode_rank", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_AWARD_ITEM_NAME = (OPCODES[0xf865] = new_opcode( - 0xf865, - "award_item_name", - undefined, - [], - undefined, -)); -export const OP_AWARD_ITEM_SELECT = (OPCODES[0xf866] = new_opcode( - 0xf866, - "award_item_select", - undefined, - [], - undefined, -)); -export const OP_AWARD_ITEM_GIVE_TO = (OPCODES[0xf867] = new_opcode( - 0xf867, - "award_item_give_to", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F868 = (OPCODES[0xf868] = new_opcode( - 0xf868, - "unknown_f868", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F869 = (OPCODES[0xf869] = new_opcode( - 0xf869, - "unknown_f869", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ITEM_CREATE_CMODE = (OPCODES[0xf86a] = new_opcode( - 0xf86a, - "item_create_cmode", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F86B = (OPCODES[0xf86b] = new_opcode( - 0xf86b, - "unknown_f86b", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_AWARD_ITEM_OK = (OPCODES[0xf86c] = new_opcode( - 0xf86c, - "award_item_ok", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F86D = (OPCODES[0xf86d] = new_opcode( - 0xf86d, - "unknown_f86d", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F86E = (OPCODES[0xf86e] = new_opcode( - 0xf86e, - "unknown_f86e", - undefined, - [], - undefined, -)); -export const OP_BA_SET_LIVES = (OPCODES[0xf86f] = new_opcode( - 0xf86f, - "ba_set_lives", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_BA_SET_TECH_LVL = (OPCODES[0xf870] = new_opcode( - 0xf870, - "ba_set_tech_lvl", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_BA_SET_LVL = (OPCODES[0xf871] = new_opcode( - 0xf871, - "ba_set_lvl", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_BA_SET_TIME_LIMIT = (OPCODES[0xf872] = new_opcode( - 0xf872, - "ba_set_time_limit", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_BOSS_IS_DEAD = (OPCODES[0xf873] = new_opcode( - 0xf873, - "boss_is_dead", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F874 = (OPCODES[0xf874] = new_opcode( - 0xf874, - "unknown_f874", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F875 = (OPCODES[0xf875] = new_opcode( - 0xf875, - "unknown_f875", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F876 = (OPCODES[0xf876] = new_opcode( - 0xf876, - "unknown_f876", - undefined, - [], - undefined, -)); -export const OP_ENABLE_TECHS = (OPCODES[0xf877] = new_opcode( - 0xf877, - "enable_techs", - "Enables technique use for the given player.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_DISABLE_TECHS = (OPCODES[0xf878] = new_opcode( - 0xf878, - "disable_techs", - "Disables technique use for the given player.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_GENDER = (OPCODES[0xf879] = new_opcode( - 0xf879, - "get_gender", - "Retrieves the player's gender. 0 If male, 1 if female.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player gender.", ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_CHARA_CLASS = (OPCODES[0xf87a] = new_opcode( - 0xf87a, - "get_chara_class", - "Retrieves the player's race and character class.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param( - TYPE_DWORD, - "Player race. 0 If human, 1 if newman, 2 if cast.", - ParamAccess.Write, - ), - new_param( - TYPE_DWORD, - "Player class. 0 If hunter, 1 if ranger, 2 if force.", - ParamAccess.Write, - ), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_TAKE_SLOT_MESETA = (OPCODES[0xf87b] = new_opcode( - 0xf87b, - "take_slot_meseta", - "Takes an amount of meseta from a player's inventory.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read), - new_param(TYPE_DWORD, "Amount of meseta to take.", ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param( - TYPE_DWORD, - "Will be set to 1 if the meseta was taken, 0 otherwise.", - ParamAccess.Write, - ), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F87C = (OPCODES[0xf87c] = new_opcode( - 0xf87c, - "unknown_f87c", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F87D = (OPCODES[0xf87d] = new_opcode( - 0xf87d, - "unknown_f87d", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F87E = (OPCODES[0xf87e] = new_opcode( - 0xf87e, - "unknown_f87e", - undefined, - [], - undefined, -)); -export const OP_READ_GUILDCARD_FLAG = (OPCODES[0xf87f] = new_opcode( - 0xf87f, - "read_guildcard_flag", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F880 = (OPCODES[0xf880] = new_opcode( - 0xf880, - "unknown_f880", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_PL_NAME = (OPCODES[0xf881] = new_opcode( - 0xf881, - "get_pl_name", - "Sets the value of to the given player's name.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_PL_JOB = (OPCODES[0xf882] = new_opcode( - 0xf882, - "get_pl_job", - "Sets the value of to the given player's job (Hunter/Ranger/Force).", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F883 = (OPCODES[0xf883] = new_opcode( - 0xf883, - "unknown_f883", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F884 = (OPCODES[0xf884] = new_opcode( - 0xf884, - "unknown_f884", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F885 = (OPCODES[0xf885] = new_opcode( - 0xf885, - "unknown_f885", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F886 = (OPCODES[0xf886] = new_opcode( - 0xf886, - "unknown_f886", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F887 = (OPCODES[0xf887] = new_opcode( - 0xf887, - "unknown_f887", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F888 = (OPCODES[0xf888] = new_opcode( - 0xf888, - "unknown_f888", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F889 = (OPCODES[0xf889] = new_opcode( - 0xf889, - "unknown_f889", - undefined, - [], - undefined, -)); -export const OP_GET_PLAYER_STATUS = (OPCODES[0xf88a] = new_opcode( - 0xf88a, - "get_player_status", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SEND_MAIL = (OPCODES[0xf88b] = new_opcode( - 0xf88b, - "send_mail", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_STRING, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_ONLINE_CHECK = (OPCODES[0xf88c] = new_opcode( - 0xf88c, - "online_check", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_CHL_SET_TIMERECORD = (OPCODES[0xf88d] = new_opcode( - 0xf88d, - "chl_set_timerecord", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_CHL_GET_TIMERECORD = (OPCODES[0xf88e] = new_opcode( - 0xf88e, - "chl_get_timerecord", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F88F = (OPCODES[0xf88f] = new_opcode( - 0xf88f, - "unknown_f88f", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F890 = (OPCODES[0xf890] = new_opcode( - 0xf890, - "unknown_f890", - undefined, - [], - undefined, -)); -export const OP_LOAD_ENEMY_DATA = (OPCODES[0xf891] = new_opcode( - 0xf891, - "load_enemy_data", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_GET_PHYSICAL_DATA = (OPCODES[0xf892] = new_opcode( - 0xf892, - "get_physical_data", - undefined, - [new_param(TYPE_WORD, undefined, undefined)], - undefined, -)); -export const OP_GET_ATTACK_DATA = (OPCODES[0xf893] = new_opcode( - 0xf893, - "get_attack_data", - undefined, - [new_param(TYPE_WORD, undefined, undefined)], - undefined, -)); -export const OP_GET_RESIST_DATA = (OPCODES[0xf894] = new_opcode( - 0xf894, - "get_resist_data", - undefined, - [new_param(TYPE_WORD, undefined, undefined)], - undefined, -)); -export const OP_GET_MOVEMENT_DATA = (OPCODES[0xf895] = new_opcode( - 0xf895, - "get_movement_data", - undefined, - [new_param(TYPE_WORD, undefined, undefined)], - undefined, -)); -export const OP_UNKNOWN_F896 = (OPCODES[0xf896] = new_opcode( - 0xf896, - "unknown_f896", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F897 = (OPCODES[0xf897] = new_opcode( - 0xf897, - "unknown_f897", - undefined, - [], - undefined, -)); -export const OP_SHIFT_LEFT = (OPCODES[0xf898] = new_opcode( - 0xf898, - "shift_left", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SHIFT_RIGHT = (OPCODES[0xf899] = new_opcode( - 0xf899, - "shift_right", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_RANDOM = (OPCODES[0xf89a] = new_opcode( - 0xf89a, - "get_random", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_RESET_MAP = (OPCODES[0xf89b] = new_opcode( - 0xf89b, - "reset_map", - "Sets all registers to 0 and resets the quest.", - [], - undefined, -)); -export const OP_DISP_CHL_RETRY_MENU = (OPCODES[0xf89c] = new_opcode( - 0xf89c, - "disp_chl_retry_menu", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_CHL_REVERSER = (OPCODES[0xf89d] = new_opcode( - 0xf89d, - "chl_reverser", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F89E = (OPCODES[0xf89e] = new_opcode( - 0xf89e, - "unknown_f89e", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F89F = (OPCODES[0xf89f] = new_opcode( - 0xf89f, - "unknown_f89f", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8A0 = (OPCODES[0xf8a0] = new_opcode( - 0xf8a0, - "unknown_f8a0", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8A1 = (OPCODES[0xf8a1] = new_opcode( - 0xf8a1, - "unknown_f8a1", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8A2 = (OPCODES[0xf8a2] = new_opcode( - 0xf8a2, - "unknown_f8a2", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8A3 = (OPCODES[0xf8a3] = new_opcode( - 0xf8a3, - "unknown_f8a3", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8A4 = (OPCODES[0xf8a4] = new_opcode( - 0xf8a4, - "unknown_f8a4", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8A5 = (OPCODES[0xf8a5] = new_opcode( - 0xf8a5, - "unknown_f8a5", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8A6 = (OPCODES[0xf8a6] = new_opcode( - 0xf8a6, - "unknown_f8a6", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8A7 = (OPCODES[0xf8a7] = new_opcode( - 0xf8a7, - "unknown_f8a7", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8A8 = (OPCODES[0xf8a8] = new_opcode( - 0xf8a8, - "unknown_f8a8", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F8A9 = (OPCODES[0xf8a9] = new_opcode( - 0xf8a9, - "unknown_f8a9", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8AA = (OPCODES[0xf8aa] = new_opcode( - 0xf8aa, - "unknown_f8aa", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8AB = (OPCODES[0xf8ab] = new_opcode( - 0xf8ab, - "unknown_f8ab", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8AC = (OPCODES[0xf8ac] = new_opcode( - 0xf8ac, - "unknown_f8ac", - undefined, - [], - undefined, -)); -export const OP_GET_NUMBER_OF_PLAYER2 = (OPCODES[0xf8ad] = new_opcode( - 0xf8ad, - "get_number_of_player2", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8AE = (OPCODES[0xf8ae] = new_opcode( - 0xf8ae, - "unknown_f8ae", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8AF = (OPCODES[0xf8af] = new_opcode( - 0xf8af, - "unknown_f8af", - undefined, - [], - undefined, -)); -export const OP_READ1 = (OPCODES[0xf8b0] = new_opcode( - 0xf8b0, - "read1", - "Reads a 1-byte value from an arbitrary location.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_BYTE, undefined, ParamAccess.Write)], - }, - "Register to store the result to.", - undefined, - ), - new_param(TYPE_DWORD, "Address to read from.", undefined), - ], - undefined, -)); -export const OP_READ2 = (OPCODES[0xf8b1] = new_opcode( - 0xf8b1, - "read2", - "Reads a 2-byte value from an arbitrary location.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_WORD, undefined, ParamAccess.Write)], - }, - "Register to store the result to.", - undefined, - ), - new_param(TYPE_DWORD, "Address to read from.", undefined), - ], - undefined, -)); -export const OP_READ4 = (OPCODES[0xf8b2] = new_opcode( - 0xf8b2, - "read4", - "Reads a 4-byte value from an arbitrary location.", - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - "Register to store the result to.", - undefined, - ), - new_param(TYPE_DWORD, "Address to read from.", undefined), - ], - undefined, -)); -export const OP_WRITE1 = (OPCODES[0xf8b3] = new_opcode( - 0xf8b3, - "write1", - "Writes a 1-byte value to an arbitrary location.", - [ - new_param(TYPE_DWORD, "Address to write to.", undefined), - new_param(TYPE_BYTE, "Value to be written.", undefined), - ], - StackInteraction.Pop, -)); -export const OP_WRITE2 = (OPCODES[0xf8b4] = new_opcode( - 0xf8b4, - "write2", - "Writes a 2-byte value to an arbitrary location.", - [ - new_param(TYPE_DWORD, "Address to write to.", undefined), - new_param(TYPE_WORD, "Value to be written.", undefined), - ], - StackInteraction.Pop, -)); -export const OP_WRITE4 = (OPCODES[0xf8b5] = new_opcode( - 0xf8b5, - "write4", - "Writes a 4-byte value to an arbitrary location.", - [ - new_param(TYPE_DWORD, "Address to write to.", undefined), - new_param(TYPE_DWORD, "Value to be written.", undefined), - ], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F8B6 = (OPCODES[0xf8b6] = new_opcode( - 0xf8b6, - "unknown_f8b6", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8B7 = (OPCODES[0xf8b7] = new_opcode( - 0xf8b7, - "unknown_f8b7", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8B8 = (OPCODES[0xf8b8] = new_opcode( - 0xf8b8, - "unknown_f8b8", - undefined, - [], - undefined, -)); -export const OP_CHL_RECOVERY = (OPCODES[0xf8b9] = new_opcode( - 0xf8b9, - "chl_recovery", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8BA = (OPCODES[0xf8ba] = new_opcode( - 0xf8ba, - "unknown_f8ba", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8BB = (OPCODES[0xf8bb] = new_opcode( - 0xf8bb, - "unknown_f8bb", - undefined, - [], - undefined, -)); -export const OP_SET_EPISODE = (OPCODES[0xf8bc] = new_opcode( - 0xf8bc, - "set_episode", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - undefined, -)); -export const OP_UNKNOWN_F8BD = (OPCODES[0xf8bd] = new_opcode( - 0xf8bd, - "unknown_f8bd", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8BE = (OPCODES[0xf8be] = new_opcode( - 0xf8be, - "unknown_f8be", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8BF = (OPCODES[0xf8bf] = new_opcode( - 0xf8bf, - "unknown_f8bf", - undefined, - [], - undefined, -)); -export const OP_FILE_DL_REQ = (OPCODES[0xf8c0] = new_opcode( - 0xf8c0, - "file_dl_req", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_GET_DL_STATUS = (OPCODES[0xf8c1] = new_opcode( - 0xf8c1, - "get_dl_status", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GBA_UNKNOWN4 = (OPCODES[0xf8c2] = new_opcode( - 0xf8c2, - "gba_unknown4", - undefined, - [], - undefined, -)); -export const OP_GET_GBA_STATE = (OPCODES[0xf8c3] = new_opcode( - 0xf8c3, - "get_gba_state", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8C4 = (OPCODES[0xf8c4] = new_opcode( - 0xf8c4, - "unknown_f8c4", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8C5 = (OPCODES[0xf8c5] = new_opcode( - 0xf8c5, - "unknown_f8c5", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_QEXIT = (OPCODES[0xf8c6] = new_opcode(0xf8c6, "qexit", undefined, [], undefined)); -export const OP_USE_ANIMATION = (OPCODES[0xf8c7] = new_opcode( - 0xf8c7, - "use_animation", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, "Animation ID.", ParamAccess.Read), - new_param( - TYPE_DWORD, - "Animation duration in number of frames.", - ParamAccess.Read, - ), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_STOP_ANIMATION = (OPCODES[0xf8c8] = new_opcode( - 0xf8c8, - "stop_animation", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_RUN_TO_COORD = (OPCODES[0xf8c9] = new_opcode( - 0xf8c9, - "run_to_coord", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_INVINCIBLE = (OPCODES[0xf8ca] = new_opcode( - 0xf8ca, - "set_slot_invincible", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8CB = (OPCODES[0xf8cb] = new_opcode( - 0xf8cb, - "unknown_f8cb", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_POISON = (OPCODES[0xf8cc] = new_opcode( - 0xf8cc, - "set_slot_poison", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_PARALYZE = (OPCODES[0xf8cd] = new_opcode( - 0xf8cd, - "set_slot_paralyze", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_SHOCK = (OPCODES[0xf8ce] = new_opcode( - 0xf8ce, - "set_slot_shock", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_FREEZE = (OPCODES[0xf8cf] = new_opcode( - 0xf8cf, - "set_slot_freeze", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_SLOW = (OPCODES[0xf8d0] = new_opcode( - 0xf8d0, - "set_slot_slow", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_CONFUSE = (OPCODES[0xf8d1] = new_opcode( - 0xf8d1, - "set_slot_confuse", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_SHIFTA = (OPCODES[0xf8d2] = new_opcode( - 0xf8d2, - "set_slot_shifta", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_DEBAND = (OPCODES[0xf8d3] = new_opcode( - 0xf8d3, - "set_slot_deband", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_JELLEN = (OPCODES[0xf8d4] = new_opcode( - 0xf8d4, - "set_slot_jellen", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SET_SLOT_ZALURE = (OPCODES[0xf8d5] = new_opcode( - 0xf8d5, - "set_slot_zalure", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FLETI_FIXED_CAMERA = (OPCODES[0xf8d6] = new_opcode( - 0xf8d6, - "fleti_fixed_camera", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_FLETI_LOCKED_CAMERA = (OPCODES[0xf8d7] = new_opcode( - 0xf8d7, - "fleti_locked_camera", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_DEFAULT_CAMERA_POS2 = (OPCODES[0xf8d8] = new_opcode( - 0xf8d8, - "default_camera_pos2", - undefined, - [], - undefined, -)); -export const OP_SET_MOTION_BLUR = (OPCODES[0xf8d9] = new_opcode( - 0xf8d9, - "set_motion_blur", - undefined, - [], - undefined, -)); -export const OP_SET_SCREEN_BW = (OPCODES[0xf8da] = new_opcode( - 0xf8da, - "set_screen_bw", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8DB = (OPCODES[0xf8db] = new_opcode( - 0xf8db, - "unknown_f8db", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_WORD, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_NPC_ACTION_STRING = (OPCODES[0xf8dc] = new_opcode( - 0xf8dc, - "npc_action_string", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_S_LABEL, undefined, undefined), - ], - undefined, -)); -export const OP_GET_PAD_COND = (OPCODES[0xf8dd] = new_opcode( - 0xf8dd, - "get_pad_cond", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_BUTTON_COND = (OPCODES[0xf8de] = new_opcode( - 0xf8de, - "get_button_cond", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FREEZE_ENEMIES = (OPCODES[0xf8df] = new_opcode( - 0xf8df, - "freeze_enemies", - undefined, - [], - undefined, -)); -export const OP_UNFREEZE_ENEMIES = (OPCODES[0xf8e0] = new_opcode( - 0xf8e0, - "unfreeze_enemies", - undefined, - [], - undefined, -)); -export const OP_FREEZE_EVERYTHING = (OPCODES[0xf8e1] = new_opcode( - 0xf8e1, - "freeze_everything", - undefined, - [], - undefined, -)); -export const OP_UNFREEZE_EVERYTHING = (OPCODES[0xf8e2] = new_opcode( - 0xf8e2, - "unfreeze_everything", - undefined, - [], - undefined, -)); -export const OP_RESTORE_HP = (OPCODES[0xf8e3] = new_opcode( - 0xf8e3, - "restore_hp", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_RESTORE_TP = (OPCODES[0xf8e4] = new_opcode( - 0xf8e4, - "restore_tp", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_CLOSE_CHAT_BUBBLE = (OPCODES[0xf8e5] = new_opcode( - 0xf8e5, - "close_chat_bubble", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_MOVE_COORDS_OBJECT = (OPCODES[0xf8e6] = new_opcode( - 0xf8e6, - "move_coords_object", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_AT_COORDS_CALL_EX = (OPCODES[0xf8e7] = new_opcode( - 0xf8e7, - "at_coords_call_ex", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8E8 = (OPCODES[0xf8e8] = new_opcode( - 0xf8e8, - "unknown_f8e8", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8E9 = (OPCODES[0xf8e9] = new_opcode( - 0xf8e9, - "unknown_f8e9", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8EA = (OPCODES[0xf8ea] = new_opcode( - 0xf8ea, - "unknown_f8ea", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8EB = (OPCODES[0xf8eb] = new_opcode( - 0xf8eb, - "unknown_f8eb", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F8EC = (OPCODES[0xf8ec] = new_opcode( - 0xf8ec, - "unknown_f8ec", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_ANIMATION_CHECK = (OPCODES[0xf8ed] = new_opcode( - 0xf8ed, - "animation_check", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_CALL_IMAGE_DATA = (OPCODES[0xf8ee] = new_opcode( - 0xf8ee, - "call_image_data", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_WORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F8EF = (OPCODES[0xf8ef] = new_opcode( - 0xf8ef, - "unknown_f8ef", - undefined, - [], - undefined, -)); -export const OP_TURN_OFF_BGM_P2 = (OPCODES[0xf8f0] = new_opcode( - 0xf8f0, - "turn_off_bgm_p2", - undefined, - [], - undefined, -)); -export const OP_TURN_ON_BGM_P2 = (OPCODES[0xf8f1] = new_opcode( - 0xf8f1, - "turn_on_bgm_p2", - undefined, - [], - undefined, -)); -export const OP_LOAD_UNK_DATA = (OPCODES[0xf8f2] = new_opcode( - 0xf8f2, - "load_unk_data", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_D_LABEL, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_PARTICLE2 = (OPCODES[0xf8f3] = new_opcode( - 0xf8f3, - "particle2", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_FLOAT, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F8F4 = (OPCODES[0xf8f4] = new_opcode( - 0xf8f4, - "unknown_f8f4", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8F5 = (OPCODES[0xf8f5] = new_opcode( - 0xf8f5, - "unknown_f8f5", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8F6 = (OPCODES[0xf8f6] = new_opcode( - 0xf8f6, - "unknown_f8f6", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8F7 = (OPCODES[0xf8f7] = new_opcode( - 0xf8f7, - "unknown_f8f7", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8F8 = (OPCODES[0xf8f8] = new_opcode( - 0xf8f8, - "unknown_f8f8", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8F9 = (OPCODES[0xf8f9] = new_opcode( - 0xf8f9, - "unknown_f8f9", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8FA = (OPCODES[0xf8fa] = new_opcode( - 0xf8fa, - "unknown_f8fa", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8FB = (OPCODES[0xf8fb] = new_opcode( - 0xf8fb, - "unknown_f8fb", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8FC = (OPCODES[0xf8fc] = new_opcode( - 0xf8fc, - "unknown_f8fc", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8FD = (OPCODES[0xf8fd] = new_opcode( - 0xf8fd, - "unknown_f8fd", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8FE = (OPCODES[0xf8fe] = new_opcode( - 0xf8fe, - "unknown_f8fe", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F8FF = (OPCODES[0xf8ff] = new_opcode( - 0xf8ff, - "unknown_f8ff", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F900 = (OPCODES[0xf900] = new_opcode( - 0xf900, - "unknown_f900", - undefined, - [], - undefined, -)); -export const OP_DEC2FLOAT = (OPCODES[0xf901] = new_opcode( - 0xf901, - "dec2float", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FLOAT2DEC = (OPCODES[0xf902] = new_opcode( - 0xf902, - "float2dec", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FLET = (OPCODES[0xf903] = new_opcode( - 0xf903, - "flet", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FLETI = (OPCODES[0xf904] = new_opcode( - 0xf904, - "fleti", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_FLOAT, undefined, undefined), - ], - undefined, -)); -export const OP_UNKNOWN_F905 = (OPCODES[0xf905] = new_opcode( - 0xf905, - "unknown_f905", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F906 = (OPCODES[0xf906] = new_opcode( - 0xf906, - "unknown_f906", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F907 = (OPCODES[0xf907] = new_opcode( - 0xf907, - "unknown_f907", - undefined, - [], - undefined, -)); -export const OP_FADD = (OPCODES[0xf908] = new_opcode( - 0xf908, - "fadd", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FADDI = (OPCODES[0xf909] = new_opcode( - 0xf909, - "faddi", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_FLOAT, undefined, undefined), - ], - undefined, -)); -export const OP_FSUB = (OPCODES[0xf90a] = new_opcode( - 0xf90a, - "fsub", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FSUBI = (OPCODES[0xf90b] = new_opcode( - 0xf90b, - "fsubi", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_FLOAT, undefined, undefined), - ], - undefined, -)); -export const OP_FMUL = (OPCODES[0xf90c] = new_opcode( - 0xf90c, - "fmul", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FMULI = (OPCODES[0xf90d] = new_opcode( - 0xf90d, - "fmuli", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_FLOAT, undefined, undefined), - ], - undefined, -)); -export const OP_FDIV = (OPCODES[0xf90e] = new_opcode( - 0xf90e, - "fdiv", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FDIVI = (OPCODES[0xf90f] = new_opcode( - 0xf90f, - "fdivi", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_FLOAT, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_FLOAT, undefined, undefined), - ], - undefined, -)); -export const OP_GET_UNKNOWN_COUNT = (OPCODES[0xf910] = new_opcode( - 0xf910, - "get_unknown_count", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_GET_STACKABLE_ITEM_COUNT = (OPCODES[0xf911] = new_opcode( - 0xf911, - "get_stackable_item_count", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - new_param(TYPE_DWORD, undefined, ParamAccess.Read), - ], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FREEZE_AND_HIDE_EQUIP = (OPCODES[0xf912] = new_opcode( - 0xf912, - "freeze_and_hide_equip", - undefined, - [], - undefined, -)); -export const OP_THAW_AND_SHOW_EQUIP = (OPCODES[0xf913] = new_opcode( - 0xf913, - "thaw_and_show_equip", - undefined, - [], - undefined, -)); -export const OP_SET_PALETTEX_CALLBACK = (OPCODES[0xf914] = new_opcode( - 0xf914, - "set_palettex_callback", - undefined, - [ - new_param(TYPE_DWORD, "Player slot.", undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_ACTIVATE_PALETTEX = (OPCODES[0xf915] = new_opcode( - 0xf915, - "activate_palettex", - undefined, - [new_param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop, -)); -export const OP_ENABLE_PALETTEX = (OPCODES[0xf916] = new_opcode( - 0xf916, - "enable_palettex", - undefined, - [new_param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop, -)); -export const OP_RESTORE_PALETTEX = (OPCODES[0xf917] = new_opcode( - 0xf917, - "restore_palettex", - undefined, - [new_param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop, -)); -export const OP_DISABLE_PALETTEX = (OPCODES[0xf918] = new_opcode( - 0xf918, - "disable_palettex", - undefined, - [new_param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop, -)); -export const OP_GET_PALETTEX_ACTIVATED = (OPCODES[0xf919] = new_opcode( - 0xf919, - "get_palettex_activated", - undefined, - [ - new_param(TYPE_DWORD, "Player slot.", undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_GET_UNKNOWN_PALETTEX_STATUS = (OPCODES[0xf91a] = new_opcode( - 0xf91a, - "get_unknown_palettex_status", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_DISABLE_MOVEMENT2 = (OPCODES[0xf91b] = new_opcode( - 0xf91b, - "disable_movement2", - undefined, - [new_param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop, -)); -export const OP_ENABLE_MOVEMENT2 = (OPCODES[0xf91c] = new_opcode( - 0xf91c, - "enable_movement2", - undefined, - [new_param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop, -)); -export const OP_GET_TIME_PLAYED = (OPCODES[0xf91d] = new_opcode( - 0xf91d, - "get_time_played", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_GUILDCARD_TOTAL = (OPCODES[0xf91e] = new_opcode( - 0xf91e, - "get_guildcard_total", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_SLOT_MESETA = (OPCODES[0xf91f] = new_opcode( - 0xf91f, - "get_slot_meseta", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_PLAYER_LEVEL = (OPCODES[0xf920] = new_opcode( - 0xf920, - "get_player_level", - undefined, - [ - new_param(TYPE_DWORD, "Player slot.", undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_GET_SECTION_ID = (OPCODES[0xf921] = new_opcode( - 0xf921, - "get_section_id", - undefined, - [ - new_param(TYPE_DWORD, "Player slot.", undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_GET_PLAYER_HP = (OPCODES[0xf922] = new_opcode( - 0xf922, - "get_player_hp", - undefined, - [ - new_param(TYPE_DWORD, "Player slot.", undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, "Maximum HP.", ParamAccess.Write), - new_param(TYPE_DWORD, "Current HP.", ParamAccess.Write), - new_param(TYPE_DWORD, "Maximum TP.", ParamAccess.Write), - new_param(TYPE_DWORD, "Current TP.", ParamAccess.Write), - ], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_GET_FLOOR_NUMBER = (OPCODES[0xf923] = new_opcode( - 0xf923, - "get_floor_number", - undefined, - [ - new_param(TYPE_DWORD, "Player slot.", undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_GET_COORD_PLAYER_DETECT = (OPCODES[0xf924] = new_opcode( - 0xf924, - "get_coord_player_detect", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, "Player slot.", ParamAccess.Read)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Read)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_READ_GLOBAL_FLAG = (OPCODES[0xf925] = new_opcode( - 0xf925, - "read_global_flag", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_WRITE_GLOBAL_FLAG = (OPCODES[0xf926] = new_opcode( - 0xf926, - "write_global_flag", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F927 = (OPCODES[0xf927] = new_opcode( - 0xf927, - "unknown_f927", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_FLOOR_PLAYER_DETECT = (OPCODES[0xf928] = new_opcode( - 0xf928, - "floor_player_detect", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [ - new_param(TYPE_DWORD, undefined, ParamAccess.Write), - new_param(TYPE_DWORD, undefined, ParamAccess.Write), - new_param(TYPE_DWORD, undefined, ParamAccess.Write), - new_param(TYPE_DWORD, undefined, ParamAccess.Write), - ], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_READ_DISK_FILE = (OPCODES[0xf929] = new_opcode( - 0xf929, - "read_disk_file", - undefined, - [new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_OPEN_PACK_SELECT = (OPCODES[0xf92a] = new_opcode( - 0xf92a, - "open_pack_select", - undefined, - [], - undefined, -)); -export const OP_ITEM_SELECT = (OPCODES[0xf92b] = new_opcode( - 0xf92b, - "item_select", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_GET_ITEM_ID = (OPCODES[0xf92c] = new_opcode( - 0xf92c, - "get_item_id", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_COLOR_CHANGE = (OPCODES[0xf92d] = new_opcode( - 0xf92d, - "color_change", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_SEND_STATISTIC = (OPCODES[0xf92e] = new_opcode( - 0xf92e, - "send_statistic", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F92F = (OPCODES[0xf92f] = new_opcode( - 0xf92f, - "unknown_f92f", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_CHAT_BOX = (OPCODES[0xf930] = new_opcode( - 0xf930, - "chat_box", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_STRING, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_CHAT_BUBBLE = (OPCODES[0xf931] = new_opcode( - 0xf931, - "chat_bubble", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F932 = (OPCODES[0xf932] = new_opcode( - 0xf932, - "unknown_f932", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F933 = (OPCODES[0xf933] = new_opcode( - 0xf933, - "unknown_f933", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_SCROLL_TEXT = (OPCODES[0xf934] = new_opcode( - 0xf934, - "scroll_text", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_FLOAT, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_STRING, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_GBA_UNKNOWN1 = (OPCODES[0xf935] = new_opcode( - 0xf935, - "gba_unknown1", - undefined, - [], - undefined, -)); -export const OP_GBA_UNKNOWN2 = (OPCODES[0xf936] = new_opcode( - 0xf936, - "gba_unknown2", - undefined, - [], - undefined, -)); -export const OP_GBA_UNKNOWN3 = (OPCODES[0xf937] = new_opcode( - 0xf937, - "gba_unknown3", - undefined, - [], - undefined, -)); -export const OP_ADD_DAMAGE_TO = (OPCODES[0xf938] = new_opcode( - 0xf938, - "add_damage_to", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_ITEM_DELETE3 = (OPCODES[0xf939] = new_opcode( - 0xf939, - "item_delete3", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_GET_ITEM_INFO = (OPCODES[0xf93a] = new_opcode( - 0xf93a, - "get_item_info", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_ITEM_PACKING1 = (OPCODES[0xf93b] = new_opcode( - 0xf93b, - "item_packing1", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_ITEM_PACKING2 = (OPCODES[0xf93c] = new_opcode( - 0xf93c, - "item_packing2", - undefined, - [new_param(TYPE_DWORD, undefined, undefined), new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_GET_LANG_SETTING = (OPCODES[0xf93d] = new_opcode( - 0xf93d, - "get_lang_setting", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_ANY, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_PREPARE_STATISTIC = (OPCODES[0xf93e] = new_opcode( - 0xf93e, - "prepare_statistic", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_KEYWORD_DETECT = (OPCODES[0xf93f] = new_opcode( - 0xf93f, - "keyword_detect", - undefined, - [], - undefined, -)); -export const OP_KEYWORD = (OPCODES[0xf940] = new_opcode( - 0xf940, - "keyword", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, "Player slot.", undefined), - new_param(TYPE_STRING, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_GET_GUILDCARD_NUM = (OPCODES[0xf941] = new_opcode( - 0xf941, - "get_guildcard_num", - undefined, - [ - new_param(TYPE_DWORD, "Player slot.", undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F942 = (OPCODES[0xf942] = new_opcode( - 0xf942, - "unknown_f942", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F943 = (OPCODES[0xf943] = new_opcode( - 0xf943, - "unknown_f943", - undefined, - [], - undefined, -)); -export const OP_GET_WRAP_STATUS = (OPCODES[0xf944] = new_opcode( - 0xf944, - "get_wrap_status", - undefined, - [ - new_param(TYPE_DWORD, "Player slot.", undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_INITIAL_FLOOR = (OPCODES[0xf945] = new_opcode( - 0xf945, - "initial_floor", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_SIN = (OPCODES[0xf946] = new_opcode( - 0xf946, - "sin", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_COS = (OPCODES[0xf947] = new_opcode( - 0xf947, - "cos", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F948 = (OPCODES[0xf948] = new_opcode( - 0xf948, - "unknown_f948", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F949 = (OPCODES[0xf949] = new_opcode( - 0xf949, - "unknown_f949", - undefined, - [], - undefined, -)); -export const OP_BOSS_IS_DEAD2 = (OPCODES[0xf94a] = new_opcode( - 0xf94a, - "boss_is_dead2", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F94B = (OPCODES[0xf94b] = new_opcode( - 0xf94b, - "unknown_f94b", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F94C = (OPCODES[0xf94c] = new_opcode( - 0xf94c, - "unknown_f94c", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_IS_THERE_CARDBATTLE = (OPCODES[0xf94d] = new_opcode( - 0xf94d, - "is_there_cardbattle", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F94E = (OPCODES[0xf94e] = new_opcode( - 0xf94e, - "unknown_f94e", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F94F = (OPCODES[0xf94f] = new_opcode( - 0xf94f, - "unknown_f94f", - undefined, - [], - undefined, -)); -export const OP_BB_P2_MENU = (OPCODES[0xf950] = new_opcode( - 0xf950, - "bb_p2_menu", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_BB_MAP_DESIGNATE = (OPCODES[0xf951] = new_opcode( - 0xf951, - "bb_map_designate", - undefined, - [ - new_param(TYPE_BYTE, undefined, undefined), - new_param(TYPE_WORD, undefined, undefined), - new_param(TYPE_BYTE, undefined, undefined), - new_param(TYPE_BYTE, undefined, undefined), - ], - undefined, -)); -export const OP_BB_GET_NUMBER_IN_PACK = (OPCODES[0xf952] = new_opcode( - 0xf952, - "bb_get_number_in_pack", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_BB_SWAP_ITEM = (OPCODES[0xf953] = new_opcode( - 0xf953, - "bb_swap_item", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_BB_CHECK_WRAP = (OPCODES[0xf954] = new_opcode( - 0xf954, - "bb_check_wrap", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - StackInteraction.Pop, -)); -export const OP_BB_EXCHANGE_PD_ITEM = (OPCODES[0xf955] = new_opcode( - 0xf955, - "bb_exchange_pd_item", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_BB_EXCHANGE_PD_SRANK = (OPCODES[0xf956] = new_opcode( - 0xf956, - "bb_exchange_pd_srank", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_BB_EXCHANGE_PD_SPECIAL = (OPCODES[0xf957] = new_opcode( - 0xf957, - "bb_exchange_pd_special", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_BB_EXCHANGE_PD_PERCENT = (OPCODES[0xf958] = new_opcode( - 0xf958, - "bb_exchange_pd_percent", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F959 = (OPCODES[0xf959] = new_opcode( - 0xf959, - "unknown_f959", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F95A = (OPCODES[0xf95a] = new_opcode( - 0xf95a, - "unknown_f95a", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F95B = (OPCODES[0xf95b] = new_opcode( - 0xf95b, - "unknown_f95b", - undefined, - [], - undefined, -)); -export const OP_BB_EXCHANGE_SLT = (OPCODES[0xf95c] = new_opcode( - 0xf95c, - "bb_exchange_slt", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_BB_EXCHANGE_PC = (OPCODES[0xf95d] = new_opcode( - 0xf95d, - "bb_exchange_pc", - undefined, - [], - undefined, -)); -export const OP_BB_BOX_CREATE_BP = (OPCODES[0xf95e] = new_opcode( - 0xf95e, - "bb_box_create_bp", - undefined, - [ - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_FLOAT, undefined, undefined), - new_param(TYPE_FLOAT, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_BB_EXCHANGE_PT = (OPCODES[0xf95f] = new_opcode( - 0xf95f, - "bb_exchange_pt", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - new_param(TYPE_DWORD, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - new_param(TYPE_I_LABEL, undefined, undefined), - ], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F960 = (OPCODES[0xf960] = new_opcode( - 0xf960, - "unknown_f960", - undefined, - [new_param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop, -)); -export const OP_UNKNOWN_F961 = (OPCODES[0xf961] = new_opcode( - 0xf961, - "unknown_f961", - undefined, - [ - new_param( - { - kind: Kind.RegTupRef, - register_tuples: [new_param(TYPE_DWORD, undefined, ParamAccess.Write)], - }, - undefined, - undefined, - ), - ], - undefined, -)); -export const OP_UNKNOWN_F962 = (OPCODES[0xf962] = new_opcode( - 0xf962, - "unknown_f962", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F963 = (OPCODES[0xf963] = new_opcode( - 0xf963, - "unknown_f963", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F964 = (OPCODES[0xf964] = new_opcode( - 0xf964, - "unknown_f964", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F965 = (OPCODES[0xf965] = new_opcode( - 0xf965, - "unknown_f965", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F966 = (OPCODES[0xf966] = new_opcode( - 0xf966, - "unknown_f966", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F967 = (OPCODES[0xf967] = new_opcode( - 0xf967, - "unknown_f967", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F968 = (OPCODES[0xf968] = new_opcode( - 0xf968, - "unknown_f968", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F969 = (OPCODES[0xf969] = new_opcode( - 0xf969, - "unknown_f969", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F96A = (OPCODES[0xf96a] = new_opcode( - 0xf96a, - "unknown_f96a", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F96B = (OPCODES[0xf96b] = new_opcode( - 0xf96b, - "unknown_f96b", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F96C = (OPCODES[0xf96c] = new_opcode( - 0xf96c, - "unknown_f96c", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F96D = (OPCODES[0xf96d] = new_opcode( - 0xf96d, - "unknown_f96d", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F96E = (OPCODES[0xf96e] = new_opcode( - 0xf96e, - "unknown_f96e", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F96F = (OPCODES[0xf96f] = new_opcode( - 0xf96f, - "unknown_f96f", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F970 = (OPCODES[0xf970] = new_opcode( - 0xf970, - "unknown_f970", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F971 = (OPCODES[0xf971] = new_opcode( - 0xf971, - "unknown_f971", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F972 = (OPCODES[0xf972] = new_opcode( - 0xf972, - "unknown_f972", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F973 = (OPCODES[0xf973] = new_opcode( - 0xf973, - "unknown_f973", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F974 = (OPCODES[0xf974] = new_opcode( - 0xf974, - "unknown_f974", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F975 = (OPCODES[0xf975] = new_opcode( - 0xf975, - "unknown_f975", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F976 = (OPCODES[0xf976] = new_opcode( - 0xf976, - "unknown_f976", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F977 = (OPCODES[0xf977] = new_opcode( - 0xf977, - "unknown_f977", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F978 = (OPCODES[0xf978] = new_opcode( - 0xf978, - "unknown_f978", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F979 = (OPCODES[0xf979] = new_opcode( - 0xf979, - "unknown_f979", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F97A = (OPCODES[0xf97a] = new_opcode( - 0xf97a, - "unknown_f97a", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F97B = (OPCODES[0xf97b] = new_opcode( - 0xf97b, - "unknown_f97b", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F97C = (OPCODES[0xf97c] = new_opcode( - 0xf97c, - "unknown_f97c", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F97D = (OPCODES[0xf97d] = new_opcode( - 0xf97d, - "unknown_f97d", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F97E = (OPCODES[0xf97e] = new_opcode( - 0xf97e, - "unknown_f97e", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F97F = (OPCODES[0xf97f] = new_opcode( - 0xf97f, - "unknown_f97f", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F980 = (OPCODES[0xf980] = new_opcode( - 0xf980, - "unknown_f980", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F981 = (OPCODES[0xf981] = new_opcode( - 0xf981, - "unknown_f981", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F982 = (OPCODES[0xf982] = new_opcode( - 0xf982, - "unknown_f982", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F983 = (OPCODES[0xf983] = new_opcode( - 0xf983, - "unknown_f983", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F984 = (OPCODES[0xf984] = new_opcode( - 0xf984, - "unknown_f984", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F985 = (OPCODES[0xf985] = new_opcode( - 0xf985, - "unknown_f985", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F986 = (OPCODES[0xf986] = new_opcode( - 0xf986, - "unknown_f986", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F987 = (OPCODES[0xf987] = new_opcode( - 0xf987, - "unknown_f987", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F988 = (OPCODES[0xf988] = new_opcode( - 0xf988, - "unknown_f988", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F989 = (OPCODES[0xf989] = new_opcode( - 0xf989, - "unknown_f989", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F98A = (OPCODES[0xf98a] = new_opcode( - 0xf98a, - "unknown_f98a", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F98B = (OPCODES[0xf98b] = new_opcode( - 0xf98b, - "unknown_f98b", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F98C = (OPCODES[0xf98c] = new_opcode( - 0xf98c, - "unknown_f98c", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F98D = (OPCODES[0xf98d] = new_opcode( - 0xf98d, - "unknown_f98d", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F98E = (OPCODES[0xf98e] = new_opcode( - 0xf98e, - "unknown_f98e", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F98F = (OPCODES[0xf98f] = new_opcode( - 0xf98f, - "unknown_f98f", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F990 = (OPCODES[0xf990] = new_opcode( - 0xf990, - "unknown_f990", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F991 = (OPCODES[0xf991] = new_opcode( - 0xf991, - "unknown_f991", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F992 = (OPCODES[0xf992] = new_opcode( - 0xf992, - "unknown_f992", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F993 = (OPCODES[0xf993] = new_opcode( - 0xf993, - "unknown_f993", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F994 = (OPCODES[0xf994] = new_opcode( - 0xf994, - "unknown_f994", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F995 = (OPCODES[0xf995] = new_opcode( - 0xf995, - "unknown_f995", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F996 = (OPCODES[0xf996] = new_opcode( - 0xf996, - "unknown_f996", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F997 = (OPCODES[0xf997] = new_opcode( - 0xf997, - "unknown_f997", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F998 = (OPCODES[0xf998] = new_opcode( - 0xf998, - "unknown_f998", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F999 = (OPCODES[0xf999] = new_opcode( - 0xf999, - "unknown_f999", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F99A = (OPCODES[0xf99a] = new_opcode( - 0xf99a, - "unknown_f99a", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F99B = (OPCODES[0xf99b] = new_opcode( - 0xf99b, - "unknown_f99b", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F99C = (OPCODES[0xf99c] = new_opcode( - 0xf99c, - "unknown_f99c", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F99D = (OPCODES[0xf99d] = new_opcode( - 0xf99d, - "unknown_f99d", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F99E = (OPCODES[0xf99e] = new_opcode( - 0xf99e, - "unknown_f99e", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F99F = (OPCODES[0xf99f] = new_opcode( - 0xf99f, - "unknown_f99f", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9A0 = (OPCODES[0xf9a0] = new_opcode( - 0xf9a0, - "unknown_f9a0", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9A1 = (OPCODES[0xf9a1] = new_opcode( - 0xf9a1, - "unknown_f9a1", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9A2 = (OPCODES[0xf9a2] = new_opcode( - 0xf9a2, - "unknown_f9a2", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9A3 = (OPCODES[0xf9a3] = new_opcode( - 0xf9a3, - "unknown_f9a3", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9A4 = (OPCODES[0xf9a4] = new_opcode( - 0xf9a4, - "unknown_f9a4", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9A5 = (OPCODES[0xf9a5] = new_opcode( - 0xf9a5, - "unknown_f9a5", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9A6 = (OPCODES[0xf9a6] = new_opcode( - 0xf9a6, - "unknown_f9a6", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9A7 = (OPCODES[0xf9a7] = new_opcode( - 0xf9a7, - "unknown_f9a7", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9A8 = (OPCODES[0xf9a8] = new_opcode( - 0xf9a8, - "unknown_f9a8", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9A9 = (OPCODES[0xf9a9] = new_opcode( - 0xf9a9, - "unknown_f9a9", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9AA = (OPCODES[0xf9aa] = new_opcode( - 0xf9aa, - "unknown_f9aa", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9AB = (OPCODES[0xf9ab] = new_opcode( - 0xf9ab, - "unknown_f9ab", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9AC = (OPCODES[0xf9ac] = new_opcode( - 0xf9ac, - "unknown_f9ac", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9AD = (OPCODES[0xf9ad] = new_opcode( - 0xf9ad, - "unknown_f9ad", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9AE = (OPCODES[0xf9ae] = new_opcode( - 0xf9ae, - "unknown_f9ae", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9AF = (OPCODES[0xf9af] = new_opcode( - 0xf9af, - "unknown_f9af", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9B0 = (OPCODES[0xf9b0] = new_opcode( - 0xf9b0, - "unknown_f9b0", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9B1 = (OPCODES[0xf9b1] = new_opcode( - 0xf9b1, - "unknown_f9b1", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9B2 = (OPCODES[0xf9b2] = new_opcode( - 0xf9b2, - "unknown_f9b2", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9B3 = (OPCODES[0xf9b3] = new_opcode( - 0xf9b3, - "unknown_f9b3", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9B4 = (OPCODES[0xf9b4] = new_opcode( - 0xf9b4, - "unknown_f9b4", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9B5 = (OPCODES[0xf9b5] = new_opcode( - 0xf9b5, - "unknown_f9b5", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9B6 = (OPCODES[0xf9b6] = new_opcode( - 0xf9b6, - "unknown_f9b6", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9B7 = (OPCODES[0xf9b7] = new_opcode( - 0xf9b7, - "unknown_f9b7", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9B8 = (OPCODES[0xf9b8] = new_opcode( - 0xf9b8, - "unknown_f9b8", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9B9 = (OPCODES[0xf9b9] = new_opcode( - 0xf9b9, - "unknown_f9b9", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9BA = (OPCODES[0xf9ba] = new_opcode( - 0xf9ba, - "unknown_f9ba", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9BB = (OPCODES[0xf9bb] = new_opcode( - 0xf9bb, - "unknown_f9bb", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9BC = (OPCODES[0xf9bc] = new_opcode( - 0xf9bc, - "unknown_f9bc", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9BD = (OPCODES[0xf9bd] = new_opcode( - 0xf9bd, - "unknown_f9bd", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9BE = (OPCODES[0xf9be] = new_opcode( - 0xf9be, - "unknown_f9be", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9BF = (OPCODES[0xf9bf] = new_opcode( - 0xf9bf, - "unknown_f9bf", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9C0 = (OPCODES[0xf9c0] = new_opcode( - 0xf9c0, - "unknown_f9c0", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9C1 = (OPCODES[0xf9c1] = new_opcode( - 0xf9c1, - "unknown_f9c1", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9C2 = (OPCODES[0xf9c2] = new_opcode( - 0xf9c2, - "unknown_f9c2", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9C3 = (OPCODES[0xf9c3] = new_opcode( - 0xf9c3, - "unknown_f9c3", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9C4 = (OPCODES[0xf9c4] = new_opcode( - 0xf9c4, - "unknown_f9c4", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9C5 = (OPCODES[0xf9c5] = new_opcode( - 0xf9c5, - "unknown_f9c5", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9C6 = (OPCODES[0xf9c6] = new_opcode( - 0xf9c6, - "unknown_f9c6", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9C7 = (OPCODES[0xf9c7] = new_opcode( - 0xf9c7, - "unknown_f9c7", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9C8 = (OPCODES[0xf9c8] = new_opcode( - 0xf9c8, - "unknown_f9c8", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9C9 = (OPCODES[0xf9c9] = new_opcode( - 0xf9c9, - "unknown_f9c9", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9CA = (OPCODES[0xf9ca] = new_opcode( - 0xf9ca, - "unknown_f9ca", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9CB = (OPCODES[0xf9cb] = new_opcode( - 0xf9cb, - "unknown_f9cb", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9CC = (OPCODES[0xf9cc] = new_opcode( - 0xf9cc, - "unknown_f9cc", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9CD = (OPCODES[0xf9cd] = new_opcode( - 0xf9cd, - "unknown_f9cd", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9CE = (OPCODES[0xf9ce] = new_opcode( - 0xf9ce, - "unknown_f9ce", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9CF = (OPCODES[0xf9cf] = new_opcode( - 0xf9cf, - "unknown_f9cf", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9D0 = (OPCODES[0xf9d0] = new_opcode( - 0xf9d0, - "unknown_f9d0", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9D1 = (OPCODES[0xf9d1] = new_opcode( - 0xf9d1, - "unknown_f9d1", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9D2 = (OPCODES[0xf9d2] = new_opcode( - 0xf9d2, - "unknown_f9d2", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9D3 = (OPCODES[0xf9d3] = new_opcode( - 0xf9d3, - "unknown_f9d3", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9D4 = (OPCODES[0xf9d4] = new_opcode( - 0xf9d4, - "unknown_f9d4", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9D5 = (OPCODES[0xf9d5] = new_opcode( - 0xf9d5, - "unknown_f9d5", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9D6 = (OPCODES[0xf9d6] = new_opcode( - 0xf9d6, - "unknown_f9d6", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9D7 = (OPCODES[0xf9d7] = new_opcode( - 0xf9d7, - "unknown_f9d7", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9D8 = (OPCODES[0xf9d8] = new_opcode( - 0xf9d8, - "unknown_f9d8", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9D9 = (OPCODES[0xf9d9] = new_opcode( - 0xf9d9, - "unknown_f9d9", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9DA = (OPCODES[0xf9da] = new_opcode( - 0xf9da, - "unknown_f9da", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9DB = (OPCODES[0xf9db] = new_opcode( - 0xf9db, - "unknown_f9db", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9DC = (OPCODES[0xf9dc] = new_opcode( - 0xf9dc, - "unknown_f9dc", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9DD = (OPCODES[0xf9dd] = new_opcode( - 0xf9dd, - "unknown_f9dd", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9DE = (OPCODES[0xf9de] = new_opcode( - 0xf9de, - "unknown_f9de", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9DF = (OPCODES[0xf9df] = new_opcode( - 0xf9df, - "unknown_f9df", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9E0 = (OPCODES[0xf9e0] = new_opcode( - 0xf9e0, - "unknown_f9e0", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9E1 = (OPCODES[0xf9e1] = new_opcode( - 0xf9e1, - "unknown_f9e1", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9E2 = (OPCODES[0xf9e2] = new_opcode( - 0xf9e2, - "unknown_f9e2", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9E3 = (OPCODES[0xf9e3] = new_opcode( - 0xf9e3, - "unknown_f9e3", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9E4 = (OPCODES[0xf9e4] = new_opcode( - 0xf9e4, - "unknown_f9e4", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9E5 = (OPCODES[0xf9e5] = new_opcode( - 0xf9e5, - "unknown_f9e5", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9E6 = (OPCODES[0xf9e6] = new_opcode( - 0xf9e6, - "unknown_f9e6", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9E7 = (OPCODES[0xf9e7] = new_opcode( - 0xf9e7, - "unknown_f9e7", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9E8 = (OPCODES[0xf9e8] = new_opcode( - 0xf9e8, - "unknown_f9e8", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9E9 = (OPCODES[0xf9e9] = new_opcode( - 0xf9e9, - "unknown_f9e9", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9EA = (OPCODES[0xf9ea] = new_opcode( - 0xf9ea, - "unknown_f9ea", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9EB = (OPCODES[0xf9eb] = new_opcode( - 0xf9eb, - "unknown_f9eb", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9EC = (OPCODES[0xf9ec] = new_opcode( - 0xf9ec, - "unknown_f9ec", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9ED = (OPCODES[0xf9ed] = new_opcode( - 0xf9ed, - "unknown_f9ed", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9EE = (OPCODES[0xf9ee] = new_opcode( - 0xf9ee, - "unknown_f9ee", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9EF = (OPCODES[0xf9ef] = new_opcode( - 0xf9ef, - "unknown_f9ef", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9F0 = (OPCODES[0xf9f0] = new_opcode( - 0xf9f0, - "unknown_f9f0", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9F1 = (OPCODES[0xf9f1] = new_opcode( - 0xf9f1, - "unknown_f9f1", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9F2 = (OPCODES[0xf9f2] = new_opcode( - 0xf9f2, - "unknown_f9f2", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9F3 = (OPCODES[0xf9f3] = new_opcode( - 0xf9f3, - "unknown_f9f3", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9F4 = (OPCODES[0xf9f4] = new_opcode( - 0xf9f4, - "unknown_f9f4", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9F5 = (OPCODES[0xf9f5] = new_opcode( - 0xf9f5, - "unknown_f9f5", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9F6 = (OPCODES[0xf9f6] = new_opcode( - 0xf9f6, - "unknown_f9f6", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9F7 = (OPCODES[0xf9f7] = new_opcode( - 0xf9f7, - "unknown_f9f7", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9F8 = (OPCODES[0xf9f8] = new_opcode( - 0xf9f8, - "unknown_f9f8", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9F9 = (OPCODES[0xf9f9] = new_opcode( - 0xf9f9, - "unknown_f9f9", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9FA = (OPCODES[0xf9fa] = new_opcode( - 0xf9fa, - "unknown_f9fa", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9FB = (OPCODES[0xf9fb] = new_opcode( - 0xf9fb, - "unknown_f9fb", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9FC = (OPCODES[0xf9fc] = new_opcode( - 0xf9fc, - "unknown_f9fc", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9FD = (OPCODES[0xf9fd] = new_opcode( - 0xf9fd, - "unknown_f9fd", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9FE = (OPCODES[0xf9fe] = new_opcode( - 0xf9fe, - "unknown_f9fe", - undefined, - [], - undefined, -)); -export const OP_UNKNOWN_F9FF = (OPCODES[0xf9ff] = new_opcode( - 0xf9ff, - "unknown_f9ff", - undefined, - [], - undefined, -)); -// !!! GENERATED_CODE_END !!! - -OPCODES.forEach(opcode => { - OPCODES_BY_MNEMONIC.set(opcode.mnemonic, opcode); -}); diff --git a/src/core/data_formats/block/AbstractWritableBlock.ts b/src/core/data_formats/block/AbstractWritableBlock.ts deleted file mode 100644 index ed037a8c..00000000 --- a/src/core/data_formats/block/AbstractWritableBlock.ts +++ /dev/null @@ -1,141 +0,0 @@ -import { WritableBlock } from "./WritableBlock"; -import { Endianness } from "./Endianness"; - -export abstract class AbstractWritableBlock implements WritableBlock { - abstract readonly size: number; - - protected little_endian!: boolean; - - get endianness(): Endianness { - return this.little_endian ? Endianness.Little : Endianness.Big; - } - - set endianness(endianness: Endianness) { - this.little_endian = endianness === Endianness.Little; - } - - protected abstract readonly buffer: ArrayBuffer; - protected abstract readonly data_view: DataView; - - protected constructor(endianness: Endianness) { - this.endianness = endianness; - } - - get_u8(offset: number): number { - this.check_offset(offset, 1); - return this.data_view.getUint8(offset); - } - - get_u16(offset: number): number { - this.check_offset(offset, 2); - return this.data_view.getUint16(offset, this.little_endian); - } - - get_u32(offset: number): number { - this.check_offset(offset, 4); - return this.data_view.getUint32(offset, this.little_endian); - } - - get_i8(offset: number): number { - this.check_offset(offset, 1); - return this.data_view.getInt8(offset); - } - - get_i16(offset: number): number { - this.check_offset(offset, 2); - return this.data_view.getInt16(offset, this.little_endian); - } - - get_i32(offset: number): number { - this.check_offset(offset, 4); - return this.data_view.getInt32(offset, this.little_endian); - } - - get_f32(offset: number): number { - this.check_offset(offset, 4); - return this.data_view.getFloat32(offset, this.little_endian); - } - - get_string_utf16(offset: number, max_byte_length: number, null_terminated: boolean): string { - const code_points: number[] = []; - const len = Math.floor(max_byte_length / 2); - - for (let i = 0; i < len; i++) { - const code_point = this.get_u16(offset + i * 2); - - if (null_terminated && code_point === 0) { - break; - } - - code_points.push(code_point); - } - - return String.fromCodePoint(...code_points); - } - - get_array_buffer(offset: number, size: number): ArrayBuffer { - this.check_offset(offset, size); - return this.buffer.slice(offset, offset + size); - } - - uint8_view(offset: number, size: number): Uint8Array { - this.check_offset(offset, size); - return new Uint8Array(this.buffer, offset, size); - } - - set_u8(offset: number, value: number): this { - this.check_offset(offset, 1); - this.data_view.setUint8(offset, value); - return this; - } - - set_u16(offset: number, value: number): this { - this.check_offset(offset, 2); - this.data_view.setUint16(offset, value, this.little_endian); - return this; - } - - set_u32(offset: number, value: number): this { - this.check_offset(offset, 4); - this.data_view.setUint32(offset, value, this.little_endian); - return this; - } - - set_i8(offset: number, value: number): this { - this.check_offset(offset, 1); - this.data_view.setInt8(offset, value); - return this; - } - - set_i16(offset: number, value: number): this { - this.check_offset(offset, 2); - this.data_view.setInt16(offset, value, this.little_endian); - return this; - } - - set_i32(offset: number, value: number): this { - this.check_offset(offset, 4); - this.data_view.setInt32(offset, value, this.little_endian); - return this; - } - - set_f32(offset: number, value: number): this { - this.check_offset(offset, 4); - this.data_view.setFloat32(offset, value, this.little_endian); - return this; - } - - zero(): this { - new Uint8Array(this.buffer).fill(0); - return this; - } - - /** - * Checks whether we can read `size` bytes at `offset`. - */ - protected check_offset(offset: number, size: number): void { - if (offset < 0 || offset + size > this.size) { - throw new Error(`Offset ${offset} is out of bounds.`); - } - } -} diff --git a/src/core/data_formats/block/ArrayBufferBlock.ts b/src/core/data_formats/block/ArrayBufferBlock.ts deleted file mode 100644 index 14bc1dc4..00000000 --- a/src/core/data_formats/block/ArrayBufferBlock.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { Endianness } from "./Endianness"; -import { AbstractWritableBlock } from "./AbstractWritableBlock"; - -export class ArrayBufferBlock extends AbstractWritableBlock { - get size(): number { - return this.data_view.byteLength; - } - - protected readonly buffer: ArrayBuffer; - protected readonly data_view: DataView; - - get backing_buffer(): ArrayBuffer { - return this.buffer; - } - - constructor(buffer_or_size: ArrayBuffer | number, endianness: Endianness) { - super(endianness); - - this.buffer = - typeof buffer_or_size === "number" ? new ArrayBuffer(buffer_or_size) : buffer_or_size; - - this.data_view = new DataView(this.buffer); - } -} diff --git a/src/core/data_formats/block/Block.ts b/src/core/data_formats/block/Block.ts deleted file mode 100644 index 3647eea7..00000000 --- a/src/core/data_formats/block/Block.ts +++ /dev/null @@ -1,60 +0,0 @@ -import { Endianness } from "./Endianness"; - -/** - * Represents a continuous block of bytes. - */ -export interface Block { - readonly size: number; - - /** - * Byte order mode. - */ - endianness: Endianness; - - /** - * Reads an unsigned 8-bit integer at the given offset. - */ - get_u8(offset: number): number; - - /** - * Reads an unsigned 16-bit integer at the given offset. - */ - get_u16(offset: number): number; - - /** - * Reads an unsigned 32-bit integer at the given offset. - */ - get_u32(offset: number): number; - - /** - * Reads a signed 8-bit integer at the given offset. - */ - get_i8(offset: number): number; - - /** - * Reads a signed 16-bit integer at the given offset. - */ - get_i16(offset: number): number; - - /** - * Reads a signed 32-bit integer at the given offset. - */ - get_i32(offset: number): number; - - /** - * Reads a 32-bit floating point number at the given offset. - */ - get_f32(offset: number): number; - - /** - * Reads a UTF-16-encoded string at the given offset. - */ - get_string_utf16(offset: number, max_byte_length: number, null_terminated: boolean): string; - - /** - * Reads an array buffer of the given size at the given offset. - */ - get_array_buffer(offset: number, size: number): ArrayBuffer; - - uint8_view(offset: number, size: number): Uint8Array; -} diff --git a/src/core/data_formats/block/Endianness.ts b/src/core/data_formats/block/Endianness.ts deleted file mode 100644 index d1bf6c5d..00000000 --- a/src/core/data_formats/block/Endianness.ts +++ /dev/null @@ -1,4 +0,0 @@ -export enum Endianness { - Little, - Big, -} diff --git a/src/core/data_formats/block/ResizableBlock.test.ts b/src/core/data_formats/block/ResizableBlock.test.ts deleted file mode 100644 index 1b99c486..00000000 --- a/src/core/data_formats/block/ResizableBlock.test.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { ResizableBlock } from "./ResizableBlock"; -import { Endianness } from "./Endianness"; - -test("simple properties and invariants", () => { - const capacity = 500; - const rb = new ResizableBlock(capacity); - - expect(rb.size).toBe(0); - expect(rb.capacity).toBe(capacity); - expect(rb.endianness).toBe(Endianness.Little); -}); - -test("reallocation of internal buffer when necessary", () => { - const rb = new ResizableBlock(100); - - expect(rb.size).toBe(0); - expect(rb.capacity).toBe(100); - - rb.size = 101; - - expect(rb.size).toBe(101); - expect(rb.capacity).toBeGreaterThanOrEqual(101); - - rb.set_u8(100, 0xab); - - expect(rb.get_u8(100)).toBe(0xab); -}); diff --git a/src/core/data_formats/block/ResizableBlock.ts b/src/core/data_formats/block/ResizableBlock.ts deleted file mode 100644 index a95ac22b..00000000 --- a/src/core/data_formats/block/ResizableBlock.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { Endianness } from "./Endianness"; -import { AbstractWritableBlock } from "./AbstractWritableBlock"; - -/** - * Resizable block backed by an ArrayBuffer which is reallocated when necessary. - */ -export class ResizableBlock extends AbstractWritableBlock { - private _size: number = 0; - - get size(): number { - return this._size; - } - - set size(size: number) { - if (size < 0) { - throw new Error("Size should be non-negative."); - } - - this.ensure_capacity(size); - this._size = size; - } - - get capacity(): number { - return this.buffer.byteLength; - } - - protected buffer: ArrayBuffer; - protected data_view: DataView; - - constructor(initial_capacity: number = 8192, endianness: Endianness = Endianness.Little) { - super(endianness); - - this.buffer = new ArrayBuffer(initial_capacity); - this.data_view = new DataView(this.buffer); - } - - /** - * Reallocates the underlying ArrayBuffer if necessary. - */ - private ensure_capacity(min_new_size: number): void { - if (min_new_size > this.capacity) { - let new_size = this.capacity || min_new_size; - - do { - new_size *= 2; - } while (new_size < min_new_size); - - const new_buffer = new ArrayBuffer(new_size); - new Uint8Array(new_buffer).set(new Uint8Array(this.buffer, 0, this.size)); - this.buffer = new_buffer; - this.data_view = new DataView(this.buffer); - } - } -} diff --git a/src/core/data_formats/block/WritableBlock.ts b/src/core/data_formats/block/WritableBlock.ts deleted file mode 100644 index 5ec6203b..00000000 --- a/src/core/data_formats/block/WritableBlock.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { Block } from "./Block"; - -/** - * Represents a mutable, continuous block of bytes. - */ -export interface WritableBlock extends Block { - readonly size: number; - - /** - * Writes an unsigned 8-bit integer at the given offset. - */ - set_u8(offset: number, value: number): this; - - /** - * Writes an unsigned 16-bit integer at the given offset. - */ - set_u16(offset: number, value: number): this; - - /** - * Writes an unsigned 32-bit integer at the given offset. - */ - set_u32(offset: number, value: number): this; - - /** - * Writes a signed 8-bit integer at the given offset. - */ - set_i8(offset: number, value: number): this; - - /** - * Writes a signed 16-bit integer at the given offset. - */ - set_i16(offset: number, value: number): this; - - /** - * Writes a signed 32-bit integer at the given offset. - */ - set_i32(offset: number, value: number): this; - - /** - * Writes a 32-bit floating point number at the given offset. - */ - set_f32(offset: number, value: number): this; - - /** - * Writes 0 bytes to the entire block. - */ - zero(): this; -} diff --git a/src/core/data_formats/block/cursor/AbstractArrayBufferCursor.ts b/src/core/data_formats/block/cursor/AbstractArrayBufferCursor.ts deleted file mode 100644 index 9673a3f4..00000000 --- a/src/core/data_formats/block/cursor/AbstractArrayBufferCursor.ts +++ /dev/null @@ -1,212 +0,0 @@ -import { Endianness } from "../Endianness"; -import { Cursor } from "./Cursor"; -import { AbstractWritableCursor } from "./AbstractWritableCursor"; - -export abstract class AbstractArrayBufferCursor extends AbstractWritableCursor { - protected little_endian!: boolean; - - get endianness(): Endianness { - return this.little_endian ? Endianness.Little : Endianness.Big; - } - - set endianness(endianness: Endianness) { - this.little_endian = endianness === Endianness.Little; - } - - protected abstract readonly backing_buffer: ArrayBuffer; - protected abstract readonly dv: DataView; - - protected constructor(endianness: Endianness, offset: number) { - super(offset); - - this.endianness = endianness; - } - - u8(): number { - this.check_size(1); - const r = this.dv.getUint8(this.absolute_position); - this._position++; - return r; - } - - u16(): number { - this.check_size(2); - const r = this.dv.getUint16(this.absolute_position, this.little_endian); - this._position += 2; - return r; - } - - u32(): number { - this.check_size(4); - const r = this.dv.getUint32(this.absolute_position, this.little_endian); - this._position += 4; - return r; - } - - i8(): number { - this.check_size(1); - const r = this.dv.getInt8(this.absolute_position); - this._position++; - return r; - } - - i16(): number { - this.check_size(2); - const r = this.dv.getInt16(this.absolute_position, this.little_endian); - this._position += 2; - return r; - } - - i32(): number { - this.check_size(4); - const r = this.dv.getInt32(this.absolute_position, this.little_endian); - this._position += 4; - return r; - } - - f32(): number { - this.check_size(4); - const r = this.dv.getFloat32(this.absolute_position, this.little_endian); - this._position += 4; - return r; - } - - u8_array(n: number): number[] { - this.check_size(n); - - const array = []; - - for (let i = 0; i < n; ++i) { - array.push(this.dv.getUint8(this.absolute_position)); - this._position++; - } - - return array; - } - - u16_array(n: number): number[] { - this.check_size(2 * n); - - const array = []; - - for (let i = 0; i < n; ++i) { - array.push(this.dv.getUint16(this.absolute_position, this.little_endian)); - this._position += 2; - } - - return array; - } - - u32_array(n: number): number[] { - this.check_size(4 * n); - - const array = []; - - for (let i = 0; i < n; ++i) { - array.push(this.dv.getUint32(this.absolute_position, this.little_endian)); - this._position += 4; - } - - return array; - } - - i32_array(n: number): number[] { - this.check_size(4 * n); - - const array = []; - - for (let i = 0; i < n; ++i) { - array.push(this.dv.getInt32(this.absolute_position, this.little_endian)); - this._position += 4; - } - - return array; - } - - abstract take(size: number): Cursor; - - array_buffer(size: number = this.size - this.position): ArrayBuffer { - this.check_size(size); - const r = this.backing_buffer.slice(this.absolute_position, this.absolute_position + size); - this._position += size; - return r; - } - - copy_to_uint8_array(array: Uint8Array, size: number = this.size - this.position): this { - this.check_size(size); - array.set(new Uint8Array(this.backing_buffer, this.absolute_position, size)); - this._position += size; - return this; - } - - write_u8(value: number): this { - this.check_size(1); - this.dv.setUint8(this.absolute_position, value); - this._position++; - return this; - } - - write_u16(value: number): this { - this.check_size(2); - this.dv.setUint16(this.absolute_position, value, this.little_endian); - this._position += 2; - return this; - } - - write_u32(value: number): this { - this.check_size(4); - this.dv.setUint32(this.absolute_position, value, this.little_endian); - this._position += 4; - return this; - } - - write_i8(value: number): this { - this.check_size(1); - this.dv.setInt8(this.absolute_position, value); - this._position++; - return this; - } - - write_i16(value: number): this { - this.check_size(2); - this.dv.setInt16(this.absolute_position, value, this.little_endian); - this._position += 2; - return this; - } - - write_i32(value: number): this { - this.check_size(4); - this.dv.setInt32(this.absolute_position, value, this.little_endian); - this._position += 4; - return this; - } - - write_f32(value: number): this { - this.check_size(4); - this.dv.setFloat32(this.absolute_position, value, this.little_endian); - this._position += 4; - return this; - } - - write_u8_array(array: ArrayLike): this { - this.check_size(array.length); - new Uint8Array(this.backing_buffer, this.absolute_position, array.length).set( - new Uint8Array(array), - ); - this._position += array.length; - return this; - } - - write_cursor(other: Cursor): this { - const size = other.size - other.position; - this.check_size(size); - - other.copy_to_uint8_array( - new Uint8Array(this.backing_buffer, this.absolute_position, size), - size, - ); - - this._position += size; - return this; - } -} diff --git a/src/core/data_formats/block/cursor/AbstractWritableCursor.ts b/src/core/data_formats/block/cursor/AbstractWritableCursor.ts deleted file mode 100644 index b97afea2..00000000 --- a/src/core/data_formats/block/cursor/AbstractWritableCursor.ts +++ /dev/null @@ -1,260 +0,0 @@ -import { WritableCursor } from "./WritableCursor"; -import { Endianness } from "../Endianness"; -import { Vec2, Vec3 } from "../../vector"; -import { Cursor } from "./Cursor"; - -export abstract class AbstractWritableCursor implements WritableCursor { - abstract size: number; - - protected _position: number = 0; - - get position(): number { - return this._position; - } - - abstract endianness: Endianness; - - get bytes_left(): number { - return this.size - this._position; - } - - protected readonly offset: number; - - protected get absolute_position(): number { - return this.offset + this._position; - } - - protected constructor(offset: number) { - this.offset = offset; - } - - seek(offset: number): this { - return this.seek_start(this.position + offset); - } - - seek_start(offset: number): this { - if (offset < 0 || offset > this.size) { - throw new Error(`Offset ${offset} is out of bounds.`); - } - - this._position = offset; - return this; - } - - seek_end(offset: number): this { - if (offset < 0 || offset > this.size) { - throw new Error(`Offset ${offset} is out of bounds.`); - } - - this._position = this.size - offset; - return this; - } - - abstract u8(): number; - - abstract u16(): number; - - abstract u32(): number; - - abstract i8(): number; - - abstract i16(): number; - - abstract i32(): number; - - abstract f32(): number; - - abstract u8_array(n: number): number[]; - - abstract u16_array(n: number): number[]; - - abstract u32_array(n: number): number[]; - - abstract i32_array(n: number): number[]; - - vec2_f32(): Vec2 { - return { x: this.f32(), y: this.f32() }; - } - - vec3_f32(): Vec3 { - return { x: this.f32(), y: this.f32(), z: this.f32() }; - } - - abstract take(size: number): Cursor; - - string_ascii( - max_byte_length: number, - null_terminated: boolean, - drop_remaining: boolean, - ): string { - const code_points: number[] = []; - - for (let i = 0; i < max_byte_length; i++) { - const code_point = this.u8(); - - if (null_terminated && code_point === 0) { - if (drop_remaining) { - this.seek(max_byte_length - i - 1); - } - - break; - } - - code_points.push(code_point); - } - - return String.fromCodePoint(...code_points); - } - - string_utf16( - max_byte_length: number, - null_terminated: boolean, - drop_remaining: boolean, - ): string { - const code_points: number[] = []; - const len = Math.floor(max_byte_length / 2); - - for (let i = 0; i < len; i++) { - const code_point = this.u16(); - - if (null_terminated && code_point === 0) { - if (drop_remaining) { - this.seek(2 * (len - i - 1)); - } - - break; - } - - code_points.push(code_point); - } - - return String.fromCodePoint(...code_points); - } - - abstract array_buffer(size?: number): ArrayBuffer; - - abstract copy_to_uint8_array(array: Uint8Array, size?: number): this; - - abstract write_u8(value: number): this; - - abstract write_u16(value: number): this; - - abstract write_u32(value: number): this; - - abstract write_i8(value: number): this; - - abstract write_i16(value: number): this; - - abstract write_i32(value: number): this; - - abstract write_f32(value: number): this; - - write_u8_array(array: ArrayLike): this { - const len = array.length; - this.check_size(len); - - for (let i = 0; i < len; i++) { - this.write_u8(array[i]); - } - - return this; - } - - write_u16_array(array: ArrayLike): this { - const len = array.length; - this.check_size(2 * len); - - for (let i = 0; i < len; i++) { - this.write_u16(array[i]); - } - - return this; - } - - write_u32_array(array: ArrayLike): this { - const len = array.length; - this.check_size(4 * len); - - for (let i = 0; i < len; i++) { - this.write_u32(array[i]); - } - - return this; - } - - write_i32_array(array: ArrayLike): this { - const len = array.length; - this.check_size(4 * len); - - for (let i = 0; i < len; i++) { - this.write_i32(array[i]); - } - - return this; - } - - write_vec2_f32(value: Vec2): this { - this.check_size(8); - this.write_f32(value.x); - this.write_f32(value.y); - return this; - } - - write_vec3_f32(value: Vec3): this { - this.check_size(12); - this.write_f32(value.x); - this.write_f32(value.y); - this.write_f32(value.z); - return this; - } - - abstract write_cursor(other: Cursor): this; - - write_string_ascii(str: string, byte_length: number): this { - this.check_size(byte_length); - - const len = Math.min(byte_length, str.length); - - for (let i = 0; i < len; i++) { - this.write_u8(str.codePointAt(i)!); - } - - const pad_len = byte_length - len; - - for (let i = 0; i < pad_len; i++) { - this.write_u8(0); - } - - return this; - } - - write_string_utf16(str: string, byte_length: number): this { - this.check_size(byte_length); - - const max_len = Math.floor(byte_length / 2); - const len = Math.min(max_len, str.length); - - for (let i = 0; i < len; i++) { - this.write_u16(str.codePointAt(i)!); - } - - const pad_len = max_len - len; - - for (let i = 0; i < pad_len; i++) { - this.write_u16(0); - } - - return this; - } - - /** - * Throws an error if less than `size` bytes are left at `position`. - */ - protected check_size(size: number): void { - const left = this.size - this._position; - - if (size > left) { - throw new Error(`${size} Bytes required but only ${left} available.`); - } - } -} diff --git a/src/core/data_formats/block/cursor/ArrayBufferCursor.ts b/src/core/data_formats/block/cursor/ArrayBufferCursor.ts deleted file mode 100644 index dddb37dd..00000000 --- a/src/core/data_formats/block/cursor/ArrayBufferCursor.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { Endianness } from "../Endianness"; -import { AbstractArrayBufferCursor } from "./AbstractArrayBufferCursor"; - -/** - * A cursor for reading from an array buffer or part of an array buffer. - */ -export class ArrayBufferCursor extends AbstractArrayBufferCursor { - private _size: number; - - get size(): number { - return this._size; - } - - set size(size: number) { - if (size > this.backing_buffer.byteLength - this.offset) { - throw new Error(`Size ${size} is out of bounds.`); - } - - this._size = size; - } - - protected backing_buffer: ArrayBuffer; - protected dv: DataView; - - /** - * @param buffer The buffer to read from. - * @param endianness Decides in which byte order multi-byte integers and floats will be interpreted. - * @param offset The start offset of the part that will be read from. - * @param size The size of the part that will be read from. - */ - constructor( - buffer: ArrayBuffer, - endianness: Endianness, - offset: number = 0, - size: number = buffer.byteLength - offset, - ) { - super(endianness, offset); - this._size = size; - this.backing_buffer = buffer; - this.dv = new DataView(buffer, 0, buffer.byteLength); - } - - take(size: number): ArrayBufferCursor { - const offset = this.offset + this.position; - const wrapper = new ArrayBufferCursor(this.backing_buffer, this.endianness, offset, size); - this._position += size; - return wrapper; - } -} diff --git a/src/core/data_formats/block/cursor/BufferCursor.ts b/src/core/data_formats/block/cursor/BufferCursor.ts deleted file mode 100644 index da6ceca5..00000000 --- a/src/core/data_formats/block/cursor/BufferCursor.ts +++ /dev/null @@ -1,52 +0,0 @@ -import { Endianness } from "../Endianness"; -import { AbstractArrayBufferCursor } from "./AbstractArrayBufferCursor"; - -export class BufferCursor extends AbstractArrayBufferCursor { - readonly size: number; - - protected buffer: Buffer; - - protected get backing_buffer(): ArrayBuffer { - return this.buffer.buffer; - } - - protected dv: DataView; - - /** - * @param buffer The buffer to read from. - * @param endianness Decides in which byte order multi-byte integers and floats will be interpreted. - * @param offset The start offset of the part that will be read from. - * @param size The size of the part that will be read from. - */ - constructor( - buffer: Buffer, - endianness: Endianness, - offset: number = 0, - size: number = buffer.length - offset, - ) { - if (offset < 0 || offset > buffer.length) { - throw new Error(`Offset ${offset} is out of bounds.`); - } - - if (size < 0 || size > buffer.length - offset) { - throw new Error(`Size ${size} is out of bounds.`); - } - - super(endianness, buffer.byteOffset + offset); - - this.buffer = buffer; - this.size = size; - this.dv = new DataView(buffer.buffer, 0, buffer.buffer.byteLength); - } - - take(size: number): BufferCursor { - const wrapper = new BufferCursor( - this.buffer, - this.endianness, - this.absolute_position - this.buffer.byteOffset, - size, - ); - this._position += size; - return wrapper; - } -} diff --git a/src/core/data_formats/block/cursor/Cursor.test.ts b/src/core/data_formats/block/cursor/Cursor.test.ts deleted file mode 100644 index 4378e39b..00000000 --- a/src/core/data_formats/block/cursor/Cursor.test.ts +++ /dev/null @@ -1,231 +0,0 @@ -import { Endianness } from "../Endianness"; -import { enum_values } from "../../../enums"; -import { ResizableBlock } from "../ResizableBlock"; -import { ArrayBufferCursor } from "./ArrayBufferCursor"; -import { BufferCursor } from "./BufferCursor"; -import { Cursor } from "./Cursor"; -import { ResizableBlockCursor } from "./ResizableBlockCursor"; - -/** - * Run a test on every cursor implementation with every endianness. - * - * @param name name of the test, cursor name and endianness will be appended - * @param bytes an array of bytes which will be used to initialize each cursor. - * @param run_test the test case, will be called with every cursor-endianness combination. - */ -function test_all( - name: string, - bytes: (endianness: Endianness) => number[], - run_test: (cursor: Cursor, endianness: Endianness) => void, -): void { - const endiannesses = enum_values(Endianness); - - function block(endianness: Endianness): ResizableBlock { - const byte_array = bytes(endianness); - const block = new ResizableBlock(byte_array.length, endianness); - block.size = byte_array.length; - block.uint8_view(0, byte_array.length).set(byte_array); - return block; - } - - const cursors: [string, Endianness, Cursor][] = [ - ...endiannesses.map(endianness => [ - ArrayBufferCursor.name, - endianness, - new ArrayBufferCursor(new Uint8Array(bytes(endianness)).buffer, endianness), - ]), - ...endiannesses.map(endianness => [ - BufferCursor.name, - endianness, - new BufferCursor(Buffer.from(bytes(endianness)), endianness), - ]), - ...endiannesses.map(endianness => [ - ResizableBlockCursor.name, - endianness, - new ResizableBlockCursor(block(endianness)), - ]), - ] as any; - - for (const [cursor_name, endianness, cursor] of cursors) { - test(`${name} (${cursor_name} ${Endianness[endianness].toLowerCase()} endian)`, () => { - run_test(cursor, endianness); - }); - } -} - -test_all( - "simple properties and invariants", - () => [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], - (cursor, endianness) => { - for (const [seek_to, expected_pos] of [ - [0, 0], - [3, 3], - [5, 8], - [2, 10], - [-10, 0], - ]) { - cursor.seek(seek_to); - - expect(cursor.size).toBe(10); - expect(cursor.position).toBe(expected_pos); - expect(cursor.size).toBe(cursor.position + cursor.bytes_left); - expect(cursor.endianness).toBe(endianness); - } - }, -); - -test_all( - "correct byte order handling", - () => [1, 2, 3, 4], - (cursor, endianness) => { - if (endianness === Endianness.Little) { - expect(cursor.u32()).toBe(0x04030201); - } else { - expect(cursor.u32()).toBe(0x01020304); - } - }, -); - -/** - * Reads two integers. - */ -function test_integer_read(method_name: string): void { - const byte_count = parseInt(method_name.replace(/^[iu](\d+)$/, "$1"), 10) / 8; - let expected_number_1 = 0; - let expected_number_2 = 0; - // Array of bytes per endianness. - const bytes: [number[], number[]] = [[], []]; - - // Generate numbers of the form 0x010203... - for (let i = 1; i <= byte_count; ++i) { - expected_number_1 <<= 8; - expected_number_1 |= i; - - bytes[Endianness.Little].push(byte_count - i + 1); - bytes[Endianness.Big].push(i); - } - - for (let i = 1; i <= byte_count; ++i) { - expected_number_2 <<= 8; - expected_number_2 |= byte_count + i; - - bytes[Endianness.Little].push(2 * byte_count - i + 1); - bytes[Endianness.Big].push(byte_count + i); - } - - test_all( - method_name, - endianness => bytes[endianness], - cursor => { - expect((cursor as any)[method_name]()).toBe(expected_number_1); - expect(cursor.position).toBe(byte_count); - - expect((cursor as any)[method_name]()).toBe(expected_number_2); - expect(cursor.position).toBe(2 * byte_count); - }, - ); -} - -test_integer_read("u8"); -test_integer_read("u16"); -test_integer_read("u32"); -test_integer_read("i8"); -test_integer_read("i16"); -test_integer_read("i32"); - -test_all( - "u8_array", - () => [1, 2, 0xff, 4, 5, 6, 7, 8], - cursor => { - expect(cursor.u8_array(3)).toEqual([1, 2, 0xff]); - expect(cursor.seek_start(2).u8_array(4)).toEqual([0xff, 4, 5, 6]); - expect(cursor.seek_start(5).u8_array(3)).toEqual([6, 7, 8]); - }, -); - -test_all( - "u16_array", - () => [1, 1, 2, 2, 0xff, 0xff, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8], - cursor => { - expect(cursor.u16_array(3)).toEqual([0x0101, 0x0202, 0xffff]); - expect(cursor.seek_start(4).u16_array(4)).toEqual([0xffff, 0x0404, 0x0505, 0x0606]); - expect(cursor.seek_start(10).u16_array(3)).toEqual([0x0606, 0x0707, 0x0808]); - }, -); - -test_all( - "u32_array", - // prettier-ignore - () => [1, 1, 1, 1, 2, 2, 2, 2, 0xff, 0xff, 0xff, 0xff, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 8], - cursor => { - expect(cursor.u32_array(3)).toEqual([0x01010101, 0x02020202, 0xffffffff]); - expect(cursor.seek_start(8).u32_array(4)).toEqual([ - 0xffffffff, - 0x04040404, - 0x05050505, - 0x06060606, - ]); - expect(cursor.seek_start(20).u32_array(3)).toEqual([0x06060606, 0x07070707, 0x08080808]); - }, -); - -test_all( - "i32_array", - // prettier-ignore - () => [1, 1, 1, 1, 2, 2, 2, 2, 0xff, 0xff, 0xff, 0xff, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 8], - cursor => { - expect(cursor.i32_array(3)).toEqual([0x01010101, 0x02020202, -1]); - expect(cursor.seek_start(8).i32_array(4)).toEqual([-1, 0x04040404, 0x05050505, 0x06060606]); - expect(cursor.seek_start(20).i32_array(3)).toEqual([0x06060606, 0x07070707, 0x08080808]); - }, -); - -function test_string_read(method_name: string, char_size: number): void { - // Array of bytes per endianness. - const bytes: [number[], number[]] = [[], []]; - - for (const endianness of enum_values(Endianness)) { - const char_array_copy = bytes[endianness]; - - for (const char of [7, 65, 66, 0, 255, 13]) { - if (endianness === Endianness.Little) char_array_copy.push(char); - - for (let i = 0; i < char_size - 1; ++i) { - char_array_copy.push(0); - } - - if (endianness === Endianness.Big) char_array_copy.push(char); - } - } - - test_all( - method_name, - endianness => bytes[endianness], - cursor => { - cursor.seek_start(char_size); - expect((cursor as any)[method_name](4 * char_size, true, true)).toBe("AB"); - expect(cursor.position).toBe(5 * char_size); - cursor.seek_start(char_size); - expect((cursor as any)[method_name](2 * char_size, true, true)).toBe("AB"); - expect(cursor.position).toBe(3 * char_size); - - cursor.seek_start(char_size); - expect((cursor as any)[method_name](4 * char_size, true, false)).toBe("AB"); - expect(cursor.position).toBe(4 * char_size); - cursor.seek_start(char_size); - expect((cursor as any)[method_name](2 * char_size, true, false)).toBe("AB"); - expect(cursor.position).toBe(3 * char_size); - - cursor.seek_start(char_size); - expect((cursor as any)[method_name](4 * char_size, false, true)).toBe("AB\0ÿ"); - expect(cursor.position).toBe(5 * char_size); - - cursor.seek_start(char_size); - expect((cursor as any)[method_name](4 * char_size, false, false)).toBe("AB\0ÿ"); - expect(cursor.position).toBe(5 * char_size); - }, - ); -} - -test_string_read("string_ascii", 1); -test_string_read("string_utf16", 2); diff --git a/src/core/data_formats/block/cursor/Cursor.ts b/src/core/data_formats/block/cursor/Cursor.ts deleted file mode 100644 index 51b411f0..00000000 --- a/src/core/data_formats/block/cursor/Cursor.ts +++ /dev/null @@ -1,140 +0,0 @@ -import { Endianness } from "../Endianness"; -import { Vec3, Vec2 } from "../../vector"; - -/** - * A cursor for reading binary data. - */ -export interface Cursor { - /** - * The cursor's size. This value will always be non-negative and equal to or smaller than the cursor's capacity. - */ - readonly size: number; - - /** - * The position from where bytes will be read or written. - */ - readonly position: number; - - /** - * Byte order mode. - */ - endianness: Endianness; - - readonly bytes_left: number; - - /** - * Seek forward or backward by a number of bytes. - * - * @param offset if positive, seeks forward by offset bytes, otherwise seeks backward by -offset bytes. - */ - seek(offset: number): this; - - /** - * Seek forward from the start of the cursor by a number of bytes. - * - * @param offset greater or equal to 0 and smaller than size - */ - seek_start(offset: number): this; - - /** - * Seek backward from the end of the cursor by a number of bytes. - * - * @param offset greater or equal to 0 and smaller than size - */ - seek_end(offset: number): this; - - /** - * Reads an unsigned 8-bit integer and increments position by 1. - */ - u8(): number; - - /** - * Reads an unsigned 16-bit integer and increments position by 2. - */ - u16(): number; - - /** - * Reads an unsigned 32-bit integer and increments position by 4. - */ - u32(): number; - - /** - * Reads an signed 8-bit integer and increments position by 1. - */ - i8(): number; - - /** - * Reads a signed 16-bit integer and increments position by 2. - */ - i16(): number; - - /** - * Reads a signed 32-bit integer and increments position by 4. - */ - i32(): number; - - /** - * Reads a 32-bit floating point number and increments position by 4. - */ - f32(): number; - - /** - * Reads n unsigned 8-bit integers and increments position by n. - */ - u8_array(n: number): number[]; - - /** - * Reads n unsigned 16-bit integers and increments position by 2n. - */ - u16_array(n: number): number[]; - - /** - * Reads n unsigned 32-bit integers and increments position by 4n. - */ - u32_array(n: number): number[]; - - /** - * Reads n signed 32-bit integers and increments position by 4n. - */ - i32_array(n: number): number[]; - - /** - * Reads 2 32-bit floating point numbers and increments position by 8. - */ - vec2_f32(): Vec2; - - /** - * Reads 3 32-bit floating point numbers and increments position by 12. - */ - vec3_f32(): Vec3; - - /** - * Consumes a variable number of bytes. - * - * @param size the amount bytes to consume. - * @returns a write-through view containing size bytes. - */ - take(size: number): Cursor; - - /** - * Consumes up to max_byte_length bytes. - */ - string_ascii( - max_byte_length: number, - null_terminated: boolean, - drop_remaining: boolean, - ): string; - - /** - * Consumes up to max_byte_length bytes. - */ - string_utf16( - max_byte_length: number, - null_terminated: boolean, - drop_remaining: boolean, - ): string; - - array_buffer(size?: number): ArrayBuffer; - - copy_to_uint8_array(array: Uint8Array, size?: number): this; -} diff --git a/src/core/data_formats/block/cursor/ResizableBlockCursor.test.ts b/src/core/data_formats/block/cursor/ResizableBlockCursor.test.ts deleted file mode 100644 index b7928dfe..00000000 --- a/src/core/data_formats/block/cursor/ResizableBlockCursor.test.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { Endianness } from "../Endianness"; -import { ResizableBlock } from "../ResizableBlock"; -import { ResizableBlockCursor } from "./ResizableBlockCursor"; - -/** - * Writes two integers to a cursor backed with a buffer of size 0. - * Tests that size is automatically increased. - */ -function test_integer_write(method_name: string): void { - test(`${method_name} increases buffer and cursor size`, () => { - const byte_count = parseInt(method_name.replace(/^write_[iu](\d+)$/, "$1"), 10) / 8; - const expected_number_1 = 98749; - const expected_number_2 = 7348942; - - const block = new ResizableBlock(8, Endianness.Little); - const cursor = new ResizableBlockCursor(block); - - expect(block.size).toBe(0); - expect(cursor.size).toBe(0); - - (cursor as any)[method_name](expected_number_1); - (cursor as any)[method_name](expected_number_2); - - expect(block.size).toBe(2 * byte_count); - expect(cursor.position).toBe(2 * byte_count); - expect(cursor.size).toBe(2 * byte_count); - }); -} - -test_integer_write("write_u8"); -test_integer_write("write_u16"); -test_integer_write("write_u32"); -test_integer_write("write_i32"); - -test("write, seek backwards then take", () => { - const cursor = new ResizableBlockCursor(new ResizableBlock(0, Endianness.Little)); - cursor.write_u32(1).write_u32(2).write_u32(3).write_u32(4); - - cursor.seek(-8); - const new_cursor = cursor.take(8); - - expect(new_cursor.size).toBe(8); - expect(new_cursor.position).toBe(0); - expect(new_cursor.u32()).toBe(3); - expect(new_cursor.u32()).toBe(4); -}); diff --git a/src/core/data_formats/block/cursor/ResizableBlockCursor.ts b/src/core/data_formats/block/cursor/ResizableBlockCursor.ts deleted file mode 100644 index 3567140b..00000000 --- a/src/core/data_formats/block/cursor/ResizableBlockCursor.ts +++ /dev/null @@ -1,278 +0,0 @@ -import { Endianness } from "../Endianness"; -import { AbstractWritableCursor } from "./AbstractWritableCursor"; -import { ResizableBlock } from "../ResizableBlock"; -import { Cursor } from "./Cursor"; -import { Vec2, Vec3 } from "../../vector"; - -export class ResizableBlockCursor extends AbstractWritableCursor { - private readonly block: ResizableBlock; - - private _size: number; - - get size(): number { - return this._size; - } - - set size(size: number) { - if (size > this._size) { - this.ensure_size(size - this.position); - } else { - this._size = size; - } - } - - get endianness(): Endianness { - return this.block.endianness; - } - - /** - * Also sets the underlying block's endianness. - */ - set endianness(endianness: Endianness) { - this.block.endianness = endianness; - } - - /** - * @param block The block to read from and write to. - * @param offset The start offset of the part that will be read from. - * @param size The size of the part that will be read from. - */ - constructor(block: ResizableBlock, offset: number = 0, size: number = block.size - offset) { - if (offset < 0 || offset > block.size) { - throw new Error(`Offset ${offset} is out of bounds.`); - } - - if (size < 0 || offset + size > block.size) { - throw new Error(`Size ${size} is out of bounds.`); - } - - super(offset); - - this.block = block; - this._size = size; - } - - u8(): number { - const r = this.block.get_u8(this.absolute_position); - this._position++; - return r; - } - - u16(): number { - const r = this.block.get_u16(this.absolute_position); - this._position += 2; - return r; - } - - u32(): number { - const r = this.block.get_u32(this.absolute_position); - this._position += 4; - return r; - } - - i8(): number { - const r = this.block.get_i8(this.absolute_position); - this._position++; - return r; - } - - i16(): number { - const r = this.block.get_i16(this.absolute_position); - this._position += 2; - return r; - } - - i32(): number { - const r = this.block.get_i32(this.absolute_position); - this._position += 4; - return r; - } - - f32(): number { - const r = this.block.get_f32(this.absolute_position); - this._position += 4; - return r; - } - - u8_array(n: number): number[] { - this.check_size(n); - - const array = []; - - for (let i = 0; i < n; ++i) { - array.push(this.block.get_u8(this.absolute_position)); - this._position++; - } - - return array; - } - - u16_array(n: number): number[] { - this.check_size(2 * n); - - const array = []; - - for (let i = 0; i < n; ++i) { - array.push(this.block.get_u16(this.absolute_position)); - this._position += 2; - } - - return array; - } - - u32_array(n: number): number[] { - this.check_size(4 * n); - - const array = []; - - for (let i = 0; i < n; ++i) { - array.push(this.block.get_u32(this.absolute_position)); - this._position += 4; - } - - return array; - } - - i32_array(n: number): number[] { - this.check_size(4 * n); - - const array = []; - - for (let i = 0; i < n; ++i) { - array.push(this.block.get_i32(this.absolute_position)); - this._position += 4; - } - - return array; - } - - take(size: number): ResizableBlockCursor { - const offset = this.absolute_position; - const wrapper = new ResizableBlockCursor(this.block, offset, size); - this._position += size; - return wrapper; - } - - array_buffer(size: number = this.size - this.position): ArrayBuffer { - const r = this.block.get_array_buffer(this.absolute_position, size); - this._position += size; - return r; - } - - copy_to_uint8_array(array: Uint8Array, size: number = this.size - this.position): this { - array.set(this.block.uint8_view(this.absolute_position, size)); - this._position += size; - return this; - } - - write_u8(value: number): this { - this.ensure_size(1); - this.block.set_u8(this.absolute_position, value); - this._position++; - return this; - } - - write_u16(value: number): this { - this.ensure_size(2); - this.block.set_u16(this.absolute_position, value); - this._position += 2; - return this; - } - - write_u32(value: number): this { - this.ensure_size(4); - this.block.set_u32(this.absolute_position, value); - this._position += 4; - return this; - } - - write_i8(value: number): this { - this.ensure_size(1); - this.block.set_i8(this.absolute_position, value); - this._position++; - return this; - } - - write_i16(value: number): this { - this.ensure_size(2); - this.block.set_i16(this.absolute_position, value); - this._position += 2; - return this; - } - - write_i32(value: number): this { - this.ensure_size(4); - this.block.set_i32(this.absolute_position, value); - this._position += 4; - return this; - } - - write_f32(value: number): this { - this.ensure_size(4); - this.block.set_f32(this.absolute_position, value); - this._position += 4; - return this; - } - - write_u8_array(array: ArrayLike): this { - this.ensure_size(array.length); - return super.write_u8_array(array); - } - - write_u16_array(array: ArrayLike): this { - this.ensure_size(2 * array.length); - return super.write_u16_array(array); - } - - write_u32_array(array: ArrayLike): this { - this.ensure_size(4 * array.length); - return super.write_u32_array(array); - } - - write_i32_array(array: ArrayLike): this { - this.ensure_size(4 * array.length); - return super.write_i32_array(array); - } - - write_vec2_f32(value: Vec2): this { - this.ensure_size(8); - return super.write_vec2_f32(value); - } - - write_vec3_f32(value: Vec3): this { - this.ensure_size(12); - return super.write_vec3_f32(value); - } - - write_cursor(other: Cursor): this { - const size = other.size - other.position; - this.ensure_size(size); - - other.copy_to_uint8_array(this.block.uint8_view(this.absolute_position, size), size); - - this._position += size; - return this; - } - - write_string_ascii(str: string, byte_length: number): this { - this.ensure_size(byte_length); - return super.write_string_ascii(str, byte_length); - } - - write_string_utf16(str: string, byte_length: number): this { - this.ensure_size(byte_length); - return super.write_string_utf16(str, byte_length); - } - - private ensure_size(size: number): void { - const needed = this._position + size - this._size; - - if (needed > 0) { - this._size += needed; - - if (this.block.size < this.offset + this._size) { - this.block.size = this.offset + this._size; - } - } - } -} diff --git a/src/core/data_formats/block/cursor/WritableCursor.test.ts b/src/core/data_formats/block/cursor/WritableCursor.test.ts deleted file mode 100644 index a0c285dd..00000000 --- a/src/core/data_formats/block/cursor/WritableCursor.test.ts +++ /dev/null @@ -1,181 +0,0 @@ -import { Endianness } from "../Endianness"; -import { enum_values } from "../../../enums"; -import { ResizableBlock } from "../ResizableBlock"; -import { ArrayBufferCursor } from "./ArrayBufferCursor"; -import { ResizableBlockCursor } from "./ResizableBlockCursor"; -import { WritableCursor } from "./WritableCursor"; - -/** - * Run a test on every writable cursor implementation with every endianness. - * - * @param name name of the test, cursor name and endianness will be appended - * @param bytes an array of bytes which will be used to initialize each cursor. - * @param run_test the test case, will be called with every cursor-endianness combination. - */ -function test_all( - name: string, - bytes: (endianness: Endianness) => number[], - run_test: (cursor: WritableCursor, endianness: Endianness) => void, -): void { - const endiannesses = enum_values(Endianness); - - function block(endianness: Endianness): ResizableBlock { - const byte_array = bytes(endianness); - const block = new ResizableBlock(byte_array.length, endianness); - block.size = byte_array.length; - block.uint8_view(0, block.size).set(byte_array); - return block; - } - - const cursors: [string, Endianness, WritableCursor][] = [ - ...endiannesses.map(endianness => [ - ArrayBufferCursor.name, - endianness, - new ArrayBufferCursor(new Uint8Array(bytes(endianness)).buffer, endianness), - ]), - ...endiannesses.map(endianness => [ - ResizableBlockCursor.name, - endianness, - new ResizableBlockCursor(block(endianness)), - ]), - ] as any; - - for (const [cursor_name, endianness, cursor] of cursors) { - test(`${name} (${cursor_name} ${Endianness[endianness].toLowerCase()} endian)`, () => { - run_test(cursor, endianness); - }); - } -} - -test_all( - "simple properties and invariants", - () => [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], - (cursor, endianness) => { - expect(cursor.position).toBe(0); - - cursor.write_u8(99).write_u8(99).write_u8(99).write_u8(99); - cursor.seek(-1); - - expect(cursor.size).toBe(cursor.position + cursor.bytes_left); - expect(cursor.size).toBe(10); - expect(cursor.position).toBe(3); - expect(cursor.bytes_left).toBe(7); - expect(cursor.endianness).toBe(endianness); - }, -); - -/** - * Writes and reads two integers. - */ -function test_integer_write(method_name: string): void { - const byte_count = parseInt(method_name.replace(/^write_[iu](\d+)$/, "$1"), 10) / 8; - let expected_number_1 = 0; - let expected_number_2 = 0; - - // Generate numbers of the form 0x010203... - for (let i = 1; i <= byte_count; ++i) { - expected_number_1 <<= 8; - expected_number_1 |= i; - } - - for (let i = 1; i <= byte_count; ++i) { - expected_number_2 <<= 8; - expected_number_2 |= byte_count + i; - } - - const read_method_name = method_name.replace("write_", ""); - - test_all( - method_name, - () => [0, 0, 0, 0, 0, 0, 0, 0], - cursor => { - (cursor as any)[method_name](expected_number_1); - (cursor as any)[method_name](expected_number_2); - - expect(cursor.position).toBe(2 * byte_count); - - cursor.seek_start(0); - - expect((cursor as any)[read_method_name]()).toBe(expected_number_1); - expect((cursor as any)[read_method_name]()).toBe(expected_number_2); - }, - ); -} - -test_integer_write("write_u8"); -test_integer_write("write_u16"); -test_integer_write("write_u32"); -test_integer_write("write_i8"); -test_integer_write("write_i16"); -test_integer_write("write_i32"); - -/** - * Writes and reads two floats. - */ -test_all( - "write_f32", - () => [0, 0, 0, 0, 0, 0, 0, 0], - cursor => { - cursor.write_f32(1337.9001); - cursor.write_f32(103.502); - - expect(cursor.position).toBe(8); - - cursor.seek_start(0); - - expect(cursor.f32()).toBeCloseTo(1337.9001, 4); - expect(cursor.f32()).toBeCloseTo(103.502, 3); - - expect(cursor.position).toBe(8); - }, -); - -test_all( - "write_u8_array", - () => new Array(20).fill(0), - cursor => { - const test_array_1 = []; - const test_array_2 = []; - - for (let i = 1; i <= 10; ++i) { - test_array_1.push(i); - test_array_2.push(i + 10); - } - - cursor.write_u8_array(test_array_1); - - expect(cursor.position).toBe(10); - - cursor.write_u8_array(test_array_2); - - expect(cursor.position).toBe(20); - - cursor.seek_start(0); - - for (let i = 0; i < 10; ++i) { - expect(cursor.u8()).toBe(test_array_1[i]); - } - - for (let i = 0; i < 10; ++i) { - expect(cursor.u8()).toBe(test_array_2[i]); - } - - expect(cursor.position).toBe(20); - }, -); - -test_all( - "write, seek backwards then take", - () => new Array(16).fill(0), - cursor => { - cursor.write_u32(1).write_u32(2).write_u32(3).write_u32(4); - - cursor.seek(-8); - const new_cursor = cursor.take(8); - - expect(new_cursor.size).toBe(8); - expect(new_cursor.position).toBe(0); - expect(new_cursor.u32()).toBe(3); - expect(new_cursor.u32()).toBe(4); - }, -); diff --git a/src/core/data_formats/block/cursor/WritableCursor.ts b/src/core/data_formats/block/cursor/WritableCursor.ts deleted file mode 100644 index e1739e98..00000000 --- a/src/core/data_formats/block/cursor/WritableCursor.ts +++ /dev/null @@ -1,89 +0,0 @@ -import { Cursor } from "./Cursor"; -import { Vec2, Vec3 } from "../../vector"; - -/** - * A cursor for reading and writing binary data. - */ -export interface WritableCursor extends Cursor { - size: number; - - /** - * Writes an unsigned 8-bit integer and increments position by 1. - */ - write_u8(value: number): this; - - /** - * Writes an unsigned 16-bit integer and increments position by 2. - */ - write_u16(value: number): this; - - /** - * Writes an unsigned 32-bit integer and increments position by 4. - */ - write_u32(value: number): this; - - /** - * Writes a signed 8-bit integer and increments position by 1. - */ - write_i8(value: number): this; - - /** - * Writes a signed 16-bit integer and increments position by 2. - */ - write_i16(value: number): this; - - /** - * Writes a signed 32-bit integer and increments position by 4. - */ - write_i32(value: number): this; - - /** - * Writes a 32-bit floating point number and increments position by 4. - */ - write_f32(value: number): this; - - /** - * Writes an array of unsigned 8-bit integers and increments position by the array's length. - */ - write_u8_array(array: ArrayLike): this; - - /** - * Writes an array of unsigned 16-bit integers and increments position by twice the array's length. - */ - write_u16_array(array: ArrayLike): this; - - /** - * Writes an array of unsigned 32-bit integers and increments position by four times the array's length. - */ - write_u32_array(array: ArrayLike): this; - - /** - * Writes an array of signed 32-bit integers and increments position by four times the array's length. - */ - write_i32_array(array: ArrayLike): this; - - /** - * Writes two 32-bit floating point numbers and increments position by 8. - */ - write_vec2_f32(value: Vec2): this; - - /** - * Writes three 32-bit floating point numbers and increments position by 12. - */ - write_vec3_f32(value: Vec3): this; - - /** - * Writes the contents of the given cursor from its position to its end. Increments this cursor's and the given cursor's position by the size of the given cursor. - */ - write_cursor(other: Cursor): this; - - /** - * Writes byte_length characters of str. If str is shorter than byte_length, nul bytes will be inserted until byte_length bytes have been written. - */ - write_string_ascii(str: string, byte_length: number): this; - - /** - * Writes characters of str without writing more than byte_length bytes. If less than byte_length bytes can be written this way, nul bytes will be inserted until byte_length bytes have been written. - */ - write_string_utf16(str: string, byte_length: number): this; -} diff --git a/src/core/data_formats/compression/prs/Cargo.lock b/src/core/data_formats/compression/prs/Cargo.lock deleted file mode 100644 index dd9fcfb8..00000000 --- a/src/core/data_formats/compression/prs/Cargo.lock +++ /dev/null @@ -1,291 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -[[package]] -name = "ages-prs" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "089e6d1d25d8975ac1bf2da0d1556ebdb99fee1a9aec6467d138a6e090b92ff4" -dependencies = [ - "libflate_lz77", -] - -[[package]] -name = "bumpalo" -version = "3.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5356f1d23ee24a1f785a56d1d1a5f0fd5b0f6a0c0fb2412ce11da71649ab78f6" - -[[package]] -name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - -[[package]] -name = "console_error_panic_hook" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211" -dependencies = [ - "cfg-if", - "wasm-bindgen", -] - -[[package]] -name = "futures" -version = "0.1.29" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef" - -[[package]] -name = "js-sys" -version = "0.3.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce10c23ad2ea25ceca0093bd3192229da4c5b3c0f2de499c1ecac0d98d452177" -dependencies = [ - "wasm-bindgen", -] - -[[package]] -name = "lazy_static" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" - -[[package]] -name = "libc" -version = "0.2.71" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49" - -[[package]] -name = "libflate_lz77" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "739e9d7726dc32173fed2d69d17eef3c54682169e4e20ff1d0a45dcd37063cef" - -[[package]] -name = "log" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "memory_units" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3" - -[[package]] -name = "proc-macro2" -version = "0.4.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" -dependencies = [ - "unicode-xid 0.1.0", -] - -[[package]] -name = "proc-macro2" -version = "1.0.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1502d12e458c49a4c9cbff560d0fe0060c252bc29799ed94ca2ed4bb665a0101" -dependencies = [ - "unicode-xid 0.2.0", -] - -[[package]] -name = "prs-rs" -version = "0.1.0" -dependencies = [ - "ages-prs", - "wasm-bindgen", - "wasm-bindgen-test", - "wee_alloc", -] - -[[package]] -name = "quote" -version = "0.6.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" -dependencies = [ - "proc-macro2 0.4.30", -] - -[[package]] -name = "quote" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54a21852a652ad6f610c9510194f398ff6f8692e334fd1145fed931f7fbe44ea" -dependencies = [ - "proc-macro2 1.0.17", -] - -[[package]] -name = "scoped-tls" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" - -[[package]] -name = "syn" -version = "1.0.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7e33a62f20d3dc02a1bc9c1d385f92b459bbf35e4dc325eed20c53db5b90c03" -dependencies = [ - "proc-macro2 1.0.17", - "quote 1.0.6", - "unicode-xid 0.2.0", -] - -[[package]] -name = "unicode-xid" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" - -[[package]] -name = "unicode-xid" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" - -[[package]] -name = "wasm-bindgen" -version = "0.2.63" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c2dc4aa152834bc334f506c1a06b866416a8b6697d5c9f75b9a689c8486def0" -dependencies = [ - "cfg-if", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.63" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded84f06e0ed21499f6184df0e0cb3494727b0c5da89534e0fcc55c51d812101" -dependencies = [ - "bumpalo", - "lazy_static", - "log", - "proc-macro2 1.0.17", - "quote 1.0.6", - "syn", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-futures" -version = "0.3.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83420b37346c311b9ed822af41ec2e82839bfe99867ec6c54e2da43b7538771c" -dependencies = [ - "cfg-if", - "futures", - "js-sys", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.63" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "838e423688dac18d73e31edce74ddfac468e37b1506ad163ffaf0a46f703ffe3" -dependencies = [ - "quote 1.0.6", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.63" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3156052d8ec77142051a533cdd686cba889537b213f948cd1d20869926e68e92" -dependencies = [ - "proc-macro2 1.0.17", - "quote 1.0.6", - "syn", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.63" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9ba19973a58daf4db6f352eda73dc0e289493cd29fb2632eb172085b6521acd" - -[[package]] -name = "wasm-bindgen-test" -version = "0.2.50" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2d9693b63a742d481c7f80587e057920e568317b2806988c59cd71618bc26c1" -dependencies = [ - "console_error_panic_hook", - "futures", - "js-sys", - "scoped-tls", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-bindgen-test-macro", -] - -[[package]] -name = "wasm-bindgen-test-macro" -version = "0.2.50" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0789dac148a8840bbcf9efe13905463b733fa96543bfbf263790535c11af7ba5" -dependencies = [ - "proc-macro2 0.4.30", - "quote 0.6.13", -] - -[[package]] -name = "web-sys" -version = "0.3.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b72fe77fd39e4bd3eaa4412fd299a0be6b3dfe9d2597e2f1c20beb968f41d17" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "wee_alloc" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e" -dependencies = [ - "cfg-if", - "libc", - "memory_units", - "winapi", -] - -[[package]] -name = "winapi" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" diff --git a/src/core/data_formats/compression/prs/Cargo.toml b/src/core/data_formats/compression/prs/Cargo.toml deleted file mode 100644 index a0849171..00000000 --- a/src/core/data_formats/compression/prs/Cargo.toml +++ /dev/null @@ -1,26 +0,0 @@ -[package] -name = "prs-rs" -version = "0.1.0" -edition = "2018" - -[lib] -path = "prs.rs" -crate-type = ["cdylib", "rlib"] - -[dependencies] -wasm-bindgen = "0.2" -ages-prs = "0.1" - -# `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size -# compared to the default allocator's ~10K. It is slower than the default -# allocator, however. -wee_alloc = { version = "0.4", optional = true } - -[dev-dependencies] -wasm-bindgen-test = "0.2" - -[profile.release] -# Tell `rustc` to optimize for small code size. -opt-level = "s" -# Link time optimizations should make output smaller and faster. -lto = true diff --git a/src/core/data_formats/compression/prs/compress.ts b/src/core/data_formats/compression/prs/compress.ts deleted file mode 100644 index cf34c34a..00000000 --- a/src/core/data_formats/compression/prs/compress.ts +++ /dev/null @@ -1,147 +0,0 @@ -import { Endianness } from "../../block/Endianness"; -import { Cursor } from "../../block/cursor/Cursor"; -import { ResizableBlockCursor } from "../../block/cursor/ResizableBlockCursor"; -import { WritableCursor } from "../../block/cursor/WritableCursor"; -import { ResizableBlock } from "../../block/ResizableBlock"; -import { browser_supports_webassembly } from "../../../util"; -import { get_prs_wasm_module } from "./prs_wasm"; - -const prs_wasm = get_prs_wasm_module(); - -/** - * Automatically picks the best available compression method. - */ -export function prs_compress(cursor: Cursor): Cursor { - if (browser_supports_webassembly() && prs_wasm) { - return prs_wasm.prs_compress_wasm(cursor); - } else { - return prs_compress_js(cursor); - } -} - -export function prs_compress_js(cursor: Cursor): Cursor { - const pc = new Context(cursor.size, cursor.endianness); - const comp_cursor = cursor.take(cursor.size); - cursor.seek_start(0); - - while (cursor.bytes_left) { - // Find the longest match. - let best_offset = 0; - let best_size = 0; - const start_pos = cursor.position; - const min_offset = Math.max(0, start_pos - Math.min(0x800, cursor.bytes_left)); - - for (let i = start_pos - 255; i >= min_offset; i--) { - comp_cursor.seek_start(i); - let size = 0; - - while (cursor.bytes_left && size <= 254 && cursor.u8() === comp_cursor.u8()) { - size++; - } - - cursor.seek_start(start_pos); - - if (size >= best_size) { - best_offset = i; - best_size = size; - - if (size >= 255) { - break; - } - } - } - - if (best_size < 3) { - pc.add_u8(cursor.u8()); - } else { - pc.copy(best_offset - cursor.position, best_size); - cursor.seek(best_size); - } - } - - return pc.finalize(); -} - -class Context { - private readonly output: WritableCursor; - private flags = 0; - private flag_bits_left = 0; - private flag_offset = 0; - - constructor(capacity: number, endianness: Endianness) { - this.output = new ResizableBlockCursor(new ResizableBlock(capacity, endianness)); - } - - add_u8(value: number): void { - this.write_control_bit(1); - this.write_u8(value); - } - - copy(offset: number, size: number): void { - if (offset > -256 && size <= 5) { - this.short_copy(offset, size); - } else { - this.long_copy(offset, size); - } - } - - finalize(): Cursor { - this.write_control_bit(0); - this.write_control_bit(1); - - this.flags >>>= this.flag_bits_left; - const pos = this.output.position; - this.output.seek_start(this.flag_offset).write_u8(this.flags).seek_start(pos); - - this.write_u8(0); - this.write_u8(0); - return this.output.seek_start(0); - } - - private write_control_bit(bit: number): void { - if (this.flag_bits_left-- === 0) { - // Write out the flags to their position in the file, and store the next flags byte position. - const pos = this.output.position; - this.output.seek_start(this.flag_offset); - this.output.write_u8(this.flags); - this.output.seek_start(pos); - this.output.write_u8(0); // Placeholder for the next flags byte. - this.flag_offset = pos; - this.flag_bits_left = 7; - } - - this.flags >>>= 1; - - if (bit) { - this.flags |= 0x80; - } - } - - private write_u8(data: number): void { - this.output.write_u8(data); - } - - private short_copy(offset: number, size: number): void { - size -= 2; - this.write_control_bit(0); - this.write_control_bit(0); - this.write_control_bit((size >>> 1) & 1); - this.write_control_bit(size & 1); - this.write_u8(offset & 0xff); - } - - private long_copy(offset: number, size: number): void { - if (size <= 9) { - this.write_control_bit(0); - this.write_control_bit(1); - this.write_u8(((offset << 3) & 0xf8) | ((size - 2) & 0x07)); - this.write_u8((offset >> 5) & 0xff); - } else { - this.write_control_bit(0); - this.write_control_bit(1); - this.write_u8((offset << 3) & 0xf8); - this.write_u8((offset >> 5) & 0xff); - this.write_u8(size - 1); - } - } -} diff --git a/src/core/data_formats/compression/prs/decompress.ts b/src/core/data_formats/compression/prs/decompress.ts deleted file mode 100644 index 1f58f814..00000000 --- a/src/core/data_formats/compression/prs/decompress.ts +++ /dev/null @@ -1,144 +0,0 @@ -import { Cursor } from "../../block/cursor/Cursor"; -import { ResizableBlockCursor } from "../../block/cursor/ResizableBlockCursor"; -import { WritableCursor } from "../../block/cursor/WritableCursor"; -import { ResizableBlock } from "../../block/ResizableBlock"; -import { LogManager } from "../../../logging"; -import { browser_supports_webassembly } from "../../../util"; -import { get_prs_wasm_module } from "./prs_wasm"; -import { Result, ResultBuilder, success } from "../../../Result"; -import { Severity } from "../../../Severity"; - -const logger = LogManager.get("core/data_formats/compression/prs/decompress"); - -const prs_wasm = get_prs_wasm_module(); - -/** - * Automatically picks the best available decompression method. - */ -export function prs_decompress(cursor: Cursor): Result { - try { - if (browser_supports_webassembly() && prs_wasm) { - return success(prs_wasm.prs_decompress_wasm(cursor)); - } else { - return success(prs_decompress_js(cursor)); - } - } catch (e) { - return new ResultBuilder(logger) - .add_problem(Severity.Error, "PRS-compressed stream is corrupt.", undefined, e) - .failure(); - } -} - -export function prs_decompress_js(cursor: Cursor): Cursor { - const ctx = new Context(cursor); - - while (true) { - if (ctx.read_flag_bit() === 1) { - // Single byte copy. - ctx.copy_u8(); - } else { - // Multi byte copy. - let length; - let offset; - - if (ctx.read_flag_bit() === 0) { - // Short copy. - length = ctx.read_flag_bit() << 1; - length |= ctx.read_flag_bit(); - length += 2; - - offset = ctx.read_u8() - 256; - } else { - // Long copy or end of file. - offset = ctx.read_u16(); - - // Two zero bytes implies that this is the end of the file. - if (offset === 0) { - break; - } - - // Do we need to read a length byte, or is it encoded in what we already have? - length = offset & 0b111; - offset >>>= 3; - - if (length === 0) { - length = ctx.read_u8(); - length += 1; - } else { - length += 2; - } - - offset -= 8192; - } - - ctx.offset_copy(offset, length); - } - } - - return ctx.dst.seek_start(0); -} - -class Context { - src: Cursor; - dst: WritableCursor; - flags: number; - flag_bits_left: number; - - constructor(cursor: Cursor) { - this.src = cursor; - this.dst = new ResizableBlockCursor( - new ResizableBlock(Math.floor(1.5 * cursor.size), cursor.endianness), - ); - this.flags = 0; - this.flag_bits_left = 0; - } - - read_flag_bit(): number { - // Fetch a new flag byte when the previous byte has been processed. - if (this.flag_bits_left === 0) { - this.flags = this.read_u8(); - this.flag_bits_left = 8; - } - - const bit = this.flags & 1; - this.flags >>>= 1; - this.flag_bits_left -= 1; - return bit; - } - - copy_u8(): void { - this.dst.write_u8(this.read_u8()); - } - - read_u8(): number { - return this.src.u8(); - } - - read_u16(): number { - return this.src.u16(); - } - - offset_copy(offset: number, length: number): void { - if (offset < -8192 || offset > 0) { - throw new Error(`offset was ${offset}, should be between -8192 and 0.`); - } - - if (length < 1 || length > 256) { - throw new Error(`length was ${length}, should be between 1 and 256.`); - } - - // The length can be larger than -offset, in that case we copy -offset bytes size/-offset times. - const buf_size = Math.min(-offset, length); - - this.dst.seek(offset); - const buf = this.dst.take(buf_size); - this.dst.seek(-offset - buf_size); - - for (let i = 0; i < Math.floor(length / buf_size); ++i) { - this.dst.write_cursor(buf); - buf.seek_start(0); - } - - this.dst.write_cursor(buf.take(length % buf_size)); - } -} diff --git a/src/core/data_formats/compression/prs/index.test.ts b/src/core/data_formats/compression/prs/index.test.ts deleted file mode 100644 index 20ff599a..00000000 --- a/src/core/data_formats/compression/prs/index.test.ts +++ /dev/null @@ -1,192 +0,0 @@ -import { readFileSync } from "fs"; -import { Endianness } from "../../block/Endianness"; -import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; -import { BufferCursor } from "../../block/cursor/BufferCursor"; -import { prs_compress_js } from "./compress"; -import { prs_decompress_js } from "./decompress"; -import { Cursor } from "../../block/cursor/Cursor"; -import { get_prs_wasm_module } from "./prs_wasm"; - -type CompressionFunction = (cursor: Cursor) => Cursor; - -type CompressionMethod = [string, CompressionFunction, CompressionFunction]; - -const prs_nop = (cursor: Cursor): Cursor => cursor; - -const prs_wasm_module = get_prs_wasm_module(); - -const should_run_wasm_tests = prs_wasm_module !== undefined; - -const prs_compress_wasm = prs_wasm_module - ? prs_wasm_module.prs_compress_wasm.bind(prs_wasm_module) - : prs_nop; -const prs_decompress_wasm = prs_wasm_module - ? prs_wasm_module.prs_decompress_wasm.bind(prs_wasm_module) - : prs_nop; - -const prs_js: CompressionMethod = ["JS", prs_compress_js, prs_decompress_js]; -const prs_wasm: CompressionMethod = ["WASM", prs_compress_wasm, prs_decompress_wasm]; - -/** - * Helper function that removes wasm tests if wasm module is not available. - */ -function prepare_test_data(js_test_data: any[][], wasm_test_data: any[][]): any[] { - if (should_run_wasm_tests) { - return [...js_test_data, ...wasm_test_data]; - } else { - return js_test_data; - } -} - -function test_with_bytes( - compress_fn: CompressionFunction, - decompress_fn: CompressionFunction, - bytes: number[], - expected_compressed_size: number, -): void { - const cursor = new ArrayBufferCursor(new Uint8Array(bytes).buffer, Endianness.Little); - const compressed_cursor = compress_fn(cursor); - - expect(compressed_cursor.size).toBe(expected_compressed_size); - - const test_cursor = decompress_fn(compressed_cursor); - cursor.seek_start(0); - - expect(test_cursor.size).toBe(cursor.size); - - while (cursor.bytes_left) { - if (cursor.u8() !== test_cursor.u8()) { - cursor.seek(-1); - test_cursor.seek(-1); - break; - } - } - - expect(test_cursor.position).toBe(test_cursor.size); -} - -test.each(prepare_test_data([[...prs_js, 475]], [[...prs_wasm, 134]]))( - "%s PRS compression and decompression, best case", - ( - _name: string, - compress_fn: CompressionFunction, - decompress_fn: CompressionFunction, - expected: number, - ) => { - test_with_bytes(compress_fn, decompress_fn, new Array(10000).fill(128), expected); - }, -); - -test.each(prepare_test_data([[...prs_js, 11253]], [[...prs_wasm, 11250]]))( - "%s PRS compression and decompression, worst case", - ( - _name: string, - compress_fn: CompressionFunction, - decompress_fn: CompressionFunction, - expected: number, - ) => { - const prng = new Prng(); - test_with_bytes( - compress_fn, - decompress_fn, - new Array(10000).fill(0).map(() => prng.next_integer(0, 255)), - expected, - ); - }, -); - -test.each(prepare_test_data([[...prs_js, 14924]], [[...prs_wasm, 12901]]))( - "%s PRS compression and decompression, typical case", - ( - _name: string, - compress_fn: CompressionFunction, - decompress_fn: CompressionFunction, - expected: number, - ) => { - const prng = new Prng(); - const pattern = [0, 0, 2, 0, 3, 0, 5, 0, 0, 0, 7, 9, 11, 13, 0, 0]; - const arrays = new Array(1000) - .fill(pattern) - .map(array => array.map((e: number) => e + prng.next_integer(0, 10))); - test_with_bytes(compress_fn, decompress_fn, arrays.flat(), expected); - }, -); - -test.each( - prepare_test_data( - [ - [prs_js[0], 0, prs_js[1], prs_js[2], [], 3], - [prs_js[0], 1, prs_js[1], prs_js[2], [111], 4], - [prs_js[0], 2, prs_js[1], prs_js[2], [111, 224], 5], - [prs_js[0], 3, prs_js[1], prs_js[2], [56, 237, 158], 6], - ], - [ - [prs_wasm[0], 0, prs_wasm[1], prs_wasm[2], [], 3], - [prs_wasm[0], 1, prs_wasm[1], prs_wasm[2], [111], 4], - [prs_wasm[0], 2, prs_wasm[1], prs_wasm[2], [111, 224], 5], - [prs_wasm[0], 3, prs_wasm[1], prs_wasm[2], [56, 237, 158], 6], - ], - ), -)( - "%s PRS compression and decompression, %d bytes", - ( - _name: string, - _num_bytes: number, - compress_fn: CompressionFunction, - decompress_fn: CompressionFunction, - bytes: number[], - expected: number, - ) => { - test_with_bytes(compress_fn, decompress_fn, bytes, expected); - }, -); - -function test_with_quest( - compress_fn: CompressionFunction, - decompress_fn: CompressionFunction, - quest_path: string, -): void { - const buffer = readFileSync(quest_path); - const orig = compress_fn(new BufferCursor(buffer, Endianness.Little)); - const test = decompress_fn(prs_compress_js(orig)); - orig.seek_start(0); - - expect(test.size).toBe(orig.size); - - let matching_bytes = 0; - - while (orig.bytes_left) { - const test_byte = test.u8(); - const orig_byte = orig.u8(); - - if (test_byte !== orig_byte) { - throw new Error( - `Byte ${matching_bytes} didn't match, expected ${orig_byte}, got ${test_byte}.`, - ); - } - - matching_bytes++; - } - - expect(matching_bytes).toBe(orig.size); -} - -test.each(prepare_test_data([prs_js], [prs_wasm]))( - "%s PRS compression and decompression of quest118_e.bin", - (_name: string, compress_fn: CompressionFunction, decompress_fn: CompressionFunction) => { - test_with_quest(compress_fn, decompress_fn, "test/resources/quest118_e.bin"); - }, -); - -class Prng { - seed = 1; - - next(): number { - const x = Math.sin(this.seed++) * 10000; - return x - Math.floor(x); - } - - next_integer(min: number, max: number): number { - return Math.floor(this.next() * (max + 1 - min)) + min; - } -} diff --git a/src/core/data_formats/compression/prs/pkg/package.json b/src/core/data_formats/compression/prs/pkg/package.json deleted file mode 100644 index 6487eb03..00000000 --- a/src/core/data_formats/compression/prs/pkg/package.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "name": "prs-rs", - "version": "0.1.0" -} diff --git a/src/core/data_formats/compression/prs/prs.rs b/src/core/data_formats/compression/prs/prs.rs deleted file mode 100644 index 73221a4e..00000000 --- a/src/core/data_formats/compression/prs/prs.rs +++ /dev/null @@ -1,24 +0,0 @@ -use std::io::{Read, Write, Cursor}; -use wasm_bindgen::prelude::*; -use ages_prs::{LegacyPrsEncoder, LegacyPrsDecoder}; - -// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global -// allocator. -#[cfg(feature = "wee_alloc")] -#[global_allocator] -static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT; - -#[wasm_bindgen] -pub fn compress(data: Vec) -> Vec { - let mut enc = LegacyPrsEncoder::new(Vec::new()); - enc.write_all(&data).unwrap(); - return enc.into_inner().unwrap(); -} - -#[wasm_bindgen] -pub fn decompress(data: Vec) -> Vec { - let mut dec = LegacyPrsDecoder::new(Cursor::new(&data)); - let mut result = Vec::new(); - dec.read_to_end(&mut result).unwrap(); - return result; -} diff --git a/src/core/data_formats/compression/prs/prs_wasm.ts b/src/core/data_formats/compression/prs/prs_wasm.ts deleted file mode 100644 index 82f77157..00000000 --- a/src/core/data_formats/compression/prs/prs_wasm.ts +++ /dev/null @@ -1,48 +0,0 @@ -/** - * @file Exposes the WASM PRS functions depending on whether the WASM module is available or not. - */ - -import { browser_supports_webassembly } from "../../../util"; -import { Cursor } from "../../block/cursor/Cursor"; -import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; -import { Endianness } from "../../block/Endianness"; - -class PrsWasm { - constructor(private module: any) {} - - public prs_compress_wasm(cursor: Cursor): Cursor { - const bytes = new Uint8Array(cursor.array_buffer()); - const result = this.module.compress(bytes); - return new ArrayBufferCursor( - result.buffer, - Endianness.Little, - result.byteOffset, - result.length, - ); - } - - public prs_decompress_wasm(cursor: Cursor): Cursor { - const bytes = new Uint8Array(cursor.array_buffer()); - const result = this.module.decompress(bytes); - return new ArrayBufferCursor( - result.buffer, - Endianness.Little, - result.byteOffset, - result.length, - ); - } -} - -// Load prs-rs if it exists. -let prs_wasm: PrsWasm | undefined = undefined; -try { - if (browser_supports_webassembly()) { - prs_wasm = new PrsWasm(require("prs-rs")); - } -} catch (e) { - // Webpack will emit a warning if module is missing. -} - -export function get_prs_wasm_module(): PrsWasm | undefined { - return prs_wasm; -} diff --git a/src/core/data_formats/encryption/prc.ts b/src/core/data_formats/encryption/prc.ts deleted file mode 100644 index e45777dd..00000000 --- a/src/core/data_formats/encryption/prc.ts +++ /dev/null @@ -1,104 +0,0 @@ -import { Endianness } from "../block/Endianness"; -import { ArrayBufferCursor } from "../block/cursor/ArrayBufferCursor"; -import { Cursor } from "../block/cursor/Cursor"; - -/** - * Decrypts the bytes left in cursor. - */ -export function prc_decrypt(key: number, cursor: Cursor): Cursor { - return new PrcDecryptor(key).decrypt(cursor); -} - -class PrcDecryptor { - private keys = new Uint32Array(56); - private key_pos = 56; - - constructor(key: number) { - this.construct_keys(key); - } - - decrypt(cursor: Cursor): Cursor { - // Size should be divisible by 4. - const actual_size = cursor.bytes_left; - const size = Math.ceil(actual_size / 4) * 4; - const out_cursor = new ArrayBufferCursor(new ArrayBuffer(actual_size), cursor.endianness); - - for (let pos = 0; pos < size; pos += 4) { - let u32; - - if (cursor.bytes_left >= 4) { - u32 = cursor.u32(); - out_cursor.write_u32(this.decrypt_u32(u32)); - } else { - // If the actual size of the cursor is not divisible by 4, "append" nul bytes until it is. - const left_over = cursor.bytes_left; - u32 = 0; - - // Pack left over bytes into a u32. - for (let i = 0; i < left_over; i++) { - if (cursor.endianness === Endianness.Little) { - u32 |= cursor.u8() << (8 * i); - } else { - u32 |= cursor.u8() << (8 * (3 - i)); - } - } - - const u32_decrypted = this.decrypt_u32(u32); - - // Unpack the decrypted u32 into bytes again. - for (let i = 0; i < left_over; i++) { - if (cursor.endianness === Endianness.Little) { - out_cursor.write_u8((u32_decrypted >>> (8 * i)) & 0xff); - } else { - out_cursor.write_u8((u32_decrypted >>> (8 * (3 - i))) & 0xff); - } - } - } - } - - return out_cursor.seek_start(0); - } - - private construct_keys(key: number): void { - this.keys[55] = key; - - let idx; - let tmp = 1; - - for (let i = 0x15; i <= 0x46e; i += 0x15) { - idx = i % 55; - key -= tmp; - this.keys[idx] = tmp; - tmp = key; - key = this.keys[idx]; - } - - this.mix_keys(); - this.mix_keys(); - this.mix_keys(); - this.mix_keys(); - } - - private mix_keys(): void { - let ptr = 1; - - for (let i = 24; i; --i, ++ptr) { - this.keys[ptr] -= this.keys[ptr + 31]; - } - - ptr = 25; - - for (let i = 31; i; --i, ++ptr) { - this.keys[ptr] -= this.keys[ptr - 24]; - } - } - - private decrypt_u32(data: number): number { - if (this.key_pos === 56) { - this.mix_keys(); - this.key_pos = 1; - } - - return data ^ this.keys[this.key_pos++]; - } -} diff --git a/src/core/data_formats/parsing/afs.ts b/src/core/data_formats/parsing/afs.ts deleted file mode 100644 index a6c614c0..00000000 --- a/src/core/data_formats/parsing/afs.ts +++ /dev/null @@ -1,79 +0,0 @@ -import { Cursor } from "../block/cursor/Cursor"; -import { LogManager } from "../../logging"; -import { Result, ResultBuilder } from "../../Result"; -import { Severity } from "../../Severity"; - -const logger = LogManager.get("core/data_formats/parsing/afs"); - -const AFS = 0x00534641; - -/** - * AFS is a trivial archive format used by SEGA for e.g. player character textures. - * - * @param cursor - The AFS archive - * @returns the contained files - */ -export function parse_afs(cursor: Cursor): Result { - const result = new ResultBuilder(logger); - - if (cursor.bytes_left < 8) { - return result - .add_problem( - Severity.Error, - "AFS archive is corrupted.", - "Too small to be an AFS archive.", - ) - .failure(); - } - - const magic = cursor.u32(); - - if (magic !== AFS) { - return result - .add_problem(Severity.Error, "AFS archive is corrupted.", "Magic bytes not present.") - .failure(); - } - - const file_count = cursor.u16(); - - // Skip two unused bytes (are these just part of the file count field?). - cursor.seek(2); - - const files: ArrayBuffer[] = []; - - for (let i = 1; i <= file_count; i++) { - if (cursor.bytes_left < 8) { - result.add_problem( - Severity.Warning, - `AFS file entry ${i} is invalid.`, - `Couldn't read file entry ${i}, only ${cursor.bytes_left} bytes left.`, - ); - - break; - } - - const offset = cursor.u32(); - const size = cursor.u32(); - - if (offset > cursor.size) { - result.add_problem( - Severity.Warning, - `AFS file entry ${i} is invalid.`, - `Invalid file offset ${offset} for entry ${i}.`, - ); - } else if (offset + size > cursor.size) { - result.add_problem( - Severity.Warning, - `AFS file entry ${i} is invalid.`, - `File size ${size} (offset: ${offset}) of entry ${i} too large.`, - ); - } else { - const start_pos = cursor.position; - cursor.seek_start(offset); - files.push(cursor.array_buffer(size)); - cursor.seek_start(start_pos); - } - } - - return result.success(files); -} diff --git a/src/core/data_formats/parsing/area_collision_geometry.test.ts b/src/core/data_formats/parsing/area_collision_geometry.test.ts deleted file mode 100644 index 57d1b070..00000000 --- a/src/core/data_formats/parsing/area_collision_geometry.test.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { readFileSync } from "fs"; -import { parse_area_collision_geometry } from "./area_collision_geometry"; -import { BufferCursor } from "../block/cursor/BufferCursor"; -import { Endianness } from "../block/Endianness"; - -test("parse_area_collision_geometry", () => { - const buf = readFileSync("test/resources/map_forest01c.rel"); - const object = parse_area_collision_geometry(new BufferCursor(buf, Endianness.Little)); - - expect(object.meshes.length).toBe(69); - expect(object.meshes[0].vertices.length).toBe(11); - expect(object.meshes[0].vertices[0].x).toBeCloseTo(-589.5195, 4); - expect(object.meshes[0].vertices[0].y).toBeCloseTo(16.7166, 4); - expect(object.meshes[0].vertices[0].z).toBeCloseTo(-218.6852, 4); - expect(object.meshes[0].triangles.length).toBe(12); - expect(object.meshes[0].triangles[0].flags).toBe(0b100000001); - expect(object.meshes[0].triangles[0].indices).toEqual([5, 0, 7]); - expect(object.meshes[0].triangles[0].normal.x).toBeCloseTo(0.0137, 4); - expect(object.meshes[0].triangles[0].normal.y).toBeCloseTo(0.9994, 4); - expect(object.meshes[0].triangles[0].normal.z).toBeCloseTo(-0.0307, 4); -}); diff --git a/src/core/data_formats/parsing/area_collision_geometry.ts b/src/core/data_formats/parsing/area_collision_geometry.ts deleted file mode 100644 index b49e2e68..00000000 --- a/src/core/data_formats/parsing/area_collision_geometry.ts +++ /dev/null @@ -1,79 +0,0 @@ -import { Cursor } from "../block/cursor/Cursor"; -import { Vec3 } from "../vector"; -import { parse_rel } from "./rel"; - -export type CollisionObject = { - meshes: CollisionMesh[]; -}; - -export type CollisionMesh = { - vertices: Vec3[]; - triangles: CollisionTriangle[]; -}; - -export type CollisionTriangle = { - indices: [number, number, number]; - flags: number; - normal: Vec3; -}; - -export function parse_area_collision_geometry(cursor: Cursor): CollisionObject { - const { data_offset } = parse_rel(cursor, false); - cursor.seek_start(data_offset); - const main_offset_table_offset = cursor.u32(); - cursor.seek_start(main_offset_table_offset); - - const object: CollisionObject = { - meshes: [], - }; - - while (cursor.bytes_left) { - const start_pos = cursor.position; - - const block_trailer_offset = cursor.u32(); - - if (block_trailer_offset === 0) { - break; - } - - const mesh: CollisionMesh = { - vertices: [], - triangles: [], - }; - object.meshes.push(mesh); - - cursor.seek_start(block_trailer_offset); - - const vertex_count = cursor.u32(); - const vertex_table_offset = cursor.u32(); - const triangle_count = cursor.u32(); - const triangle_table_offset = cursor.u32(); - - cursor.seek_start(vertex_table_offset); - - for (let i = 0; i < vertex_count; i++) { - mesh.vertices.push(cursor.vec3_f32()); - } - - cursor.seek_start(triangle_table_offset); - - for (let i = 0; i < triangle_count; i++) { - const v1 = cursor.u16(); - const v2 = cursor.u16(); - const v3 = cursor.u16(); - const flags = cursor.u16(); - const normal = cursor.vec3_f32(); - cursor.seek(16); - - mesh.triangles.push({ - indices: [v1, v2, v3], - flags, - normal, - }); - } - - cursor.seek_start(start_pos + 24); - } - - return object; -} diff --git a/src/core/data_formats/parsing/area_geometry.ts b/src/core/data_formats/parsing/area_geometry.ts deleted file mode 100644 index e2efc37c..00000000 --- a/src/core/data_formats/parsing/area_geometry.ts +++ /dev/null @@ -1,93 +0,0 @@ -import { Cursor } from "../block/cursor/Cursor"; -import { Vec3 } from "../vector"; -import { NjObject, parse_xj_object } from "./ninja"; -import { XjModel } from "./ninja/xj"; -import { parse_rel } from "./rel"; -import { angle_to_rad } from "./ninja/angle"; - -export type RenderObject = { - sections: RenderSection[]; -}; - -export type RenderSection = { - id: number; - position: Vec3; - rotation: Vec3; - objects: NjObject[]; -}; - -export function parse_area_geometry(cursor: Cursor): RenderObject { - const sections: RenderSection[] = []; - - cursor.seek_end(16); - - const { data_offset } = parse_rel(cursor, false); - cursor.seek_start(data_offset); - cursor.seek(8); // Format "fmt2" in UTF-16. - const section_count = cursor.u32(); - cursor.seek(4); - const section_table_offset = cursor.u32(); - // const texture_name_offset = cursor.u32(); - - for (let i = 0; i < section_count; i++) { - cursor.seek_start(section_table_offset + 52 * i); - - const section_id = cursor.i32(); - const section_position = cursor.vec3_f32(); - const section_rotation = { - x: angle_to_rad(cursor.u32()), - y: angle_to_rad(cursor.u32()), - z: angle_to_rad(cursor.u32()), - }; - - cursor.seek(4); - - const simple_geometry_offset_table_offset = cursor.u32(); - // const animated_geometry_offset_table_offset = cursor.u32(); - cursor.seek(4); - const simple_geometry_offset_count = cursor.u32(); - // const animated_geometry_offset_count = cursor.u32(); - // Ignore animated_geometry_offset_count and the last 4 bytes. - - const objects = parse_geometry_table( - cursor, - simple_geometry_offset_table_offset, - simple_geometry_offset_count, - ); - - sections.push({ - id: section_id, - position: section_position, - rotation: section_rotation, - objects, - }); - } - - return { sections }; -} - -// TODO: don't reparse the same objects multiple times. Create DAG instead of tree. -function parse_geometry_table( - cursor: Cursor, - table_offset: number, - table_entry_count: number, -): NjObject[] { - const objects: NjObject[] = []; - - for (let i = 0; i < table_entry_count; i++) { - cursor.seek_start(table_offset + 16 * i); - - let offset = cursor.u32(); - cursor.seek(8); - const flags = cursor.u32(); - - if (flags & 0b100) { - offset = cursor.seek_start(offset).u32(); - } - - cursor.seek_start(offset); - objects.push(...parse_xj_object(cursor)); - } - - return objects; -} diff --git a/src/core/data_formats/parsing/iff.ts b/src/core/data_formats/parsing/iff.ts deleted file mode 100644 index 06107173..00000000 --- a/src/core/data_formats/parsing/iff.ts +++ /dev/null @@ -1,80 +0,0 @@ -import { Cursor } from "../block/cursor/Cursor"; -import { Result, ResultBuilder } from "../../Result"; -import { LogManager } from "../../logging"; -import { Severity } from "../../Severity"; - -const logger = LogManager.get("core/data_formats/parsing/iff"); - -export type IffChunk = { - /** - * 32-bit unsigned integer. - */ - readonly type: number; - readonly data: Cursor; -}; - -export type IffChunkHeader = { - /** - * 32-bit unsigned integer. - */ - readonly type: number; - readonly size: number; -}; - -/** - * PSO uses a little endian variant of the IFF format. - * IFF files contain chunks preceded by an 8-byte header. - * The header consists of 4 ASCII characters for the "Type ID" and a 32-bit integer specifying the chunk size. - */ -export function parse_iff(cursor: Cursor, silent = false): Result { - return parse(cursor, silent, [], (cursor, type, size) => { - return { type, data: cursor.take(size) }; - }); -} - -/** - * Parses just the chunk headers. - */ -export function parse_iff_headers(cursor: Cursor, silent = false): Result { - return parse(cursor, silent, [], (_, type, size) => { - return { type, size }; - }); -} - -function parse( - cursor: Cursor, - silent: boolean, - chunks: T[], - get_chunk: (cursor: Cursor, type: number, size: number) => T, -): Result { - const result = new ResultBuilder(logger); - let corrupted = false; - - while (cursor.bytes_left >= 8) { - const type = cursor.u32(); - const size_pos = cursor.position; - const size = cursor.u32(); - - if (size > cursor.bytes_left) { - corrupted = true; - - if (!silent) { - result.add_problem( - chunks.length === 0 ? Severity.Error : Severity.Warning, - "Invalid IFF format.", - `Size ${size} was too large (only ${cursor.bytes_left} bytes left) at position ${size_pos}.`, - ); - } - - break; - } - - chunks.push(get_chunk(cursor, type, size)); - } - - if (corrupted && chunks.length === 0) { - return result.failure(); - } else { - return result.success(chunks); - } -} diff --git a/src/core/data_formats/parsing/itempmt.test.ts b/src/core/data_formats/parsing/itempmt.test.ts deleted file mode 100644 index 69c63cdd..00000000 --- a/src/core/data_formats/parsing/itempmt.test.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { parse_item_pmt } from "./itempmt"; -import { readFileSync } from "fs"; -import { BufferCursor } from "../block/cursor/BufferCursor"; -import { Endianness } from "../block/Endianness"; - -test("parse_item_pmt", () => { - const buf = readFileSync("test/resources/ItemPMT.bin"); - const item_pmt = parse_item_pmt(new BufferCursor(buf, Endianness.Little)); - - const saber = item_pmt.weapons[1][0]; - - expect(saber.id).toBe(177); - expect(saber.min_atp).toBe(40); - expect(saber.max_atp).toBe(55); - expect(saber.ata).toBe(30); - expect(saber.max_grind).toBe(35); - expect(saber.req_atp).toBe(30); -}); diff --git a/src/core/data_formats/parsing/itempmt.ts b/src/core/data_formats/parsing/itempmt.ts deleted file mode 100644 index debf9d2a..00000000 --- a/src/core/data_formats/parsing/itempmt.ts +++ /dev/null @@ -1,252 +0,0 @@ -import { Cursor } from "../block/cursor/Cursor"; -import { parse_rel } from "./rel"; - -export type ItemPmt = { - stat_boosts: PmtStatBoost[]; - armors: PmtArmor[]; - shields: PmtShield[]; - units: PmtUnit[]; - tools: PmtTool[][]; - weapons: PmtWeapon[][]; -}; - -export type PmtStatBoost = { - stat_1: number; - stat_2: number; - amount_1: number; - amount_2: number; -}; - -export type PmtWeapon = { - id: number; - type: number; - skin: number; - team_points: number; - class: number; - reserved_1: number; - min_atp: number; - max_atp: number; - req_atp: number; - req_mst: number; - req_ata: number; - mst: number; - max_grind: number; - photon: number; - special: number; - ata: number; - stat_boost: number; - projectile: number; - photon_trail_1_x: number; - photon_trail_1_y: number; - photon_trail_2_x: number; - photon_trail_2_y: number; - photon_type: number; - unknown_1: number[]; - tech_boost: number; - combo_type: number; -}; - -export type PmtArmor = { - id: number; - type: number; - skin: number; - team_points: number; - dfp: number; - evp: number; - block_particle: number; - block_effect: number; - class: number; - reserved_1: number; - required_level: number; - efr: number; - eth: number; - eic: number; - edk: number; - elt: number; - dfp_range: number; - evp_range: number; - stat_boost: number; - tech_boost: number; - unknown_1: number; -}; - -export type PmtShield = PmtArmor; - -export type PmtUnit = { - id: number; - type: number; - skin: number; - team_points: number; - stat: number; - stat_amount: number; - plus_minus: number; - reserved: number[]; -}; - -export type PmtTool = { - id: number; - type: number; - skin: number; - team_points: number; - amount: number; - tech: number; - cost: number; - item_flag: number; - reserved: number[]; -}; - -export function parse_item_pmt(cursor: Cursor): ItemPmt { - const { index } = parse_rel(cursor, true); - - const item_pmt: ItemPmt = { - // This size (65268) of this table seems wrong, so we pass in a hard-coded value. - stat_boosts: parse_stat_boosts(cursor, index[305].offset, 52), - armors: parse_armors(cursor, index[7].offset, index[7].size), - shields: parse_shields(cursor, index[8].offset, index[8].size), - units: parse_units(cursor, index[9].offset, index[9].size), - tools: [], - weapons: [], - }; - - for (let i = 11; i <= 37; i++) { - item_pmt.tools.push(parse_tools(cursor, index[i].offset, index[i].size)); - } - - for (let i = 38; i <= 275; i++) { - item_pmt.weapons.push(parse_weapons(cursor, index[i].offset, index[i].size)); - } - - return item_pmt; -} - -function parse_stat_boosts(cursor: Cursor, offset: number, size: number): PmtStatBoost[] { - cursor.seek_start(offset); - const stat_boosts: PmtStatBoost[] = []; - - for (let i = 0; i < size; i++) { - stat_boosts.push({ - stat_1: cursor.u8(), - stat_2: cursor.u8(), - amount_1: cursor.i16(), - amount_2: cursor.i16(), - }); - } - - return stat_boosts; -} - -function parse_weapons(cursor: Cursor, offset: number, size: number): PmtWeapon[] { - cursor.seek_start(offset); - const weapons: PmtWeapon[] = []; - - for (let i = 0; i < size; i++) { - weapons.push({ - id: cursor.u32(), - type: cursor.i16(), - skin: cursor.i16(), - team_points: cursor.i32(), - class: cursor.u8(), - reserved_1: cursor.u8(), - min_atp: cursor.i16(), - max_atp: cursor.i16(), - req_atp: cursor.i16(), - req_mst: cursor.i16(), - req_ata: cursor.i16(), - mst: cursor.i16(), - max_grind: cursor.u8(), - photon: cursor.i8(), - special: cursor.u8(), - ata: cursor.u8(), - stat_boost: cursor.u8(), - projectile: cursor.u8(), - photon_trail_1_x: cursor.i8(), - photon_trail_1_y: cursor.i8(), - photon_trail_2_x: cursor.i8(), - photon_trail_2_y: cursor.i8(), - photon_type: cursor.i8(), - unknown_1: cursor.u8_array(5), - tech_boost: cursor.u8(), - combo_type: cursor.u8(), - }); - } - - return weapons; -} - -function parse_armors(cursor: Cursor, offset: number, size: number): PmtArmor[] { - cursor.seek_start(offset); - const armors: PmtArmor[] = []; - - for (let i = 0; i < size; i++) { - armors.push({ - id: cursor.u32(), - type: cursor.i16(), - skin: cursor.i16(), - team_points: cursor.i32(), - dfp: cursor.i16(), - evp: cursor.i16(), - block_particle: cursor.u8(), - block_effect: cursor.u8(), - class: cursor.u8(), - reserved_1: cursor.u8(), - required_level: cursor.u8(), - efr: cursor.u8(), - eth: cursor.u8(), - eic: cursor.u8(), - edk: cursor.u8(), - elt: cursor.u8(), - dfp_range: cursor.u8(), - evp_range: cursor.u8(), - stat_boost: cursor.u8(), - tech_boost: cursor.u8(), - unknown_1: cursor.i16(), - }); - } - - return armors; -} - -function parse_shields(cursor: Cursor, offset: number, size: number): PmtShield[] { - return parse_armors(cursor, offset, size); -} - -function parse_units(cursor: Cursor, offset: number, size: number): PmtUnit[] { - cursor.seek_start(offset); - const units: PmtUnit[] = []; - - for (let i = 0; i < size; i++) { - units.push({ - id: cursor.u32(), - type: cursor.i16(), - skin: cursor.i16(), - team_points: cursor.i32(), - stat: cursor.i16(), - stat_amount: cursor.i16(), - plus_minus: cursor.u8(), - reserved: cursor.u8_array(3), - }); - } - - return units; -} - -function parse_tools(cursor: Cursor, offset: number, size: number): PmtTool[] { - cursor.seek_start(offset); - const tools: PmtTool[] = []; - - for (let i = 0; i < size; i++) { - tools.push({ - id: cursor.u32(), - type: cursor.i16(), - skin: cursor.i16(), - team_points: cursor.i32(), - amount: cursor.i16(), - tech: cursor.i16(), - cost: cursor.i32(), - item_flag: cursor.u8(), - reserved: cursor.u8_array(3), - }); - } - - return tools; -} diff --git a/src/core/data_formats/parsing/ninja/angle.ts b/src/core/data_formats/parsing/ninja/angle.ts deleted file mode 100644 index 73b39b26..00000000 --- a/src/core/data_formats/parsing/ninja/angle.ts +++ /dev/null @@ -1,10 +0,0 @@ -const ANGLE_TO_RAD = (2 * Math.PI) / 0x10000; -const RAD_TO_ANGLE = 0x10000 / (2 * Math.PI); - -export function angle_to_rad(angle: number): number { - return angle * ANGLE_TO_RAD; -} - -export function rad_to_angle(rad: number): number { - return Math.round(rad * RAD_TO_ANGLE); -} diff --git a/src/core/data_formats/parsing/ninja/index.ts b/src/core/data_formats/parsing/ninja/index.ts deleted file mode 100644 index e28a4ca0..00000000 --- a/src/core/data_formats/parsing/ninja/index.ts +++ /dev/null @@ -1,211 +0,0 @@ -import { Cursor } from "../../block/cursor/Cursor"; -import { Vec3 } from "../../vector"; -import { parse_iff } from "../iff"; -import { NjcmModel, parse_njcm_model } from "./njcm"; -import { parse_xj_model, XjModel } from "./xj"; -import { Result, success } from "../../../Result"; -import { angle_to_rad } from "./angle"; - -const NJCM = 0x4d434a4e; - -export type NjModel = NjcmModel | XjModel; - -export function is_njcm_model(model: NjModel): model is NjcmModel { - return model.type === "njcm"; -} - -export function is_xj_model(model: NjModel): model is XjModel { - return model.type === "xj"; -} - -export class NjObject { - private readonly _children: NjObject[]; - - readonly evaluation_flags: NjEvaluationFlags; - readonly model?: M; - readonly position: Vec3; - readonly rotation: Vec3; // Euler angles in radians. - readonly scale: Vec3; - readonly children: readonly NjObject[]; - - constructor( - evaluation_flags: NjEvaluationFlags, - model: M | undefined, - position: Vec3, - rotation: Vec3, // Euler angles in radians. - scale: Vec3, - children: NjObject[], - ) { - this.evaluation_flags = evaluation_flags; - this.model = model; - this.position = position; - this.rotation = rotation; - this.scale = scale; - this._children = children; - this.children = this._children; - } - - bone_count(): number { - const id_ref: [number] = [0]; - this.get_bone_internal(this, Number.MAX_SAFE_INTEGER, id_ref); - return id_ref[0]; - } - - get_bone(bone_id: number): NjObject | undefined { - return this.get_bone_internal(this, bone_id, [0]); - } - - add_child(child: NjObject): void { - this._children.push(child); - } - - clear_children(): void { - this._children.splice(0); - } - - private get_bone_internal( - object: NjObject, - bone_id: number, - id_ref: [number], - ): NjObject | undefined { - if (!object.evaluation_flags.skip) { - const id = id_ref[0]++; - - if (id === bone_id) { - return object; - } - } - - if (!object.evaluation_flags.break_child_trace) { - for (const child of object.children) { - const bone = this.get_bone_internal(child, bone_id, id_ref); - if (bone) return bone; - } - } - } -} - -export type NjEvaluationFlags = { - no_translate: boolean; - no_rotate: boolean; - no_scale: boolean; - hidden: boolean; - break_child_trace: boolean; - zxy_rotation_order: boolean; - skip: boolean; - shape_skip: boolean; -}; - -/** - * Parses an NJCM file. - */ -export function parse_nj(cursor: Cursor): Result[]> { - return parse_ninja(cursor, parse_njcm_model, []); -} - -/** - * Parses an NJCM file. - */ -export function parse_xj(cursor: Cursor): Result[]> { - return parse_ninja(cursor, parse_xj_model, undefined); -} - -/** - * Parses a ninja object. - */ -export function parse_xj_object(cursor: Cursor): NjObject[] { - return parse_sibling_objects(cursor, parse_xj_model, undefined); -} - -function parse_ninja( - cursor: Cursor, - parse_model: (cursor: Cursor, context: any) => M, - context: any, -): Result[]> { - const parse_iff_result = parse_iff(cursor); - - if (!parse_iff_result.success) { - return parse_iff_result; - } - - // POF0 and other chunks types are ignored. - const njcm_chunks = parse_iff_result.value.filter(chunk => chunk.type === NJCM); - const objects: NjObject[] = []; - - for (const chunk of njcm_chunks) { - objects.push(...parse_sibling_objects(chunk.data, parse_model, context)); - } - - return success(objects, ...parse_iff_result.problems); -} - -// TODO: cache model and object offsets so we don't reparse the same data. -function parse_sibling_objects( - cursor: Cursor, - parse_model: (cursor: Cursor, context: any) => M, - context: any, -): NjObject[] { - const eval_flags = cursor.u32(); - const no_translate = (eval_flags & 0b1) !== 0; - const no_rotate = (eval_flags & 0b10) !== 0; - const no_scale = (eval_flags & 0b100) !== 0; - const hidden = (eval_flags & 0b1000) !== 0; - const break_child_trace = (eval_flags & 0b10000) !== 0; - const zxy_rotation_order = (eval_flags & 0b100000) !== 0; - const skip = (eval_flags & 0b1000000) !== 0; - const shape_skip = (eval_flags & 0b10000000) !== 0; - - const model_offset = cursor.u32(); - const pos = cursor.vec3_f32(); - const rotation = { - x: angle_to_rad(cursor.i32()), - y: angle_to_rad(cursor.i32()), - z: angle_to_rad(cursor.i32()), - }; - const scale = cursor.vec3_f32(); - const child_offset = cursor.u32(); - const sibling_offset = cursor.u32(); - - let model: M | undefined; - let children: NjObject[]; - let siblings: NjObject[]; - - if (model_offset) { - cursor.seek_start(model_offset); - model = parse_model(cursor, context); - } - - if (child_offset) { - cursor.seek_start(child_offset); - children = parse_sibling_objects(cursor, parse_model, context); - } else { - children = []; - } - - if (sibling_offset) { - cursor.seek_start(sibling_offset); - siblings = parse_sibling_objects(cursor, parse_model, context); - } else { - siblings = []; - } - - const object = new NjObject( - { - no_translate, - no_rotate, - no_scale, - hidden, - break_child_trace, - zxy_rotation_order, - skip, - shape_skip, - }, - model, - pos, - rotation, - scale, - children, - ); - - return [object, ...siblings]; -} diff --git a/src/core/data_formats/parsing/ninja/motion.ts b/src/core/data_formats/parsing/ninja/motion.ts deleted file mode 100644 index 98e7870a..00000000 --- a/src/core/data_formats/parsing/ninja/motion.ts +++ /dev/null @@ -1,249 +0,0 @@ -import { Cursor } from "../../block/cursor/Cursor"; -import { Vec3 } from "../../vector"; -import { angle_to_rad } from "./angle"; - -const NMDM = 0x4d444d4e; - -export type NjMotion = { - motion_data: NjMotionData[]; - frame_count: number; - type: number; - interpolation: NjInterpolation; - element_count: number; -}; - -export enum NjInterpolation { - Linear, - Spline, - UserFunction, -} - -export type NjMotionData = { - tracks: NjKeyframeTrack[]; -}; - -export enum NjKeyframeTrackType { - Position, - Rotation, - Scale, -} - -export type NjKeyframeTrack = - | NjKeyframeTrackPosition - | NjKeyframeTrackRotation - | NjKeyframeTrackScale; - -export type NjKeyframeTrackPosition = { - type: NjKeyframeTrackType.Position; - keyframes: NjKeyframeF[]; -}; - -export type NjKeyframeTrackRotation = { - type: NjKeyframeTrackType.Rotation; - keyframes: NjKeyframeA[]; -}; - -export type NjKeyframeTrackScale = { - type: NjKeyframeTrackType.Scale; - keyframes: NjKeyframeF[]; -}; - -export type NjKeyframe = NjKeyframeF | NjKeyframeA; - -/** - * Used for parallel motion (POS), scale (SCL) and vector (VEC). - */ -export type NjKeyframeF = { - frame: number; - value: Vec3; -}; - -/** - * Used for rotation (ANG). - */ -export type NjKeyframeA = { - frame: number; - value: Vec3; // Euler angles in radians. -}; - -export function parse_njm(cursor: Cursor, bone_count: number): NjMotion { - if (cursor.u32() === NMDM) { - return parse_njm_v2(cursor, bone_count); - } else { - cursor.seek_start(0); - return parse_njm_bb(cursor, bone_count); - } -} - -/** - * Format used by PSO v2 and for the enemies in PSO:BB. - */ -function parse_njm_v2(cursor: Cursor, bone_count: number): NjMotion { - const chunk_size = cursor.u32(); - return parse_motion(cursor.take(chunk_size), bone_count); -} - -/** - * Format used by PSO:BB plymotiondata.rlc. - */ -function parse_njm_bb(cursor: Cursor, bone_count: number): NjMotion { - cursor.seek_end(16); - const offset1 = cursor.u32(); - cursor.seek_start(offset1); - const action_offset = cursor.u32(); - cursor.seek_start(action_offset); - return parse_action(cursor, bone_count); -} - -function parse_action(cursor: Cursor, bone_count: number): NjMotion { - cursor.seek(4); // Object pointer placeholder. - const motion_offset = cursor.u32(); - cursor.seek_start(motion_offset); - return parse_motion(cursor, bone_count); -} - -function parse_motion(cursor: Cursor, bone_count: number): NjMotion { - // Points to an array the size of bone_count. - let mdata_offset = cursor.u32(); - const frame_count = cursor.u32(); - const type = cursor.u16(); - const inp_fn = cursor.u16(); - // Linear, spline or user function. - const interpolation: NjInterpolation = (inp_fn & 0b11000000) >> 6; - const element_count = inp_fn & 0b1111; - const motion_data_list = []; - - for (let i = 0; i < bone_count; i++) { - cursor.seek_start(mdata_offset); - mdata_offset = mdata_offset += 8 * element_count; - - const motion_data: NjMotionData = { - tracks: [], - }; - motion_data_list.push(motion_data); - - const keyframe_offsets: number[] = []; - const keyframe_counts: number[] = []; - - for (let j = 0; j < element_count; j++) { - keyframe_offsets.push(cursor.u32()); - } - - for (let j = 0; j < element_count; j++) { - const count = cursor.u32(); - keyframe_counts.push(count); - } - - // NJD_MTYPE_POS_0 - if (type & (1 << 0)) { - cursor.seek_start(keyframe_offsets.shift()!); - const count = keyframe_counts.shift(); - - if (count) { - motion_data.tracks.push({ - type: NjKeyframeTrackType.Position, - keyframes: parse_motion_data_f(cursor, count), - }); - } - } - - // NJD_MTYPE_ANG_1 - if (type & (1 << 1)) { - cursor.seek_start(keyframe_offsets.shift()!); - const count = keyframe_counts.shift(); - - if (count) { - motion_data.tracks.push({ - type: NjKeyframeTrackType.Rotation, - keyframes: parse_motion_data_a(cursor, count, frame_count), - }); - } - } - - // NJD_MTYPE_SCL_2 - if (type & (1 << 2)) { - cursor.seek_start(keyframe_offsets.shift()!); - const count = keyframe_counts.shift(); - - if (count) { - motion_data.tracks.push({ - type: NjKeyframeTrackType.Scale, - keyframes: parse_motion_data_f(cursor, count), - }); - } - } - - // TODO: all NJD_MTYPE's - } - - return { - motion_data: motion_data_list, - frame_count, - type, - interpolation, - element_count, - }; -} - -function parse_motion_data_f(cursor: Cursor, count: number): NjKeyframeF[] { - const frames: NjKeyframeF[] = []; - - for (let i = 0; i < count; ++i) { - frames.push({ - frame: cursor.u32(), - value: cursor.vec3_f32(), - }); - } - - return frames; -} - -function parse_motion_data_a( - cursor: Cursor, - keyframe_count: number, - frame_count: number, -): NjKeyframeA[] { - const frames: NjKeyframeA[] = []; - const start_pos = cursor.position; - - for (let i = 0; i < keyframe_count; ++i) { - frames.push({ - frame: cursor.u16(), - value: { - x: angle_to_rad(cursor.u16()), - y: angle_to_rad(cursor.u16()), - z: angle_to_rad(cursor.u16()), - }, - }); - } - - let prev = -1; - - for (const { frame } of frames) { - if (frame < prev || frame >= frame_count) { - cursor.seek_start(start_pos); - return parse_motion_data_a_wide(cursor, keyframe_count); - } - - prev = frame; - } - - return frames; -} - -function parse_motion_data_a_wide(cursor: Cursor, keyframe_count: number): NjKeyframeA[] { - const frames: NjKeyframeA[] = []; - - for (let i = 0; i < keyframe_count; ++i) { - frames.push({ - frame: cursor.u32(), - value: { - x: angle_to_rad(cursor.i32()), - y: angle_to_rad(cursor.i32()), - z: angle_to_rad(cursor.i32()), - }, - }); - } - - return frames; -} diff --git a/src/core/data_formats/parsing/ninja/njcm.ts b/src/core/data_formats/parsing/ninja/njcm.ts deleted file mode 100644 index 98732a28..00000000 --- a/src/core/data_formats/parsing/ninja/njcm.ts +++ /dev/null @@ -1,589 +0,0 @@ -import { Cursor } from "../../block/cursor/Cursor"; -import { Vec2, Vec3 } from "../../vector"; -import { LogManager } from "../../../logging"; - -const logger = LogManager.get("core/data_formats/parsing/ninja/njcm"); - -// TODO: -// - colors -// - bump maps - -export type NjcmModel = { - type: "njcm"; - /** - * Sparse array of vertices. - */ - vertices: NjcmVertex[]; - meshes: NjcmTriangleStrip[]; - collision_sphere_center: Vec3; - collision_sphere_radius: number; -}; - -export type NjcmVertex = { - position: Vec3; - normal?: Vec3; - bone_weight: number; - bone_weight_status: number; - calc_continue: boolean; -}; - -export type NjcmTriangleStrip = { - ignore_light: boolean; - ignore_specular: boolean; - ignore_ambient: boolean; - use_alpha: boolean; - double_side: boolean; - flat_shading: boolean; - environment_mapping: boolean; - clockwise_winding: boolean; - has_tex_coords: boolean; - has_normal: boolean; - texture_id?: number; - src_alpha?: number; - dst_alpha?: number; - vertices: NjcmMeshVertex[]; -}; - -export type NjcmMeshVertex = { - index: number; - normal?: Vec3; - tex_coords?: Vec2; -}; - -enum NjcmChunkType { - Unknown, - Null, - Bits, - CachePolygonList, - DrawPolygonList, - Tiny, - Material, - Vertex, - Volume, - Strip, - End, -} - -type NjcmChunk = { - type: NjcmChunkType; - type_id: number; -} & ( - | NjcmUnknownChunk - | NjcmNullChunk - | NjcmBitsChunk - | NjcmCachePolygonListChunk - | NjcmDrawPolygonListChunk - | NjcmTinyChunk - | NjcmMaterialChunk - | NjcmVertexChunk - | NjcmVolumeChunk - | NjcmStripChunk - | NjcmEndChunk -); - -type NjcmUnknownChunk = { - type: NjcmChunkType.Unknown; -}; - -type NjcmNullChunk = { - type: NjcmChunkType.Null; -}; - -type NjcmBitsChunk = { - type: NjcmChunkType.Bits; - src_alpha: number; - dst_alpha: number; -}; - -type NjcmCachePolygonListChunk = { - type: NjcmChunkType.CachePolygonList; - cache_index: number; - offset: number; -}; - -type NjcmDrawPolygonListChunk = { - type: NjcmChunkType.DrawPolygonList; - cache_index: number; -}; - -type NjcmTinyChunk = { - type: NjcmChunkType.Tiny; - flip_u: boolean; - flip_v: boolean; - clamp_u: boolean; - clamp_v: boolean; - mipmap_d_adjust: number; - filter_mode: number; - super_sample: boolean; - texture_id: number; -}; - -type NjcmMaterialChunk = { - type: NjcmChunkType.Material; - src_alpha: number; - dst_alpha: number; - diffuse?: NjcmArgb; - ambient?: NjcmArgb; - specular?: NjcmErgb; -}; - -type NjcmVertexChunk = { - type: NjcmChunkType.Vertex; - vertices: NjcmChunkVertex[]; -}; - -type NjcmVolumeChunk = { - type: NjcmChunkType.Volume; -}; - -type NjcmStripChunk = { - type: NjcmChunkType.Strip; - triangle_strips: NjcmTriangleStrip[]; -}; - -type NjcmEndChunk = { - type: NjcmChunkType.End; -}; - -type NjcmChunkVertex = { - index: number; - position: Vec3; - normal?: Vec3; - bone_weight: number; - bone_weight_status: number; - calc_continue: boolean; -}; - -/** - * Channels are in range [0, 1]. - */ -type NjcmArgb = { - a: number; - r: number; - g: number; - b: number; -}; - -/** - * Channels are not normalized. - */ -type NjcmErgb = { - e: number; - r: number; - g: number; - b: number; -}; - -export function parse_njcm_model(cursor: Cursor, cached_chunk_offsets: number[]): NjcmModel { - const vlist_offset = cursor.u32(); // Vertex list - const plist_offset = cursor.u32(); // Triangle strip index list - const bounding_sphere_center = cursor.vec3_f32(); - const bounding_sphere_radius = cursor.f32(); - const vertices: NjcmVertex[] = []; - const meshes: NjcmTriangleStrip[] = []; - - if (vlist_offset) { - cursor.seek_start(vlist_offset); - - for (const chunk of parse_chunks(cursor, cached_chunk_offsets, true)) { - if (chunk.type === NjcmChunkType.Vertex) { - for (const vertex of chunk.vertices) { - vertices[vertex.index] = { - position: vertex.position, - normal: vertex.normal, - bone_weight: vertex.bone_weight, - bone_weight_status: vertex.bone_weight_status, - calc_continue: vertex.calc_continue, - }; - } - } - } - } - - if (plist_offset) { - cursor.seek_start(plist_offset); - - let texture_id: number | undefined = undefined; - let src_alpha: number | undefined = undefined; - let dst_alpha: number | undefined = undefined; - - for (const chunk of parse_chunks(cursor, cached_chunk_offsets, false)) { - switch (chunk.type) { - case NjcmChunkType.Bits: - src_alpha = chunk.src_alpha; - dst_alpha = chunk.dst_alpha; - break; - - case NjcmChunkType.Tiny: - texture_id = chunk.texture_id; - break; - - case NjcmChunkType.Material: - src_alpha = chunk.src_alpha; - dst_alpha = chunk.dst_alpha; - break; - - case NjcmChunkType.Strip: - for (const strip of chunk.triangle_strips) { - strip.texture_id = texture_id; - strip.src_alpha = src_alpha; - strip.dst_alpha = dst_alpha; - } - - meshes.push(...chunk.triangle_strips); - break; - } - } - } - - return { - type: "njcm", - vertices, - meshes, - collision_sphere_center: bounding_sphere_center, - collision_sphere_radius: bounding_sphere_radius, - }; -} - -// TODO: don't reparse when DrawPolygonList chunk is encountered. -function parse_chunks( - cursor: Cursor, - cached_chunk_offsets: number[], - wide_end_chunks: boolean, -): NjcmChunk[] { - const chunks: NjcmChunk[] = []; - let loop = true; - - while (loop) { - const type_id = cursor.u8(); - const flags = cursor.u8(); - const chunk_start_position = cursor.position; - let size = 0; - - if (type_id === 0) { - chunks.push({ - type: NjcmChunkType.Null, - type_id, - }); - } else if (1 <= type_id && type_id <= 3) { - chunks.push({ - type: NjcmChunkType.Bits, - type_id, - src_alpha: (flags >>> 3) & 0b111, - dst_alpha: flags & 0b111, - }); - } else if (type_id === 4) { - const cache_index = flags; - const offset = cursor.position; - chunks.push({ - type: NjcmChunkType.CachePolygonList, - type_id, - cache_index, - offset, - }); - cached_chunk_offsets[cache_index] = offset; - loop = false; - } else if (type_id === 5) { - const cache_index = flags; - const cached_offset = cached_chunk_offsets[cache_index]; - - if (cached_offset != null) { - cursor.seek_start(cached_offset); - chunks.push(...parse_chunks(cursor, cached_chunk_offsets, wide_end_chunks)); - } - - chunks.push({ - type: NjcmChunkType.DrawPolygonList, - type_id, - cache_index, - }); - } else if (8 <= type_id && type_id <= 9) { - size = 2; - const texture_bits_and_id = cursor.u16(); - chunks.push({ - type: NjcmChunkType.Tiny, - type_id, - flip_u: (type_id & 0x80) !== 0, - flip_v: (type_id & 0x40) !== 0, - clamp_u: (type_id & 0x20) !== 0, - clamp_v: (type_id & 0x10) !== 0, - mipmap_d_adjust: type_id & 0b1111, - filter_mode: texture_bits_and_id >>> 14, - super_sample: (texture_bits_and_id & 0x40) !== 0, - texture_id: texture_bits_and_id & 0x1fff, - }); - } else if (17 <= type_id && type_id <= 31) { - size = 2 + 2 * cursor.u16(); - - let diffuse: NjcmArgb | undefined; - let ambient: NjcmArgb | undefined; - let specular: NjcmErgb | undefined; - - if ((flags & 0b1) !== 0) { - diffuse = { - b: cursor.u8() / 255, - g: cursor.u8() / 255, - r: cursor.u8() / 255, - a: cursor.u8() / 255, - }; - } - - if ((flags & 0b10) !== 0) { - ambient = { - b: cursor.u8() / 255, - g: cursor.u8() / 255, - r: cursor.u8() / 255, - a: cursor.u8() / 255, - }; - } - - if ((flags & 0b100) !== 0) { - specular = { - b: cursor.u8(), - g: cursor.u8(), - r: cursor.u8(), - e: cursor.u8(), - }; - } - - chunks.push({ - type: NjcmChunkType.Material, - type_id, - src_alpha: (flags >>> 3) & 0b111, - dst_alpha: flags & 0b111, - diffuse, - ambient, - specular, - }); - } else if (32 <= type_id && type_id <= 50) { - size = 2 + 4 * cursor.u16(); - chunks.push({ - type: NjcmChunkType.Vertex, - type_id, - vertices: parse_vertex_chunk(cursor, type_id, flags), - }); - } else if (56 <= type_id && type_id <= 58) { - size = 2 + 2 * cursor.u16(); - chunks.push({ - type: NjcmChunkType.Volume, - type_id, - }); - } else if (64 <= type_id && type_id <= 75) { - size = 2 + 2 * cursor.u16(); - chunks.push({ - type: NjcmChunkType.Strip, - type_id, - triangle_strips: parse_triangle_strip_chunk(cursor, type_id, flags), - }); - } else if (type_id === 255) { - size = wide_end_chunks ? 2 : 0; - chunks.push({ - type: NjcmChunkType.End, - type_id, - }); - loop = false; - } else { - size = 2 + 2 * cursor.u16(); - chunks.push({ - type: NjcmChunkType.Unknown, - type_id, - }); - logger.warn(`Unknown chunk type ${type_id} at offset ${chunk_start_position}.`); - } - - cursor.seek_start(chunk_start_position + size); - } - - return chunks; -} - -function parse_vertex_chunk( - cursor: Cursor, - chunk_type_id: number, - flags: number, -): NjcmChunkVertex[] { - if (chunk_type_id < 32 || chunk_type_id > 50) { - logger.warn(`Unknown vertex chunk type ${chunk_type_id}.`); - return []; - } - - const bone_weight_status = flags & 0b11; - const calc_continue = (flags & 0x80) !== 0; - - const index = cursor.u16(); - const vertex_count = cursor.u16(); - - const vertices: NjcmChunkVertex[] = []; - - for (let i = 0; i < vertex_count; ++i) { - const vertex: NjcmChunkVertex = { - index: index + i, - position: cursor.vec3_f32(), - bone_weight: 1, - bone_weight_status, - calc_continue, - }; - - if (chunk_type_id === 32) { - // NJD_CV_SH - cursor.seek(4); // Always 1.0 - } else if (chunk_type_id === 33) { - // NJD_CV_VN_SH - cursor.seek(4); // Always 1.0 - vertex.normal = cursor.vec3_f32(); - cursor.seek(4); // Always 0.0 - } else if (35 <= chunk_type_id && chunk_type_id <= 40) { - if (chunk_type_id === 37) { - // NJD_CV_NF - // NinjaFlags32 - vertex.index = index + cursor.u16(); - vertex.bone_weight = cursor.u16() / 255; - } else { - // Skip user flags and material information. - cursor.seek(4); - } - } else if (41 <= chunk_type_id && chunk_type_id <= 47) { - vertex.normal = cursor.vec3_f32(); - - if (chunk_type_id >= 42) { - if (chunk_type_id === 44) { - // NJD_CV_VN_NF - // NinjaFlags32 - vertex.index = index + cursor.u16(); - vertex.bone_weight = cursor.u16() / 255; - } else { - // Skip user flags and material information. - cursor.seek(4); - } - } - } else if (48 <= chunk_type_id && chunk_type_id <= 50) { - // 32-Bit vertex normal in format: reserved(2)|x(10)|y(10)|z(10) - const normal = cursor.u32(); - vertex.normal = { - x: ((normal >> 20) & 0x3ff) / 0x3ff, - y: ((normal >> 10) & 0x3ff) / 0x3ff, - z: (normal & 0x3ff) / 0x3ff, - }; - - if (chunk_type_id >= 49) { - // Skip user flags and material information. - cursor.seek(4); - } - } - - vertices.push(vertex); - } - - return vertices; -} - -function parse_triangle_strip_chunk( - cursor: Cursor, - chunk_type_id: number, - flags: number, -): NjcmTriangleStrip[] { - const render_flags = { - ignore_light: (flags & 0b1) !== 0, - ignore_specular: (flags & 0b10) !== 0, - ignore_ambient: (flags & 0b100) !== 0, - use_alpha: (flags & 0b1000) !== 0, - double_side: (flags & 0b10000) !== 0, - flat_shading: (flags & 0b100000) !== 0, - environment_mapping: (flags & 0b1000000) !== 0, - }; - const user_offset_and_strip_count = cursor.u16(); - const user_flags_size = user_offset_and_strip_count >>> 14; - const strip_count = user_offset_and_strip_count & 0x3fff; - - let has_tex_coords = false; - let has_color = false; - let has_normal = false; - let has_double_tex_coords = false; - - switch (chunk_type_id) { - case 64: - break; - case 65: - case 66: - has_tex_coords = true; - break; - case 67: - has_normal = true; - break; - case 68: - case 69: - has_tex_coords = true; - has_normal = true; - break; - case 70: - has_color = true; - break; - case 71: - case 72: - has_tex_coords = true; - has_color = true; - break; - case 73: - break; - case 74: - case 75: - has_double_tex_coords = true; - break; - default: - throw new Error(`Unexpected chunk type ID: ${chunk_type_id}.`); - } - - const strips: NjcmTriangleStrip[] = []; - - for (let i = 0; i < strip_count; ++i) { - const winding_flag_and_index_count = cursor.i16(); - const clockwise_winding = winding_flag_and_index_count < 1; - const index_count = Math.abs(winding_flag_and_index_count); - - const vertices: NjcmMeshVertex[] = []; - - for (let j = 0; j < index_count; ++j) { - const vertex: NjcmMeshVertex = { - index: cursor.u16(), - }; - vertices.push(vertex); - - if (has_tex_coords) { - vertex.tex_coords = { x: cursor.u16() / 255, y: cursor.u16() / 255 }; - } - - // Ignore ARGB8888 color. - if (has_color) { - cursor.seek(4); - } - - if (has_normal) { - vertex.normal = { - x: cursor.u16() / 255, - y: cursor.u16() / 255, - z: cursor.u16() / 255, - }; - } - - // Ignore double texture coordinates (Ua, Vb, Ua, Vb). - if (has_double_tex_coords) { - cursor.seek(8); - } - - // User flags start at the third vertex because they are per-triangle. - if (j >= 2) { - cursor.seek(2 * user_flags_size); - } - } - - strips.push({ - ...render_flags, - clockwise_winding, - has_tex_coords, - has_normal, - vertices, - }); - } - - return strips; -} diff --git a/src/core/data_formats/parsing/ninja/texture.ts b/src/core/data_formats/parsing/ninja/texture.ts deleted file mode 100644 index 8db15057..00000000 --- a/src/core/data_formats/parsing/ninja/texture.ts +++ /dev/null @@ -1,101 +0,0 @@ -import { Cursor } from "../../block/cursor/Cursor"; -import { parse_iff, parse_iff_headers } from "../iff"; -import { LogManager } from "../../../logging"; -import { Result, ResultBuilder } from "../../../Result"; -import { Severity } from "../../../Severity"; - -const logger = LogManager.get("core/data_formats/parsing/ninja/texture"); - -export type Xvm = { - textures: XvrTexture[]; -}; - -export type XvrTexture = { - id: number; - format: [number, number]; - width: number; - height: number; - size: number; - data: ArrayBuffer; -}; - -type Header = { - texture_count: number; -}; - -const XVMH = 0x484d5658; -const XVRT = 0x54525658; - -export function parse_xvr(cursor: Cursor): XvrTexture { - const format_1 = cursor.u32(); - const format_2 = cursor.u32(); - const id = cursor.u32(); - const width = cursor.u16(); - const height = cursor.u16(); - const size = cursor.u32(); - cursor.seek(36); - const data = cursor.array_buffer(size); - return { - id, - format: [format_1, format_2], - width, - height, - size, - data, - }; -} - -export function is_xvm(cursor: Cursor): boolean { - const iff_result = parse_iff_headers(cursor, true); - cursor.seek_start(0); - - return ( - iff_result.success && - iff_result.value.find(chunk => chunk.type === XVMH || chunk.type === XVRT) != undefined - ); -} - -export function parse_xvm(cursor: Cursor): Result { - const iff_result = parse_iff(cursor); - - if (!iff_result.success) { - return iff_result; - } - - const result = new ResultBuilder(logger); - result.add_result(iff_result); - const chunks = iff_result.value; - const header_chunk = chunks.find(chunk => chunk.type === XVMH); - const header = header_chunk && parse_header(header_chunk.data); - - const textures = chunks - .filter(chunk => chunk.type === XVRT) - .map(chunk => parse_xvr(chunk.data)); - - if (!header && textures.length === 0) { - result.add_problem( - Severity.Error, - "Corrupted XVM file.", - "No header and no XVRT chunks found.", - ); - - return result.failure(); - } - - if (header && header.texture_count !== textures.length) { - result.add_problem( - Severity.Warning, - "Corrupted XVM file.", - `Found ${textures.length} textures instead of ${header.texture_count} as defined in the header.`, - ); - } - - return result.success({ textures }); -} - -function parse_header(cursor: Cursor): Header { - const texture_count = cursor.u16(); - return { - texture_count, - }; -} diff --git a/src/core/data_formats/parsing/ninja/xj.ts b/src/core/data_formats/parsing/ninja/xj.ts deleted file mode 100644 index 7c775666..00000000 --- a/src/core/data_formats/parsing/ninja/xj.ts +++ /dev/null @@ -1,196 +0,0 @@ -import { Cursor } from "../../block/cursor/Cursor"; -import { Vec2, Vec3 } from "../../vector"; -import { LogManager } from "../../../logging"; - -const logger = LogManager.get("core/data_formats/parsing/ninja/xj"); - -// TODO: -// - vertex colors -// - bump maps - -export type XjModel = { - type: "xj"; - vertices: XjVertex[]; - meshes: XjMesh[]; - collision_sphere_position: Vec3; - collision_sphere_radius: number; -}; - -export type XjVertex = { - position: Vec3; - normal?: Vec3; - uv?: Vec2; -}; - -export type XjMesh = { - material_properties: XjMaterialProperties; - indices: number[]; -}; - -export type XjMaterialProperties = { - src_alpha?: number; - dst_alpha?: number; - texture_id?: number; - diffuse_r?: number; - diffuse_g?: number; - diffuse_b?: number; - diffuse_a?: number; -}; - -export function parse_xj_model(cursor: Cursor): XjModel { - cursor.seek(4); // Flags according to QEdit, seemingly always 0. - const vertex_info_table_offset = cursor.u32(); - const vertex_info_count = cursor.u32(); - const triangle_strip_table_offset = cursor.u32(); - const triangle_strip_count = cursor.u32(); - const transparent_triangle_strip_table_offset = cursor.u32(); - const transparent_triangle_strip_count = cursor.u32(); - const collision_sphere_position = cursor.vec3_f32(); - const collision_sphere_radius = cursor.f32(); - - const model: XjModel = { - type: "xj", - vertices: [], - meshes: [], - collision_sphere_position, - collision_sphere_radius, - }; - - if (vertex_info_count >= 1) { - // TODO: parse all vertex info tables. - model.vertices.push(...parse_vertex_info_table(cursor, vertex_info_table_offset)); - } - - model.meshes.push( - ...parse_triangle_strip_table(cursor, triangle_strip_table_offset, triangle_strip_count), - ); - - model.meshes.push( - ...parse_triangle_strip_table( - cursor, - transparent_triangle_strip_table_offset, - transparent_triangle_strip_count, - ), - ); - - return model; -} - -function parse_vertex_info_table(cursor: Cursor, vertex_info_table_offset: number): XjVertex[] { - cursor.seek_start(vertex_info_table_offset); - const vertex_type = cursor.u16(); - cursor.seek(2); // Flags? - const vertex_table_offset = cursor.u32(); - const vertex_size = cursor.u32(); - const vertex_count = cursor.u32(); - const vertices: XjVertex[] = []; - - for (let i = 0; i < vertex_count; ++i) { - cursor.seek_start(vertex_table_offset + i * vertex_size); - - const position = cursor.vec3_f32(); - let normal: Vec3 | undefined; - let uv: Vec2 | undefined; - - switch (vertex_type) { - case 2: - normal = cursor.vec3_f32(); - break; - case 3: - normal = cursor.vec3_f32(); - uv = cursor.vec2_f32(); - break; - case 4: - // Skip 4 bytes. - break; - case 5: - cursor.seek(4); - uv = cursor.vec2_f32(); - break; - case 6: - normal = cursor.vec3_f32(); - // Skip 4 bytes. - break; - case 7: - normal = cursor.vec3_f32(); - uv = cursor.vec2_f32(); - break; - default: - logger.warn(`Unknown vertex type ${vertex_type} with size ${vertex_size}.`); - break; - } - - vertices.push({ - position, - normal, - uv, - }); - } - - return vertices; -} - -function parse_triangle_strip_table( - cursor: Cursor, - triangle_strip_list_offset: number, - triangle_strip_count: number, -): XjMesh[] { - const strips: XjMesh[] = []; - - for (let i = 0; i < triangle_strip_count; ++i) { - cursor.seek_start(triangle_strip_list_offset + i * 20); - - const material_table_offset = cursor.u32(); - const material_table_size = cursor.u32(); - const index_list_offset = cursor.u32(); - const index_count = cursor.u32(); - - const material_properties = parse_triangle_strip_material_properties( - cursor, - material_table_offset, - material_table_size, - ); - - cursor.seek_start(index_list_offset); - const indices = cursor.u16_array(index_count); - - strips.push({ - material_properties, - indices, - }); - } - - return strips; -} - -function parse_triangle_strip_material_properties( - cursor: Cursor, - offset: number, - size: number, -): XjMaterialProperties { - const props: XjMaterialProperties = {}; - - for (let i = 0; i < size; ++i) { - cursor.seek_start(offset + i * 16); - - const type = cursor.u32(); - - switch (type) { - case 2: - props.src_alpha = cursor.u32(); - props.dst_alpha = cursor.u32(); - break; - case 3: - props.texture_id = cursor.u32(); - break; - case 5: - props.diffuse_r = cursor.u8(); - props.diffuse_g = cursor.u8(); - props.diffuse_b = cursor.u8(); - props.diffuse_a = cursor.u8(); - break; - } - } - - return props; -} diff --git a/src/core/data_formats/parsing/prc.ts b/src/core/data_formats/parsing/prc.ts deleted file mode 100644 index b2b7f34c..00000000 --- a/src/core/data_formats/parsing/prc.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { prs_decompress } from "../compression/prs/decompress"; -import { Cursor } from "../block/cursor/Cursor"; -import { prc_decrypt } from "../encryption/prc"; -import { LogManager } from "../../logging"; -import { Result, ResultBuilder } from "../../Result"; -import { Severity } from "../../Severity"; - -const logger = LogManager.get("core/data_formats/parsing/prc"); - -/** - * Decrypts and decompresses a .prc file. - */ -export function parse_prc(cursor: Cursor): Result { - const rb = new ResultBuilder(logger); - // Unencrypted, decompressed size. - const size = cursor.u32(); - const key = cursor.u32(); - const out = prs_decompress(prc_decrypt(key, cursor)); - rb.add_result(out); - - if (!out.success) { - return rb.failure(); - } - - if (out.value.size !== size) { - rb.add_problem( - Severity.Warning, - `Size of decrypted, decompressed file was ${out.value.size} instead of expected ${size}.`, - ); - } - - return rb.success(out.value); -} diff --git a/src/core/data_formats/parsing/quest/BinFormat.ts b/src/core/data_formats/parsing/quest/BinFormat.ts deleted file mode 100644 index f316a854..00000000 --- a/src/core/data_formats/parsing/quest/BinFormat.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { Version } from "./Version"; - -export enum BinFormat { - /** - * Dreamcast/GameCube - */ - DC_GC, - /** - * Desktop - */ - PC, - /** - * BlueBurst - */ - BB, -} - -export function version_to_bin_format(version: Version): BinFormat { - switch (version) { - case Version.DC: - case Version.GC: - return BinFormat.DC_GC; - case Version.PC: - return BinFormat.PC; - case Version.BB: - return BinFormat.BB; - } -} diff --git a/src/core/data_formats/parsing/quest/Episode.ts b/src/core/data_formats/parsing/quest/Episode.ts deleted file mode 100644 index 06fb5a5b..00000000 --- a/src/core/data_formats/parsing/quest/Episode.ts +++ /dev/null @@ -1,13 +0,0 @@ -export enum Episode { - I = 1, - II = 2, - IV = 4, -} - -export const EPISODES = [Episode.I, Episode.II, Episode.IV]; - -export function check_episode(episode: Episode): void { - if (Episode[episode] == undefined) { - throw new Error(`Invalid episode ${episode}.`); - } -} diff --git a/src/core/data_formats/parsing/quest/Quest.ts b/src/core/data_formats/parsing/quest/Quest.ts deleted file mode 100644 index 9a41ce9e..00000000 --- a/src/core/data_formats/parsing/quest/Quest.ts +++ /dev/null @@ -1,122 +0,0 @@ -import { npc_data, NpcType, NpcTypeData } from "./npc_types"; -import { object_data, ObjectType, ObjectTypeData } from "./object_types"; -import { DatEvent, DatUnknown, NPC_BYTE_SIZE } from "./dat"; -import { Episode } from "./Episode"; -import { Segment } from "../../asm/instructions"; -import { get_npc_type, QuestNpc } from "./QuestNpc"; -import { get_object_type, QuestObject } from "./QuestObject"; -import { EntityProp, EntityPropType } from "./properties"; -import { angle_to_rad, rad_to_angle } from "../ninja/angle"; -import { assert, require_finite, require_integer } from "../../../util"; - -export type Quest = { - id: number; - language: number; - name: string; - short_description: string; - long_description: string; - episode: Episode; - readonly objects: readonly QuestObject[]; - readonly npcs: readonly QuestNpc[]; - readonly events: QuestEvent[]; - /** - * (Partial) raw DAT data that can't be parsed yet by Phantasmal. - */ - readonly dat_unknowns: DatUnknown[]; - readonly object_code: readonly Segment[]; - readonly shop_items: number[]; - readonly map_designations: Map; -}; - -export type EntityTypeData = NpcTypeData | ObjectTypeData; - -export type EntityType = NpcType | ObjectType; - -export type QuestEntity = QuestNpc | QuestObject; - -export type QuestEvent = DatEvent; - -export function entity_type_to_string(type: EntityType): string { - return (NpcType as any)[type] ?? (ObjectType as any)[type]; -} - -export function is_npc_type(entity_type: EntityType): entity_type is NpcType { - return NpcType[entity_type] != undefined; -} - -export function is_object_type(entity_type: EntityType): entity_type is ObjectType { - return ObjectType[entity_type] != undefined; -} - -export function entity_data(type: EntityType): EntityTypeData { - return npc_data(type as NpcType) ?? object_data(type as ObjectType); -} - -export function get_entity_type(entity: QuestEntity): EntityType { - return entity.data.byteLength === NPC_BYTE_SIZE - ? get_npc_type(entity as QuestNpc) - : get_object_type(entity as QuestObject); -} - -export function get_entity_prop_value(entity: QuestEntity, prop: EntityProp): number { - switch (prop.type) { - case EntityPropType.U8: - return entity.view.getUint8(prop.offset); - case EntityPropType.U16: - return entity.view.getUint16(prop.offset, true); - case EntityPropType.U32: - return entity.view.getUint32(prop.offset, true); - case EntityPropType.I8: - return entity.view.getInt8(prop.offset); - case EntityPropType.I16: - return entity.view.getInt16(prop.offset, true); - case EntityPropType.I32: - return entity.view.getInt32(prop.offset, true); - case EntityPropType.F32: - return entity.view.getFloat32(prop.offset, true); - case EntityPropType.Angle: - return angle_to_rad(entity.view.getInt32(prop.offset, true)); - } -} - -export function set_entity_prop_value(entity: QuestEntity, prop: EntityProp, value: number): void { - switch (prop.type) { - case EntityPropType.U8: - require_in_bounds(value, 0, 0xff); - entity.view.setUint8(prop.offset, value); - break; - case EntityPropType.U16: - require_in_bounds(value, 0, 0xffff); - entity.view.setUint16(prop.offset, value, true); - break; - case EntityPropType.U32: - require_in_bounds(value, 0, 0xffffffff); - entity.view.setUint32(prop.offset, value, true); - break; - case EntityPropType.I8: - require_in_bounds(value, -0x80, 0x7f); - entity.view.setInt8(prop.offset, value); - break; - case EntityPropType.I16: - require_in_bounds(value, -0x8000, 0x7fff); - entity.view.setInt16(prop.offset, value, true); - break; - case EntityPropType.I32: - require_in_bounds(value, -0x80000000, 0x7fffffff); - entity.view.setInt32(prop.offset, value, true); - break; - case EntityPropType.F32: - entity.view.setFloat32(prop.offset, value, true); - break; - case EntityPropType.Angle: - require_finite(value, "value"); - entity.view.setInt32(prop.offset, rad_to_angle(value), true); - break; - } -} - -function require_in_bounds(value: unknown, min: number, max: number): asserts value is number { - require_integer(value, "value"); - assert(value >= min, () => `value should be greater than or equal to ${min} but was ${value}.`); - assert(value <= max, () => `value should be less than or equal to ${max} but was ${value}.`); -} diff --git a/src/core/data_formats/parsing/quest/QuestNpc.ts b/src/core/data_formats/parsing/quest/QuestNpc.ts deleted file mode 100644 index 73502af0..00000000 --- a/src/core/data_formats/parsing/quest/QuestNpc.ts +++ /dev/null @@ -1,495 +0,0 @@ -import { npc_data, NpcType } from "./npc_types"; -import { Vec3 } from "../../vector"; -import { Episode } from "./Episode"; -import { NPC_BYTE_SIZE } from "./dat"; -import { assert } from "../../../util"; -import { angle_to_rad, rad_to_angle } from "../ninja/angle"; -import { set_npc_default_data } from "./set_npc_default_data"; - -export type QuestNpc = { - episode: Episode; - area_id: number; - readonly data: ArrayBuffer; - readonly view: DataView; -}; - -export function create_quest_npc( - type: NpcType, - episode: Episode, - area_id: number, - wave: number, -): QuestNpc { - const data = new ArrayBuffer(NPC_BYTE_SIZE); - const npc: QuestNpc = { - episode, - area_id, - data, - view: new DataView(data), - }; - - set_npc_default_data(type, npc.view); - - set_npc_type(npc, type); - // Set area_id after type, because you might want to overwrite the area_id that type has - // determined. - npc.area_id = area_id; - set_npc_wave(npc, wave); - set_npc_wave_2(npc, wave); - - return npc; -} - -export function data_to_quest_npc(episode: Episode, area_id: number, data: ArrayBuffer): QuestNpc { - assert( - data.byteLength === NPC_BYTE_SIZE, - () => `Data byteLength should be ${NPC_BYTE_SIZE} but was ${data.byteLength}.`, - ); - - return { - episode, - area_id, - data, - view: new DataView(data), - }; -} - -// -// Simple properties that directly map to a part of the data block. -// - -export function get_npc_type_id(npc: QuestNpc): number { - return npc.view.getUint16(0, true); -} - -export function set_npc_type_id(npc: QuestNpc, type_id: number): void { - npc.view.setUint16(0, type_id, true); -} - -export function get_npc_section_id(npc: QuestNpc): number { - return npc.view.getUint16(12, true); -} - -export function set_npc_section_id(npc: QuestNpc, section_id: number): void { - npc.view.setUint16(12, section_id, true); -} - -export function get_npc_wave(npc: QuestNpc): number { - return npc.view.getUint16(14, true); -} - -export function set_npc_wave(npc: QuestNpc, wave: number): void { - npc.view.setUint16(14, wave, true); -} - -export function get_npc_wave_2(npc: QuestNpc): number { - return npc.view.getUint32(16, true); -} - -export function set_npc_wave_2(npc: QuestNpc, wave_2: number): void { - npc.view.setUint32(16, wave_2, true); -} - -/** - * Section-relative position. - */ -export function get_npc_position(npc: QuestNpc): Vec3 { - return { - x: npc.view.getFloat32(20, true), - y: npc.view.getFloat32(24, true), - z: npc.view.getFloat32(28, true), - }; -} - -export function set_npc_position(npc: QuestNpc, position: Vec3): void { - npc.view.setFloat32(20, position.x, true); - npc.view.setFloat32(24, position.y, true); - npc.view.setFloat32(28, position.z, true); -} - -export function get_npc_rotation(npc: QuestNpc): Vec3 { - return { - x: angle_to_rad(npc.view.getInt32(32, true)), - y: angle_to_rad(npc.view.getInt32(36, true)), - z: angle_to_rad(npc.view.getInt32(40, true)), - }; -} - -export function set_npc_rotation(npc: QuestNpc, rotation: Vec3): void { - npc.view.setInt32(32, rad_to_angle(rotation.x), true); - npc.view.setInt32(36, rad_to_angle(rotation.y), true); - npc.view.setInt32(40, rad_to_angle(rotation.z), true); -} - -/** - * Seemingly 3 floats, not sure what they represent. - * The y component is used to help determine what the NpcType is. - */ -export function get_npc_scale(npc: QuestNpc): Vec3 { - return { - x: npc.view.getFloat32(44, true), - y: npc.view.getFloat32(48, true), - z: npc.view.getFloat32(52, true), - }; -} - -export function set_npc_scale(npc: QuestNpc, scale: Vec3): void { - npc.view.setFloat32(44, scale.x, true); - npc.view.setFloat32(48, scale.y, true); - npc.view.setFloat32(52, scale.z, true); -} - -export function get_npc_id(npc: QuestNpc): number { - return npc.view.getFloat32(56, true); -} - -/** - * Only seems to be valid for non-enemies. - */ -export function get_npc_script_label(npc: QuestNpc): number { - return Math.round(npc.view.getFloat32(60, true)); -} - -/** - * Only seems to be valid for non-enemies. - */ -export function set_npc_script_label(npc: QuestNpc, script_label: number): void { - npc.view.setFloat32(60, script_label, true); -} - -export function get_npc_skin(npc: QuestNpc): number { - return npc.view.getUint32(64, true); -} - -export function set_npc_skin(npc: QuestNpc, skin: number): void { - npc.view.setUint32(64, skin, true); -} - -// -// Complex properties that use multiple parts of the data block and possible other properties. -// - -// TODO: detect Mothmant, St. Rappy, Hallo Rappy, Egg Rappy, Death Gunner, Bulk and Recon. -export function get_npc_type(npc: QuestNpc): NpcType { - const episode = npc.episode; - const type_id = get_npc_type_id(npc); - const special = is_npc_special(npc); - const skin = get_npc_skin(npc); - const area_id = npc.area_id; - - switch (`${type_id}, ${skin % 3}, ${episode}`) { - case `${0x044}, 0, 1`: - return NpcType.Booma; - case `${0x044}, 1, 1`: - return NpcType.Gobooma; - case `${0x044}, 2, 1`: - return NpcType.Gigobooma; - - case `${0x063}, 0, 1`: - return NpcType.EvilShark; - case `${0x063}, 1, 1`: - return NpcType.PalShark; - case `${0x063}, 2, 1`: - return NpcType.GuilShark; - - case `${0x0a6}, 0, 1`: - return NpcType.Dimenian; - case `${0x0a6}, 0, 2`: - return NpcType.Dimenian2; - case `${0x0a6}, 1, 1`: - return NpcType.LaDimenian; - case `${0x0a6}, 1, 2`: - return NpcType.LaDimenian2; - case `${0x0a6}, 2, 1`: - return NpcType.SoDimenian; - case `${0x0a6}, 2, 2`: - return NpcType.SoDimenian2; - - case `${0x0d6}, 0, 2`: - return NpcType.Mericarol; - case `${0x0d6}, 1, 2`: - return NpcType.Mericus; - case `${0x0d6}, 2, 2`: - return NpcType.Merikle; - - case `${0x115}, 0, 4`: - return NpcType.Boota; - case `${0x115}, 1, 4`: - return NpcType.ZeBoota; - case `${0x115}, 2, 4`: - return NpcType.BaBoota; - case `${0x117}, 0, 4`: - return NpcType.Goran; - case `${0x117}, 1, 4`: - return NpcType.PyroGoran; - case `${0x117}, 2, 4`: - return NpcType.GoranDetonator; - } - - switch (`${type_id}, ${skin % 2}, ${episode}`) { - case `${0x040}, 0, 1`: - return NpcType.Hildebear; - case `${0x040}, 0, 2`: - return NpcType.Hildebear2; - case `${0x040}, 1, 1`: - return NpcType.Hildeblue; - case `${0x040}, 1, 2`: - return NpcType.Hildeblue2; - case `${0x041}, 0, 1`: - return NpcType.RagRappy; - case `${0x041}, 0, 2`: - return NpcType.RagRappy2; - case `${0x041}, 0, 4`: - return NpcType.SandRappy; - case `${0x041}, 1, 1`: - return NpcType.AlRappy; - case `${0x041}, 1, 2`: - return NpcType.LoveRappy; - case `${0x041}, 1, 4`: - return NpcType.DelRappy; - - case `${0x080}, 0, 1`: - return NpcType.Dubchic; - case `${0x080}, 0, 2`: - return NpcType.Dubchic2; - case `${0x080}, 1, 1`: - return NpcType.Gilchic; - case `${0x080}, 1, 2`: - return NpcType.Gilchic2; - - case `${0x0d4}, 0, 2`: - return NpcType.SinowBerill; - case `${0x0d4}, 1, 2`: - return NpcType.SinowSpigell; - case `${0x0d5}, 0, 2`: - return NpcType.Merillia; - case `${0x0d5}, 1, 2`: - return NpcType.Meriltas; - case `${0x0d7}, 0, 2`: - return NpcType.UlGibbon; - case `${0x0d7}, 1, 2`: - return NpcType.ZolGibbon; - - case `${0x0dd}, 0, 2`: - return NpcType.Dolmolm; - case `${0x0dd}, 1, 2`: - return NpcType.Dolmdarl; - case `${0x0e0}, 0, 2`: - return area_id > 15 ? NpcType.Epsilon : NpcType.SinowZoa; - case `${0x0e0}, 1, 2`: - return area_id > 15 ? NpcType.Epsilon : NpcType.SinowZele; - - case `${0x112}, 0, 4`: - return NpcType.MerissaA; - case `${0x112}, 1, 4`: - return NpcType.MerissaAA; - case `${0x114}, 0, 4`: - return NpcType.Zu; - case `${0x114}, 1, 4`: - return NpcType.Pazuzu; - case `${0x116}, 0, 4`: - return NpcType.Dorphon; - case `${0x116}, 1, 4`: - return NpcType.DorphonEclair; - case `${0x119}, 0, 4`: - return special ? NpcType.Kondrieu : NpcType.SaintMilion; - case `${0x119}, 1, 4`: - return special ? NpcType.Kondrieu : NpcType.Shambertin; - } - - switch (`${type_id}, ${episode}`) { - case `${0x042}, 1`: - return NpcType.Monest; - case `${0x042}, 2`: - return NpcType.Monest2; - case `${0x043}, 1`: - return special ? NpcType.BarbarousWolf : NpcType.SavageWolf; - case `${0x043}, 2`: - return special ? NpcType.BarbarousWolf2 : NpcType.SavageWolf2; - - case `${0x060}, 1`: - return NpcType.GrassAssassin; - case `${0x060}, 2`: - return NpcType.GrassAssassin2; - case `${0x061}, 1`: - return area_id > 15 ? NpcType.DelLily : special ? NpcType.NarLily : NpcType.PoisonLily; - case `${0x061}, 2`: - return area_id > 15 - ? NpcType.DelLily - : special - ? NpcType.NarLily2 - : NpcType.PoisonLily2; - case `${0x062}, 1`: - return NpcType.NanoDragon; - case `${0x064}, 1`: - return special ? NpcType.PouillySlime : NpcType.PofuillySlime; - case `${0x065}, 1`: - return NpcType.PanArms; - case `${0x065}, 2`: - return NpcType.PanArms2; - - case `${0x081}, 1`: - return NpcType.Garanz; - case `${0x081}, 2`: - return NpcType.Garanz2; - case `${0x082}, 1`: - return special ? NpcType.SinowGold : NpcType.SinowBeat; - case `${0x083}, 1`: - return NpcType.Canadine; - case `${0x084}, 1`: - return NpcType.Canane; - case `${0x085}, 1`: - return NpcType.Dubswitch; - case `${0x085}, 2`: - return NpcType.Dubswitch2; - - case `${0x0a0}, 1`: - return NpcType.Delsaber; - case `${0x0a0}, 2`: - return NpcType.Delsaber2; - case `${0x0a1}, 1`: - return NpcType.ChaosSorcerer; - case `${0x0a1}, 2`: - return NpcType.ChaosSorcerer2; - case `${0x0a2}, 1`: - return NpcType.DarkGunner; - case `${0x0a4}, 1`: - return NpcType.ChaosBringer; - case `${0x0a5}, 1`: - return NpcType.DarkBelra; - case `${0x0a5}, 2`: - return NpcType.DarkBelra2; - case `${0x0a7}, 1`: - return NpcType.Bulclaw; - case `${0x0a8}, 1`: - return NpcType.Claw; - - case `${0x0c0}, 1`: - return NpcType.Dragon; - case `${0x0c0}, 2`: - return NpcType.GalGryphon; - case `${0x0c1}, 1`: - return NpcType.DeRolLe; - case `${0x0c2}, 1`: - return NpcType.VolOptPart1; - case `${0x0c5}, 1`: - return NpcType.VolOptPart2; - case `${0x0c8}, 1`: - return NpcType.DarkFalz; - case `${0x0ca}, 2`: - return NpcType.OlgaFlow; - case `${0x0cb}, 2`: - return NpcType.BarbaRay; - case `${0x0cc}, 2`: - return NpcType.GolDragon; - - case `${0x0d8}, 2`: - return NpcType.Gibbles; - case `${0x0d9}, 2`: - return NpcType.Gee; - case `${0x0da}, 2`: - return NpcType.GiGue; - - case `${0x0db}, 2`: - return NpcType.Deldepth; - case `${0x0dc}, 2`: - return NpcType.Delbiter; - case `${0x0de}, 2`: - return NpcType.Morfos; - case `${0x0df}, 2`: - return NpcType.Recobox; - case `${0x0e1}, 2`: - return NpcType.IllGill; - - case `${0x110}, 4`: - return NpcType.Astark; - case `${0x111}, 4`: - return special ? NpcType.Yowie : NpcType.SatelliteLizard; - case `${0x113}, 4`: - return NpcType.Girtablulu; - } - - switch (type_id) { - case 0x004: - return NpcType.FemaleFat; - case 0x005: - return NpcType.FemaleMacho; - case 0x007: - return NpcType.FemaleTall; - case 0x00a: - return NpcType.MaleDwarf; - case 0x00b: - return NpcType.MaleFat; - case 0x00c: - return NpcType.MaleMacho; - case 0x00d: - return NpcType.MaleOld; - case 0x019: - return NpcType.BlueSoldier; - case 0x01a: - return NpcType.RedSoldier; - case 0x01b: - return NpcType.Principal; - case 0x01c: - return NpcType.Tekker; - case 0x01d: - return NpcType.GuildLady; - case 0x01e: - return NpcType.Scientist; - case 0x01f: - return NpcType.Nurse; - case 0x020: - return NpcType.Irene; - case 0x0f1: - return NpcType.ItemShop; - case 0x0fe: - return NpcType.Nurse2; - } - - return NpcType.Unknown; -} - -export function set_npc_type(npc: QuestNpc, type: NpcType): void { - const data = npc_data(type); - - if (data.episode != undefined) { - npc.episode = data.episode; - } - - set_npc_type_id(npc, data.type_id ?? 0); - - switch (type) { - case NpcType.SaintMilion: - case NpcType.SavageWolf: - case NpcType.BarbarousWolf: - case NpcType.PoisonLily: - case NpcType.NarLily: - case NpcType.PofuillySlime: - case NpcType.PouillySlime: - case NpcType.PoisonLily2: - case NpcType.NarLily2: - case NpcType.SavageWolf2: - case NpcType.BarbarousWolf2: - case NpcType.Kondrieu: - case NpcType.Shambertin: - case NpcType.SinowBeat: - case NpcType.SinowGold: - case NpcType.SatelliteLizard: - case NpcType.Yowie: - set_npc_special(npc, data.special ?? false); - break; - } - - set_npc_skin(npc, data.skin ?? 0); - - if (data.area_ids.length > 0 && !data.area_ids.includes(npc.area_id)) { - npc.area_id = data.area_ids[0]; - } -} - -function is_npc_special(npc: QuestNpc): boolean { - return Math.round(npc.view.getFloat32(48, true)) === 1; -} - -function set_npc_special(npc: QuestNpc, special: boolean): void { - npc.view.setFloat32(48, special ? 1 : 0, true); -} diff --git a/src/core/data_formats/parsing/quest/QuestObject.ts b/src/core/data_formats/parsing/quest/QuestObject.ts deleted file mode 100644 index b3217cda..00000000 --- a/src/core/data_formats/parsing/quest/QuestObject.ts +++ /dev/null @@ -1,168 +0,0 @@ -import { id_to_object_type, object_data, ObjectType } from "./object_types"; -import { Vec3 } from "../../vector"; -import { OBJECT_BYTE_SIZE } from "./dat"; -import { assert } from "../../../util"; -import { angle_to_rad, rad_to_angle } from "../ninja/angle"; -import { set_object_default_data } from "./set_object_default_data"; - -export type QuestObject = { - area_id: number; - readonly data: ArrayBuffer; - readonly view: DataView; -}; - -export function create_quest_object(type: ObjectType, area_id: number): QuestObject { - const data = new ArrayBuffer(OBJECT_BYTE_SIZE); - const obj: QuestObject = { - area_id, - data, - view: new DataView(data), - }; - - set_object_default_data(type, obj.view); - - set_object_type(obj, type); - - return obj; -} - -export function data_to_quest_object(area_id: number, data: ArrayBuffer): QuestObject { - assert( - data.byteLength === OBJECT_BYTE_SIZE, - () => `Data byteLength should be ${OBJECT_BYTE_SIZE} but was ${data.byteLength}.`, - ); - - return { - area_id, - data, - view: new DataView(data), - }; -} - -// -// Simple properties that directly map to a part of the data block. -// - -export function get_object_type_id(object: QuestObject): number { - return object.view.getUint16(0, true); -} - -export function set_object_type_id(object: QuestObject, type_id: number): void { - object.view.setUint16(0, type_id, true); -} - -export function get_object_id(object: QuestObject): number { - return object.view.getUint16(8, true); -} - -export function get_object_group_id(object: QuestObject): number { - return object.view.getUint16(10, true); -} - -export function get_object_section_id(object: QuestObject): number { - return object.view.getUint16(12, true); -} - -export function set_object_section_id(object: QuestObject, section_id: number): void { - object.view.setUint16(12, section_id, true); -} - -/** - * Section-relative position. - */ -export function get_object_position(object: QuestObject): Vec3 { - return { - x: object.view.getFloat32(16, true), - y: object.view.getFloat32(20, true), - z: object.view.getFloat32(24, true), - }; -} - -export function set_object_position(object: QuestObject, position: Vec3): void { - object.view.setFloat32(16, position.x, true); - object.view.setFloat32(20, position.y, true); - object.view.setFloat32(24, position.z, true); -} - -export function get_object_rotation(object: QuestObject): Vec3 { - return { - x: angle_to_rad(object.view.getInt32(28, true)), - y: angle_to_rad(object.view.getInt32(32, true)), - z: angle_to_rad(object.view.getInt32(36, true)), - }; -} - -export function set_object_rotation(object: QuestObject, rotation: Vec3): void { - object.view.setInt32(28, rad_to_angle(rotation.x), true); - object.view.setInt32(32, rad_to_angle(rotation.y), true); - object.view.setInt32(36, rad_to_angle(rotation.z), true); -} - -// -// Complex properties that use multiple parts of the data block and possibly other properties. -// - -export function get_object_type(object: QuestObject): ObjectType { - return id_to_object_type(get_object_type_id(object)); -} - -export function set_object_type(object: QuestObject, type: ObjectType): void { - set_object_type_id(object, object_data(type).type_id ?? 0); -} - -export function get_object_script_label(object: QuestObject): number | undefined { - switch (get_object_type(object)) { - case ObjectType.ScriptCollision: - case ObjectType.ForestConsole: - case ObjectType.TalkLinkToSupport: - return object.view.getUint32(52, true); - - case ObjectType.RicoMessagePod: - return object.view.getUint32(56, true); - - default: - return undefined; - } -} - -export function get_object_script_label_2(object: QuestObject): number | undefined { - switch (get_object_type(object)) { - case ObjectType.RicoMessagePod: - return object.view.getUint32(60, true); - - default: - return undefined; - } -} - -export function get_object_model(object: QuestObject): number | undefined { - switch (get_object_type(object)) { - case ObjectType.Probe: - return Math.round(object.view.getFloat32(40, true)); - - case ObjectType.Saw: - case ObjectType.LaserDetect: - return Math.round(object.view.getFloat32(48, true)); - - case ObjectType.Sonic: - case ObjectType.LittleCryotube: - case ObjectType.Cactus: - case ObjectType.BigBrownRock: - case ObjectType.BigBlackRocks: - case ObjectType.BeeHive: - return object.view.getUint32(52, true); - - case ObjectType.ForestConsole: - return object.view.getUint32(56, true); - - case ObjectType.PrincipalWarp: - case ObjectType.LaserFence: - case ObjectType.LaserSquareFence: - case ObjectType.LaserFenceEx: - case ObjectType.LaserSquareFenceEx: - return object.view.getUint32(60, true); - - default: - return undefined; - } -} diff --git a/src/core/data_formats/parsing/quest/Version.ts b/src/core/data_formats/parsing/quest/Version.ts deleted file mode 100644 index 0392099e..00000000 --- a/src/core/data_formats/parsing/quest/Version.ts +++ /dev/null @@ -1,20 +0,0 @@ -export enum Version { - /** - * Dreamcast - */ - DC, - /** - * GameCube - */ - GC, - /** - * Desktop - */ - PC, - /** - * BlueBurst - */ - BB, -} - -export const VERSIONS: Version[] = [Version.DC, Version.GC, Version.PC, Version.BB]; diff --git a/src/core/data_formats/parsing/quest/areas.ts b/src/core/data_formats/parsing/quest/areas.ts deleted file mode 100644 index e7bcc1b1..00000000 --- a/src/core/data_formats/parsing/quest/areas.ts +++ /dev/null @@ -1,103 +0,0 @@ -import { Episode } from "./Episode"; - -export type Area = { - readonly id: number; - readonly name: string; - readonly order: number; - readonly area_variants: AreaVariant[]; -}; - -export type AreaVariant = { - readonly id: number; - readonly area: Area; -}; - -export function get_areas_for_episode(episode: Episode): Area[] { - return AREAS[episode]; -} - -export function get_area_variant( - episode: Episode, - area_id: number, - variant_id: number, -): AreaVariant { - const area = AREAS[episode].find(area => area.id === area_id); - if (!area) throw new Error(`No area with id ${area_id}.`); - - const variant = area.area_variants[variant_id]; - if (!variant) throw new Error(`No area variant with id ${variant_id}.`); - - return variant; -} - -const AREAS: { [episode: number]: Area[] } = []; - -function create_area(id: number, name: string, order: number, variants: number): Area { - const area: Area = { id, name, order, area_variants: [] }; - - for (let id = 0; id < variants; id++) { - area.area_variants.push(Object.freeze({ id, area })); - } - - return Object.freeze(area); -} - -// The IDs match the PSO IDs for areas. -let order = 0; -AREAS[Episode.I] = [ - create_area(0, "Pioneer II", order++, 1), - create_area(1, "Forest 1", order++, 1), - create_area(2, "Forest 2", order++, 1), - create_area(11, "Under the Dome", order++, 1), - create_area(3, "Cave 1", order++, 6), - create_area(4, "Cave 2", order++, 5), - create_area(5, "Cave 3", order++, 6), - create_area(12, "Underground Channel", order++, 1), - create_area(6, "Mine 1", order++, 6), - create_area(7, "Mine 2", order++, 6), - create_area(13, "Monitor Room", order++, 1), - create_area(8, "Ruins 1", order++, 5), - create_area(9, "Ruins 2", order++, 5), - create_area(10, "Ruins 3", order++, 5), - create_area(14, "Dark Falz", order++, 1), - // TODO: - // create_area(15, "BA Ruins", order++, 3), - // create_area(16, "BA Spaceship", order++, 3), - // create_area(17, "Lobby", order++, 15), -]; -order = 0; -AREAS[Episode.II] = [ - create_area(0, "Lab", order++, 1), - create_area(1, "VR Temple Alpha", order++, 3), - create_area(2, "VR Temple Beta", order++, 3), - create_area(14, "VR Temple Final", order++, 1), - create_area(3, "VR Spaceship Alpha", order++, 3), - create_area(4, "VR Spaceship Beta", order++, 3), - create_area(15, "VR Spaceship Final", order++, 1), - create_area(5, "Central Control Area", order++, 1), - create_area(6, "Jungle Area East", order++, 1), - create_area(7, "Jungle Area North", order++, 1), - create_area(8, "Mountain Area", order++, 3), - create_area(9, "Seaside Area", order++, 1), - create_area(12, "Cliffs of Gal Da Val", order++, 1), - create_area(10, "Seabed Upper Levels", order++, 3), - create_area(11, "Seabed Lower Levels", order++, 3), - create_area(13, "Test Subject Disposal Area", order++, 1), - create_area(16, "Seaside Area at Night", order++, 2), - create_area(17, "Control Tower", order++, 5), -]; -order = 0; -AREAS[Episode.IV] = [ - create_area(0, "Pioneer II (Ep. IV)", order++, 1), - create_area(1, "Crater Route 1", order++, 1), - create_area(2, "Crater Route 2", order++, 1), - create_area(3, "Crater Route 3", order++, 1), - create_area(4, "Crater Route 4", order++, 1), - create_area(5, "Crater Interior", order++, 1), - create_area(6, "Subterranean Desert 1", order++, 3), - create_area(7, "Subterranean Desert 2", order++, 3), - create_area(8, "Subterranean Desert 3", order++, 3), - create_area(9, "Meteor Impact Site", order++, 1), -]; - -Object.freeze(AREAS); diff --git a/src/core/data_formats/parsing/quest/bin.test.ts b/src/core/data_formats/parsing/quest/bin.test.ts deleted file mode 100644 index 5840aa65..00000000 --- a/src/core/data_formats/parsing/quest/bin.test.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { readFileSync } from "fs"; -import { Endianness } from "../../block/Endianness"; -import { prs_decompress } from "../../compression/prs/decompress"; -import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; -import { BufferCursor } from "../../block/cursor/BufferCursor"; -import { parse_bin, write_bin } from "./bin"; -import { BinFormat } from "./BinFormat"; -import { unwrap } from "../../../Result"; -import { pw_test } from "../../../../../test/src/utils"; - -/** - * Parse a file, convert the resulting structure to BIN again and check whether the end result is equal to the original. - */ -function test_quest(path: string): () => void { - return pw_test({}, () => { - const orig_buffer = readFileSync(path); - const orig_bin = unwrap(prs_decompress(new BufferCursor(orig_buffer, Endianness.Little))); - const test_buffer = write_bin(parse_bin(orig_bin).bin, BinFormat.BB); - const test_bin = new ArrayBufferCursor(test_buffer, Endianness.Little); - - orig_bin.seek_start(0); - expect(test_bin.size).toBe(orig_bin.size); - - let matching_bytes = 0; - - while (orig_bin.bytes_left) { - const test_byte = test_bin.u8(); - const orig_byte = orig_bin.u8(); - - if (test_byte !== orig_byte) { - throw new Error( - `Byte ${matching_bytes} didn't match, expected ${orig_byte}, got ${test_byte}.`, - ); - } - - matching_bytes++; - } - - expect(matching_bytes).toBe(orig_bin.size); - }); -} - -test("parse_bin and write_bin with quest118_e.bin", test_quest("test/resources/quest118_e.bin")); - -test("parse_bin and write_bin with quest27_e.bin", test_quest("test/resources/quest27_e.bin")); diff --git a/src/core/data_formats/parsing/quest/bin.ts b/src/core/data_formats/parsing/quest/bin.ts deleted file mode 100644 index 2ebfed47..00000000 --- a/src/core/data_formats/parsing/quest/bin.ts +++ /dev/null @@ -1,191 +0,0 @@ -import { Endianness } from "../../block/Endianness"; -import { Cursor } from "../../block/cursor/Cursor"; -import { LogManager } from "../../../logging"; -import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; -import { assert } from "../../../util"; -import { BinFormat } from "./BinFormat"; - -const logger = LogManager.get("core/data_formats/parsing/quest/bin"); - -const DC_GC_OBJECT_CODE_OFFSET = 468; -const PC_OBJECT_CODE_OFFSET = 920; -const BB_OBJECT_CODE_OFFSET = 4652; - -export type BinFile = { - quest_id: number; - language: number; - quest_name: string; - short_description: string; - long_description: string; - object_code: ArrayBuffer; - readonly label_offsets: number[]; - readonly shop_items: number[]; -}; - -export function parse_bin(cursor: Cursor): { bin: BinFile; format: BinFormat } { - const object_code_offset = cursor.u32(); - const label_offset_table_offset = cursor.u32(); // Relative offsets - const size = cursor.u32(); - cursor.seek(4); // Always seems to be 0xFFFFFFFF. - - let format: number; - - switch (object_code_offset) { - case DC_GC_OBJECT_CODE_OFFSET: - format = BinFormat.DC_GC; - break; - case BB_OBJECT_CODE_OFFSET: - format = BinFormat.BB; - break; - default: - format = BinFormat.PC; - break; - } - - let quest_id: number; - let language: number; - let quest_name: string; - let short_description: string; - let long_description: string; - - if (format === BinFormat.DC_GC) { - cursor.seek(1); - language = cursor.u8(); - quest_id = cursor.u16(); - quest_name = cursor.string_ascii(32, true, true); - short_description = cursor.string_ascii(128, true, true); - long_description = cursor.string_ascii(288, true, true); - } else { - quest_id = cursor.u32(); - language = cursor.u32(); - quest_name = cursor.string_utf16(64, true, true); - short_description = cursor.string_utf16(256, true, true); - long_description = cursor.string_utf16(576, true, true); - } - - if (size !== cursor.size) { - logger.warn(`Value ${size} in bin size field does not match actual size ${cursor.size}.`); - } - - let shop_items: number[]; - - if (format === BinFormat.BB) { - cursor.seek(4); // Skip padding. - shop_items = cursor.u32_array(932); - } else { - shop_items = []; - } - - const label_offset_count = Math.floor((cursor.size - label_offset_table_offset) / 4); - const label_offsets = cursor - .seek_start(label_offset_table_offset) - .i32_array(label_offset_count); - - const object_code = cursor - .seek_start(object_code_offset) - .array_buffer(label_offset_table_offset - object_code_offset); - - return { - bin: { - quest_id, - language, - quest_name, - short_description, - long_description, - object_code, - label_offsets, - shop_items, - }, - format, - }; -} - -export function write_bin(bin: BinFile, format: BinFormat): ArrayBuffer { - assert( - bin.quest_name.length <= 32, - () => `quest_name can't be longer than 32 characters, was ${bin.quest_name.length}`, - ); - assert( - bin.short_description.length <= 127, - () => - `short_description can't be longer than 127 characters, was ${bin.short_description.length}`, - ); - assert( - bin.long_description.length <= 287, - () => - `long_description can't be longer than 287 characters, was ${bin.long_description.length}`, - ); - assert( - bin.shop_items.length === 0 || format === BinFormat.BB, - "shop_items is only supported in BlueBurst quests.", - ); - assert( - bin.shop_items.length <= 932, - () => `shop_items can't be larger than 932, was ${bin.shop_items.length}.`, - ); - - let object_code_offset: number; - - switch (format) { - case BinFormat.DC_GC: - object_code_offset = DC_GC_OBJECT_CODE_OFFSET; - break; - case BinFormat.PC: - object_code_offset = PC_OBJECT_CODE_OFFSET; - break; - case BinFormat.BB: - object_code_offset = BB_OBJECT_CODE_OFFSET; - break; - } - - const file_size = - object_code_offset + bin.object_code.byteLength + 4 * bin.label_offsets.length; - const buffer = new ArrayBuffer(file_size); - const cursor = new ArrayBufferCursor(buffer, Endianness.Little); - - cursor.write_u32(object_code_offset); - cursor.write_u32(object_code_offset + bin.object_code.byteLength); // Label table offset. - cursor.write_u32(file_size); - cursor.write_u32(0xffffffff); - - if (format === BinFormat.DC_GC) { - cursor.write_u8(0); - cursor.write_u8(bin.language); - cursor.write_u16(bin.quest_id); - cursor.write_string_ascii(bin.quest_name, 32); - cursor.write_string_ascii(bin.short_description, 128); - cursor.write_string_ascii(bin.long_description, 288); - } else { - cursor.write_u32(bin.quest_id); - cursor.write_u32(bin.language); - cursor.write_string_utf16(bin.quest_name, 64); - cursor.write_string_utf16(bin.short_description, 256); - cursor.write_string_utf16(bin.long_description, 576); - } - - if (format === BinFormat.BB) { - cursor.write_u32(0); - cursor.write_u32_array(bin.shop_items); - - for (let i = bin.shop_items.length; i < 932; i++) { - cursor.write_u32(0); - } - } - - assert( - cursor.position === object_code_offset, - () => - `Expected to write ${object_code_offset} bytes before object code, but wrote ${cursor.position}.`, - ); - - cursor.write_cursor(new ArrayBufferCursor(bin.object_code, Endianness.Little)); - - cursor.write_i32_array(bin.label_offsets); - - assert( - cursor.position === file_size, - `Expected to write ${file_size} bytes, but wrote ${cursor.position}.`, - ); - - return buffer; -} diff --git a/src/core/data_formats/parsing/quest/dat.test.ts b/src/core/data_formats/parsing/quest/dat.test.ts deleted file mode 100644 index bb330770..00000000 --- a/src/core/data_formats/parsing/quest/dat.test.ts +++ /dev/null @@ -1,77 +0,0 @@ -import { Endianness } from "../../block/Endianness"; -import { prs_decompress } from "../../compression/prs/decompress"; -import { BufferCursor } from "../../block/cursor/BufferCursor"; -import { ResizableBlockCursor } from "../../block/cursor/ResizableBlockCursor"; -import { parse_dat, write_dat } from "./dat"; -import { readFileSync } from "fs"; -import { unwrap } from "../../../Result"; -import { pw_test } from "../../../../../test/src/utils"; - -/** - * Parse a file, convert the resulting structure to DAT again and check whether the end result is equal to the original. - */ -test( - "parse_dat and write_dat", - pw_test({}, () => { - const orig_buffer = readFileSync("test/resources/quest118_e.dat"); - const orig_dat = unwrap(prs_decompress(new BufferCursor(orig_buffer, Endianness.Little))); - const test_dat = new ResizableBlockCursor(write_dat(parse_dat(orig_dat))); - orig_dat.seek_start(0); - - expect(test_dat.size).toBe(orig_dat.size); - - let match = true; - - while (orig_dat.bytes_left) { - if (test_dat.u8() !== orig_dat.u8()) { - match = false; - break; - } - } - - expect(match).toBe(true); - }), -); - -/** - * Parse a file, modify the resulting structure, convert it to DAT again and check whether the end result is equal to the original except for the bytes that should be changed. - */ -test( - "parse, modify and write DAT", - pw_test({}, () => { - const orig_buffer = readFileSync("./test/resources/quest118_e.dat"); - const orig_dat = unwrap(prs_decompress(new BufferCursor(orig_buffer, Endianness.Little))); - const test_parsed = parse_dat(orig_dat); - orig_dat.seek_start(0); - - const test_obj_array = new Float32Array(test_parsed.objs[9].data); - test_obj_array[4] = 13; - test_obj_array[5] = 17; - test_obj_array[6] = 19; - - const test_dat = new ResizableBlockCursor(write_dat(test_parsed)); - - expect(test_dat.size).toBe(orig_dat.size); - - while (orig_dat.bytes_left) { - if (orig_dat.position === 16 + 9 * 68 + 16) { - orig_dat.seek(12); - - expect(test_dat.f32()).toBe(13); - expect(test_dat.f32()).toBe(17); - expect(test_dat.f32()).toBe(19); - } else { - const test_byte = test_dat.u8(); - const orig_byte = orig_dat.u8(); - - if (test_byte !== orig_byte) { - throw new Error( - `Byte ${ - test_dat.position - 1 - } didn't match, expected ${orig_byte}, got ${test_byte}.`, - ); - } - } - } - }), -); diff --git a/src/core/data_formats/parsing/quest/dat.ts b/src/core/data_formats/parsing/quest/dat.ts deleted file mode 100644 index 965dbcd9..00000000 --- a/src/core/data_formats/parsing/quest/dat.ts +++ /dev/null @@ -1,434 +0,0 @@ -import { groupBy } from "lodash"; -import { Endianness } from "../../block/Endianness"; -import { Cursor } from "../../block/cursor/Cursor"; -import { ResizableBlockCursor } from "../../block/cursor/ResizableBlockCursor"; -import { ResizableBlock } from "../../block/ResizableBlock"; -import { WritableCursor } from "../../block/cursor/WritableCursor"; -import { assert } from "../../../util"; -import { LogManager } from "../../../logging"; -import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; - -const logger = LogManager.get("core/data_formats/parsing/quest/dat"); - -export const OBJECT_BYTE_SIZE = 68; -export const NPC_BYTE_SIZE = 72; - -export type DatFile = { - readonly objs: DatEntity[]; - readonly npcs: DatEntity[]; - readonly events: DatEvent[]; - readonly unknowns: DatUnknown[]; -}; - -export type DatEntity = { - area_id: number; - readonly data: ArrayBuffer; -}; - -export type DatEvent = { - id: number; - section_id: number; - wave: number; - delay: number; - readonly actions: DatEventAction[]; - area_id: number; - unknown: number; -}; - -export enum DatEventActionType { - SpawnNpcs = 0x8, - Unlock = 0xa, - Lock = 0xb, - TriggerEvent = 0xc, -} - -export type DatEventAction = - | DatEventActionSpawnNpcs - | DatEventActionUnlock - | DatEventActionLock - | DatEventActionTriggerEvent; - -export type DatEventActionSpawnNpcs = { - readonly type: DatEventActionType.SpawnNpcs; - readonly section_id: number; - readonly appear_flag: number; -}; - -export type DatEventActionUnlock = { - readonly type: DatEventActionType.Unlock; - readonly door_id: number; -}; - -export type DatEventActionLock = { - readonly type: DatEventActionType.Lock; - readonly door_id: number; -}; - -export type DatEventActionTriggerEvent = { - readonly type: DatEventActionType.TriggerEvent; - readonly event_id: number; -}; - -export type DatUnknown = { - readonly entity_type: number; - readonly total_size: number; - readonly area_id: number; - readonly entities_size: number; - readonly data: number[]; -}; - -export function parse_dat(cursor: Cursor): DatFile { - const objs: DatEntity[] = []; - const npcs: DatEntity[] = []; - const events: DatEvent[] = []; - const unknowns: DatUnknown[] = []; - - while (cursor.bytes_left) { - const entity_type = cursor.u32(); - const total_size = cursor.u32(); - const area_id = cursor.u32(); - const entities_size = cursor.u32(); - - if (entity_type === 0) { - break; - } else { - if (entities_size !== total_size - 16) { - throw Error( - `Malformed DAT file. Expected an entities size of ${ - total_size - 16 - }, got ${entities_size}.`, - ); - } - - const entities_cursor = cursor.take(entities_size); - - if (entity_type === 1) { - parse_entities(entities_cursor, area_id, objs, OBJECT_BYTE_SIZE); - } else if (entity_type === 2) { - parse_entities(entities_cursor, area_id, npcs, NPC_BYTE_SIZE); - } else if (entity_type === 3) { - parse_events(entities_cursor, area_id, events); - } else { - // Unknown entity types 4 and 5 (challenge mode). - unknowns.push({ - entity_type, - total_size, - area_id, - entities_size, - data: cursor.u8_array(entities_size), - }); - } - - if (entities_cursor.bytes_left) { - logger.warn( - `Read ${entities_cursor.position} bytes instead of expected ${entities_cursor.size} for entity type ${entity_type}.`, - ); - } - } - } - - return { objs, npcs, events, unknowns }; -} - -export function write_dat({ objs, npcs, events, unknowns }: DatFile): ResizableBlock { - const block = new ResizableBlock( - objs.length * (16 + OBJECT_BYTE_SIZE) + - npcs.length * (16 + NPC_BYTE_SIZE) + - unknowns.reduce((a, b) => a + b.total_size, 0), - Endianness.Little, - ); - const cursor = new ResizableBlockCursor(block); - - write_entities(cursor, objs, 1, OBJECT_BYTE_SIZE); - - write_entities(cursor, npcs, 2, NPC_BYTE_SIZE); - - write_events(cursor, events); - - for (const unknown of unknowns) { - cursor.write_u32(unknown.entity_type); - cursor.write_u32(unknown.total_size); - cursor.write_u32(unknown.area_id); - cursor.write_u32(unknown.entities_size); - cursor.write_u8_array(unknown.data); - } - - // Final header. - cursor.write_u32(0); - cursor.write_u32(0); - cursor.write_u32(0); - cursor.write_u32(0); - - return block; -} - -function parse_entities( - cursor: Cursor, - area_id: number, - entities: DatEntity[], - entity_size: number, -): void { - const entity_count = Math.floor(cursor.size / entity_size); - - for (let i = 0; i < entity_count; ++i) { - entities.push({ - area_id, - data: cursor.array_buffer(entity_size), - }); - } -} - -function parse_events(cursor: Cursor, area_id: number, events: DatEvent[]): void { - const actions_offset = cursor.u32(); - cursor.seek(4); // Always 0x10 - const event_count = cursor.u32(); - cursor.seek(3); // Always 0 - const event_type = cursor.u8(); - - if (event_type === 0x32) { - throw new Error("Can't parse challenge mode quests yet."); - } - - cursor.seek_start(actions_offset); - const actions_cursor = cursor.take(cursor.bytes_left); - cursor.seek_start(16); - - for (let i = 0; i < event_count; ++i) { - const id = cursor.u32(); - cursor.seek(4); // Always 0x100 - const section_id = cursor.u16(); - const wave = cursor.u16(); - const delay = cursor.u16(); - const unknown = cursor.u16(); // "wavesetting"? - const event_actions_offset = cursor.u32(); - - let actions: DatEventAction[] = []; - - if (event_actions_offset < actions_cursor.size) { - actions_cursor.seek_start(event_actions_offset); - actions = parse_event_actions(actions_cursor); - } else { - logger.warn(`Invalid event actions offset ${event_actions_offset} for event ${id}.`); - } - - events.push({ - id, - section_id, - wave, - delay, - actions, - area_id, - unknown, - }); - } - - if (cursor.position !== actions_offset) { - logger.warn( - `Read ${cursor.position - 16} bytes of event data instead of expected ${ - actions_offset - 16 - }.`, - ); - } - - let last_u8 = 0xff; - - while (actions_cursor.bytes_left) { - last_u8 = actions_cursor.u8(); - - if (last_u8 !== 0xff) { - break; - } - } - - if (last_u8 !== 0xff) { - actions_cursor.seek(-1); - } - - // Make sure the cursor position represents the amount of bytes we've consumed. - cursor.seek_start(actions_offset + actions_cursor.position); -} - -function parse_event_actions(cursor: Cursor): DatEventAction[] { - const actions: DatEventAction[] = []; - - outer: while (cursor.bytes_left) { - const type = cursor.u8(); - - switch (type) { - case 1: - break outer; - - case DatEventActionType.SpawnNpcs: - actions.push({ - type: DatEventActionType.SpawnNpcs, - section_id: cursor.u16(), - appear_flag: cursor.u16(), - }); - break; - - case DatEventActionType.Unlock: - actions.push({ - type: DatEventActionType.Unlock, - door_id: cursor.u16(), - }); - break; - - case DatEventActionType.Lock: - actions.push({ - type: DatEventActionType.Lock, - door_id: cursor.u16(), - }); - break; - - case DatEventActionType.TriggerEvent: - actions.push({ - type: DatEventActionType.TriggerEvent, - event_id: cursor.u32(), - }); - break; - - default: - logger.warn(`Unexpected event action type ${type}.`); - break outer; - } - } - - return actions; -} - -function write_entities( - cursor: WritableCursor, - entities: readonly DatEntity[], - entity_type: number, - entity_size: number, -): void { - const grouped_entities = groupBy(entities, entity => entity.area_id); - const entity_area_ids = Object.keys(grouped_entities) - .map(key => parseInt(key, 10)) - .sort((a, b) => a - b); - - for (const area_id of entity_area_ids) { - const area_entities = grouped_entities[area_id]; - const entities_size = area_entities.length * entity_size; - cursor.write_u32(entity_type); - cursor.write_u32(entities_size + 16); - cursor.write_u32(area_id); - cursor.write_u32(entities_size); - const start_pos = cursor.position; - - for (const entity of area_entities) { - assert( - entity.data.byteLength === entity_size, - () => - `Malformed entity in area ${area_id}, data array was of length ${entity.data.byteLength} instead of expected ${entity_size}.`, - ); - - cursor.write_cursor(new ArrayBufferCursor(entity.data, cursor.endianness)); - } - - assert( - cursor.position === start_pos + entities_size, - () => - `Wrote ${ - cursor.position - start_pos - } bytes of entity data instead of expected ${entities_size} bytes for area ${area_id}.`, - ); - } -} - -function write_events(cursor: WritableCursor, events: readonly DatEvent[]): void { - const grouped_events = groupBy(events, event => event.area_id); - const event_area_ids = Object.keys(grouped_events) - .map(key => parseInt(key, 10)) - .sort((a, b) => a - b); - - for (const area_id of event_area_ids) { - const area_events = grouped_events[area_id]; - - // Standard header. - cursor.write_u32(3); // Entity type - const total_size_offset = cursor.position; - cursor.write_u32(0); // Placeholder for the total size. - cursor.write_u32(area_id); - const entities_size_offset = cursor.position; - cursor.write_u32(0); // Placeholder for the entities size. - - // Event header. - const start_pos = cursor.position; - // TODO: actual event size is dependent on the event type (challenge mode). - // Absolute offset. - const actions_offset = start_pos + 16 + 20 * area_events.length; - cursor.size = Math.max(actions_offset, cursor.size); - - cursor.write_u32(actions_offset - start_pos); - cursor.write_u32(0x10); - cursor.write_u32(area_events.length); - cursor.write_u32(0); // TODO: write event type (challenge mode). - - // Relative offset. - let event_actions_offset = 0; - - for (const event of area_events) { - cursor.write_u32(event.id); - cursor.write_u32(0x10000); - cursor.write_u16(event.section_id); - cursor.write_u16(event.wave); - cursor.write_u16(event.delay); - cursor.write_u16(event.unknown); - cursor.write_u32(event_actions_offset); - const next_event_pos = cursor.position; - - cursor.seek_start(actions_offset + event_actions_offset); - - for (const action of event.actions) { - cursor.write_u8(action.type); - - switch (action.type) { - case DatEventActionType.SpawnNpcs: - cursor.write_u16(action.section_id); - cursor.write_u16(action.appear_flag); - break; - - case DatEventActionType.Unlock: - cursor.write_u16(action.door_id); - break; - - case DatEventActionType.Lock: - cursor.write_u16(action.door_id); - break; - - case DatEventActionType.TriggerEvent: - cursor.write_u32(action.event_id); - break; - - default: - // Need to cast because TypeScript infers action to be `never`. - throw new Error(`Unknown event action type ${(action as any).type}.`); - } - } - - // End of event actions. - cursor.write_u8(1); - - event_actions_offset = cursor.position - actions_offset; - - cursor.seek_start(next_event_pos); - } - - cursor.seek_start(actions_offset + event_actions_offset); - - while ((cursor.position - actions_offset) % 4 !== 0) { - cursor.write_u8(0xff); - } - - const end_pos = cursor.position; - - cursor.seek_start(total_size_offset); - cursor.write_u32(end_pos - start_pos + 16); - - cursor.seek_start(entities_size_offset); - cursor.write_u32(end_pos - start_pos); - - cursor.seek_start(end_pos); - } -} diff --git a/src/core/data_formats/parsing/quest/index.test.ts b/src/core/data_formats/parsing/quest/index.test.ts deleted file mode 100644 index 9d3b21c6..00000000 --- a/src/core/data_formats/parsing/quest/index.test.ts +++ /dev/null @@ -1,155 +0,0 @@ -import { readFileSync } from "fs"; -import { Endianness } from "../../block/Endianness"; -import { pw_test, walk_qst_files } from "../../../../../test/src/utils"; -import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; -import { BufferCursor } from "../../block/cursor/BufferCursor"; -import { parse_qst_to_quest, write_quest_qst } from "./index"; -import { ObjectType } from "./object_types"; -import { - DataSegment, - InstructionSegment, - SegmentType, - StringSegment, -} from "../../asm/instructions"; -import { get_object_position, get_object_section_id, get_object_type } from "./QuestObject"; -import { get_npc_position, get_npc_section_id, get_npc_type } from "./QuestNpc"; -import { unwrap } from "../../../Result"; -import { Severity } from "../../../Severity"; - -test( - "parse Towards the Future", - pw_test({ max_log_severity: Severity.Warning }, () => { - const buffer = readFileSync("test/resources/quest118_e.qst"); - const cursor = new BufferCursor(buffer, Endianness.Little); - const { quest } = unwrap(parse_qst_to_quest(cursor)); - - expect(quest.name).toBe("Towards the Future"); - expect(quest.short_description).toBe("Challenge the\nnew simulator."); - expect(quest.long_description).toBe( - "Client: Principal\nQuest: Wishes to have\nhunters challenge the\nnew simulator\nReward: ??? Meseta", - ); - expect(quest.episode).toBe(1); - expect(quest.objects.length).toBe(277); - expect(get_object_type(quest.objects[0])).toBe(ObjectType.MenuActivation); - expect(get_object_type(quest.objects[4])).toBe(ObjectType.PlayerSet); - expect(quest.npcs.length).toBe(216); - expect(quest.map_designations).toEqual( - new Map([ - [0, 0], - [2, 0], - [11, 0], - [5, 4], - [12, 0], - [7, 4], - [13, 0], - [8, 4], - [10, 4], - [14, 0], - ]), - ); - }), -); - -/** - * Round-trip tests. - * Parse a QST file, write the resulting Quest object to QST again, then parse that again. - * Then check whether the two Quest objects are equal. - */ -if (process.env["RUN_ALL_TESTS"] === "true") { - walk_qst_files(round_trip_test); -} else { - const file_name_1 = "quest118_e.qst"; - const path_1 = `test/resources/${file_name_1}`; - const buffer_1 = readFileSync(path_1); - round_trip_test(path_1, file_name_1, buffer_1); - - const file_name_2 = "quest27_e.qst"; - const path_2 = `test/resources/${file_name_2}`; - const buffer_2 = readFileSync(path_2); - round_trip_test(path_2, file_name_2, buffer_2); -} - -// GC quest. -round_trip_test( - "test/resources/lost_heat_sword_gc.qst", - "lost_heat_sword_gc.qst", - readFileSync("test/resources/lost_heat_sword_gc.qst"), -); - -function round_trip_test(path: string, file_name: string, contents: Buffer): void { - test( - `parse_quest and write_quest_qst ${path}`, - pw_test({ max_log_severity: Severity.Warning }, () => { - const { quest: orig_quest, version, online } = unwrap( - parse_qst_to_quest(new BufferCursor(contents, Endianness.Little)), - ); - const test_qst = write_quest_qst(orig_quest, file_name, version, online); - const { quest: test_quest } = unwrap( - parse_qst_to_quest(new ArrayBufferCursor(test_qst, Endianness.Little)), - ); - - expect(test_quest.name).toBe(orig_quest.name); - expect(test_quest.short_description).toBe(orig_quest.short_description); - expect(test_quest.long_description).toBe(orig_quest.long_description); - expect(test_quest.episode).toBe(orig_quest.episode); - expect(test_quest.objects.length).toBe(orig_quest.objects.length); - - for (let i = 0; i < orig_quest.objects.length; i++) { - const orig_obj = orig_quest.objects[i]; - const test_obj = test_quest.objects[i]; - expect(test_obj.area_id).toBe(orig_obj.area_id); - expect(get_object_section_id(test_obj)).toBe(get_object_section_id(orig_obj)); - expect(get_object_position(test_obj)).toEqual(get_object_position(orig_obj)); - expect(get_object_type(test_obj)).toBe(get_object_type(orig_obj)); - } - - expect(test_quest.npcs.length).toBe(orig_quest.npcs.length); - - for (let i = 0; i < orig_quest.npcs.length; i++) { - const orig_npc = orig_quest.npcs[i]; - const test_npc = test_quest.npcs[i]; - expect(test_npc.area_id).toBe(orig_npc.area_id); - expect(get_npc_section_id(test_npc)).toBe(get_npc_section_id(orig_npc)); - expect(get_npc_position(test_npc)).toEqual(get_npc_position(orig_npc)); - expect(get_npc_type(test_npc)).toBe(get_npc_type(orig_npc)); - } - - expect(test_quest.map_designations).toEqual(orig_quest.map_designations); - - expect(test_quest.object_code.length).toBe(orig_quest.object_code.length); - - for (let i = 0; i < orig_quest.object_code.length; i++) { - const orig_segment = orig_quest.object_code[i]; - const test_segment = test_quest.object_code[i]; - - expect(test_segment.type).toBe(orig_segment.type); - expect(test_segment.labels).toEqual(orig_segment.labels); - - switch (orig_segment.type) { - case SegmentType.Instructions: - expect((test_segment as InstructionSegment).instructions.length).toBe( - orig_segment.instructions.length, - ); - - for (let j = 0; j < orig_segment.instructions.length; j++) { - const orig_inst = orig_segment.instructions[j]; - const test_inst = (test_segment as InstructionSegment).instructions[j]; - - expect(test_inst.opcode.code).toBe(orig_inst.opcode.code); - expect(test_inst.args).toEqual(orig_inst.args); - } - - break; - case SegmentType.Data: - expect((test_segment as DataSegment).data).toEqual(orig_segment.data); - break; - case SegmentType.String: - expect((test_segment as StringSegment).value).toBe(orig_segment.value); - break; - } - - expect(test_quest.object_code[i]).toEqual(orig_quest.object_code[i]); - } - }), - ); -} diff --git a/src/core/data_formats/parsing/quest/index.ts b/src/core/data_formats/parsing/quest/index.ts deleted file mode 100644 index 3c5e3161..00000000 --- a/src/core/data_formats/parsing/quest/index.ts +++ /dev/null @@ -1,298 +0,0 @@ -import { InstructionSegment, SegmentType } from "../../asm/instructions"; -import { OP_SET_EPISODE } from "../../asm/opcodes"; -import { prs_compress } from "../../compression/prs/compress"; -import { prs_decompress } from "../../compression/prs/decompress"; -import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; -import { Cursor } from "../../block/cursor/Cursor"; -import { ResizableBlockCursor } from "../../block/cursor/ResizableBlockCursor"; -import { Endianness } from "../../block/Endianness"; -import { parse_bin, write_bin } from "./bin"; -import { DatEntity, parse_dat, write_dat } from "./dat"; -import { Quest, QuestEntity } from "./Quest"; -import { Episode } from "./Episode"; -import { parse_qst, QstContainedFile, write_qst } from "./qst"; -import { LogManager } from "../../../logging"; -import { parse_object_code, write_object_code } from "./object_code"; -import { get_map_designations } from "../../asm/data_flow_analysis/get_map_designations"; -import { basename } from "../../../util"; -import { version_to_bin_format } from "./BinFormat"; -import { Version } from "./Version"; -import { data_to_quest_npc, get_npc_script_label, QuestNpc } from "./QuestNpc"; -import { - data_to_quest_object, - get_object_script_label, - get_object_script_label_2, - QuestObject, -} from "./QuestObject"; -import { Result, ResultBuilder } from "../../../Result"; -import { Severity } from "../../../Severity"; - -const logger = LogManager.get("core/data_formats/parsing/quest"); - -export function parse_bin_dat_to_quest( - bin_cursor: Cursor, - dat_cursor: Cursor, - lenient: boolean = false, -): Result { - const rb = new ResultBuilder(logger); - - // Decompress and parse files. - const bin_decompressed = prs_decompress(bin_cursor); - rb.add_result(bin_decompressed); - - if (!bin_decompressed.success) { - return rb.failure(); - } - - const { bin, format } = parse_bin(bin_decompressed.value); - - const dat_decompressed = prs_decompress(dat_cursor); - rb.add_result(dat_decompressed); - - if (!dat_decompressed.success) { - return rb.failure(); - } - - const dat = parse_dat(dat_decompressed.value); - const objects = dat.objs.map(({ area_id, data }) => data_to_quest_object(area_id, data)); - // Initialize NPCs with random episode and correct it later. - const npcs = dat.npcs.map(({ area_id, data }) => data_to_quest_npc(Episode.I, area_id, data)); - - // Extract episode and map designations from object code. - let episode = Episode.I; - let map_designations: Map = new Map(); - - const object_code_result = parse_object_code( - bin.object_code, - bin.label_offsets, - extract_script_entry_points(objects, npcs), - lenient, - format, - ); - - rb.add_result(object_code_result); - - if (!object_code_result.success) { - return rb.failure(); - } - - const object_code = object_code_result.value; - - if (object_code.length) { - const instruction_segments = object_code.filter( - s => s.type === SegmentType.Instructions, - ) as InstructionSegment[]; - - let label_0_segment: InstructionSegment | undefined; - - for (const segment of instruction_segments) { - if (segment.labels.includes(0)) { - label_0_segment = segment; - break; - } - } - - if (label_0_segment) { - episode = get_episode(rb, label_0_segment); - - for (const npc of npcs) { - npc.episode = episode; - } - - map_designations = get_map_designations(instruction_segments, label_0_segment); - } else { - rb.add_problem(Severity.Warning, "No instruction segment for label 0 found."); - } - } else { - rb.add_problem(Severity.Warning, "File contains no instruction labels."); - } - - return rb.success({ - id: bin.quest_id, - language: bin.language, - name: bin.quest_name, - short_description: bin.short_description, - long_description: bin.long_description, - episode, - objects, - npcs, - events: dat.events, - dat_unknowns: dat.unknowns, - object_code, - shop_items: bin.shop_items, - map_designations, - }); -} - -export type QuestData = { - quest: Quest; - version: Version; - online: boolean; -}; - -export function parse_qst_to_quest(cursor: Cursor, lenient: boolean = false): Result { - const rb = new ResultBuilder(logger); - - // Extract contained .dat and .bin files. - const qst_result = parse_qst(cursor); - rb.add_result(qst_result); - - if (!qst_result.success) { - return rb.failure(); - } - - const { version, online, files } = qst_result.value; - let dat_file: QstContainedFile | undefined; - let bin_file: QstContainedFile | undefined; - - for (const file of files) { - const file_name = file.filename.trim().toLowerCase(); - - if (file_name.endsWith(".dat")) { - dat_file = file; - } else if (file_name.endsWith(".bin")) { - bin_file = file; - } - } - - if (!dat_file) { - return rb.add_problem(Severity.Error, "File contains no DAT file.").failure(); - } - - if (!bin_file) { - return rb.add_problem(Severity.Error, "File contains no BIN file.").failure(); - } - - const quest_result = parse_bin_dat_to_quest( - new ArrayBufferCursor(bin_file.data, Endianness.Little), - new ArrayBufferCursor(dat_file.data, Endianness.Little), - lenient, - ); - rb.add_result(quest_result); - - if (!quest_result.success) { - return rb.failure(); - } - - return rb.success({ - quest: quest_result.value, - version, - online, - }); -} - -export function write_quest_qst( - quest: Quest, - file_name: string, - version: Version, - online: boolean, -): ArrayBuffer { - const dat = write_dat({ - objs: entities_to_dat_data(quest.objects), - npcs: entities_to_dat_data(quest.npcs), - events: quest.events, - unknowns: quest.dat_unknowns, - }); - - const { object_code, label_offsets } = write_object_code( - quest.object_code, - version_to_bin_format(version), - ); - - const bin = write_bin( - { - quest_id: quest.id, - language: quest.language, - quest_name: quest.name, - short_description: quest.short_description, - long_description: quest.long_description, - object_code, - label_offsets, - shop_items: quest.shop_items, - }, - version_to_bin_format(version), - ); - - const base_file_name = basename(file_name).slice(0, 11); - - return write_qst({ - version, - online, - files: [ - { - id: quest.id, - filename: base_file_name + ".dat", - quest_name: quest.name, - data: prs_compress(new ResizableBlockCursor(dat)).array_buffer(), - }, - { - id: quest.id, - filename: base_file_name + ".bin", - quest_name: quest.name, - data: prs_compress(new ArrayBufferCursor(bin, Endianness.Little)).array_buffer(), - }, - ], - }); -} - -/** - * Defaults to episode I. - */ -function get_episode(rb: ResultBuilder, func_0_segment: InstructionSegment): Episode { - const set_episode = func_0_segment.instructions.find( - instruction => instruction.opcode.code === OP_SET_EPISODE.code, - ); - - if (set_episode) { - const episode = set_episode.args[0].value; - - switch (episode) { - case 0: - return Episode.I; - case 1: - return Episode.II; - case 2: - return Episode.IV; - default: - rb.add_problem( - Severity.Warning, - `Unknown episode ${episode} in function 0 set_episode instruction.`, - ); - return Episode.I; - } - } else { - logger.debug("Function 0 has no set_episode instruction."); - return Episode.I; - } -} - -function extract_script_entry_points( - objects: readonly QuestObject[], - npcs: readonly QuestNpc[], -): number[] { - const entry_points = new Set([0]); - - for (const obj of objects) { - const entry_point = get_object_script_label(obj); - - if (entry_point != undefined) { - entry_points.add(entry_point); - } - - const entry_point_2 = get_object_script_label_2(obj); - - if (entry_point_2 != undefined) { - entry_points.add(entry_point_2); - } - } - - for (const npc of npcs) { - entry_points.add(get_npc_script_label(npc)); - } - - return [...entry_points]; -} - -function entities_to_dat_data(entities: readonly QuestEntity[]): DatEntity[] { - return entities.map(({ area_id, data }) => ({ area_id, data })); -} diff --git a/src/core/data_formats/parsing/quest/npc_types.ts b/src/core/data_formats/parsing/quest/npc_types.ts deleted file mode 100644 index f0bc4363..00000000 --- a/src/core/data_formats/parsing/quest/npc_types.ts +++ /dev/null @@ -1,2376 +0,0 @@ -import { check_episode, Episode } from "./Episode"; -import { EntityProp, EntityPropType } from "./properties"; - -// Make sure ObjectType does not overlap NpcType. -export enum NpcType { - // - // Unknown NPCs - // - - Unknown, - - // - // Friendly NPCs - // - - FemaleFat, - FemaleMacho, - FemaleTall, - MaleDwarf, - MaleFat, - MaleMacho, - MaleOld, - BlueSoldier, - RedSoldier, - Principal, - Tekker, - GuildLady, - Scientist, - Nurse, - Irene, - ItemShop, - Nurse2, - - // - // Enemy NPCs - // - - // Episode I Forest - - Hildebear, - Hildeblue, - RagRappy, - AlRappy, - Monest, - Mothmant, - SavageWolf, - BarbarousWolf, - Booma, - Gobooma, - Gigobooma, - Dragon, - - // Episode I Caves - - GrassAssassin, - PoisonLily, - NarLily, - NanoDragon, - EvilShark, - PalShark, - GuilShark, - PofuillySlime, - PouillySlime, - PanArms, - Migium, - Hidoom, - DeRolLe, - - // Episode I Mines - - Dubchic, - Gilchic, - Garanz, - SinowBeat, - SinowGold, - Canadine, - Canane, - Dubswitch, - VolOptPart1, - VolOptPart2, - - // Episode I Ruins - - Delsaber, - ChaosSorcerer, - DarkGunner, - DeathGunner, - ChaosBringer, - DarkBelra, - Dimenian, - LaDimenian, - SoDimenian, - Bulclaw, - Bulk, - Claw, - DarkFalz, - - // Episode II VR Temple - - Hildebear2, - Hildeblue2, - RagRappy2, - LoveRappy, - StRappy, - HalloRappy, - EggRappy, - Monest2, - Mothmant2, - PoisonLily2, - NarLily2, - GrassAssassin2, - Dimenian2, - LaDimenian2, - SoDimenian2, - DarkBelra2, - BarbaRay, - - // Episode II VR Spaceship - - SavageWolf2, - BarbarousWolf2, - PanArms2, - Migium2, - Hidoom2, - Dubchic2, - Gilchic2, - Garanz2, - Dubswitch2, - Delsaber2, - ChaosSorcerer2, - GolDragon, - - // Episode II Central Control Area - - SinowBerill, - SinowSpigell, - Merillia, - Meriltas, - Mericarol, - Mericus, - Merikle, - UlGibbon, - ZolGibbon, - Gibbles, - Gee, - GiGue, - IllGill, - DelLily, - Epsilon, - GalGryphon, - - // Episode II Seabed - - Deldepth, - Delbiter, - Dolmolm, - Dolmdarl, - Morfos, - Recobox, - Recon, - SinowZoa, - SinowZele, - OlgaFlow, - - // Episode IV - - SandRappy, - DelRappy, - Astark, - SatelliteLizard, - Yowie, - MerissaA, - MerissaAA, - Girtablulu, - Zu, - Pazuzu, - Boota, - ZeBoota, - BaBoota, - Dorphon, - DorphonEclair, - Goran, - PyroGoran, - GoranDetonator, - SaintMilion, - Shambertin, - Kondrieu, -} - -export type NpcTypeData = { - /** - * Unique name. E.g. an episode II Delsaber would have (Ep. II) appended to its name. - */ - readonly name: string; - /** - * Name used in the game. - * Might conflict with other NPC names (e.g. Delsaber from ep. I and ep. II). - */ - readonly simple_name: string; - readonly ultimate_name: string; - readonly episode?: Episode; - readonly enemy: boolean; - /** - * The type of this NPC's rare variant if it has one. - */ - readonly rare_type?: NpcType; - /** - * IDs of the areas this NPC can be found in. - */ - readonly area_ids: number[]; - /** - * Type ID used by the game. - */ - readonly type_id?: number; - /** - * Skin value used by the game. - */ - readonly skin?: number; - /** - * Boolean specifying whether an NPC is the regular or special variant. - * Sometimes signifies a variant (e.g. Barbarous Wolf), sometimes a rare variant (e.g. Pouilly - * Slime). - */ - readonly special?: boolean; - /** - * Default NPC-specific properties. - */ - readonly properties: readonly EntityProp[]; -}; - -export const NPC_TYPES: NpcType[] = []; -export const ENEMY_NPC_TYPES: NpcType[] = []; - -export function npc_data(type: NpcType): NpcTypeData { - return NPC_TYPE_DATA[type]; -} - -/** - * Uniquely identifies an NPC. Tries to match on simple_name and ultimate_name. - */ -export function name_and_episode_to_npc_type(name: string, episode: Episode): NpcType | undefined { - check_episode(episode); - return EP_AND_NAME_TO_NPC_TYPE[episode]!.get(name); -} - -const EP_AND_NAME_TO_NPC_TYPE = [ - undefined, - new Map(), - new Map(), - undefined, - new Map(), -]; - -const NPC_TYPE_DATA: NpcTypeData[] = []; - -function define_npc_type_data( - npc_type: NpcType, - name: string, - simple_name: string, - ultimate_name: string, - episode: Episode | undefined, - enemy: boolean, - rare_type: NpcType | undefined, - area_ids: number[], - type_id: number | undefined, - skin: number | undefined, - special: boolean | undefined, - properties: readonly [string, number, keyof typeof EntityPropType][], -): void { - NPC_TYPES.push(npc_type); - - if (enemy) { - ENEMY_NPC_TYPES.push(npc_type); - } - - NPC_TYPE_DATA[npc_type] = Object.freeze({ - name, - simple_name, - ultimate_name, - episode, - enemy, - rare_type, - area_ids, - type_id, - skin, - special, - properties: properties.map(([name, offset, type]) => ({ - name, - offset, - type: EntityPropType[type], - })), - }); - - if (episode) { - const map = EP_AND_NAME_TO_NPC_TYPE[episode]; - - if (map) { - map.set(simple_name, npc_type); - map.set(ultimate_name, npc_type); - } - } -} - -// -// Unknown NPCs -// - -define_npc_type_data( - NpcType.Unknown, - "Unknown", - "Unknown", - "Unknown", - undefined, - false, - undefined, - [], - undefined, - undefined, - undefined, - [], -); - -// -// Friendly NPCs -// - -const FRIENDLY_NPC_PROPERTIES: readonly [string, number, keyof typeof EntityPropType][] = [ - ["Movement distance", 44, "F32"], - ["Hide register", 52, "F32"], - ["Character ID", 56, "F32"], - ["Script label", 60, "F32"], - ["Movement flag", 64, "I32"], -]; - -define_npc_type_data( - NpcType.FemaleFat, - "Female Fat", - "Female Fat", - "Female Fat", - undefined, - false, - undefined, - [0], - 0x004, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.FemaleMacho, - "Female Macho", - "Female Macho", - "Female Macho", - undefined, - false, - undefined, - [0], - 0x005, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.FemaleTall, - "Female Tall", - "Female Tall", - "Female Tall", - undefined, - false, - undefined, - [0], - 0x007, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.MaleDwarf, - "Male Dwarf", - "Male Dwarf", - "Male Dwarf", - undefined, - false, - undefined, - [0], - 0x00a, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.MaleFat, - "Male Fat", - "Male Fat", - "Male Fat", - undefined, - false, - undefined, - [0], - 0x00b, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.MaleMacho, - "Male Macho", - "Male Macho", - "Male Macho", - undefined, - false, - undefined, - [0], - 0x00c, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.MaleOld, - "Male Old", - "Male Old", - "Male Old", - undefined, - false, - undefined, - [0], - 0x00d, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.BlueSoldier, - "Blue Soldier", - "Blue Soldier", - "Blue Soldier", - undefined, - false, - undefined, - [0], - 0x019, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.RedSoldier, - "Red Soldier", - "Red Soldier", - "Red Soldier", - undefined, - false, - undefined, - [0], - 0x01a, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.Principal, - "Principal", - "Principal", - "Principal", - undefined, - false, - undefined, - [0], - 0x01b, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.Tekker, - "Tekker", - "Tekker", - "Tekker", - undefined, - false, - undefined, - [0], - 0x01c, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.GuildLady, - "Guild Lady", - "Guild Lady", - "Guild Lady", - undefined, - false, - undefined, - [0], - 0x01d, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.Scientist, - "Scientist", - "Scientist", - "Scientist", - undefined, - false, - undefined, - [0], - 0x01e, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.Nurse, - "Nurse", - "Nurse", - "Nurse", - undefined, - false, - undefined, - [0], - 0x01f, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.Irene, - "Irene", - "Irene", - "Irene", - undefined, - false, - undefined, - [0], - 0x020, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.ItemShop, - "Item Shop", - "Item Shop", - "Item Shop", - undefined, - false, - undefined, - [0], - 0x0f1, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); -define_npc_type_data( - NpcType.Nurse2, - "Nurse (Ep. II)", - "Nurse", - "Nurse", - 2, - false, - undefined, - [0], - 0x0fe, - 0, - false, - FRIENDLY_NPC_PROPERTIES, -); - -// -// Enemy NPCs -// - -// Episode I Forest - -define_npc_type_data( - NpcType.Hildebear, - "Hildebear", - "Hildebear", - "Hildelt", - 1, - true, - NpcType.Hildeblue, - [1, 2], - 0x040, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Hildeblue, - "Hildeblue", - "Hildeblue", - "Hildetorr", - 1, - true, - undefined, - [1, 2], - 0x040, - 1, - false, - [], -); -define_npc_type_data( - NpcType.RagRappy, - "Rag Rappy", - "Rag Rappy", - "El Rappy", - 1, - true, - NpcType.AlRappy, - [1, 2], - 0x041, - 0, - false, - [], -); -define_npc_type_data( - NpcType.AlRappy, - "Al Rappy", - "Al Rappy", - "Pal Rappy", - 1, - true, - undefined, - [1, 2], - 0x041, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Monest, - "Monest", - "Monest", - "Mothvist", - 1, - true, - undefined, - [1, 2], - 0x042, - 0, - false, - [ - ["State", 44, "F32"], - ["Start number", 48, "F32"], - ["Total number", 52, "F32"], - ], -); -define_npc_type_data( - NpcType.Mothmant, - "Mothmant", - "Mothmant", - "Mothvert", - 1, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.SavageWolf, - "Savage Wolf", - "Savage Wolf", - "Gulgus", - 1, - true, - undefined, - [1, 2], - 0x043, - 0, - false, - [["Group ID", 44, "F32"]], -); -define_npc_type_data( - NpcType.BarbarousWolf, - "Barbarous Wolf", - "Barbarous Wolf", - "Gulgus-Gue", - 1, - true, - undefined, - [1, 2], - 0x043, - 0, - true, - [["Group ID", 44, "F32"]], -); -define_npc_type_data( - NpcType.Booma, - "Booma", - "Booma", - "Bartle", - 1, - true, - undefined, - [1, 2], - 0x044, - 0, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.Gobooma, - "Gobooma", - "Gobooma", - "Barble", - 1, - true, - undefined, - [1, 2], - 0x044, - 1, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.Gigobooma, - "Gigobooma", - "Gigobooma", - "Tollaw", - 1, - true, - undefined, - [1, 2], - 0x044, - 2, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.Dragon, - "Dragon", - "Dragon", - "Sil Dragon", - 1, - true, - undefined, - [11], - 0x0c0, - 0, - false, - [], -); - -// Episode I Caves - -define_npc_type_data( - NpcType.GrassAssassin, - "Grass Assassin", - "Grass Assassin", - "Crimson Assassin", - 1, - true, - undefined, - [3, 4, 5], - 0x060, - 0, - false, - [], -); -define_npc_type_data( - NpcType.PoisonLily, - "Poison Lily", - "Poison Lily", - "Ob Lily", - 1, - true, - NpcType.NarLily, - [3, 4, 5], - 0x061, - 0, - false, - [], -); -define_npc_type_data( - NpcType.NarLily, - "Nar Lily", - "Nar Lily", - "Mil Lily", - 1, - true, - undefined, - [3, 4, 5], - 0x061, - 1, - true, - [], -); -define_npc_type_data( - NpcType.NanoDragon, - "Nano Dragon", - "Nano Dragon", - "Nano Dragon", - 1, - true, - undefined, - [3, 4, 5], - 0x062, - 0, - false, - [["Spawn flag", 64, "I32"]], -); -define_npc_type_data( - NpcType.EvilShark, - "Evil Shark", - "Evil Shark", - "Vulmer", - 1, - true, - undefined, - [3, 4, 5], - 0x063, - 0, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.PalShark, - "Pal Shark", - "Pal Shark", - "Govulmer", - 1, - true, - undefined, - [3, 4, 5], - 0x063, - 1, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.GuilShark, - "Guil Shark", - "Guil Shark", - "Melqueek", - 1, - true, - undefined, - [3, 4, 5], - 0x063, - 2, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.PofuillySlime, - "Pofuilly Slime", - "Pofuilly Slime", - "Pofuilly Slime", - 1, - true, - NpcType.PouillySlime, - [3, 4, 5], - 0x064, - 0, - false, - [], -); -define_npc_type_data( - NpcType.PouillySlime, - "Pouilly Slime", - "Pouilly Slime", - "Pouilly Slime", - 1, - true, - undefined, - [3, 4, 5], - 0x064, - 0, - true, - [], -); -define_npc_type_data( - NpcType.PanArms, - "Pan Arms", - "Pan Arms", - "Pan Arms", - 1, - true, - undefined, - [3, 4, 5], - 0x065, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Migium, - "Migium", - "Migium", - "Migium", - 1, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.Hidoom, - "Hidoom", - "Hidoom", - "Hidoom", - 1, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.DeRolLe, - "De Rol Le", - "De Rol Le", - "Dal Ra Lie", - 1, - true, - undefined, - [12], - 0x0c1, - 0, - false, - [], -); - -// Episode I Mines - -define_npc_type_data( - NpcType.Dubchic, - "Dubchic", - "Dubchic", - "Dubchich", - 1, - true, - undefined, - [6, 7], - 0x080, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Gilchic, - "Gilchic", - "Gilchic", - "Gilchich", - 1, - true, - undefined, - [6, 7], - 0x080, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Garanz, - "Garanz", - "Garanz", - "Baranz", - 1, - true, - undefined, - [6, 7], - 0x081, - 0, - false, - [], -); -define_npc_type_data( - NpcType.SinowBeat, - "Sinow Beat", - "Sinow Beat", - "Sinow Blue", - 1, - true, - undefined, - [6, 7], - 0x082, - 0, - false, - [], -); -define_npc_type_data( - NpcType.SinowGold, - "Sinow Gold", - "Sinow Gold", - "Sinow Red", - 1, - true, - undefined, - [6, 7], - 0x082, - 0, - true, - [], -); -define_npc_type_data( - NpcType.Canadine, - "Canadine", - "Canadine", - "Canabin", - 1, - true, - undefined, - [6, 7], - 0x083, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Canane, - "Canane", - "Canane", - "Canune", - 1, - true, - undefined, - [6, 7], - 0x084, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Dubswitch, - "Dubswitch", - "Dubswitch", - "Dubswitch", - 1, - true, - undefined, - [6, 7], - 0x085, - 0, - false, - [], -); -define_npc_type_data( - NpcType.VolOptPart1, - "Vol Opt (Part 1)", - "Vol Opt", - "Vol Opt ver.2", - 1, - true, - undefined, - [13], - 0x0c2, - 0, - false, - [], -); -define_npc_type_data( - NpcType.VolOptPart2, - "Vol Opt (Part 2)", - "Vol Opt", - "Vol Opt ver.2", - 1, - true, - undefined, - [13], - 0x0c5, - 0, - false, - [], -); - -// Episode I Ruins - -define_npc_type_data( - NpcType.Delsaber, - "Delsaber", - "Delsaber", - "Delsaber", - 1, - true, - undefined, - [8, 9, 10], - 0x0a0, - 0, - false, - [ - ["Jump distance", 44, "F32"], - ["Block HP", 48, "F32"], - ], -); -define_npc_type_data( - NpcType.ChaosSorcerer, - "Chaos Sorcerer", - "Chaos Sorcerer", - "Gran Sorcerer", - 1, - true, - undefined, - [8, 9, 10], - 0x0a1, - 0, - false, - [], -); -define_npc_type_data( - NpcType.DarkGunner, - "Dark Gunner", - "Dark Gunner", - "Dark Gunner", - 1, - true, - undefined, - [8, 9, 10], - 0x0a2, - 0, - false, - [], -); -define_npc_type_data( - NpcType.DeathGunner, - "Death Gunner", - "Death Gunner", - "Death Gunner", - 1, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.ChaosBringer, - "Chaos Bringer", - "Chaos Bringer", - "Dark Bringer", - 1, - true, - undefined, - [8, 9, 10], - 0x0a4, - 0, - false, - [], -); -define_npc_type_data( - NpcType.DarkBelra, - "Dark Belra", - "Dark Belra", - "Indi Belra", - 1, - true, - undefined, - [8, 9, 10], - 0x0a5, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Dimenian, - "Dimenian", - "Dimenian", - "Arlan", - 1, - true, - undefined, - [8, 9, 10], - 0x0a6, - 0, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.LaDimenian, - "La Dimenian", - "La Dimenian", - "Merlan", - 1, - true, - undefined, - [8, 9, 10], - 0x0a6, - 1, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.SoDimenian, - "So Dimenian", - "So Dimenian", - "Del-D", - 1, - true, - undefined, - [8, 9, 10], - 0x0a6, - 2, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.Bulclaw, - "Bulclaw", - "Bulclaw", - "Bulclaw", - 1, - true, - undefined, - [8, 9, 10], - 0x0a7, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Bulk, - "Bulk", - "Bulk", - "Bulk", - 1, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.Claw, - "Claw", - "Claw", - "Claw", - 1, - true, - undefined, - [8, 9, 10], - 0x0a8, - 0, - false, - [], -); -define_npc_type_data( - NpcType.DarkFalz, - "Dark Falz", - "Dark Falz", - "Dark Falz", - 1, - true, - undefined, - [14], - 0x0c8, - 0, - false, - [], -); - -// Episode II VR Temple - -define_npc_type_data( - NpcType.Hildebear2, - "Hildebear (Ep. II)", - "Hildebear", - "Hildelt", - 2, - true, - NpcType.Hildeblue2, - [1, 2], - 0x040, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Hildeblue2, - "Hildeblue (Ep. II)", - "Hildeblue", - "Hildetorr", - 2, - true, - undefined, - [1, 2], - 0x040, - 1, - false, - [], -); -define_npc_type_data( - NpcType.RagRappy2, - "Rag Rappy (Ep. II)", - "Rag Rappy", - "El Rappy", - 2, - true, - NpcType.LoveRappy, - [1, 2], - 0x041, - 0, - false, - [], -); -define_npc_type_data( - NpcType.LoveRappy, - "Love Rappy", - "Love Rappy", - "Love Rappy", - 2, - true, - undefined, - [1, 2], - 0x041, - 1, - false, - [], -); -define_npc_type_data( - NpcType.StRappy, - "St. Rappy", - "St. Rappy", - "St. Rappy", - 2, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.HalloRappy, - "Hallo Rappy", - "Hallo Rappy", - "Hallo Rappy", - 2, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.EggRappy, - "Egg Rappy", - "Egg Rappy", - "Egg Rappy", - 2, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.Monest2, - "Monest (Ep. II)", - "Monest", - "Mothvist", - 2, - true, - undefined, - [1, 2], - 0x042, - 0, - false, - [ - ["State", 44, "F32"], - ["Start number", 48, "F32"], - ["Total number", 52, "F32"], - ], -); -define_npc_type_data( - NpcType.Mothmant2, - "Mothmant", - "Mothmant", - "Mothvert", - 2, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.PoisonLily2, - "Poison Lily (Ep. II)", - "Poison Lily", - "Ob Lily", - 2, - true, - NpcType.NarLily2, - [1, 2], - 0x061, - 0, - false, - [], -); -define_npc_type_data( - NpcType.NarLily2, - "Nar Lily (Ep. II)", - "Nar Lily", - "Mil Lily", - 2, - true, - undefined, - [1, 2], - 0x061, - 1, - false, - [], -); -define_npc_type_data( - NpcType.GrassAssassin2, - "Grass Assassin (Ep. II)", - "Grass Assassin", - "Crimson Assassin", - 2, - true, - undefined, - [1, 2], - 0x060, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Dimenian2, - "Dimenian (Ep. II)", - "Dimenian", - "Arlan", - 2, - true, - undefined, - [1, 2], - 0x0a6, - 0, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.LaDimenian2, - "La Dimenian (Ep. II)", - "La Dimenian", - "Merlan", - 2, - true, - undefined, - [1, 2], - 0x0a6, - 1, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.SoDimenian2, - "So Dimenian (Ep. II)", - "So Dimenian", - "Del-D", - 2, - true, - undefined, - [1, 2], - 0x0a6, - 2, - false, - [["Idle distance", 48, "F32"]], -); -define_npc_type_data( - NpcType.DarkBelra2, - "Dark Belra (Ep. II)", - "Dark Belra", - "Indi Belra", - 2, - true, - undefined, - [1, 2], - 0x0a5, - 0, - false, - [], -); -define_npc_type_data( - NpcType.BarbaRay, - "Barba Ray", - "Barba Ray", - "Barba Ray", - 2, - true, - undefined, - [14], - 0x0cb, - 0, - false, - [], -); - -// Episode II VR Spaceship - -define_npc_type_data( - NpcType.SavageWolf2, - "Savage Wolf (Ep. II)", - "Savage Wolf", - "Gulgus", - 2, - true, - undefined, - [3, 4], - 0x043, - 0, - false, - [["Group ID", 44, "F32"]], -); -define_npc_type_data( - NpcType.BarbarousWolf2, - "Barbarous Wolf (Ep. II)", - "Barbarous Wolf", - "Gulgus-Gue", - 2, - true, - undefined, - [3, 4], - 0x043, - 0, - true, - [["Group ID", 44, "F32"]], -); -define_npc_type_data( - NpcType.PanArms2, - "Pan Arms (Ep. II)", - "Pan Arms", - "Pan Arms", - 2, - true, - undefined, - [3, 4], - 0x065, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Migium2, - "Migium (Ep. II)", - "Migium", - "Migium", - 2, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.Hidoom2, - "Hidoom (Ep. II)", - "Hidoom", - "Hidoom", - 2, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.Dubchic2, - "Dubchic (Ep. II)", - "Dubchic", - "Dubchich", - 2, - true, - undefined, - [3, 4], - 0x080, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Gilchic2, - "Gilchic (Ep. II)", - "Gilchic", - "Gilchich", - 2, - true, - undefined, - [3, 4], - 0x080, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Garanz2, - "Garanz (Ep. II)", - "Garanz", - "Baranz", - 2, - true, - undefined, - [3, 4], - 0x081, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Dubswitch2, - "Dubswitch (Ep. II)", - "Dubswitch", - "Dubswitch", - 2, - true, - undefined, - [3, 4], - 0x085, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Delsaber2, - "Delsaber (Ep. II)", - "Delsaber", - "Delsaber", - 2, - true, - undefined, - [3, 4], - 0x0a0, - 0, - false, - [ - ["Jump distance", 44, "F32"], - ["Block HP", 48, "F32"], - ], -); -define_npc_type_data( - NpcType.ChaosSorcerer2, - "Chaos Sorcerer (Ep. II)", - "Chaos Sorcerer", - "Gran Sorcerer", - 2, - true, - undefined, - [3, 4], - 0x0a1, - 0, - false, - [], -); -define_npc_type_data( - NpcType.GolDragon, - "Gol Dragon", - "Gol Dragon", - "Gol Dragon", - 2, - true, - undefined, - [15], - 0x0cc, - 0, - false, - [], -); - -// Episode II Central Control Area - -define_npc_type_data( - NpcType.SinowBerill, - "Sinow Berill", - "Sinow Berill", - "Sinow Berill", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16], - 0x0d4, - 0, - false, - [], -); -define_npc_type_data( - NpcType.SinowSpigell, - "Sinow Spigell", - "Sinow Spigell", - "Sinow Spigell", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16], - 0x0d4, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Merillia, - "Merillia", - "Merillia", - "Merillia", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16], - 0x0d5, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Meriltas, - "Meriltas", - "Meriltas", - "Meriltas", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16], - 0x0d5, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Mericarol, - "Mericarol", - "Mericarol", - "Mericarol", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16, 17], - 0x0d6, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Mericus, - "Mericus", - "Mericus", - "Mericus", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16, 17], - 0x0d6, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Merikle, - "Merikle", - "Merikle", - "Merikle", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16, 17], - 0x0d6, - 2, - false, - [], -); -define_npc_type_data( - NpcType.UlGibbon, - "Ul Gibbon", - "Ul Gibbon", - "Ul Gibbon", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16], - 0x0d7, - 0, - false, - [ - ["Spot appear", 44, "F32"], - ["Jump appear", 48, "F32"], - ["Back jump", 52, "F32"], - ["Run tech", 56, "F32"], - ["Back tech", 60, "F32"], - ], -); -define_npc_type_data( - NpcType.ZolGibbon, - "Zol Gibbon", - "Zol Gibbon", - "Zol Gibbon", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16], - 0x0d7, - 1, - false, - [ - ["Spot appear", 44, "F32"], - ["Jump appear", 48, "F32"], - ["Back jump", 52, "F32"], - ["Run tech", 56, "F32"], - ["Back tech", 60, "F32"], - ], -); -define_npc_type_data( - NpcType.Gibbles, - "Gibbles", - "Gibbles", - "Gibbles", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16, 17], - 0x0d8, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Gee, - "Gee", - "Gee", - "Gee", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16], - 0x0d9, - 0, - false, - [], -); -define_npc_type_data( - NpcType.GiGue, - "Gi Gue", - "Gi Gue", - "Gi Gue", - 2, - true, - undefined, - [5, 6, 7, 8, 9, 16, 17], - 0x0da, - 0, - false, - [], -); -define_npc_type_data( - NpcType.IllGill, - "Ill Gill", - "Ill Gill", - "Ill Gill", - 2, - true, - undefined, - [17], - 0x0e1, - 0, - false, - [], -); -define_npc_type_data( - NpcType.DelLily, - "Del Lily", - "Del Lily", - "Del Lily", - 2, - true, - undefined, - [17], - 0x061, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Epsilon, - "Epsilon", - "Epsilon", - "Epsilon", - 2, - true, - undefined, - [17], - 0x0e0, - 0, - false, - [], -); -define_npc_type_data( - NpcType.GalGryphon, - "Gal Gryphon", - "Gal Gryphon", - "Gal Gryphon", - 2, - true, - undefined, - [12], - 0x0c0, - 0, - false, - [], -); - -// Episode II Seabed - -define_npc_type_data( - NpcType.Deldepth, - "Deldepth", - "Deldepth", - "Deldepth", - 2, - true, - undefined, - [10, 11], - 0x0db, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Delbiter, - "Delbiter", - "Delbiter", - "Delbiter", - 2, - true, - undefined, - [10, 11, 17], - 0x0dc, - 0, - false, - [ - ["Howl percent", 44, "F32"], - ["Confuse percent", 48, "F32"], - ["Confuse distance", 52, "F32"], - ["Laser percent", 56, "F32"], - ["Charge percent", 60, "F32"], - ["Type", 64, "I32"], - ], -); -define_npc_type_data( - NpcType.Dolmolm, - "Dolmolm", - "Dolmolm", - "Dolmolm", - 2, - true, - undefined, - [10, 11], - 0x0dd, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Dolmdarl, - "Dolmdarl", - "Dolmdarl", - "Dolmdarl", - 2, - true, - undefined, - [10, 11], - 0x0dd, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Morfos, - "Morfos", - "Morfos", - "Morfos", - 2, - true, - undefined, - [10, 11], - 0x0de, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Recobox, - "Recobox", - "Recobox", - "Recobox", - 2, - true, - undefined, - [10, 11, 17], - 0x0df, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Recon, - "Recon", - "Recon", - "Recon", - 2, - true, - undefined, - [], - undefined, - undefined, - undefined, - [], -); -define_npc_type_data( - NpcType.SinowZoa, - "Sinow Zoa", - "Sinow Zoa", - "Sinow Zoa", - 2, - true, - undefined, - [10, 11], - 0x0e0, - 0, - false, - [], -); -define_npc_type_data( - NpcType.SinowZele, - "Sinow Zele", - "Sinow Zele", - "Sinow Zele", - 2, - true, - undefined, - [10, 11], - 0x0e0, - 1, - false, - [], -); -define_npc_type_data( - NpcType.OlgaFlow, - "Olga Flow", - "Olga Flow", - "Olga Flow", - 2, - true, - undefined, - [13], - 0x0ca, - 0, - false, - [], -); - -// Episode IV - -define_npc_type_data( - NpcType.SandRappy, - "Sand Rappy", - "Sand Rappy", - "Sand Rappy", - 4, - true, - NpcType.DelRappy, - [1, 2, 3, 4, 5, 6, 7, 8], - 0x041, - 0, - false, - [], -); -define_npc_type_data( - NpcType.DelRappy, - "Del Rappy", - "Del Rappy", - "Del Rappy", - 4, - true, - undefined, - [1, 2, 3, 4, 5, 6, 7, 8], - 0x041, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Astark, - "Astark", - "Astark", - "Astark", - 4, - true, - undefined, - [1, 2, 3, 4, 5, 6, 7, 8], - 0x110, - 0, - false, - [], -); -define_npc_type_data( - NpcType.SatelliteLizard, - "Satellite Lizard", - "Satellite Lizard", - "Satellite Lizard", - 4, - true, - undefined, - [1, 2, 3, 4, 5, 6, 7, 8], - 0x111, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Yowie, - "Yowie", - "Yowie", - "Yowie", - 4, - true, - undefined, - [1, 2, 3, 4, 5, 6, 7, 8], - 0x111, - 0, - true, - [], -); -define_npc_type_data( - NpcType.MerissaA, - "Merissa A", - "Merissa A", - "Merissa A", - 4, - true, - NpcType.MerissaAA, - [6, 7, 8], - 0x112, - 0, - false, - [], -); -define_npc_type_data( - NpcType.MerissaAA, - "Merissa AA", - "Merissa AA", - "Merissa AA", - 4, - true, - undefined, - [6, 7, 8], - 0x112, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Girtablulu, - "Girtablulu", - "Girtablulu", - "Girtablulu", - 4, - true, - undefined, - [6, 7, 8], - 0x113, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Zu, - "Zu", - "Zu", - "Zu", - 4, - true, - NpcType.Pazuzu, - [1, 2, 3, 4, 5, 6, 7, 8], - 0x114, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Pazuzu, - "Pazuzu", - "Pazuzu", - "Pazuzu", - 4, - true, - undefined, - [1, 2, 3, 4, 5, 6, 7, 8], - 0x114, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Boota, - "Boota", - "Boota", - "Boota", - 4, - true, - undefined, - [1, 2, 3, 4, 5], - 0x115, - 0, - false, - [], -); -define_npc_type_data( - NpcType.ZeBoota, - "Ze Boota", - "Ze Boota", - "Ze Boota", - 4, - true, - undefined, - [1, 2, 3, 4, 5], - 0x115, - 1, - false, - [], -); -define_npc_type_data( - NpcType.BaBoota, - "Ba Boota", - "Ba Boota", - "Ba Boota", - 4, - true, - undefined, - [1, 2, 3, 4, 5], - 0x115, - 2, - false, - [], -); -define_npc_type_data( - NpcType.Dorphon, - "Dorphon", - "Dorphon", - "Dorphon", - 4, - true, - NpcType.DorphonEclair, - [1, 2, 3, 4, 5], - 0x116, - 0, - false, - [], -); -define_npc_type_data( - NpcType.DorphonEclair, - "Dorphon Eclair", - "Dorphon Eclair", - "Dorphon Eclair", - 4, - true, - undefined, - [1, 2, 3, 4, 5], - 0x116, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Goran, - "Goran", - "Goran", - "Goran", - 4, - true, - undefined, - [6, 7, 8], - 0x117, - 0, - false, - [], -); -define_npc_type_data( - NpcType.PyroGoran, - "Pyro Goran", - "Pyro Goran", - "Pyro Goran", - 4, - true, - undefined, - [6, 7, 8], - 0x117, - 1, - false, - [], -); -define_npc_type_data( - NpcType.GoranDetonator, - "Goran Detonator", - "Goran Detonator", - "Goran Detonator", - 4, - true, - undefined, - [6, 7, 8], - 0x117, - 2, - false, - [], -); -define_npc_type_data( - NpcType.SaintMilion, - "Saint-Milion", - "Saint-Milion", - "Saint-Milion", - 4, - true, - NpcType.Kondrieu, - [9], - 0x119, - 0, - false, - [], -); -define_npc_type_data( - NpcType.Shambertin, - "Shambertin", - "Shambertin", - "Shambertin", - 4, - true, - NpcType.Kondrieu, - [9], - 0x119, - 1, - false, - [], -); -define_npc_type_data( - NpcType.Kondrieu, - "Kondrieu", - "Kondrieu", - "Kondrieu", - 4, - true, - undefined, - [9], - 0x119, - 0, - true, - [], -); - -Object.freeze(NPC_TYPES); -Object.freeze(ENEMY_NPC_TYPES); -Object.freeze(NPC_TYPE_DATA); diff --git a/src/core/data_formats/parsing/quest/object_code.ts b/src/core/data_formats/parsing/quest/object_code.ts deleted file mode 100644 index 1669674a..00000000 --- a/src/core/data_formats/parsing/quest/object_code.ts +++ /dev/null @@ -1,740 +0,0 @@ -import { - Arg, - DataSegment, - Instruction, - instruction_size, - InstructionSegment, - new_arg, - new_instruction, - Segment, - SegmentType, - StringSegment, -} from "../../asm/instructions"; -import { Cursor } from "../../block/cursor/Cursor"; -import { ControlFlowGraph } from "../../asm/data_flow_analysis/ControlFlowGraph"; -import { Kind, OP_JMP, OP_RET, Opcode, OPCODES, StackInteraction } from "../../asm/opcodes"; -import { get_register_value } from "../../asm/data_flow_analysis/get_register_value"; -import { get_stack_value } from "../../asm/data_flow_analysis/get_stack_value"; -import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; -import { Endianness } from "../../block/Endianness"; -import { LogManager } from "../../../logging"; -import { ResizableBlockCursor } from "../../block/cursor/ResizableBlockCursor"; -import { ResizableBlock } from "../../block/ResizableBlock"; -import { BinFormat } from "./BinFormat"; -import { Result, ResultBuilder } from "../../../Result"; -import { Severity } from "../../../Severity"; -import { assert } from "../../../util"; - -const logger = LogManager.get("core/data_formats/parsing/quest/object_code"); - -const SEGMENT_PRIORITY: number[] = []; -SEGMENT_PRIORITY[SegmentType.Instructions] = 2; -SEGMENT_PRIORITY[SegmentType.String] = 1; -SEGMENT_PRIORITY[SegmentType.Data] = 0; - -const BUILTIN_FUNCTIONS = new Set([ - 60, - 70, - 80, - 90, - 100, - 110, - 120, - 130, - 140, - 800, - 810, - 820, - 830, - 840, - 850, - 860, -]); - -export function parse_object_code( - object_code: ArrayBuffer, - label_offsets: readonly number[], - entry_labels: readonly number[], - lenient: boolean, - format: BinFormat, -): Result { - const cursor = new ArrayBufferCursor(object_code, Endianness.Little); - const label_holder = new LabelHolder(label_offsets); - const result = new ResultBuilder(logger); - const offset_to_segment = new Map(); - - find_and_parse_segments( - cursor, - label_holder, - entry_labels.reduce((m, l) => m.set(l, SegmentType.Instructions), new Map()), - offset_to_segment, - lenient, - format, - ); - - const segments: Segment[] = []; - - // Put segments in an array and parse left-over segments as data. - let offset = 0; - - while (offset < cursor.size) { - let segment: Segment | undefined = offset_to_segment.get(offset); - - // If we have a segment, add it. Otherwise create a new data segment. - if (!segment) { - const labels = label_holder.get_labels(offset); - let end_offset: number; - - if (labels) { - const info = label_holder.get_info(labels[0])!; - end_offset = info.next ? info.next.offset : cursor.size; - } else { - end_offset = cursor.size; - - for (const label of label_holder.labels) { - if (label.offset > offset) { - end_offset = label.offset; - break; - } - } - } - - cursor.seek_start(offset); - parse_data_segment(offset_to_segment, cursor, end_offset, labels || []); - - segment = offset_to_segment.get(offset); - - assert( - end_offset > offset, - () => - `Next offset ${end_offset} was smaller than or equal to current offset ${offset}.`, - ); - assert(segment, () => `Couldn't create segment for offset ${offset}.`); - } - - segments.push(segment); - - switch (segment.type) { - case SegmentType.Instructions: - for (const instruction of segment.instructions) { - offset += instruction_size(instruction, format); - } - - break; - case SegmentType.Data: - offset += segment.data.byteLength; - break; - case SegmentType.String: - // String segments should be multiples of 4 bytes. - offset += 4 * Math.ceil((segment.value.length + 1) / 2); - break; - default: - throw new Error(`${SegmentType[segment!.type]} not implemented.`); - } - } - - // Add unreferenced labels to their segment. - for (const { label, offset } of label_holder.labels) { - const segment = offset_to_segment.get(offset); - - if (segment) { - if (!segment.labels.includes(label)) { - segment.labels.push(label); - segment.labels.sort((a, b) => a - b); - } - } else { - result.add_problem( - Severity.Warning, - `Label ${label} doesn't point to anything.`, - `Label ${label} with offset ${offset} doesn't point to anything.`, - ); - } - } - - // Sanity check parsed object code. - if (cursor.size !== offset) { - result.add_problem( - Severity.Error, - "The script code is corrupt.", - `Expected to parse ${cursor.size} bytes but parsed ${offset} instead.`, - ); - - if (!lenient) { - return result.failure(); - } - } - - return result.success(segments); -} - -export function write_object_code( - segments: readonly Segment[], - format: BinFormat, -): { object_code: ArrayBuffer; label_offsets: number[] } { - const cursor = new ResizableBlockCursor( - new ResizableBlock(100 * segments.length), - Endianness.Little, - ); - const start_pos = cursor.position; - // Keep track of label offsets. - const label_offsets: number[] = []; - - for (const segment of segments) { - for (const label of segment.labels) { - label_offsets[label] = cursor.position - start_pos; - } - - if (segment.type === SegmentType.Instructions) { - for (const instruction of segment.instructions) { - const opcode = instruction.opcode; - - if (opcode.size === 2) { - cursor.write_u8(opcode.code >>> 8); - } - - cursor.write_u8(opcode.code & 0xff); - - if (opcode.stack !== StackInteraction.Pop) { - for (let i = 0; i < opcode.params.length; i++) { - const param = opcode.params[i]; - const args = instruction.param_to_args[i]; - const [arg] = args; - - switch (param.type.kind) { - case Kind.Byte: - if (arg.value >= 0) { - cursor.write_u8(arg.value); - } else { - cursor.write_i8(arg.value); - } - break; - case Kind.Word: - if (arg.value >= 0) { - cursor.write_u16(arg.value); - } else { - cursor.write_i16(arg.value); - } - break; - case Kind.DWord: - if (arg.value >= 0) { - cursor.write_u32(arg.value); - } else { - cursor.write_i32(arg.value); - } - break; - case Kind.Float: - cursor.write_f32(arg.value); - break; - case Kind.Label: - case Kind.ILabel: - case Kind.DLabel: - case Kind.SLabel: - cursor.write_u16(arg.value); - break; - case Kind.String: - if (format === BinFormat.DC_GC) { - cursor.write_string_ascii( - arg.value, - (arg.value as string).length + 1, - ); - } else { - cursor.write_string_utf16( - arg.value, - 2 * (arg.value as string).length + 2, - ); - } - break; - case Kind.ILabelVar: - cursor.write_u8(args.length); - cursor.write_u16_array(args.map(arg => arg.value)); - break; - case Kind.RegRef: - case Kind.RegTupRef: - cursor.write_u8(arg.value); - break; - case Kind.RegRefVar: - cursor.write_u8(args.length); - cursor.write_u8_array(args.map(arg => arg.value)); - break; - default: - // TYPE_ANY, TYPE_VALUE and TYPE_POINTER cannot be serialized. - throw new Error( - `Parameter type ${Kind[param.type.kind]} not implemented.`, - ); - } - } - } - } - } else if (segment.type === SegmentType.String) { - // String segments should be multiples of 4 bytes. - if (format === BinFormat.DC_GC) { - const byte_length = 4 * Math.ceil((segment.value.length + 1) / 4); - cursor.write_string_ascii(segment.value, byte_length); - } else { - const byte_length = 4 * Math.ceil((segment.value.length + 1) / 2); - cursor.write_string_utf16(segment.value, byte_length); - } - } else { - cursor.write_cursor(new ArrayBufferCursor(segment.data, cursor.endianness)); - } - } - - for (let i = 0; i < label_offsets.length; i++) { - if (label_offsets[i] == undefined) { - label_offsets[i] = -1; - } - } - - return { object_code: cursor.seek_start(0).array_buffer(), label_offsets }; -} - -function find_and_parse_segments( - cursor: Cursor, - label_holder: LabelHolder, - labels: Map, - offset_to_segment: Map, - lenient: boolean, - format: BinFormat, -): void { - let start_segment_count: number; - - // Iteratively parse segments from label references. - do { - start_segment_count = offset_to_segment.size; - - for (const [label, type] of labels) { - parse_segment(offset_to_segment, label_holder, cursor, label, type, lenient, format); - } - - // Find label references. - const sorted_segments = [...offset_to_segment.entries()] - .filter(([, s]) => s.type === SegmentType.Instructions) - .sort(([a], [b]) => a - b) - .map(([, s]) => s as InstructionSegment); - - const cfg = ControlFlowGraph.create(sorted_segments); - - labels = new Map(); - - for (const segment of sorted_segments) { - for (const instruction of segment.instructions) { - for (let i = 0; i < instruction.opcode.params.length; i++) { - const param = instruction.opcode.params[i]; - - switch (param.type.kind) { - case Kind.ILabel: - get_arg_label_values( - cfg, - labels, - instruction, - i, - SegmentType.Instructions, - ); - break; - case Kind.ILabelVar: - // Never on the stack. - // Eat all remaining arguments. - for (; i < instruction.args.length; i++) { - labels.set(instruction.args[i].value, SegmentType.Instructions); - } - - break; - case Kind.DLabel: - get_arg_label_values(cfg, labels, instruction, i, SegmentType.Data); - break; - case Kind.SLabel: - get_arg_label_values(cfg, labels, instruction, i, SegmentType.String); - break; - case Kind.RegTupRef: - { - // Never on the stack. - const arg = instruction.args[i]; - - for (let j = 0; j < param.type.register_tuples.length; j++) { - const reg_tup = param.type.register_tuples[j]; - - if (reg_tup.type.kind === Kind.ILabel) { - const label_values = get_register_value( - cfg, - instruction, - arg.value + j, - ); - - if (label_values.size() <= 10) { - for (const label of label_values) { - labels.set(label, SegmentType.Instructions); - } - } - } - } - } - break; - } - } - } - } - } while (offset_to_segment.size > start_segment_count); -} - -/** - * @returns immediate arguments or stack arguments. - */ -function get_arg_label_values( - cfg: ControlFlowGraph, - labels: Map, - instruction: Instruction, - param_idx: number, - segment_type: SegmentType, -): void { - if (instruction.opcode.stack === StackInteraction.Pop) { - const stack_values = get_stack_value( - cfg, - instruction, - instruction.opcode.params.length - param_idx - 1, - ); - - if (stack_values.size() <= 10) { - for (const value of stack_values) { - const old_type = labels.get(value); - - if ( - old_type == undefined || - SEGMENT_PRIORITY[segment_type] > SEGMENT_PRIORITY[old_type] - ) { - labels.set(value, segment_type); - } - } - } - } else { - const value = instruction.args[param_idx].value; - const old_type = labels.get(value); - - if (old_type == undefined || SEGMENT_PRIORITY[segment_type] > SEGMENT_PRIORITY[old_type]) { - labels.set(value, segment_type); - } - } -} - -function parse_segment( - offset_to_segment: Map, - label_holder: LabelHolder, - cursor: Cursor, - label: number, - type: SegmentType, - lenient: boolean, - format: BinFormat, -): void { - try { - const info = label_holder.get_info(label); - - if (info == undefined) { - if (!BUILTIN_FUNCTIONS.has(label)) { - logger.warn(`Label ${label} is not registered in the label table.`); - } - return; - } - - // Check whether we've already parsed this segment and reparse it if necessary. - const segment = offset_to_segment.get(info.offset); - let labels: number[]; - - if (segment) { - if (!segment.labels.includes(label)) { - segment.labels.push(label); - segment.labels.sort((a, b) => a - b); - } - - if (SEGMENT_PRIORITY[type] > SEGMENT_PRIORITY[segment.type]) { - labels = segment.labels; - } else { - return; - } - } else { - labels = [label]; - } - - const end_offset = info.next ? info.next.offset : cursor.size; - cursor.seek_start(info.offset); - - switch (type) { - case SegmentType.Instructions: - parse_instructions_segment( - offset_to_segment, - label_holder, - cursor, - end_offset, - labels, - info.next && info.next.label, - lenient, - format, - ); - break; - case SegmentType.Data: - parse_data_segment(offset_to_segment, cursor, end_offset, labels); - break; - case SegmentType.String: - parse_string_segment(offset_to_segment, cursor, end_offset, labels, format); - break; - default: - throw new Error(`Segment type ${SegmentType[type]} not implemented.`); - } - } catch (e) { - if (lenient) { - logger.error("Couldn't fully parse object code segment.", e); - } else { - throw e; - } - } -} - -function parse_instructions_segment( - offset_to_segment: Map, - label_holder: LabelHolder, - cursor: Cursor, - end_offset: number, - labels: number[], - next_label: number | undefined, - lenient: boolean, - format: BinFormat, -): void { - const instructions: Instruction[] = []; - - const segment: InstructionSegment = { - type: SegmentType.Instructions, - labels, - instructions, - asm: { labels: [] }, - }; - offset_to_segment.set(cursor.position, segment); - - while (cursor.position < end_offset) { - // Parse the opcode. - const main_opcode = cursor.u8(); - let opcode_index; - - switch (main_opcode) { - case 0xf8: - case 0xf9: - opcode_index = (main_opcode << 8) | cursor.u8(); - break; - default: - opcode_index = main_opcode; - break; - } - - const opcode = OPCODES[opcode_index]; - - // Parse the arguments. - try { - const args = parse_instruction_arguments(cursor, opcode, format); - instructions.push(new_instruction(opcode, args)); - } catch (e) { - if (lenient) { - logger.error( - `Exception occurred while parsing arguments for instruction ${opcode.mnemonic}.`, - e, - ); - instructions.push(new_instruction(opcode, [])); - } else { - throw e; - } - } - } - - // Recurse on label drop-through. - if (next_label != undefined) { - // Find the first ret or jmp. - let drop_through = true; - - for (let i = instructions.length - 1; i >= 0; i--) { - const opcode = instructions[i].opcode; - - if (opcode.code === OP_RET.code || opcode.code === OP_JMP.code) { - drop_through = false; - break; - } - } - - if (drop_through) { - parse_segment( - offset_to_segment, - label_holder, - cursor, - next_label, - SegmentType.Instructions, - lenient, - format, - ); - } - } -} - -function parse_data_segment( - offset_to_segment: Map, - cursor: Cursor, - end_offset: number, - labels: number[], -): void { - const start_offset = cursor.position; - const segment: DataSegment = { - type: SegmentType.Data, - labels, - data: cursor.array_buffer(end_offset - start_offset), - asm: { labels: [] }, - }; - offset_to_segment.set(start_offset, segment); -} - -function parse_string_segment( - offset_to_segment: Map, - cursor: Cursor, - end_offset: number, - labels: number[], - format: BinFormat, -): void { - const start_offset = cursor.position; - const segment: StringSegment = { - type: SegmentType.String, - labels, - value: - format === BinFormat.DC_GC - ? cursor.string_ascii(end_offset - start_offset, true, true) - : cursor.string_utf16(end_offset - start_offset, true, true), - asm: { labels: [] }, - }; - offset_to_segment.set(start_offset, segment); -} - -function parse_instruction_arguments(cursor: Cursor, opcode: Opcode, format: BinFormat): Arg[] { - const args: Arg[] = []; - - if (opcode.stack !== StackInteraction.Pop) { - for (const param of opcode.params) { - switch (param.type.kind) { - case Kind.Byte: - args.push(new_arg(cursor.u8())); - break; - case Kind.Word: - args.push(new_arg(cursor.u16())); - break; - case Kind.DWord: - args.push(new_arg(cursor.i32())); - break; - case Kind.Float: - args.push(new_arg(cursor.f32())); - break; - case Kind.Label: - case Kind.ILabel: - case Kind.DLabel: - case Kind.SLabel: - args.push(new_arg(cursor.u16())); - break; - case Kind.String: - { - const max_bytes = Math.min(4096, cursor.bytes_left); - args.push( - new_arg( - format === BinFormat.DC_GC - ? cursor.string_ascii(max_bytes, true, false) - : cursor.string_utf16(max_bytes, true, false), - ), - ); - } - break; - case Kind.ILabelVar: - { - const arg_size = cursor.u8(); - args.push(...cursor.u16_array(arg_size).map(value => new_arg(value))); - } - break; - case Kind.RegRef: - case Kind.RegTupRef: - args.push(new_arg(cursor.u8())); - break; - case Kind.RegRefVar: - { - const arg_size = cursor.u8(); - args.push(...cursor.u8_array(arg_size).map(value => new_arg(value))); - } - break; - default: - throw new Error(`Parameter type ${Kind[param.type.kind]} not implemented.`); - } - } - } - - return args; -} - -class LabelHolder { - /** - * Labels and their offset sorted by offset and then label. - */ - readonly labels: { label: number; offset: number }[] = []; - /** - * Mapping of labels to their offset and index into labels. - */ - private readonly label_map: Map = new Map(); - /** - * Mapping of offsets to lists of labels. - */ - private readonly offset_map: Map = new Map(); - - constructor(label_offsets: readonly number[]) { - // Populate the main label list. - for (let label = 0; label < label_offsets.length; label++) { - const offset = label_offsets[label]; - - if (offset !== -1) { - this.labels.push({ label, offset }); - } - } - - // Sort by offset, then label. - this.labels.sort((a, b) => a.offset - b.offset || a.label - b.label); - - // Populate the label and offset maps. - for (let index = 0; index < this.labels.length; index++) { - const { label, offset } = this.labels[index]; - - this.label_map.set(label, { offset, index }); - - const labels = this.offset_map.get(offset) || []; - labels.push(label); - this.offset_map.set(offset, labels); - } - } - - get_labels(offset: number): number[] | undefined { - return this.offset_map.get(offset); - } - - get_info( - label: number, - ): { offset: number; next?: { label: number; offset: number } } | undefined { - const offset_and_index = this.label_map.get(label); - - if (offset_and_index == undefined) { - return undefined; - } - - // Find the next label with a different offset. - let next: { label: number; offset: number } | undefined; - - for (let i = offset_and_index.index + 1; i < this.labels.length; i++) { - next = this.labels[i]; - - // Skip the label if it points to the same offset. - if (next.offset > offset_and_index.offset) { - break; - } else { - next = undefined; - } - } - - return { - offset: offset_and_index.offset, - next, - }; - } -} diff --git a/src/core/data_formats/parsing/quest/object_types.ts b/src/core/data_formats/parsing/quest/object_types.ts deleted file mode 100644 index 1dac09b3..00000000 --- a/src/core/data_formats/parsing/quest/object_types.ts +++ /dev/null @@ -1,3328 +0,0 @@ -import { Episode } from "./Episode"; -import { EntityProp, EntityPropType } from "./properties"; - -export enum ObjectType { - // Make sure ObjectType does not overlap NpcType. - Unknown = 1000, - PlayerSet, - Particle, - Teleporter, - Warp, - LightCollision, - Item, - EnvSound, - FogCollision, - EventCollision, - CharaCollision, - ElementalTrap, - StatusTrap, - HealTrap, - LargeElementalTrap, - ObjRoomID, - Sensor, - UnknownItem16, - LensFlare, - ScriptCollision, - HealRing, - MapCollision, - ScriptCollisionA, - ItemLight, - RadarCollision, - FogCollisionSW, - BossTeleporter, - ImageBoard, - QuestWarp, - Epilogue, - UnknownItem29, - UnknownItem30, - UnknownItem31, - BoxDetectObject, - SymbolChatObject, - TouchPlateObject, - TargetableObject, - EffectObject, - CountDownObject, - UnknownItem38, - UnknownItem39, - UnknownItem40, - UnknownItem41, - MenuActivation, - TelepipeLocation, - BGMCollision, - MainRagolTeleporter, - LobbyTeleporter, - PrincipalWarp, - ShopDoor, - HuntersGuildDoor, - TeleporterDoor, - MedicalCenterDoor, - Elevator, - EasterEgg, - ValentinesHeart, - ChristmasTree, - ChristmasWreath, - HalloweenPumpkin, - TwentyFirstCentury, - Sonic, - WelcomeBoard, - Firework, - LobbyScreenDoor, - MainRagolTeleporterBattleInNextArea, - LabTeleporterDoor, - Pioneer2InvisibleTouchplate, - ForestDoor, - ForestSwitch, - LaserFence, - LaserSquareFence, - ForestLaserFenceSwitch, - LightRays, - BlueButterfly, - Probe, - RandomTypeBox1, - ForestWeatherStation, - Battery, - ForestConsole, - BlackSlidingDoor, - RicoMessagePod, - EnergyBarrier, - ForestRisingBridge, - SwitchNoneDoor, - EnemyBoxGrey, - FixedTypeBox, - EnemyBoxBrown, - EmptyTypeBox, - LaserFenceEx, - LaserSquareFenceEx, - FloorPanel1, - Caves4ButtonDoor, - CavesNormalDoor, - CavesSmashingPillar, - CavesSign1, - CavesSign2, - CavesSign3, - HexagonalTank, - BrownPlatform, - WarningLightObject, - Rainbow, - FloatingJellyfish, - FloatingDragonfly, - CavesSwitchDoor, - RobotRechargeStation, - CavesCakeShop, - Caves1SmallRedRock, - Caves1MediumRedRock, - Caves1LargeRedRock, - Caves2SmallRock1, - Caves2MediumRock1, - Caves2LargeRock1, - Caves2SmallRock2, - Caves2MediumRock2, - Caves2LargeRock2, - Caves3SmallRock, - Caves3MediumRock, - Caves3LargeRock, - FloorPanel2, - DestructableRockCaves1, - DestructableRockCaves2, - DestructableRockCaves3, - MinesDoor, - FloorPanel3, - MinesSwitchDoor, - LargeCryoTube, - ComputerLikeCalus, - GreenScreenOpeningAndClosing, - FloatingRobot, - FloatingBlueLight, - SelfDestructingObject1, - SelfDestructingObject2, - SelfDestructingObject3, - SparkMachine, - MinesLargeFlashingCrate, - RuinsSeal, - RuinsTeleporter, - RuinsWarpSiteToSite, - RuinsSwitch, - FloorPanel4, - Ruins1Door, - Ruins3Door, - Ruins2Door, - Ruins11ButtonDoor, - Ruins21ButtonDoor, - Ruins31ButtonDoor, - Ruins4ButtonDoor, - Ruins2ButtonDoor, - RuinsSensor, - RuinsFenceSwitch, - RuinsLaserFence4x2, - RuinsLaserFence6x2, - RuinsLaserFence4x4, - RuinsLaserFence6x4, - RuinsPoisonBlob, - RuinsPillarTrap, - PopupTrapNoTech, - RuinsCrystal, - Monument, - RuinsRock1, - RuinsRock2, - RuinsRock3, - RuinsRock4, - RuinsRock5, - RuinsRock6, - RuinsRock7, - Poison, - FixedBoxTypeRuins, - RandomBoxTypeRuins, - EnemyTypeBoxYellow, - EnemyTypeBoxBlue, - EmptyTypeBoxBlue, - DestructableRock, - PopupTrapsTechs, - FlyingWhiteBird, - Tower, - FloatingRocks, - FloatingSoul, - Butterfly, - LobbyGameMenu, - LobbyWarpObject, - Lobby1EventObjectDefaultTree, - UnknownItem387, - UnknownItem388, - UnknownItem389, - LobbyEventObjectStaticPumpkin, - LobbyEventObject3ChristmasWindows, - LobbyEventObjectRedAndWhiteCurtain, - UnknownItem393, - UnknownItem394, - LobbyFishTank, - LobbyEventObjectButterflies, - UnknownItem400, - GreyWallLow, - SpaceshipDoor, - GreyWallHigh, - TempleNormalDoor, - BreakableWallWallButUnbreakable, - BrokenCylinderAndRubble, - ThreeBrokenWallPiecesOnFloor, - HighBrickCylinder, - LyingCylinder, - BrickConeWithFlatTop, - BreakableTempleWall, - TempleMapDetect, - SmallBrownBrickRisingBridge, - LongRisingBridgeWithPinkHighEdges, - FourSwitchTempleDoor, - FourButtonSpaceshipDoor, - ItemBoxCca, - TeleporterEp2, - CcaDoor, - SpecialBoxCca, - BigCcaDoor, - BigCcaDoorSwitch, - LittleRock, - Little3StoneWall, - Medium3StoneWall, - SpiderPlant, - CcaAreaTeleporter, - UnknownItem523, - WhiteBird, - OrangeBird, - Saw, - LaserDetect, - UnknownItem529, - UnknownItem530, - Seagull, - Fish, - SeabedDoorWithBlueEdges, - SeabedDoorAlwaysOpenNonTriggerable, - LittleCryotube, - WideGlassWallBreakable, - BlueFloatingRobot, - RedFloatingRobot, - Dolphin, - CaptureTrap, - VRLink, - UnknownItem576, - WarpInBarbaRayRoom, - UnknownItem672, - GeeNest, - LabComputerConsole, - LabComputerConsoleGreenScreen, - ChairYellowPillow, - OrangeWallWithHoleInMiddle, - GreyWallWithHoleInMiddle, - LongTable, - GBAStation, - TalkLinkToSupport, - InstaWarp, - LabInvisibleObject, - LabGlassWindowDoor, - UnknownItem700, - LabCeilingWarp, - Ep4LightSource, - Cactus, - BigBrownRock, - BreakableBrownRock, - UnknownItem832, - UnknownItem833, - PoisonPlant, - UnknownItem897, - UnknownItem898, - OozingDesertPlant, - UnknownItem901, - BigBlackRocks, - UnknownItem903, - UnknownItem904, - UnknownItem905, - UnknownItem906, - FallingRock, - DesertPlantHasCollision, - DesertFixedTypeBoxBreakableCrystals, - UnknownItem910, - BeeHive, - UnknownItem912, - Heat, - TopOfSaintMillionEgg, - UnknownItem961, -} - -export type ObjectTypeData = { - readonly name: string; - /** - * The valid area IDs per episode in which this object can appear. - * This array can be indexed with an {@link Episode} value. - */ - readonly area_ids: number[][]; - readonly type_id?: number; - /** - * Default object-specific properties. - */ - readonly properties: readonly EntityProp[]; -}; - -export const OBJECT_TYPES: ObjectType[] = []; - -export function object_data(type: ObjectType): ObjectTypeData { - return OBJECT_TYPE_DATA[type]; -} - -export function id_to_object_type(id: number): ObjectType { - switch (id) { - default: - return ObjectType.Unknown; - - case 0: - return ObjectType.PlayerSet; - case 1: - return ObjectType.Particle; - case 2: - return ObjectType.Teleporter; - case 3: - return ObjectType.Warp; - case 4: - return ObjectType.LightCollision; - case 5: - return ObjectType.Item; - case 6: - return ObjectType.EnvSound; - case 7: - return ObjectType.FogCollision; - case 8: - return ObjectType.EventCollision; - case 9: - return ObjectType.CharaCollision; - case 10: - return ObjectType.ElementalTrap; - case 11: - return ObjectType.StatusTrap; - case 12: - return ObjectType.HealTrap; - case 13: - return ObjectType.LargeElementalTrap; - case 14: - return ObjectType.ObjRoomID; - case 15: - return ObjectType.Sensor; - case 16: - return ObjectType.UnknownItem16; - case 17: - return ObjectType.LensFlare; - case 18: - return ObjectType.ScriptCollision; - case 19: - return ObjectType.HealRing; - case 20: - return ObjectType.MapCollision; - case 21: - return ObjectType.ScriptCollisionA; - case 22: - return ObjectType.ItemLight; - case 23: - return ObjectType.RadarCollision; - case 24: - return ObjectType.FogCollisionSW; - case 25: - return ObjectType.BossTeleporter; - case 26: - return ObjectType.ImageBoard; - case 27: - return ObjectType.QuestWarp; - case 28: - return ObjectType.Epilogue; - case 29: - return ObjectType.UnknownItem29; - case 30: - return ObjectType.UnknownItem30; - case 31: - return ObjectType.UnknownItem31; - case 32: - return ObjectType.BoxDetectObject; - case 33: - return ObjectType.SymbolChatObject; - case 34: - return ObjectType.TouchPlateObject; - case 35: - return ObjectType.TargetableObject; - case 36: - return ObjectType.EffectObject; - case 37: - return ObjectType.CountDownObject; - case 38: - return ObjectType.UnknownItem38; - case 39: - return ObjectType.UnknownItem39; - case 40: - return ObjectType.UnknownItem40; - case 41: - return ObjectType.UnknownItem41; - case 64: - return ObjectType.MenuActivation; - case 65: - return ObjectType.TelepipeLocation; - case 66: - return ObjectType.BGMCollision; - case 67: - return ObjectType.MainRagolTeleporter; - case 68: - return ObjectType.LobbyTeleporter; - case 69: - return ObjectType.PrincipalWarp; - case 70: - return ObjectType.ShopDoor; - case 71: - return ObjectType.HuntersGuildDoor; - case 72: - return ObjectType.TeleporterDoor; - case 73: - return ObjectType.MedicalCenterDoor; - case 74: - return ObjectType.Elevator; - case 75: - return ObjectType.EasterEgg; - case 76: - return ObjectType.ValentinesHeart; - case 77: - return ObjectType.ChristmasTree; - case 78: - return ObjectType.ChristmasWreath; - case 79: - return ObjectType.HalloweenPumpkin; - case 80: - return ObjectType.TwentyFirstCentury; - case 81: - return ObjectType.Sonic; - case 82: - return ObjectType.WelcomeBoard; - case 83: - return ObjectType.Firework; - case 84: - return ObjectType.LobbyScreenDoor; - case 85: - return ObjectType.MainRagolTeleporterBattleInNextArea; - case 86: - return ObjectType.LabTeleporterDoor; - case 87: - return ObjectType.Pioneer2InvisibleTouchplate; - case 128: - return ObjectType.ForestDoor; - case 129: - return ObjectType.ForestSwitch; - case 130: - return ObjectType.LaserFence; - case 131: - return ObjectType.LaserSquareFence; - case 132: - return ObjectType.ForestLaserFenceSwitch; - case 133: - return ObjectType.LightRays; - case 134: - return ObjectType.BlueButterfly; - case 135: - return ObjectType.Probe; - case 136: - return ObjectType.RandomTypeBox1; - case 137: - return ObjectType.ForestWeatherStation; - case 138: - return ObjectType.Battery; - case 139: - return ObjectType.ForestConsole; - case 140: - return ObjectType.BlackSlidingDoor; - case 141: - return ObjectType.RicoMessagePod; - case 142: - return ObjectType.EnergyBarrier; - case 143: - return ObjectType.ForestRisingBridge; - case 144: - return ObjectType.SwitchNoneDoor; - case 145: - return ObjectType.EnemyBoxGrey; - case 146: - return ObjectType.FixedTypeBox; - case 147: - return ObjectType.EnemyBoxBrown; - case 149: - return ObjectType.EmptyTypeBox; - case 150: - return ObjectType.LaserFenceEx; - case 151: - return ObjectType.LaserSquareFenceEx; - case 192: - return ObjectType.FloorPanel1; - case 193: - return ObjectType.Caves4ButtonDoor; - case 194: - return ObjectType.CavesNormalDoor; - case 195: - return ObjectType.CavesSmashingPillar; - case 196: - return ObjectType.CavesSign1; - case 197: - return ObjectType.CavesSign2; - case 198: - return ObjectType.CavesSign3; - case 199: - return ObjectType.HexagonalTank; - case 200: - return ObjectType.BrownPlatform; - case 201: - return ObjectType.WarningLightObject; - case 203: - return ObjectType.Rainbow; - case 204: - return ObjectType.FloatingJellyfish; - case 205: - return ObjectType.FloatingDragonfly; - case 206: - return ObjectType.CavesSwitchDoor; - case 207: - return ObjectType.RobotRechargeStation; - case 208: - return ObjectType.CavesCakeShop; - case 209: - return ObjectType.Caves1SmallRedRock; - case 210: - return ObjectType.Caves1MediumRedRock; - case 211: - return ObjectType.Caves1LargeRedRock; - case 212: - return ObjectType.Caves2SmallRock1; - case 213: - return ObjectType.Caves2MediumRock1; - case 214: - return ObjectType.Caves2LargeRock1; - case 215: - return ObjectType.Caves2SmallRock2; - case 216: - return ObjectType.Caves2MediumRock2; - case 217: - return ObjectType.Caves2LargeRock2; - case 218: - return ObjectType.Caves3SmallRock; - case 219: - return ObjectType.Caves3MediumRock; - case 220: - return ObjectType.Caves3LargeRock; - case 222: - return ObjectType.FloorPanel2; - case 223: - return ObjectType.DestructableRockCaves1; - case 224: - return ObjectType.DestructableRockCaves2; - case 225: - return ObjectType.DestructableRockCaves3; - case 256: - return ObjectType.MinesDoor; - case 257: - return ObjectType.FloorPanel3; - case 258: - return ObjectType.MinesSwitchDoor; - case 259: - return ObjectType.LargeCryoTube; - case 260: - return ObjectType.ComputerLikeCalus; - case 261: - return ObjectType.GreenScreenOpeningAndClosing; - case 262: - return ObjectType.FloatingRobot; - case 263: - return ObjectType.FloatingBlueLight; - case 264: - return ObjectType.SelfDestructingObject1; - case 265: - return ObjectType.SelfDestructingObject2; - case 266: - return ObjectType.SelfDestructingObject3; - case 267: - return ObjectType.SparkMachine; - case 268: - return ObjectType.MinesLargeFlashingCrate; - case 304: - return ObjectType.RuinsSeal; - case 320: - return ObjectType.RuinsTeleporter; - case 321: - return ObjectType.RuinsWarpSiteToSite; - case 322: - return ObjectType.RuinsSwitch; - case 323: - return ObjectType.FloorPanel4; - case 324: - return ObjectType.Ruins1Door; - case 325: - return ObjectType.Ruins3Door; - case 326: - return ObjectType.Ruins2Door; - case 327: - return ObjectType.Ruins11ButtonDoor; - case 328: - return ObjectType.Ruins21ButtonDoor; - case 329: - return ObjectType.Ruins31ButtonDoor; - case 330: - return ObjectType.Ruins4ButtonDoor; - case 331: - return ObjectType.Ruins2ButtonDoor; - case 332: - return ObjectType.RuinsSensor; - case 333: - return ObjectType.RuinsFenceSwitch; - case 334: - return ObjectType.RuinsLaserFence4x2; - case 335: - return ObjectType.RuinsLaserFence6x2; - case 336: - return ObjectType.RuinsLaserFence4x4; - case 337: - return ObjectType.RuinsLaserFence6x4; - case 338: - return ObjectType.RuinsPoisonBlob; - case 339: - return ObjectType.RuinsPillarTrap; - case 340: - return ObjectType.PopupTrapNoTech; - case 341: - return ObjectType.RuinsCrystal; - case 342: - return ObjectType.Monument; - case 345: - return ObjectType.RuinsRock1; - case 346: - return ObjectType.RuinsRock2; - case 347: - return ObjectType.RuinsRock3; - case 348: - return ObjectType.RuinsRock4; - case 349: - return ObjectType.RuinsRock5; - case 350: - return ObjectType.RuinsRock6; - case 351: - return ObjectType.RuinsRock7; - case 352: - return ObjectType.Poison; - case 353: - return ObjectType.FixedBoxTypeRuins; - case 354: - return ObjectType.RandomBoxTypeRuins; - case 355: - return ObjectType.EnemyTypeBoxYellow; - case 356: - return ObjectType.EnemyTypeBoxBlue; - case 357: - return ObjectType.EmptyTypeBoxBlue; - case 358: - return ObjectType.DestructableRock; - case 359: - return ObjectType.PopupTrapsTechs; - case 368: - return ObjectType.FlyingWhiteBird; - case 369: - return ObjectType.Tower; - case 370: - return ObjectType.FloatingRocks; - case 371: - return ObjectType.FloatingSoul; - case 372: - return ObjectType.Butterfly; - case 384: - return ObjectType.LobbyGameMenu; - case 385: - return ObjectType.LobbyWarpObject; - case 386: - return ObjectType.Lobby1EventObjectDefaultTree; - case 387: - return ObjectType.UnknownItem387; - case 388: - return ObjectType.UnknownItem388; - case 389: - return ObjectType.UnknownItem389; - case 390: - return ObjectType.LobbyEventObjectStaticPumpkin; - case 391: - return ObjectType.LobbyEventObject3ChristmasWindows; - case 392: - return ObjectType.LobbyEventObjectRedAndWhiteCurtain; - case 393: - return ObjectType.UnknownItem393; - case 394: - return ObjectType.UnknownItem394; - case 395: - return ObjectType.LobbyFishTank; - case 396: - return ObjectType.LobbyEventObjectButterflies; - case 400: - return ObjectType.UnknownItem400; - case 401: - return ObjectType.GreyWallLow; - case 402: - return ObjectType.SpaceshipDoor; - case 403: - return ObjectType.GreyWallHigh; - case 416: - return ObjectType.TempleNormalDoor; - case 417: - return ObjectType.BreakableWallWallButUnbreakable; - case 418: - return ObjectType.BrokenCylinderAndRubble; - case 419: - return ObjectType.ThreeBrokenWallPiecesOnFloor; - case 420: - return ObjectType.HighBrickCylinder; - case 421: - return ObjectType.LyingCylinder; - case 422: - return ObjectType.BrickConeWithFlatTop; - case 423: - return ObjectType.BreakableTempleWall; - case 424: - return ObjectType.TempleMapDetect; - case 425: - return ObjectType.SmallBrownBrickRisingBridge; - case 426: - return ObjectType.LongRisingBridgeWithPinkHighEdges; - case 427: - return ObjectType.FourSwitchTempleDoor; - case 448: - return ObjectType.FourButtonSpaceshipDoor; - case 512: - return ObjectType.ItemBoxCca; - case 513: - return ObjectType.TeleporterEp2; - case 514: - return ObjectType.CcaDoor; - case 515: - return ObjectType.SpecialBoxCca; - case 516: - return ObjectType.BigCcaDoor; - case 517: - return ObjectType.BigCcaDoorSwitch; - case 518: - return ObjectType.LittleRock; - case 519: - return ObjectType.Little3StoneWall; - case 520: - return ObjectType.Medium3StoneWall; - case 521: - return ObjectType.SpiderPlant; - case 522: - return ObjectType.CcaAreaTeleporter; - case 523: - return ObjectType.UnknownItem523; - case 524: - return ObjectType.WhiteBird; - case 525: - return ObjectType.OrangeBird; - case 527: - return ObjectType.Saw; - case 528: - return ObjectType.LaserDetect; - case 529: - return ObjectType.UnknownItem529; - case 530: - return ObjectType.UnknownItem530; - case 531: - return ObjectType.Seagull; - case 544: - return ObjectType.Fish; - case 545: - return ObjectType.SeabedDoorWithBlueEdges; - case 546: - return ObjectType.SeabedDoorAlwaysOpenNonTriggerable; - case 547: - return ObjectType.LittleCryotube; - case 548: - return ObjectType.WideGlassWallBreakable; - case 549: - return ObjectType.BlueFloatingRobot; - case 550: - return ObjectType.RedFloatingRobot; - case 551: - return ObjectType.Dolphin; - case 552: - return ObjectType.CaptureTrap; - case 553: - return ObjectType.VRLink; - case 576: - return ObjectType.UnknownItem576; - case 640: - return ObjectType.WarpInBarbaRayRoom; - case 672: - return ObjectType.UnknownItem672; - case 688: - return ObjectType.GeeNest; - case 689: - return ObjectType.LabComputerConsole; - case 690: - return ObjectType.LabComputerConsoleGreenScreen; - case 691: - return ObjectType.ChairYellowPillow; - case 692: - return ObjectType.OrangeWallWithHoleInMiddle; - case 693: - return ObjectType.GreyWallWithHoleInMiddle; - case 694: - return ObjectType.LongTable; - case 695: - return ObjectType.GBAStation; - case 696: - return ObjectType.TalkLinkToSupport; - case 697: - return ObjectType.InstaWarp; - case 698: - return ObjectType.LabInvisibleObject; - case 699: - return ObjectType.LabGlassWindowDoor; - case 700: - return ObjectType.UnknownItem700; - case 701: - return ObjectType.LabCeilingWarp; - case 768: - return ObjectType.Ep4LightSource; - case 769: - return ObjectType.Cactus; - case 770: - return ObjectType.BigBrownRock; - case 771: - return ObjectType.BreakableBrownRock; - case 832: - return ObjectType.UnknownItem832; - case 833: - return ObjectType.UnknownItem833; - case 896: - return ObjectType.PoisonPlant; - case 897: - return ObjectType.UnknownItem897; - case 898: - return ObjectType.UnknownItem898; - case 899: - return ObjectType.OozingDesertPlant; - case 901: - return ObjectType.UnknownItem901; - case 902: - return ObjectType.BigBlackRocks; - case 903: - return ObjectType.UnknownItem903; - case 904: - return ObjectType.UnknownItem904; - case 905: - return ObjectType.UnknownItem905; - case 906: - return ObjectType.UnknownItem906; - case 907: - return ObjectType.FallingRock; - case 908: - return ObjectType.DesertPlantHasCollision; - case 909: - return ObjectType.DesertFixedTypeBoxBreakableCrystals; - case 910: - return ObjectType.UnknownItem910; - case 911: - return ObjectType.BeeHive; - case 912: - return ObjectType.UnknownItem912; - case 913: - return ObjectType.Heat; - case 960: - return ObjectType.TopOfSaintMillionEgg; - case 961: - return ObjectType.UnknownItem961; - } -} - -const OBJECT_TYPE_DATA: ObjectTypeData[] = []; - -function define_object_type_data( - object_type: ObjectType, - type_id: number | undefined, - name: string, - area_ids: [Episode, number[]][], - properties: [string, number, keyof typeof EntityPropType][], -): void { - OBJECT_TYPES.push(object_type); - - const area_ids_per_episode: number[][] = []; - - for (const [episode, areas] of area_ids) { - area_ids_per_episode[episode] = areas; - } - - OBJECT_TYPE_DATA[object_type] = Object.freeze({ - name, - area_ids: area_ids_per_episode, - type_id, - properties: properties.map(([name, offset, type]) => ({ - name, - offset, - type: EntityPropType[type], - })), - }); -} - -define_object_type_data(ObjectType.Unknown, undefined, "Unknown", [], []); - -define_object_type_data( - ObjectType.PlayerSet, - 0, - "Player Set", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], - ], - [ - ["Slot ID", 40, "F32"], - ["Return flag", 52, "I32"], - ], -); -define_object_type_data( - ObjectType.Particle, - 1, - "Particle", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [], -); -define_object_type_data( - ObjectType.Teleporter, - 2, - "Teleporter", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14]], - [Episode.II, [0, 1, 2, 3, 4, 12, 13, 14, 15]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], - ], - [ - ["Area ID", 40, "F32"], - ["Color blue", 44, "F32"], - ["Color red", 48, "F32"], - ["Floor ID", 52, "I32"], - ["Display no.", 56, "I32"], - ["No display no.", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.Warp, - 3, - "Warp", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], - ], - [ - ["Destination x", 40, "F32"], - ["Destination y", 44, "F32"], - ["Destination z", 48, "F32"], - ["Dst. rotation y", 52, "Angle"], - ], -); -define_object_type_data( - ObjectType.LightCollision, - 4, - "Light Collision", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [], -); -define_object_type_data(ObjectType.Item, 5, "Item", [], []); -define_object_type_data( - ObjectType.EnvSound, - 6, - "Env Sound", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [ - ["Radius", 48, "F32"], - ["SE", 52, "I32"], - ["Volume", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.FogCollision, - 7, - "Fog Collision", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [ - ["Radius", 40, "F32"], - ["Fog index no.", 52, "I32"], - ], -); -define_object_type_data( - ObjectType.EventCollision, - 8, - "Event Collision", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], - ], - [ - ["Radius", 40, "F32"], - ["Event ID", 52, "U32"], - ], -); -define_object_type_data( - ObjectType.CharaCollision, - 9, - "Chara Collision", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 8, 9, 10]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.ElementalTrap, - 10, - "Elemental Trap", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], - ], - [ - ["Radius", 40, "F32"], - ["Trap link", 48, "F32"], - ["Damage", 52, "I32"], - ["Subtype", 56, "I32"], - ["Delay", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.StatusTrap, - 11, - "Status Trap", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], - ], - [ - ["Radius", 40, "F32"], - ["Trap link", 48, "F32"], - ["Subtype", 56, "I32"], - ["Delay", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.HealTrap, - 12, - "Heal Trap", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], - ], - [ - ["Radius", 40, "F32"], - ["Trap link", 48, "F32"], - ["HP", 52, "I32"], - ["Subtype", 56, "I32"], - ["Delay", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.LargeElementalTrap, - 13, - "Large Elemental Trap", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], - ], - [ - ["Radus", 40, "F32"], - ["Trap link", 48, "F32"], - ["Damage", 52, "I32"], - ["Subtype", 56, "I32"], - ["Delay", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.ObjRoomID, - 14, - "Obj Room ID", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], - ], - [ - ["SCL_TAMA", 40, "F32"], - ["Next section", 44, "F32"], - ["Previous section ", 48, "F32"], - ], -); -define_object_type_data(ObjectType.Sensor, 15, "Sensor", [[Episode.I, [1, 2, 4, 5, 6, 7]]], []); -define_object_type_data(ObjectType.UnknownItem16, 16, "Unknown Item (16)", [], []); -define_object_type_data( - ObjectType.LensFlare, - 17, - "Lens Flare", - [[Episode.I, [1, 2, 3, 4, 8, 14]]], - [], -); -define_object_type_data( - ObjectType.ScriptCollision, - 18, - "Script Collision", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [["Radius", 40, "F32"]], -); -define_object_type_data( - ObjectType.HealRing, - 19, - "Heal Ring", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.MapCollision, - 20, - "Map Collision", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 8, 9, 10, 16, 17]], - [Episode.II, [0, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.ScriptCollisionA, - 21, - "Script Collision A", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [], -); -define_object_type_data( - ObjectType.ItemLight, - 22, - "Item Light", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [["Subtype", 40, "F32"]], -); -define_object_type_data( - ObjectType.RadarCollision, - 23, - "Radar Collision", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [["Radius", 40, "F32"]], -); -define_object_type_data( - ObjectType.FogCollisionSW, - 24, - "Fog Collision SW", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Radius", 40, "F32"], - ["Status", 44, "F32"], - ["Fog index no.", 52, "I32"], - ["Switch ID", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.BossTeleporter, - 25, - "Boss Teleporter", - [ - [Episode.I, [0, 2, 5, 7, 10]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [5, 6, 7, 8, 0]], - ], - [], -); -define_object_type_data( - ObjectType.ImageBoard, - 26, - "Image Board", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ], -); -define_object_type_data( - ObjectType.QuestWarp, - 27, - "Quest Warp", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14]], - [Episode.IV, [9]], - ], - [], -); -define_object_type_data( - ObjectType.Epilogue, - 28, - "Epilogue", - [ - [Episode.I, [14]], - [Episode.II, [13]], - [Episode.IV, [9]], - ], - [], -); -define_object_type_data(ObjectType.UnknownItem29, 29, "Unknown Item (29)", [[Episode.I, [1]]], []); -define_object_type_data( - ObjectType.UnknownItem30, - 30, - "Unknown Item (30)", - [ - [Episode.I, [1, 2, 17]], - [Episode.II, [1, 2, 14]], - [Episode.IV, [1, 2, 3, 4, 5]], - ], - [], -); -define_object_type_data( - ObjectType.UnknownItem31, - 31, - "Unknown Item (31)", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.BoxDetectObject, - 32, - "Box Detect Object", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [ - ["Radius", 40, "F32"], - ["Plate ID", 52, "I32"], - ], -); -define_object_type_data( - ObjectType.SymbolChatObject, - 33, - "Symbol Chat Object", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [["Radius", 40, "F32"]], -); -define_object_type_data( - ObjectType.TouchPlateObject, - 34, - "Touch plate Object", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Radius", 40, "F32"], - ["Switch ID", 52, "I32"], - ], -); -define_object_type_data( - ObjectType.TargetableObject, - 35, - "Targetable Object", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Switch ID", 48, "F32"], - ["HP", 52, "I32"], - ], -); -define_object_type_data( - ObjectType.EffectObject, - 36, - "Effect object", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.CountDownObject, - 37, - "Count Down Object", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [], -); -define_object_type_data( - ObjectType.UnknownItem38, - 38, - "Unknown Item (38)", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [], -); -define_object_type_data( - ObjectType.UnknownItem39, - 39, - "Unknown Item (39)", - [ - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.UnknownItem40, - 40, - "Unknown Item (40)", - [ - [Episode.I, [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 13, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [], -); -define_object_type_data( - ObjectType.UnknownItem41, - 41, - "Unknown Item (41)", - [ - [Episode.I, [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 13, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [], -); -define_object_type_data( - ObjectType.MenuActivation, - 64, - "Menu activation", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [["Menu ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.TelepipeLocation, - 65, - "Telepipe Location", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [["Slot ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.BGMCollision, - 66, - "BGM Collision", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.MainRagolTeleporter, - 67, - "Main Ragol Teleporter", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.LobbyTeleporter, - 68, - "Lobby Teleporter", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.PrincipalWarp, - 69, - "Principal warp", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [ - ["Destination x", 40, "F32"], - ["Destination y", 44, "F32"], - ["Destination z", 48, "F32"], - ["Dst. rotation y", 52, "Angle"], - ["Model", 60, "U32"], - ], -); -define_object_type_data( - ObjectType.ShopDoor, - 70, - "Shop Door", - [ - [Episode.I, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.HuntersGuildDoor, - 71, - "Hunter's Guild Door", - [ - [Episode.I, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.TeleporterDoor, - 72, - "Teleporter Door", - [ - [Episode.I, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.MedicalCenterDoor, - 73, - "Medical Center Door", - [ - [Episode.I, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.Elevator, - 74, - "Elevator", - [ - [Episode.I, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.EasterEgg, - 75, - "Easter Egg", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.ValentinesHeart, - 76, - "Valentines Heart", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.ChristmasTree, - 77, - "Christmas Tree", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.ChristmasWreath, - 78, - "Christmas Wreath", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.HalloweenPumpkin, - 79, - "Halloween Pumpkin", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.TwentyFirstCentury, - 80, - "21st Century", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.Sonic, - 81, - "Sonic", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [["Model", 52, "U32"]], -); -define_object_type_data( - ObjectType.WelcomeBoard, - 82, - "Welcome Board", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.Firework, - 83, - "Firework", - [ - [Episode.I, [0]], - [Episode.II, [0, 16]], - [Episode.IV, [0]], - ], - [ - ["Mdl IDX", 40, "F32"], - ["Area width", 44, "F32"], - ["Rise height", 48, "F32"], - ["Area depth", 52, "I32"], - ["Freq", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.LobbyScreenDoor, - 84, - "Lobby Screen Door", - [ - [Episode.I, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.MainRagolTeleporterBattleInNextArea, - 85, - "Main Ragol Teleporter (Battle in next area?)", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [], -); -define_object_type_data( - ObjectType.LabTeleporterDoor, - 86, - "Lab Teleporter Door", - [[Episode.II, [0]]], - [], -); -define_object_type_data( - ObjectType.Pioneer2InvisibleTouchplate, - 87, - "Pioneer 2 Invisible Touchplate", - [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], - ], - [["Radius", 40, "F32"]], -); -define_object_type_data( - ObjectType.ForestDoor, - 128, - "Forest Door", - [[Episode.I, [1, 2]]], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.ForestSwitch, - 129, - "Forest Switch", - [ - [Episode.I, [1, 2, 3, 4, 5]], - [Episode.II, [1, 2, 3, 4]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Switch ID", 52, "I32"], - ["Color", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.LaserFence, - 130, - "Laser Fence", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Color", 40, "F32"], - ["Switch ID", 52, "I32"], - ["Model", 60, "U32"], - ], -); -define_object_type_data( - ObjectType.LaserSquareFence, - 131, - "Laser Square Fence", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Color", 40, "F32"], - ["Switch ID", 52, "I32"], - ["Model", 60, "U32"], - ], -); -define_object_type_data( - ObjectType.ForestLaserFenceSwitch, - 132, - "Forest Laser Fence Switch", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Switch ID", 52, "I32"], - ["Color", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.LightRays, - 133, - "Light rays", - [ - [Episode.I, [1, 2]], - [Episode.II, [5, 6, 7, 8, 9]], - [Episode.IV, [6, 7, 8]], - ], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ], -); -define_object_type_data( - ObjectType.BlueButterfly, - 134, - "Blue Butterfly", - [ - [Episode.I, [1, 2]], - [Episode.IV, [6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.Probe, - 135, - "Probe", - [[Episode.I, [1, 2]]], - [["Model", 40, "F32"]], -); -define_object_type_data( - ObjectType.RandomTypeBox1, - 136, - "Random Type Box 1", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7]], - [Episode.II, [10, 11, 13]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.ForestWeatherStation, - 137, - "Forest Weather Station", - [[Episode.I, [1, 2]]], - [], -); -define_object_type_data(ObjectType.Battery, 138, "Battery", [], []); -define_object_type_data( - ObjectType.ForestConsole, - 139, - "Forest Console", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Script label", 52, "I32"], - ["Model", 56, "U32"], - ], -); -define_object_type_data( - ObjectType.BlackSlidingDoor, - 140, - "Black Sliding Door", - [[Episode.I, [1, 2, 3]]], - [ - ["Distance", 40, "F32"], - ["Speed", 44, "F32"], - ["Switch ID", 48, "F32"], - ["Switch no.", 52, "I32"], - ["Disable effect", 56, "I32"], - ["Enable effect", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.RicoMessagePod, - 141, - "Rico Message Pod", - [[Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13]]], - [], -); -define_object_type_data( - ObjectType.EnergyBarrier, - 142, - "Energy Barrier", - [ - [Episode.I, [1, 2, 4, 5, 6, 7]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.ForestRisingBridge, - 143, - "Forest Rising Bridge", - [[Episode.I, [1, 2]]], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.SwitchNoneDoor, - 144, - "Switch (none door)", - [ - [Episode.I, [1, 2, 6, 7, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [["Switch ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.EnemyBoxGrey, - 145, - "Enemy Box (Grey)", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7]], - [Episode.II, [10, 11]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [["Event ID", 40, "F32"]], -); -define_object_type_data( - ObjectType.FixedTypeBox, - 146, - "Fixed Type Box", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14]], - [Episode.II, [10, 11, 13]], - [Episode.IV, [1, 2, 3, 4, 6, 7, 8, 9]], - ], - [ - ["Full random", 40, "F32"], - ["Random item", 44, "F32"], - ["Fixed item", 48, "F32"], - ["Item parameter", 52, "I32"], - ], -); -define_object_type_data( - ObjectType.EnemyBoxBrown, - 147, - "Enemy Box (Brown)", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7]], - [Episode.II, [10, 11]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [["Event ID", 40, "F32"]], -); -define_object_type_data( - ObjectType.EmptyTypeBox, - 149, - "Empty Type Box", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [["Event ID", 40, "F32"]], -); -define_object_type_data( - ObjectType.LaserFenceEx, - 150, - "Laser Fence Ex", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Color", 40, "F32"], - ["Collision width", 44, "F32"], - ["Collision depth", 48, "F32"], - ["Switch ID", 52, "I32"], - ["Model", 60, "U32"], - ], -); -define_object_type_data( - ObjectType.LaserSquareFenceEx, - 151, - "Laser Square Fence Ex", - [], - [ - ["Color", 40, "F32"], - ["Collision width", 44, "F32"], - ["Collision depth", 48, "F32"], - ["Switch ID", 52, "I32"], - ["Model", 60, "U32"], - ], -); -define_object_type_data( - ObjectType.FloorPanel1, - 192, - "Floor Panel 1", - [ - [Episode.I, [3, 4, 5, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ["Switch ID", 52, "I32"], - ["Stay active", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.Caves4ButtonDoor, - 193, - "Caves 4 Button door", - [[Episode.I, [3, 4, 5]]], - [ - ["Door ID", 52, "I32"], - ["Switch total", 56, "I32"], - ["Stay active", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.CavesNormalDoor, - 194, - "Caves Normal door", - [[Episode.I, [3, 4, 5]]], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.CavesSmashingPillar, - 195, - "Caves Smashing Pillar", - [ - [Episode.I, [3, 4, 5]], - [Episode.II, [1, 2, 3, 4, 17]], - ], - [], -); -define_object_type_data(ObjectType.CavesSign1, 196, "Caves Sign 1", [[Episode.I, [4, 5]]], []); -define_object_type_data(ObjectType.CavesSign2, 197, "Caves Sign 2", [[Episode.I, [4, 5]]], []); -define_object_type_data(ObjectType.CavesSign3, 198, "Caves Sign 3", [[Episode.I, [4, 5]]], []); -define_object_type_data(ObjectType.HexagonalTank, 199, "Hexagonal Tank", [[Episode.I, [4, 5]]], []); -define_object_type_data(ObjectType.BrownPlatform, 200, "Brown Platform", [[Episode.I, [4, 5]]], []); -define_object_type_data( - ObjectType.WarningLightObject, - 201, - "Warning Light Object", - [ - [Episode.I, [4, 5]], - [Episode.IV, [5]], - ], - [], -); -define_object_type_data( - ObjectType.Rainbow, - 203, - "Rainbow", - [[Episode.I, [4]]], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ], -); -define_object_type_data( - ObjectType.FloatingJellyfish, - 204, - "Floating Jellyfish", - [ - [Episode.I, [4]], - [Episode.II, [10, 11]], - ], - [], -); -define_object_type_data( - ObjectType.FloatingDragonfly, - 205, - "Floating Dragonfly", - [ - [Episode.I, [4, 16]], - [Episode.II, [3, 4]], - [Episode.IV, [6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.CavesSwitchDoor, - 206, - "Caves Switch Door", - [[Episode.I, [3, 4, 5]]], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.RobotRechargeStation, - 207, - "Robot Recharge Station", - [ - [Episode.I, [3, 4, 5, 6, 7]], - [Episode.II, [17]], - ], - [], -); -define_object_type_data(ObjectType.CavesCakeShop, 208, "Caves Cake Shop", [[Episode.I, [5]]], []); -define_object_type_data( - ObjectType.Caves1SmallRedRock, - 209, - "Caves 1 Small Red Rock", - [[Episode.I, [3]]], - [], -); -define_object_type_data( - ObjectType.Caves1MediumRedRock, - 210, - "Caves 1 Medium Red Rock", - [[Episode.I, [3]]], - [], -); -define_object_type_data( - ObjectType.Caves1LargeRedRock, - 211, - "Caves 1 Large Red Rock", - [ - [Episode.I, [3]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.Caves2SmallRock1, - 212, - "Caves 2 Small Rock 1", - [[Episode.I, [4]]], - [], -); -define_object_type_data( - ObjectType.Caves2MediumRock1, - 213, - "Caves 2 Medium Rock 1", - [[Episode.I, [4]]], - [], -); -define_object_type_data( - ObjectType.Caves2LargeRock1, - 214, - "Caves 2 Large Rock 1", - [[Episode.I, [4]]], - [], -); -define_object_type_data( - ObjectType.Caves2SmallRock2, - 215, - "Caves 2 Small Rock 2", - [[Episode.I, [4]]], - [], -); -define_object_type_data( - ObjectType.Caves2MediumRock2, - 216, - "Caves 2 Medium Rock 2", - [[Episode.I, [4]]], - [], -); -define_object_type_data( - ObjectType.Caves2LargeRock2, - 217, - "Caves 2 Large Rock 2", - [[Episode.I, [4]]], - [], -); -define_object_type_data( - ObjectType.Caves3SmallRock, - 218, - "Caves 3 Small Rock", - [[Episode.I, [5]]], - [], -); -define_object_type_data( - ObjectType.Caves3MediumRock, - 219, - "Caves 3 Medium Rock", - [[Episode.I, [5]]], - [], -); -define_object_type_data( - ObjectType.Caves3LargeRock, - 220, - "Caves 3 Large Rock", - [[Episode.I, [5]]], - [], -); -define_object_type_data( - ObjectType.FloorPanel2, - 222, - "Floor Panel 2", - [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ["Switch ID", 52, "I32"], - ["Stay active", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.DestructableRockCaves1, - 223, - "Destructable Rock (Caves 1)", - [[Episode.I, [3]]], - [], -); -define_object_type_data( - ObjectType.DestructableRockCaves2, - 224, - "Destructable Rock (Caves 2)", - [[Episode.I, [4]]], - [], -); -define_object_type_data( - ObjectType.DestructableRockCaves3, - 225, - "Destructable Rock (Caves 3)", - [[Episode.I, [5]]], - [], -); -define_object_type_data( - ObjectType.MinesDoor, - 256, - "Mines Door", - [[Episode.I, [6, 7]]], - [ - ["Door ID", 52, "I32"], - ["Switch total", 56, "I32"], - ["Stay active", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.FloorPanel3, - 257, - "Floor Panel 3", - [ - [Episode.I, [1, 2, 6, 7, 16, 17]], - [Episode.II, [1, 2, 3, 4]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ["Switch ID", 52, "I32"], - ["Stay active", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.MinesSwitchDoor, - 258, - "Mines Switch Door", - [ - [Episode.I, [6, 7]], - [Episode.IV, [6, 7, 8]], - ], - [ - ["Door ID", 52, "I32"], - ["Switch total", 56, "I32"], - ["Stay active", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.LargeCryoTube, - 259, - "Large Cryo-Tube", - [ - [Episode.I, [6, 7]], - [Episode.II, [17]], - ], - [], -); -define_object_type_data( - ObjectType.ComputerLikeCalus, - 260, - "Computer (like calus)", - [ - [Episode.I, [6, 7]], - [Episode.II, [17]], - ], - [], -); -define_object_type_data( - ObjectType.GreenScreenOpeningAndClosing, - 261, - "Green Screen opening and closing", - [ - [Episode.I, [6, 7]], - [Episode.II, [17]], - ], - [], -); -define_object_type_data(ObjectType.FloatingRobot, 262, "Floating Robot", [[Episode.I, [6, 7]]], []); -define_object_type_data( - ObjectType.FloatingBlueLight, - 263, - "Floating Blue Light", - [[Episode.I, [6, 7]]], - [], -); -define_object_type_data( - ObjectType.SelfDestructingObject1, - 264, - "Self Destructing Object 1", - [[Episode.I, [6, 7]]], - [], -); -define_object_type_data( - ObjectType.SelfDestructingObject2, - 265, - "Self Destructing Object 2", - [[Episode.I, [6, 7]]], - [], -); -define_object_type_data( - ObjectType.SelfDestructingObject3, - 266, - "Self Destructing Object 3", - [[Episode.I, [6, 7]]], - [], -); -define_object_type_data( - ObjectType.SparkMachine, - 267, - "Spark Machine", - [[Episode.I, [6, 7]]], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ], -); -define_object_type_data( - ObjectType.MinesLargeFlashingCrate, - 268, - "Mines Large Flashing Crate", - [[Episode.I, [6, 7]]], - [], -); -define_object_type_data(ObjectType.RuinsSeal, 304, "Ruins Seal", [[Episode.I, [13]]], []); -define_object_type_data( - ObjectType.RuinsTeleporter, - 320, - "Ruins Teleporter", - [[Episode.I, [8, 9, 10]]], - [ - ["Area no.", 40, "F32"], - ["Color blue", 44, "F32"], - ["Color red", 48, "F32"], - ["Floor no.", 52, "I32"], - ["Display no.", 56, "I32"], - ["No display no.", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.RuinsWarpSiteToSite, - 321, - "Ruins Warp (Site to Site)", - [[Episode.I, [8, 9, 10]]], - [ - ["Destination x", 40, "F32"], - ["Destination y", 44, "F32"], - ["Destination z", 48, "F32"], - ["Dst. rotation y", 52, "Angle"], - ], -); -define_object_type_data( - ObjectType.RuinsSwitch, - 322, - "Ruins Switch", - [[Episode.I, [8, 9, 10]]], - [["Switch ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.FloorPanel4, - 323, - "Floor Panel 4", - [[Episode.I, [8, 9, 10]]], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ["Plate ID", 52, "I32"], - ["Stay active", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.Ruins1Door, - 324, - "Ruins 1 Door", - [[Episode.I, [8]]], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.Ruins3Door, - 325, - "Ruins 3 Door", - [[Episode.I, [10]]], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.Ruins2Door, - 326, - "Ruins 2 Door", - [[Episode.I, [9]]], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.Ruins11ButtonDoor, - 327, - "Ruins 1-1 Button Door", - [[Episode.I, [8]]], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.Ruins21ButtonDoor, - 328, - "Ruins 2-1 Button Door", - [[Episode.I, [9]]], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.Ruins31ButtonDoor, - 329, - "Ruins 3-1 Button Door", - [[Episode.I, [10]]], - [["Door ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.Ruins4ButtonDoor, - 330, - "Ruins 4-Button Door", - [[Episode.I, [8, 9, 10]]], - [ - ["Door ID", 52, "I32"], - ["Stay active", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.Ruins2ButtonDoor, - 331, - "Ruins 2-Button Door", - [[Episode.I, [8, 9, 10]]], - [ - ["Door ID", 52, "I32"], - ["Stay active", 60, "I32"], - ], -); -define_object_type_data(ObjectType.RuinsSensor, 332, "Ruins Sensor", [[Episode.I, [8, 9, 10]]], []); -define_object_type_data( - ObjectType.RuinsFenceSwitch, - 333, - "Ruins Fence Switch", - [[Episode.I, [8, 9, 10]]], - [ - ["Switch ID", 52, "I32"], - ["Color", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.RuinsLaserFence4x2, - 334, - "Ruins Laser Fence 4x2", - [ - [Episode.I, [8, 9, 10]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Switch ID", 52, "I32"], - ["Color", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.RuinsLaserFence6x2, - 335, - "Ruins Laser Fence 6x2", - [ - [Episode.I, [8, 9, 10]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Switch ID", 52, "I32"], - ["Color", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.RuinsLaserFence4x4, - 336, - "Ruins Laser Fence 4x4", - [[Episode.I, [8, 9, 10]]], - [ - ["Switch ID", 52, "I32"], - ["Color", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.RuinsLaserFence6x4, - 337, - "Ruins Laser Fence 6x4", - [[Episode.I, [8, 9, 10]]], - [ - ["Switch ID", 52, "I32"], - ["Color", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.RuinsPoisonBlob, - 338, - "Ruins poison Blob", - [ - [Episode.I, [8, 9, 10]], - [Episode.II, [5, 6, 7, 8, 9]], - [Episode.IV, [6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.RuinsPillarTrap, - 339, - "Ruins Pillar Trap", - [ - [Episode.I, [8, 9, 10]], - [Episode.II, [1, 2, 3, 4]], - ], - [], -); -define_object_type_data( - ObjectType.PopupTrapNoTech, - 340, - "Popup Trap (No Tech)", - [[Episode.I, [8, 9, 10]]], - [["Radius", 40, "F32"]], -); -define_object_type_data( - ObjectType.RuinsCrystal, - 341, - "Ruins Crystal", - [[Episode.I, [8, 9, 10]]], - [], -); -define_object_type_data(ObjectType.Monument, 342, "Monument", [[Episode.I, [2, 4, 7]]], []); -define_object_type_data(ObjectType.RuinsRock1, 345, "Ruins Rock 1", [[Episode.I, [8, 9, 10]]], []); -define_object_type_data(ObjectType.RuinsRock2, 346, "Ruins Rock 2", [[Episode.I, [8, 9, 10]]], []); -define_object_type_data(ObjectType.RuinsRock3, 347, "Ruins Rock 3", [[Episode.I, [8, 9, 10]]], []); -define_object_type_data(ObjectType.RuinsRock4, 348, "Ruins Rock 4", [[Episode.I, [8, 9, 10]]], []); -define_object_type_data(ObjectType.RuinsRock5, 349, "Ruins Rock 5", [[Episode.I, [8, 9, 10]]], []); -define_object_type_data(ObjectType.RuinsRock6, 350, "Ruins Rock 6", [[Episode.I, [8, 9, 10]]], []); -define_object_type_data(ObjectType.RuinsRock7, 351, "Ruins Rock 7", [[Episode.I, [8, 9, 10]]], []); -define_object_type_data( - ObjectType.Poison, - 352, - "Poison", - [ - [Episode.I, [8, 9, 10, 13]], - [Episode.II, [3, 4, 10, 11]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], - ], - [ - ["Radius", 40, "F32"], - ["Power", 44, "F32"], - ["Link", 48, "F32"], - ["Switch mode", 52, "I32"], - ["Fog index no.", 56, "I32"], - ["Switch ID", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.FixedBoxTypeRuins, - 353, - "Fixed Box Type (Ruins)", - [ - [Episode.I, [8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 14, 15]], - ], - [ - ["Full random", 40, "F32"], - ["Random item", 44, "F32"], - ["Fixed item", 48, "F32"], - ["Item parameter", 52, "I32"], - ], -); -define_object_type_data( - ObjectType.RandomBoxTypeRuins, - 354, - "Random Box Type (Ruins)", - [ - [Episode.I, [8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 14, 15]], - ], - [], -); -define_object_type_data( - ObjectType.EnemyTypeBoxYellow, - 355, - "Enemy Type Box (Yellow)", - [ - [Episode.I, [8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4]], - ], - [], -); -define_object_type_data( - ObjectType.EnemyTypeBoxBlue, - 356, - "Enemy Type Box (Blue)", - [ - [Episode.I, [8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4]], - ], - [], -); -define_object_type_data( - ObjectType.EmptyTypeBoxBlue, - 357, - "Empty Type Box (Blue)", - [ - [Episode.I, [8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4]], - ], - [], -); -define_object_type_data( - ObjectType.DestructableRock, - 358, - "Destructable Rock", - [[Episode.I, [8, 9, 10]]], - [], -); -define_object_type_data( - ObjectType.PopupTrapsTechs, - 359, - "Popup Traps (techs)", - [ - [Episode.I, [6, 7, 8, 9, 10]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - ], - [ - ["Radius", 40, "F32"], - ["HP", 44, "F32"], - ["Action", 56, "I32"], - ["Tech", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.FlyingWhiteBird, - 368, - "Flying White Bird", - [ - [Episode.I, [14, 16]], - [Episode.II, [3, 4]], - ], - [], -); -define_object_type_data(ObjectType.Tower, 369, "Tower", [[Episode.I, [14]]], []); -define_object_type_data(ObjectType.FloatingRocks, 370, "Floating Rocks", [[Episode.I, [14]]], []); -define_object_type_data(ObjectType.FloatingSoul, 371, "Floating Soul", [[Episode.I, [14]]], []); -define_object_type_data(ObjectType.Butterfly, 372, "Butterfly", [[Episode.I, [14]]], []); -define_object_type_data(ObjectType.LobbyGameMenu, 384, "Lobby Game menu", [[Episode.I, [15]]], []); -define_object_type_data( - ObjectType.LobbyWarpObject, - 385, - "Lobby Warp Object", - [[Episode.I, [15]]], - [], -); -define_object_type_data( - ObjectType.Lobby1EventObjectDefaultTree, - 386, - "Lobby 1 Event Object (Default Tree)", - [[Episode.I, [15]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem387, - 387, - "Unknown Item (387)", - [[Episode.I, [15]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem388, - 388, - "Unknown Item (388)", - [[Episode.I, [15]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem389, - 389, - "Unknown Item (389)", - [[Episode.I, [15]]], - [], -); -define_object_type_data( - ObjectType.LobbyEventObjectStaticPumpkin, - 390, - "Lobby Event Object (Static Pumpkin)", - [[Episode.I, [15]]], - [], -); -define_object_type_data( - ObjectType.LobbyEventObject3ChristmasWindows, - 391, - "Lobby Event Object (3 Christmas Windows)", - [[Episode.I, [15]]], - [], -); -define_object_type_data( - ObjectType.LobbyEventObjectRedAndWhiteCurtain, - 392, - "Lobby Event Object (Red and White Curtain)", - [[Episode.I, [15]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem393, - 393, - "Unknown Item (393)", - [[Episode.I, [15]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem394, - 394, - "Unknown Item (394)", - [[Episode.I, [15]]], - [], -); -define_object_type_data(ObjectType.LobbyFishTank, 395, "Lobby Fish Tank", [[Episode.I, [15]]], []); -define_object_type_data( - ObjectType.LobbyEventObjectButterflies, - 396, - "Lobby Event Object (Butterflies)", - [[Episode.I, [15]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem400, - 400, - "Unknown Item (400)", - [ - [Episode.I, [16]], - [Episode.II, [3, 4]], - ], - [], -); -define_object_type_data( - ObjectType.GreyWallLow, - 401, - "grey wall low", - [ - [Episode.I, [16]], - [Episode.II, [3, 4, 17]], - ], - [], -); -define_object_type_data( - ObjectType.SpaceshipDoor, - 402, - "Spaceship Door", - [ - [Episode.I, [16]], - [Episode.II, [3, 4]], - ], - [["Switch ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.GreyWallHigh, - 403, - "grey wall high", - [ - [Episode.I, [16]], - [Episode.II, [3, 4, 17]], - ], - [], -); -define_object_type_data( - ObjectType.TempleNormalDoor, - 416, - "Temple Normal Door", - [ - [Episode.I, [17]], - [Episode.II, [1, 2]], - ], - [["Switch ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.BreakableWallWallButUnbreakable, - 417, - '"breakable wall wall, but unbreakable"', - [ - [Episode.I, [17]], - [Episode.II, [1, 2]], - ], - [], -); -define_object_type_data( - ObjectType.BrokenCylinderAndRubble, - 418, - "Broken cylinder and rubble", - [ - [Episode.I, [17]], - [Episode.II, [1, 2]], - ], - [], -); -define_object_type_data( - ObjectType.ThreeBrokenWallPiecesOnFloor, - 419, - "3 broken wall pieces on floor", - [ - [Episode.I, [17]], - [Episode.II, [1, 2]], - ], - [], -); -define_object_type_data( - ObjectType.HighBrickCylinder, - 420, - "high brick cylinder", - [ - [Episode.I, [17]], - [Episode.II, [1, 2]], - ], - [], -); -define_object_type_data( - ObjectType.LyingCylinder, - 421, - "lying cylinder", - [ - [Episode.I, [17]], - [Episode.II, [1, 2]], - ], - [], -); -define_object_type_data( - ObjectType.BrickConeWithFlatTop, - 422, - "brick cone with flat top", - [ - [Episode.I, [17]], - [Episode.II, [1, 2]], - ], - [], -); -define_object_type_data( - ObjectType.BreakableTempleWall, - 423, - "breakable temple wall", - [ - [Episode.I, [17]], - [Episode.II, [1, 2]], - ], - [], -); -define_object_type_data( - ObjectType.TempleMapDetect, - 424, - "Temple Map Detect", - [ - [Episode.I, [17]], - [Episode.II, [1, 2, 14]], - [Episode.IV, [1, 2, 3, 4, 5]], - ], - [], -); -define_object_type_data( - ObjectType.SmallBrownBrickRisingBridge, - 425, - "small brown brick rising bridge", - [ - [Episode.I, [17]], - [Episode.II, [1, 2]], - ], - [], -); -define_object_type_data( - ObjectType.LongRisingBridgeWithPinkHighEdges, - 426, - "long rising bridge (with pink high edges)", - [ - [Episode.I, [17]], - [Episode.II, [1, 2]], - ], - [], -); -define_object_type_data( - ObjectType.FourSwitchTempleDoor, - 427, - "4 Switch Temple Door", - [[Episode.II, [1, 2]]], - [], -); -define_object_type_data( - ObjectType.FourButtonSpaceshipDoor, - 448, - "4 button Spaceship Door", - [[Episode.II, [3, 4]]], - [], -); -define_object_type_data( - ObjectType.ItemBoxCca, - 512, - "Item Box CCA", - [ - [Episode.II, [5, 6, 7, 8, 9, 12, 16, 17]], - [Episode.IV, [5]], - ], - [], -); -define_object_type_data( - ObjectType.TeleporterEp2, - 513, - "Teleporter (Ep. II)", - [[Episode.II, [5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17]]], - [], -); -define_object_type_data( - ObjectType.CcaDoor, - 514, - "CCA Door", - [[Episode.II, [5, 6, 7, 8, 9, 16, 17]]], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ["Switch ID", 52, "I32"], - ["Switch amount", 56, "I32"], - ["Stay active", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.SpecialBoxCca, - 515, - "Special Box CCA", - [ - [Episode.II, [5, 6, 7, 8, 9, 12, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5]], - ], - [], -); -define_object_type_data(ObjectType.BigCcaDoor, 516, "Big CCA Door", [[Episode.II, [5]]], []); -define_object_type_data( - ObjectType.BigCcaDoorSwitch, - 517, - "Big CCA Door Switch", - [[Episode.II, [5, 6, 7, 8, 9, 16, 17]]], - [], -); -define_object_type_data( - ObjectType.LittleRock, - 518, - "Little Rock", - [[Episode.II, [5, 6, 7, 8, 9, 16]]], - [], -); -define_object_type_data( - ObjectType.Little3StoneWall, - 519, - "Little 3 Stone Wall", - [[Episode.II, [5, 6, 7, 8, 9, 16]]], - [["Switch ID", 52, "I32"]], -); -define_object_type_data( - ObjectType.Medium3StoneWall, - 520, - "Medium 3 Stone Wall", - [[Episode.II, [5, 6, 7, 8, 9, 16]]], - [], -); -define_object_type_data( - ObjectType.SpiderPlant, - 521, - "Spider Plant", - [[Episode.II, [5, 6, 7, 8, 9, 16]]], - [], -); -define_object_type_data( - ObjectType.CcaAreaTeleporter, - 522, - "CCA Area Teleporter", - [[Episode.II, [5, 6, 7, 8, 9, 16, 17]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem523, - 523, - "Unknown Item (523)", - [[Episode.II, [5, 12]]], - [], -); -define_object_type_data( - ObjectType.WhiteBird, - 524, - "White Bird", - [ - [Episode.II, [6, 7, 9, 16, 17]], - [Episode.IV, [6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.OrangeBird, - 525, - "Orange Bird", - [[Episode.II, [6, 7, 9, 17]]], - [], -); -define_object_type_data( - ObjectType.Saw, - 527, - "Saw", - [[Episode.II, [5, 6, 7, 8, 9, 10, 11, 16, 17]]], - [ - ["Speed", 44, "F32"], - ["Model", 48, "F32"], - ["Switch ID", 52, "I32"], - ["Arc", 56, "I32"], - ["Switch flag", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.LaserDetect, - 528, - "Laser Detect", - [[Episode.II, [5, 6, 7, 8, 9, 10, 11, 16, 17]]], - [ - ["Model", 48, "F32"], - ["Switch ID", 52, "I32"], - ["Arc", 56, "I32"], - ], -); -define_object_type_data( - ObjectType.UnknownItem529, - 529, - "Unknown Item (529)", - [ - [Episode.II, [5, 6, 7]], - [Episode.IV, [6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.UnknownItem530, - 530, - "Unknown Item (530)", - [[Episode.II, [5, 6, 7, 8, 9, 17]]], - [], -); -define_object_type_data( - ObjectType.Seagull, - 531, - "Seagull", - [ - [Episode.II, [6, 7, 8, 9, 16]], - [Episode.IV, [6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.Fish, - 544, - "Fish", - [ - [Episode.I, [15]], - [Episode.II, [6, 9, 10, 11, 16]], - ], - [], -); -define_object_type_data( - ObjectType.SeabedDoorWithBlueEdges, - 545, - "Seabed Door (with Blue Edges)", - [[Episode.II, [10, 11]]], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ["Switch ID", 52, "I32"], - ["Switch amount", 56, "I32"], - ["Stay active", 60, "I32"], - ], -); -define_object_type_data( - ObjectType.SeabedDoorAlwaysOpenNonTriggerable, - 546, - "Seabed Door (Always Open, Non-Triggerable)", - [[Episode.II, [10, 11]]], - [], -); -define_object_type_data( - ObjectType.LittleCryotube, - 547, - "Little Cryotube", - [[Episode.II, [10, 11, 17]]], - [["Model", 52, "U32"]], -); -define_object_type_data( - ObjectType.WideGlassWallBreakable, - 548, - "Wide Glass Wall (Breakable)", - [[Episode.II, [10, 11]]], - [], -); -define_object_type_data( - ObjectType.BlueFloatingRobot, - 549, - "Blue Floating Robot", - [[Episode.II, [10, 11]]], - [], -); -define_object_type_data( - ObjectType.RedFloatingRobot, - 550, - "Red Floating Robot", - [[Episode.II, [10, 11]]], - [], -); -define_object_type_data(ObjectType.Dolphin, 551, "Dolphin", [[Episode.II, [10, 11]]], []); -define_object_type_data( - ObjectType.CaptureTrap, - 552, - "Capture Trap", - [[Episode.II, [5, 6, 7, 8, 9, 10, 11, 16, 17]]], - [], -); -define_object_type_data( - ObjectType.VRLink, - 553, - "VR Link", - [[Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem576, - 576, - "Unknown Item (576)", - [[Episode.II, [12]]], - [], -); -define_object_type_data( - ObjectType.WarpInBarbaRayRoom, - 640, - "Warp in Barba Ray Room", - [[Episode.II, [14]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem672, - 672, - "Unknown Item (672)", - [[Episode.II, [15]]], - [], -); -define_object_type_data( - ObjectType.GeeNest, - 688, - "Gee Nest", - [ - [Episode.I, [8, 9, 10]], - [Episode.II, [5, 6, 7, 8, 9, 16, 17]], - [Episode.IV, [6, 7, 8]], - ], - [], -); -define_object_type_data( - ObjectType.LabComputerConsole, - 689, - "Lab Computer Console", - [[Episode.II, [0]]], - [], -); -define_object_type_data( - ObjectType.LabComputerConsoleGreenScreen, - 690, - "Lab Computer Console (Green Screen)", - [[Episode.II, [0]]], - [], -); -define_object_type_data( - ObjectType.ChairYellowPillow, - 691, - "Chair, Yellow Pillow", - [[Episode.II, [0]]], - [], -); -define_object_type_data( - ObjectType.OrangeWallWithHoleInMiddle, - 692, - "Orange Wall with Hole in Middle", - [[Episode.II, [0]]], - [], -); -define_object_type_data( - ObjectType.GreyWallWithHoleInMiddle, - 693, - "Grey Wall with Hole in Middle", - [[Episode.II, [0]]], - [], -); -define_object_type_data(ObjectType.LongTable, 694, "Long Table", [[Episode.II, [0]]], []); -define_object_type_data(ObjectType.GBAStation, 695, "GBA Station", [], []); -define_object_type_data( - ObjectType.TalkLinkToSupport, - 696, - "Talk (Link to Support)", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [], -); -define_object_type_data( - ObjectType.InstaWarp, - 697, - "Insta-Warp", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], - ], - [], -); -define_object_type_data( - ObjectType.LabInvisibleObject, - 698, - "Lab Invisible Object", - [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], - ], - [], -); -define_object_type_data( - ObjectType.LabGlassWindowDoor, - 699, - "Lab Glass Window Door", - [[Episode.II, [0]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem700, - 700, - "Unknown Item (700)", - [[Episode.II, [13]]], - [], -); -define_object_type_data( - ObjectType.LabCeilingWarp, - 701, - "Lab Ceiling Warp", - [[Episode.II, [0]]], - [], -); -define_object_type_data( - ObjectType.Ep4LightSource, - 768, - "Ep. IV Light Source", - [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]]], - [], -); -define_object_type_data( - ObjectType.Cactus, - 769, - "Cactus", - [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]]], - [ - ["Scale x", 40, "F32"], - ["Scale y", 44, "F32"], - ["Scale z", 48, "F32"], - ["Model", 52, "U32"], - ], -); -define_object_type_data( - ObjectType.BigBrownRock, - 770, - "Big Brown Rock", - [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]]], - [["Model", 52, "U32"]], -); -define_object_type_data( - ObjectType.BreakableBrownRock, - 771, - "Breakable Brown Rock", - [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]]], - [], -); -define_object_type_data(ObjectType.UnknownItem832, 832, "Unknown Item (832)", [], []); -define_object_type_data(ObjectType.UnknownItem833, 833, "Unknown Item (833)", [], []); -define_object_type_data(ObjectType.PoisonPlant, 896, "Poison Plant", [[Episode.IV, [6, 7, 8]]], []); -define_object_type_data( - ObjectType.UnknownItem897, - 897, - "Unknown Item (897)", - [[Episode.IV, [6, 7, 8]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem898, - 898, - "Unknown Item (898)", - [[Episode.IV, [6, 7, 8]]], - [], -); -define_object_type_data( - ObjectType.OozingDesertPlant, - 899, - "Oozing Desert Plant", - [[Episode.IV, [6, 7, 8]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem901, - 901, - "Unknown Item (901)", - [[Episode.IV, [6, 7, 8]]], - [], -); -define_object_type_data( - ObjectType.BigBlackRocks, - 902, - "Big Black Rocks", - [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]]], - [["Model", 52, "U32"]], -); -define_object_type_data( - ObjectType.UnknownItem903, - 903, - "Unknown Item (903)", - [[Episode.IV, [6, 7, 8]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem904, - 904, - "Unknown Item (904)", - [[Episode.IV, [6, 7, 8]]], - [], -); -define_object_type_data(ObjectType.UnknownItem905, 905, "Unknown Item (905)", [], []); -define_object_type_data(ObjectType.UnknownItem906, 906, "Unknown Item (906)", [], []); -define_object_type_data(ObjectType.FallingRock, 907, "Falling Rock", [[Episode.IV, [6, 7, 8]]], []); -define_object_type_data( - ObjectType.DesertPlantHasCollision, - 908, - "Desert Plant (Has Collision)", - [[Episode.IV, [6, 7, 8]]], - [], -); -define_object_type_data( - ObjectType.DesertFixedTypeBoxBreakableCrystals, - 909, - "Desert Fixed Type Box (Breakable Crystals)", - [[Episode.IV, [6, 7, 8]]], - [], -); -define_object_type_data(ObjectType.UnknownItem910, 910, "Unknown Item (910)", [], []); -define_object_type_data( - ObjectType.BeeHive, - 911, - "Bee Hive", - [[Episode.IV, [6, 7, 8]]], - [["Model", 52, "U32"]], -); -define_object_type_data( - ObjectType.UnknownItem912, - 912, - "Unknown Item (912)", - [[Episode.IV, [6, 7, 8]]], - [], -); -define_object_type_data( - ObjectType.Heat, - 913, - "Heat", - [[Episode.IV, [6, 7, 8]]], - [ - ["Radius", 40, "F32"], - ["Fog index no.", 52, "I32"], - ], -); -define_object_type_data( - ObjectType.TopOfSaintMillionEgg, - 960, - "Top of Saint Million Egg", - [[Episode.IV, [9]]], - [], -); -define_object_type_data( - ObjectType.UnknownItem961, - 961, - "Unknown Item (961)", - [[Episode.IV, [9]]], - [], -); - -Object.freeze(OBJECT_TYPES); -Object.freeze(OBJECT_TYPE_DATA); diff --git a/src/core/data_formats/parsing/quest/qst.test.ts b/src/core/data_formats/parsing/quest/qst.test.ts deleted file mode 100644 index d6ecfc5b..00000000 --- a/src/core/data_formats/parsing/quest/qst.test.ts +++ /dev/null @@ -1,68 +0,0 @@ -import { walk_qst_files } from "../../../../../test/src/utils"; -import { parse_qst, write_qst } from "./qst"; -import { Endianness } from "../../block/Endianness"; -import { BufferCursor } from "../../block/cursor/BufferCursor"; -import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; -import * as fs from "fs"; -import { Version } from "./Version"; -import { unwrap } from "../../../Result"; - -test("Parse a GC quest.", () => { - const buf = fs.readFileSync("test/resources/lost_heat_sword_gc.qst"); - const qst = unwrap(parse_qst(new BufferCursor(buf, Endianness.Little))); - - expect(qst).toBeDefined(); - expect(qst!.version).toBe(Version.GC); - expect(qst!.online).toBe(true); - expect(qst!.files.length).toBe(2); - expect(qst!.files[0].id).toBe(58); - expect(qst!.files[0].filename).toBe("quest58.bin"); - expect(qst!.files[0].quest_name).toBe("PSO/Lost HEAT SWORD"); - expect(qst!.files[1].id).toBe(58); - expect(qst!.files[1].filename).toBe("quest58.dat"); - expect(qst!.files[1].quest_name).toBe("PSO/Lost HEAT SWORD"); -}); - -// TODO: some quests aren't written correctly. -const EXCLUDED = [ - "/ep2/shop/gallon.qst", - "/princ/ep1/", - "/princ/ep4/", - "/solo/ep1/04.qst", // Skip because it contains every chuck twice. - "/fragmentofmemoryen.qst", - "/lost havoc vulcan.qst", - "/goodluck.qst", -]; - -/** - * Parse a file, convert the resulting structure to QST again and check whether the end result is - * equal to the original. - */ -walk_qst_files((file_path, file_name, file_content) => { - if (EXCLUDED.some(e => file_path.includes(e))) { - return; - } - - test(`parse_qst and write_qst ${file_name}`, () => { - const orig_qst = new BufferCursor(file_content, Endianness.Little); - const orig_quest = unwrap(parse_qst(orig_qst)); - - if (orig_quest) { - const test_qst = new ArrayBufferCursor(write_qst(orig_quest), Endianness.Little); - orig_qst.seek_start(0); - - expect(test_qst.size).toBe(orig_qst.size); - - let match = true; - - while (orig_qst.bytes_left) { - if (test_qst.u8() !== orig_qst.u8()) { - match = false; - break; - } - } - - expect(match).toBe(true); - } - }); -}); diff --git a/src/core/data_formats/parsing/quest/qst.ts b/src/core/data_formats/parsing/quest/qst.ts deleted file mode 100644 index 80a56770..00000000 --- a/src/core/data_formats/parsing/quest/qst.ts +++ /dev/null @@ -1,619 +0,0 @@ -import { Endianness } from "../../block/Endianness"; -import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; -import { Cursor } from "../../block/cursor/Cursor"; -import { ResizableBlockCursor } from "../../block/cursor/ResizableBlockCursor"; -import { WritableCursor } from "../../block/cursor/WritableCursor"; -import { ResizableBlock } from "../../block/ResizableBlock"; -import { assert, basename, defined } from "../../../util"; -import { LogManager } from "../../../logging"; -import { Version } from "./Version"; -import { Result, ResultBuilder } from "../../../Result"; -import { Severity } from "../../../Severity"; - -const logger = LogManager.get("core/data_formats/parsing/quest/qst"); - -// .qst format -const DC_GC_PC_HEADER_SIZE = 60; -const BB_HEADER_SIZE = 88; -const ONLINE_QUEST = 0x44; -const DOWNLOAD_QUEST = 0xa6; - -// Chunks -const CHUNK_BODY_SIZE = 1024; -const DC_GC_PC_CHUNK_HEADER_SIZE = 20; -const DC_GC_PC_CHUNK_TRAILER_SIZE = 4; -const DC_GC_PC_CHUNK_SIZE = - CHUNK_BODY_SIZE + DC_GC_PC_CHUNK_HEADER_SIZE + DC_GC_PC_CHUNK_TRAILER_SIZE; -const BB_CHUNK_HEADER_SIZE = 24; -const BB_CHUNK_TRAILER_SIZE = 8; -const BB_CHUNK_SIZE = CHUNK_BODY_SIZE + BB_CHUNK_HEADER_SIZE + BB_CHUNK_TRAILER_SIZE; - -export type QstContainedFile = { - readonly id?: number; - readonly filename: string; - readonly quest_name?: string; - readonly data: ArrayBuffer; -}; - -export type QstContent = { - readonly version: Version; - readonly online: boolean; - readonly files: readonly QstContainedFile[]; -}; - -/** - * Low level parsing function for .qst files. - */ -export function parse_qst(cursor: Cursor): Result { - const result = new ResultBuilder(logger); - - // A .qst file contains two headers that describe the embedded .dat and .bin files. - // Read headers and contained files. - const headers = parse_headers(cursor); - - if (headers.length < 2) { - return result - .add_problem( - Severity.Error, - "This .qst file is corrupt.", - `Corrupt .qst file, expected at least 2 headers but only found ${headers.length}.`, - ) - .failure(); - } - - let version: Version | undefined = undefined; - let online: boolean | undefined = undefined; - - for (const header of headers) { - if (version != undefined && header.version !== version) { - return result - .add_problem( - Severity.Error, - "This .qst file is corrupt.", - `Corrupt .qst file, header version ${Version[header.version]} for file ${ - header.filename - } doesn't match the previous header's version ${Version[version]}.`, - ) - .failure(); - } - - if (online != undefined && header.online !== online) { - return result - .add_problem( - Severity.Error, - "This .qst file is corrupt.", - `Corrupt .qst file, header type ${ - header.online ? '"online"' : '"download"' - } for file ${header.filename} doesn't match the previous header's type ${ - online ? '"online"' : '"download"' - }.`, - ) - .failure(); - } - - version = header.version; - online = header.online; - } - - defined(version, "version"); - defined(online, "online"); - - const files: Result = parse_files( - cursor, - version, - new Map(headers.map(h => [h.filename, h])), - ); - result.add_result(files); - - if (!files.success) { - return result.failure(); - } - - return result.success({ - version, - online, - files: files.value, - }); -} - -export function write_qst({ version, online, files }: QstContent): ArrayBuffer { - let file_header_size: number; - let chunk_size: number; - - switch (version) { - case Version.DC: - case Version.GC: - case Version.PC: - file_header_size = DC_GC_PC_HEADER_SIZE; - chunk_size = DC_GC_PC_CHUNK_SIZE; - break; - - case Version.BB: - file_header_size = BB_HEADER_SIZE; - chunk_size = BB_CHUNK_SIZE; - break; - } - - const total_size = files - .map(f => file_header_size + Math.ceil(f.data.byteLength / CHUNK_BODY_SIZE) * chunk_size) - .reduce((a, b) => a + b); - - const buffer = new ArrayBuffer(total_size); - const cursor = new ArrayBufferCursor(buffer, Endianness.Little); - - write_file_headers(cursor, files, version, online, file_header_size); - write_file_chunks(cursor, files, version); - - assert( - cursor.position === total_size, - () => `Expected a final file size of ${total_size}, but got ${cursor.position}.`, - ); - - return buffer; -} - -type QstHeader = { - readonly version: Version; - readonly online: boolean; - readonly quest_id: number; - readonly name: string; - readonly filename: string; - readonly size: number; -}; - -function parse_headers(cursor: Cursor): QstHeader[] { - const headers: QstHeader[] = []; - - let prev_quest_id: number | undefined = undefined; - let prev_filename: string | undefined = undefined; - - // .qst files should have two headers, some malformed files have more. - for (let i = 0; i < 4; ++i) { - // Detect version and whether it's an online or download quest. - let version: Version; - let online: boolean; - - const version_a = cursor.u8(); - cursor.seek(1); - const version_b = cursor.u8(); - cursor.seek(-3); - - if (version_a === BB_HEADER_SIZE && version_b === ONLINE_QUEST) { - version = Version.BB; - online = true; - } else if (version_a === DC_GC_PC_HEADER_SIZE && version_b === ONLINE_QUEST) { - version = Version.PC; - online = true; - } else if (version_b === DC_GC_PC_HEADER_SIZE) { - const pos = cursor.position; - cursor.seek(35); - - if (cursor.u8() === 0) { - version = Version.GC; - } else { - version = Version.DC; - } - - cursor.seek_start(pos); - - if (version_a === ONLINE_QUEST) { - online = true; - } else if (version_a === DOWNLOAD_QUEST) { - online = false; - } else { - break; - } - } else { - break; - } - - // Read header. - let header_size; - let quest_id: number; - let name: string; - let filename: string; - let size: number; - - switch (version) { - case Version.DC: - cursor.seek(1); // Skip online/download. - quest_id = cursor.u8(); - header_size = cursor.u16(); - name = cursor.string_ascii(32, true, true); - cursor.seek(3); - filename = cursor.string_ascii(16, true, true); - cursor.seek(1); - size = cursor.u32(); - break; - - case Version.GC: - cursor.seek(1); // Skip online/download. - quest_id = cursor.u8(); - header_size = cursor.u16(); - name = cursor.string_ascii(32, true, true); - cursor.seek(4); - filename = cursor.string_ascii(16, true, true); - size = cursor.u32(); - break; - - case Version.PC: - header_size = cursor.u16(); - cursor.seek(1); // Skip online/download. - quest_id = cursor.u8(); - name = cursor.string_ascii(32, true, true); - cursor.seek(4); - filename = cursor.string_ascii(16, true, true); - size = cursor.u32(); - break; - - case Version.BB: - header_size = cursor.u16(); - cursor.seek(2); // Skip online/download. - quest_id = cursor.u16(); - cursor.seek(38); - filename = cursor.string_ascii(16, true, true); - size = cursor.u32(); - name = cursor.string_ascii(24, true, true); - break; - } - - // Use some simple heuristics to figure out whether the file contains more than two headers. - // Some malformed .qst files have extra headers. - if ( - prev_quest_id != undefined && - prev_filename != undefined && - (quest_id !== prev_quest_id || basename(filename) !== basename(prev_filename)) - ) { - cursor.seek(-header_size); - break; - } - - prev_quest_id = quest_id; - prev_filename = filename; - - headers.push({ - version, - online, - quest_id, - name, - filename, - size, - }); - } - - return headers; -} - -function parse_files( - cursor: Cursor, - version: Version, - headers: Map, -): Result { - const result = new ResultBuilder(logger); - - // Files are interleaved in 1056 byte chunks. - // Each chunk has a 20 or 24 byte header, 1024 byte data segment and an 4 or 8 byte trailer. - const files = new Map< - string, - { - name: string; - expected_size?: number; - cursor: WritableCursor; - chunk_nos: Set; - } - >(); - - let chunk_size: number; // Size including padding, header and trailer. - let trailer_size: number; - - switch (version) { - case Version.DC: - case Version.GC: - case Version.PC: - chunk_size = DC_GC_PC_CHUNK_SIZE; - trailer_size = DC_GC_PC_CHUNK_TRAILER_SIZE; - break; - - case Version.BB: - chunk_size = BB_CHUNK_SIZE; - trailer_size = BB_CHUNK_TRAILER_SIZE; - break; - } - - while (cursor.bytes_left >= chunk_size) { - const start_position = cursor.position; - - // Read chunk header. - let chunk_no: number; - - switch (version) { - case Version.DC: - case Version.GC: - cursor.seek(1); - chunk_no = cursor.u8(); - cursor.seek(2); - break; - - case Version.PC: - cursor.seek(3); - chunk_no = cursor.u8(); - break; - - case Version.BB: - cursor.seek(4); - chunk_no = cursor.u32(); - break; - } - - const file_name = cursor.string_ascii(16, true, true); - let file = files.get(file_name); - - if (!file) { - const header = headers.get(file_name); - file = { - name: file_name, - expected_size: header?.size, - cursor: new ResizableBlockCursor( - new ResizableBlock(header?.size ?? 10 * CHUNK_BODY_SIZE, Endianness.Little), - ), - chunk_nos: new Set(), - }; - files.set(file_name, file); - } - - if (file.chunk_nos.has(chunk_no)) { - result.add_problem( - Severity.Warning, - `File chunk number ${chunk_no} of file ${file_name} was already encountered, overwriting previous chunk.`, - ); - } else { - file.chunk_nos.add(chunk_no); - } - - // Read file data. - let size = cursor.seek(CHUNK_BODY_SIZE).u32(); - cursor.seek(-CHUNK_BODY_SIZE - 4); - - if (size > CHUNK_BODY_SIZE) { - result.add_problem( - Severity.Warning, - `Data segment size of ${size} is larger than expected maximum size, reading just ${CHUNK_BODY_SIZE} bytes.`, - ); - size = CHUNK_BODY_SIZE; - } - - const data = cursor.take(size); - const chunk_position = chunk_no * CHUNK_BODY_SIZE; - file.cursor.size = Math.max(chunk_position + size, file.cursor.size); - file.cursor.seek_start(chunk_position).write_cursor(data); - - // Skip the padding and the trailer. - cursor.seek(CHUNK_BODY_SIZE + trailer_size - data.size); - - assert( - cursor.position === start_position + chunk_size, - () => - `Read ${ - cursor.position - start_position - } file chunk message bytes instead of expected ${chunk_size}.`, - ); - } - - if (cursor.bytes_left) { - result.add_problem(Severity.Warning, `${cursor.bytes_left} Bytes left in file.`); - } - - for (const file of files.values()) { - // Clean up file properties. - file.cursor.seek_start(0); - file.chunk_nos = new Set(Array.from(file.chunk_nos.values()).sort((a, b) => a - b)); - - // Check whether the expected size was correct. - if (file.expected_size != null && file.cursor.size !== file.expected_size) { - result.add_problem( - Severity.Warning, - `File ${file.name} has an actual size of ${file.cursor.size} instead of the expected size ${file.expected_size}.`, - ); - } - - // Detect missing file chunks. - const actual_size = Math.max(file.cursor.size, file.expected_size ?? 0); - const expected_chunk_count = Math.ceil(actual_size / CHUNK_BODY_SIZE); - - for (let chunk_no = 0; chunk_no < expected_chunk_count; ++chunk_no) { - if (!file.chunk_nos.has(chunk_no)) { - result.add_problem( - Severity.Warning, - `File ${file.name} is missing chunk ${chunk_no}.`, - ); - } - } - } - - const contained_files: QstContainedFile[] = []; - - for (const file of files.values()) { - const header = headers.get(file.name); - contained_files.push({ - id: header?.quest_id, - filename: file.name, - quest_name: header?.name, - data: file.cursor.seek_start(0).array_buffer(), - }); - } - - return result.success(contained_files); -} - -function write_file_headers( - cursor: WritableCursor, - files: readonly QstContainedFile[], - version: Version, - online: boolean, - header_size: number, -): void { - let max_id: number; - let max_quest_name_length: number; - - if (version === Version.BB) { - max_id = 0xffff; - max_quest_name_length = 23; - } else { - max_id = 0xff; - max_quest_name_length = 31; - } - - for (const file of files) { - assert( - file.id == undefined || (0 <= file.id && file.id <= max_id), - () => `Quest ID should be between 0 and ${max_id}, inclusive.`, - ); - assert( - file.quest_name == undefined || file.quest_name.length <= max_quest_name_length, - () => - `File ${file.filename} has a quest name longer than ${max_quest_name_length} characters (${file.quest_name}).`, - ); - assert( - file.filename.length <= 15, - () => `File ${file.filename} has a filename longer than 15 characters.`, - ); - - switch (version) { - case Version.DC: - cursor.write_u8(online ? ONLINE_QUEST : DOWNLOAD_QUEST); - cursor.write_u8(file.id ?? 0); - cursor.write_u16(header_size); - cursor.write_string_ascii(file.quest_name ?? file.filename, 32); - cursor.write_u8(0); - cursor.write_u8(0); - cursor.write_u8(0); - cursor.write_string_ascii(file.filename, 16); - cursor.write_u8(0); - cursor.write_u32(file.data.byteLength); - break; - - case Version.GC: - cursor.write_u8(online ? ONLINE_QUEST : DOWNLOAD_QUEST); - cursor.write_u8(file.id ?? 0); - cursor.write_u16(header_size); - cursor.write_string_ascii(file.quest_name ?? file.filename, 32); - cursor.write_u32(0); - cursor.write_string_ascii(file.filename, 16); - cursor.write_u32(file.data.byteLength); - break; - - case Version.PC: - cursor.write_u16(header_size); - cursor.write_u8(online ? ONLINE_QUEST : DOWNLOAD_QUEST); - cursor.write_u8(file.id ?? 0); - cursor.write_string_ascii(file.quest_name ?? file.filename, 32); - cursor.write_u32(0); - cursor.write_string_ascii(file.filename, 16); - cursor.write_u32(file.data.byteLength); - break; - - case Version.BB: - cursor.write_u16(header_size); - cursor.write_u16(online ? ONLINE_QUEST : DOWNLOAD_QUEST); - cursor.write_u16(file.id ?? 0); - for (let i = 0; i < 38; i++) cursor.write_u8(0); - cursor.write_string_ascii(file.filename, 16); - cursor.write_u32(file.data.byteLength); - cursor.write_string_ascii(file.quest_name ?? file.filename, 24); - break; - } - } -} - -function write_file_chunks( - cursor: WritableCursor, - files: readonly QstContainedFile[], - version: Version, -): void { - // Files are interleaved in chunks. Each chunk has a header, fixed-size data segment and a - // trailer. - const files_to_chunk = files.map(file => ({ - no: 0, - data: new ArrayBufferCursor(file.data, Endianness.Little), - name: file.filename, - })); - let done = 0; - - while (done < files_to_chunk.length) { - for (const file_to_chunk of files_to_chunk) { - if (file_to_chunk.data.bytes_left) { - if ( - !write_file_chunk( - cursor, - file_to_chunk.data, - file_to_chunk.no++, - file_to_chunk.name, - version, - ) - ) { - done++; - } - } - } - } - - for (const file_to_chunk of files_to_chunk) { - const expected_chunks = Math.ceil(file_to_chunk.data.size / CHUNK_BODY_SIZE); - - assert( - file_to_chunk.no === expected_chunks, - () => - `Expected to write ${expected_chunks} chunks for file "${file_to_chunk.name}" but ${file_to_chunk.no} where written.`, - ); - } -} - -/** - * @returns true if there are bytes left to write in `data`, false otherwise. - */ -function write_file_chunk( - cursor: WritableCursor, - data: Cursor, - chunk_no: number, - name: string, - version: Version, -): boolean { - switch (version) { - case Version.DC: - case Version.GC: - cursor.write_u8(0); - cursor.write_u8(chunk_no); - cursor.write_u16(0); - break; - - case Version.PC: - cursor.write_u8(0); - cursor.write_u8(0); - cursor.write_u8(0); - cursor.write_u8(chunk_no); - break; - - case Version.BB: - cursor.write_u8_array([28, 4, 19, 0]); - cursor.write_u32(chunk_no); - break; - } - - cursor.write_string_ascii(name, 16); - - const size = Math.min(CHUNK_BODY_SIZE, data.bytes_left); - cursor.write_cursor(data.take(size)); - - // Padding. - for (let i = size; i < CHUNK_BODY_SIZE; ++i) { - cursor.write_u8(0); - } - - cursor.write_u32(size); - - if (version === Version.BB) { - cursor.write_u32(0); - } - - return data.bytes_left > 0; -} diff --git a/src/core/data_formats/parsing/quest/set_npc_default_data.ts b/src/core/data_formats/parsing/quest/set_npc_default_data.ts deleted file mode 100644 index 6b6c207b..00000000 --- a/src/core/data_formats/parsing/quest/set_npc_default_data.ts +++ /dev/null @@ -1,762 +0,0 @@ -import { NpcType } from "./npc_types"; - -// TODO: set properties of friendly NPCs based on episode. -export function set_npc_default_data(type: NpcType, view: DataView): void { - switch (type) { - case NpcType.FemaleFat: - view.setInt16(2, 2, true); - view.setInt16(4, 1872, true); - view.setInt16(10, 5969, true); - view.setInt16(68, -16432, true); - view.setInt16(70, 1834, true); - break; - case NpcType.FemaleMacho: - view.setInt16(2, 2, true); - view.setInt16(4, 1876, true); - view.setInt16(10, 5973, true); - view.setInt16(68, -12528, true); - view.setInt16(70, 1834, true); - break; - case NpcType.FemaleTall: - view.setInt16(2, 2, true); - view.setInt16(4, 1883, true); - view.setInt16(68, -5504, true); - view.setInt16(70, 1834, true); - break; - case NpcType.MaleDwarf: - view.setInt16(2, 2, true); - view.setInt16(4, 1873, true); - view.setInt16(10, 5970, true); - view.setInt16(68, -15456, true); - view.setInt16(70, 1834, true); - break; - case NpcType.MaleFat: - view.setInt16(2, 2, true); - view.setInt16(4, 1882, true); - view.setInt16(10, 5979, true); - view.setInt16(68, -6528, true); - view.setInt16(70, 1834, true); - break; - case NpcType.MaleMacho: - view.setInt16(2, 2, true); - view.setInt16(4, 1880, true); - view.setInt16(10, 5977, true); - view.setInt16(68, -8576, true); - view.setInt16(70, 1834, true); - break; - case NpcType.MaleOld: - view.setInt16(2, 2, true); - view.setInt16(4, 1878, true); - view.setInt16(10, 5975, true); - view.setInt16(68, -10576, true); - view.setInt16(70, 1834, true); - break; - case NpcType.BlueSoldier: - view.setInt16(2, 2, true); - view.setInt16(4, 1875, true); - view.setInt16(10, 5972, true); - view.setInt16(68, -13504, true); - view.setInt16(70, 1834, true); - break; - case NpcType.RedSoldier: - view.setInt16(2, 2, true); - view.setInt16(4, 1874, true); - view.setInt16(10, 5971, true); - view.setInt16(68, -14480, true); - view.setInt16(70, 1834, true); - break; - case NpcType.Principal: - view.setInt16(4, 1888, true); - view.setInt16(10, 5985, true); - view.setInt16(68, -384, true); - view.setInt16(70, 1834, true); - break; - case NpcType.Tekker: - view.setInt16(2, 2, true); - view.setInt16(4, 1879, true); - view.setInt16(10, 5976, true); - view.setInt16(68, -9600, true); - view.setInt16(70, 1834, true); - break; - case NpcType.GuildLady: - view.setInt16(2, 2, true); - view.setInt16(4, 1891, true); - view.setInt16(10, 5988, true); - view.setInt16(68, 11584, true); - view.setInt16(70, 1835, true); - break; - case NpcType.Scientist: - view.setInt16(2, 2, true); - view.setInt16(4, 1877, true); - view.setInt16(10, 5974, true); - view.setInt16(68, -11552, true); - view.setInt16(70, 1834, true); - break; - case NpcType.Nurse: - view.setInt16(2, 2, true); - view.setInt16(4, 1884, true); - view.setInt16(10, 5981, true); - view.setInt16(68, -4480, true); - view.setInt16(70, 1834, true); - break; - case NpcType.Irene: - view.setInt16(4, 1889, true); - view.setInt16(10, 5986, true); - view.setInt16(68, 640, true); - view.setInt16(70, 1835, true); - break; - case NpcType.ItemShop: - view.setInt16(4, 8, true); - view.setInt16(10, 6453, true); - view.setInt16(68, 16560, true); - view.setInt16(70, 1176, true); - break; - case NpcType.Nurse2: - view.setInt16(4, 2330, true); - view.setInt16(10, 6496, true); - view.setInt16(68, -13280, true); - view.setInt16(70, 1200, true); - break; - case NpcType.Hildebear: - view.setInt16(4, -1, true); - view.setInt16(8, 2, true); - view.setInt16(10, -1, true); - view.setFloat32(44, 1.000000238418579, true); // Scale x - view.setInt16(68, 29968, true); - view.setInt16(70, -29446, true); - break; - case NpcType.RagRappy: - view.setInt16(8, 1, true); - view.setInt16(10, -1, true); - view.setInt16(68, 1072, true); - view.setInt16(70, -29444, true); - break; - case NpcType.Monest: - view.setFloat32(48, 5.000000953674316, true); // Start number - view.setFloat32(52, 10.000004768371582, true); // Total number - break; - case NpcType.BarbarousWolf: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, 6475, true); - view.setInt16(68, 8576, true); - view.setInt16(70, -29445, true); - break; - case NpcType.Booma: - view.setFloat32(44, 0.30000001192092896, true); // Scale x - view.setFloat32(48, 40.00001907348633, true); // Idle distance - break; - case NpcType.Gobooma: - view.setInt16(8, 1, true); - view.setInt16(10, -1, true); - view.setFloat32(44, 0.30000001192092896, true); // Scale x - view.setFloat32(48, 40.00001907348633, true); // Idle distance - view.setInt16(68, 11600, true); - view.setInt16(70, -29444, true); - break; - case NpcType.Gigobooma: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, 6492, true); - view.setInt16(68, -4000, true); - view.setInt16(70, -29446, true); - break; - case NpcType.Dragon: - view.setInt16(4, 1173, true); - view.setInt16(8, 11, true); - view.setInt16(10, -1, true); - view.setInt16(68, 24624, true); - view.setInt16(70, -29446, true); - break; - case NpcType.GrassAssassin: - view.setInt16(8, 4, true); - break; - case NpcType.PoisonLily: - view.setInt16(8, 4, true); - break; - case NpcType.NanoDragon: - view.setInt16(8, 3, true); - break; - case NpcType.EvilShark: - view.setInt16(8, 3, true); - break; - case NpcType.PalShark: - view.setInt16(8, 3, true); - break; - case NpcType.GuilShark: - view.setInt16(8, 4, true); - break; - case NpcType.PofuillySlime: - view.setInt16(8, 4, true); - break; - case NpcType.PanArms: - view.setInt16(8, 5, true); - break; - case NpcType.DeRolLe: - view.setInt16(4, 1485, true); - view.setInt16(6, 19, true); // Clone count - view.setInt16(8, 12, true); - view.setInt16(10, -1, true); - view.setInt16(68, -11088, true); - view.setInt16(70, -29445, true); - break; - case NpcType.Dubchic: - view.setInt16(4, 2626, true); - view.setInt16(8, 7, true); - view.setInt16(10, 7272, true); - view.setInt16(68, -25504, true); - view.setInt16(70, 561, true); - break; - case NpcType.Gilchic: - view.setInt16(4, -1, true); - view.setInt16(8, 6, true); - view.setInt16(10, -1, true); - view.setFloat32(44, 1.000000238418579, true); // Scale x - view.setInt16(68, 5968, true); - view.setInt16(70, -29444, true); - break; - case NpcType.Garanz: - view.setInt16(4, -1, true); - view.setInt16(8, 7, true); - view.setInt16(10, 6319, true); - view.setInt16(68, -26128, true); - view.setInt16(70, 561, true); - break; - case NpcType.SinowBeat: - view.setInt16(4, -1, true); - view.setInt16(8, 6, true); - view.setInt16(10, -1, true); - view.setInt16(68, 6288, true); - view.setInt16(70, -29444, true); - break; - case NpcType.SinowGold: - view.setInt16(4, -1, true); - view.setInt16(8, 6, true); - view.setInt16(10, -1, true); - view.setFloat32(44, -1.000000238418579, true); // Scale x - view.setInt16(68, 8048, true); - view.setInt16(70, -29444, true); - break; - case NpcType.Canadine: - view.setInt16(4, -1, true); - view.setInt16(8, 6, true); - view.setInt16(10, -1, true); - view.setInt16(68, 8496, true); - view.setInt16(70, -29444, true); - break; - case NpcType.Canane: - view.setInt16(4, -1, true); - view.setInt16(8, 6, true); - view.setInt16(10, -1, true); - view.setInt16(68, 7264, true); - view.setInt16(70, -29444, true); - break; - case NpcType.Dubswitch: - view.setInt16(4, 2626, true); - view.setInt16(8, 7, true); - view.setInt16(10, 7298, true); - view.setInt16(68, -16736, true); - view.setInt16(70, 561, true); - break; - case NpcType.VolOptPart1: - view.setInt16(6, 35, true); // Clone count - break; - case NpcType.VolOptPart2: - view.setInt16(8, 13, true); - break; - case NpcType.DarkFalz: - view.setInt16(4, -1, true); - view.setInt16(8, 14, true); - view.setInt16(10, 7458, true); - view.setInt16(68, 25008, true); - view.setInt16(70, -29446, true); - break; - case NpcType.Hildebear2: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, 30745, true); - view.setFloat32(44, 1, true); // Scale x - view.setInt16(68, -7296, true); - view.setInt16(70, -32759, true); - break; - case NpcType.RagRappy2: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, -7401, true); - view.setInt16(68, -7296, true); - view.setInt16(70, 8201, true); - break; - case NpcType.Monest2: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, 4122, true); - view.setFloat32(48, 3, true); // Start number - view.setFloat32(52, 9, true); // Total number - view.setInt16(68, -7296, true); - view.setInt16(70, -12252, true); - break; - case NpcType.PoisonLily2: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, 26648, true); - view.setInt16(68, -7296, true); - view.setInt16(70, 8230, true); - break; - case NpcType.GrassAssassin2: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, 20761, true); - view.setInt16(68, -7296, true); - view.setInt16(70, 24595, true); - break; - case NpcType.Dimenian2: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, 28696, true); - view.setInt16(68, -7296, true); - view.setInt16(70, -4086, true); - break; - case NpcType.LaDimenian2: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, 7449, true); - view.setInt16(68, -7296, true); - view.setInt16(70, -16367, true); - break; - case NpcType.SoDimenian2: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, -1254, true); - view.setFloat32(48, 100, true); // Idle distance - view.setInt16(68, -7040, true); - view.setInt16(70, 8372, true); - break; - case NpcType.DarkBelra2: - view.setInt16(4, -1, true); - view.setInt16(8, 1, true); - view.setInt16(10, -17895, true); - view.setInt16(68, -7040, true); - view.setInt16(70, -32642, true); - break; - case NpcType.BarbaRay: - view.setInt16(4, -1, true); - view.setInt16(8, 14, true); - view.setInt16(10, 23572, true); - view.setInt16(68, -2688, true); - view.setInt16(70, 24576, true); - break; - case NpcType.SavageWolf2: - view.setInt16(4, 11785, true); - view.setInt16(8, 3, true); - view.setInt16(10, -20711, true); - view.setInt16(68, -7552, true); - view.setInt16(70, 8250, true); - break; - case NpcType.BarbarousWolf2: - view.setInt16(4, -1, true); - view.setInt16(8, 3, true); - view.setInt16(10, -14056, true); - view.setInt16(68, -7552, true); - view.setInt16(70, -32650, true); - break; - case NpcType.PanArms2: - view.setInt16(4, -1, true); - view.setInt16(8, 3, true); - view.setInt16(10, -6632, true); - view.setInt16(68, -7552, true); - view.setInt16(70, -16251, true); - break; - case NpcType.Dubchic2: - view.setInt16(4, -1, true); - view.setInt16(8, 3, true); - view.setInt16(10, -3560, true); - view.setInt16(68, -7552, true); - view.setInt16(70, 16513, true); - break; - case NpcType.Gilchic2: - view.setInt16(4, -1, true); - view.setInt16(8, 3, true); - view.setInt16(10, -23272, true); - view.setInt16(68, -7552, true); - view.setInt16(70, -32654, true); - break; - case NpcType.Garanz2: - view.setInt16(4, 27144, true); - view.setInt16(8, 3, true); - view.setInt16(10, 27928, true); - view.setInt16(68, -7552, true); - view.setInt16(70, 24683, true); - break; - case NpcType.Dubswitch2: - view.setInt16(4, -1, true); - view.setInt16(8, 3, true); - view.setInt16(10, -4840, true); - view.setInt16(68, -7552, true); - view.setInt16(70, -20363, true); - break; - case NpcType.Delsaber2: - view.setInt16(4, -1, true); - view.setInt16(8, 3, true); - view.setInt16(10, 2841, true); - view.setInt16(68, -7552, true); - view.setInt16(70, 16513, true); - break; - case NpcType.ChaosSorcerer2: - view.setInt16(4, -1, true); - view.setInt16(8, 4, true); - view.setInt16(10, 9754, true); - view.setInt16(68, -7296, true); - view.setInt16(70, -7963, true); - break; - case NpcType.GolDragon: - view.setInt16(4, -19963, true); - view.setInt16(8, 15, true); - view.setInt16(10, -18411, true); - view.setInt16(68, -3712, true); - view.setInt16(70, 16555, true); - break; - case NpcType.SinowBerill: - view.setInt16(4, -1, true); - view.setInt16(8, 5, true); - view.setInt16(10, 15896, true); - view.setFloat32(44, 3, true); // Scale x - view.setFloat32(52, -0.19999998807907104, true); // Scale z - view.setInt16(68, -7552, true); - view.setInt16(70, 47, true); - break; - case NpcType.SinowSpigell: - view.setInt16(4, 880, true); - view.setInt16(8, 5, true); - view.setInt16(10, 7101, true); - view.setInt16(68, -11584, true); - view.setInt16(70, 1163, true); - break; - case NpcType.Merillia: - view.setInt16(4, -1, true); - view.setInt16(8, 6, true); - view.setInt16(10, 28439, true); - view.setFloat32(44, 1, true); // Scale x - view.setFloat32(52, -0.09999999403953552, true); // Scale z - view.setInt16(68, -7552, true); - view.setInt16(70, 16456, true); - break; - case NpcType.Meriltas: - view.setInt16(4, -1, true); - view.setInt16(8, 6, true); - view.setInt16(10, 30999, true); - view.setFloat32(44, -1, true); // Scale x - view.setFloat32(52, 0.09999999403953552, true); // Scale z - view.setInt16(68, -7552, true); - view.setInt16(70, 16456, true); - break; - case NpcType.Mericarol: - view.setInt16(4, -1, true); - view.setInt16(8, 17, true); - view.setInt16(10, 30232, true); - view.setFloat32(44, 0.19999998807907104, true); // Scale x - view.setFloat32(52, 0.19999998807907104, true); // Scale z - view.setInt16(68, -7552, true); - view.setInt16(70, -4016, true); - break; - case NpcType.Mericus: - view.setInt16(4, 32010, true); - view.setInt16(8, 17, true); - view.setInt16(10, 3356, true); - view.setFloat32(44, 0.19999998807907104, true); // Scale x - view.setFloat32(52, 0.19999998807907104, true); // Scale z - view.setInt16(68, -7552, true); - view.setInt16(70, 28762, true); - break; - case NpcType.Merikle: - view.setInt16(4, 32010, true); - view.setInt16(8, 17, true); - view.setInt16(10, 3868, true); - view.setFloat32(44, 0.19999998807907104, true); // Scale x - view.setFloat32(52, 0.19999998807907104, true); // Scale z - view.setInt16(68, -7552, true); - view.setInt16(70, -3997, true); - break; - case NpcType.UlGibbon: - view.setInt16(4, -1, true); - view.setInt16(8, 6, true); - view.setInt16(10, -27881, true); - view.setFloat32(48, 1, true); // Jump appear - view.setInt16(68, -7552, true); - view.setInt16(70, 20554, true); - break; - case NpcType.ZolGibbon: - view.setInt16(4, -1, true); - view.setInt16(8, 5, true); - view.setInt16(10, 6331, true); - view.setInt16(68, -26688, true); - view.setInt16(70, 565, true); - break; - case NpcType.Gibbles: - view.setInt16(4, -1, true); - view.setInt16(8, 17, true); - view.setInt16(10, -24296, true); - view.setFloat32(44, 500, true); // Scale x - view.setFloat32(52, 0.7999999523162842, true); // Scale z - view.setInt16(68, -7552, true); - view.setInt16(70, -12210, true); - break; - case NpcType.Gee: - view.setInt16(4, -1, true); - view.setInt16(8, 6, true); - view.setInt16(10, -20457, true); - view.setInt16(68, -7552, true); - view.setInt16(70, -4024, true); - break; - case NpcType.GiGue: - view.setInt16(4, 32010, true); - view.setInt16(8, 17, true); - view.setInt16(10, 13852, true); - view.setFloat32(44, 501, true); // Scale x - view.setFloat32(52, 50, true); // Scale z - view.setInt16(68, -7552, true); - view.setInt16(70, 12374, true); - break; - case NpcType.IllGill: - view.setInt16(4, 4104, true); - view.setInt16(8, 17, true); - view.setInt16(10, 7192, true); - view.setInt16(68, -7552, true); - view.setInt16(70, 24639, true); - break; - case NpcType.DelLily: - view.setInt16(4, -1, true); - view.setInt16(8, 17, true); - view.setInt16(10, 6388, true); - view.setInt16(68, -26576, true); - view.setInt16(70, 564, true); - break; - case NpcType.Epsilon: - view.setInt16(4, -1, true); - view.setInt16(8, 17, true); - view.setInt16(10, -7914, true); - view.setInt16(68, -4224, true); - view.setInt16(70, -16379, true); - break; - case NpcType.GalGryphon: - view.setInt16(4, 1173, true); - view.setInt16(8, 11, true); - view.setInt16(10, -1, true); - view.setInt16(68, 24624, true); - view.setInt16(70, -29446, true); - break; - case NpcType.Deldepth: - view.setInt16(4, 2095, true); - view.setInt16(8, 11, true); - view.setInt16(10, 6251, true); - view.setInt16(68, -26352, true); - view.setInt16(70, 665, true); - break; - case NpcType.Delbiter: - view.setInt16(4, -1, true); - view.setInt16(8, 11, true); - view.setInt16(10, -27880, true); - view.setFloat32(48, 0.19999998807907104, true); // Confuse percent - view.setFloat32(52, 20, true); // Confuse distance - view.setFloat32(60, 0.5, true); // Charge percent - view.setInt32(64, 1, true); // Type - view.setInt16(68, -7552, true); - view.setInt16(70, 24639, true); - break; - case NpcType.Dolmolm: - view.setInt16(4, -1, true); - view.setInt16(8, 11, true); - view.setInt16(10, 28441, true); - view.setFloat32(52, 1, true); // Scale z - view.setInt16(68, -7552, true); - view.setInt16(70, 12370, true); - break; - case NpcType.Dolmdarl: - view.setInt16(4, -1, true); - view.setInt16(8, 11, true); - view.setInt16(10, 31513, true); - view.setFloat32(52, -1, true); // Scale z - view.setInt16(68, -7552, true); - view.setInt16(70, -4001, true); - break; - case NpcType.Morfos: - view.setInt16(4, 1993, true); - view.setInt16(8, 11, true); - view.setInt16(10, 6115, true); - view.setInt16(68, -25424, true); - view.setInt16(70, 561, true); - break; - case NpcType.Recobox: - view.setInt16(4, -1, true); - view.setInt16(8, 11, true); - view.setInt16(10, 6107, true); - view.setInt16(68, -26160, true); - view.setInt16(70, 686, true); - break; - case NpcType.SinowZoa: - view.setInt16(4, 2634, true); - view.setInt16(8, 11, true); - view.setInt16(10, 6999, true); - view.setFloat32(44, 1, true); // Scale x - view.setInt16(68, -19488, true); - view.setInt16(70, 665, true); - break; - case NpcType.SinowZele: - view.setInt16(4, 2634, true); - view.setInt16(8, 11, true); - view.setInt16(10, 7027, true); - view.setInt16(68, -25152, true); - view.setInt16(70, 665, true); - break; - case NpcType.OlgaFlow: - view.setInt16(4, -1, true); - view.setInt16(8, 13, true); - view.setInt16(10, 8466, true); - view.setInt16(68, -4480, true); - view.setInt16(70, -28572, true); - break; - case NpcType.SandRappy: - view.setInt16(4, -1, true); - view.setInt16(8, 5, true); - view.setInt16(10, 5471, true); - view.setInt16(68, -27344, true); - view.setInt16(70, 616, true); - break; - case NpcType.DelRappy: - view.setInt16(4, -1, true); - view.setInt16(8, 3, true); - view.setInt16(10, 5039, true); - view.setInt16(68, -17168, true); - view.setInt16(70, 410, true); - break; - case NpcType.Astark: - view.setInt16(4, -1, true); - view.setInt16(8, 5, true); - view.setInt16(10, 5653, true); - view.setInt16(68, -26896, true); - view.setInt16(70, 616, true); - break; - case NpcType.SatelliteLizard: - view.setInt16(4, -1, true); - view.setInt16(8, 5, true); - view.setInt16(10, 5524, true); - view.setInt16(68, -27088, true); - view.setInt16(70, 616, true); - break; - case NpcType.Yowie: - view.setInt16(4, -1, true); - view.setInt16(8, 5, true); - view.setInt16(10, 5547, true); - view.setFloat32(44, 1, true); // Scale x - view.setInt16(68, -25872, true); - view.setInt16(70, 616, true); - break; - case NpcType.MerissaA: - view.setInt16(4, -1, true); - view.setInt16(8, 7, true); - view.setInt16(10, 5322, true); - view.setInt16(68, -16512, true); - view.setInt16(70, 542, true); - break; - case NpcType.MerissaAA: - view.setInt16(4, -1, true); - view.setInt16(8, 8, true); - view.setInt16(10, 5651, true); - view.setInt16(68, -27328, true); - view.setInt16(70, 1230, true); - break; - case NpcType.Girtablulu: - view.setInt16(4, -1, true); - view.setInt16(8, 7, true); - view.setInt16(10, 5007, true); - view.setInt16(68, -26256, true); - view.setInt16(70, 459, true); - break; - case NpcType.Zu: - view.setInt16(4, -1, true); - view.setInt16(8, 5, true); - view.setInt16(10, 5734, true); - view.setInt16(68, -28304, true); - view.setInt16(70, 616, true); - break; - case NpcType.Pazuzu: - view.setInt16(4, 937, true); - view.setInt16(8, 3, true); - view.setInt16(10, 5054, true); - view.setInt16(68, -15216, true); - view.setInt16(70, 410, true); - break; - case NpcType.Boota: - view.setInt16(4, -1, true); - view.setInt16(8, 5, true); - view.setInt16(10, 5496, true); - view.setInt16(68, -27216, true); - view.setInt16(70, 616, true); - break; - case NpcType.ZeBoota: - view.setInt16(4, -1, true); - view.setInt16(8, 5, true); - view.setInt16(10, 5504, true); - view.setInt16(68, -20304, true); - view.setInt16(70, 616, true); - break; - case NpcType.BaBoota: - view.setInt16(4, -1, true); - view.setInt16(8, 5, true); - view.setInt16(10, 5513, true); - view.setInt16(68, -14800, true); - view.setInt16(70, 616, true); - break; - case NpcType.Dorphon: - view.setInt16(4, 2308, true); - view.setInt16(8, 5, true); - view.setInt16(10, 6840, true); - view.setInt16(68, -26480, true); - view.setInt16(70, 616, true); - break; - case NpcType.DorphonEclair: - view.setInt16(4, 951, true); - view.setInt16(8, 3, true); - view.setInt16(10, 5101, true); - view.setInt16(68, -30064, true); - view.setInt16(70, 410, true); - break; - case NpcType.Goran: - view.setInt16(4, -1, true); - view.setInt16(8, 8, true); - view.setInt16(10, 5439, true); - view.setInt16(68, -27216, true); - view.setInt16(70, 610, true); - break; - case NpcType.PyroGoran: - view.setInt16(4, -1, true); - view.setInt16(8, 7, true); - view.setInt16(10, 5375, true); - view.setInt16(68, -16384, true); - view.setInt16(70, 542, true); - break; - case NpcType.GoranDetonator: - view.setInt16(4, -1, true); - view.setInt16(8, 7, true); - view.setInt16(10, 5373, true); - view.setInt16(68, -16384, true); - view.setInt16(70, 542, true); - break; - case NpcType.SaintMilion: - view.setInt16(4, 1297, true); - view.setInt16(6, 24, true); // Clone count - view.setInt16(8, 9, true); - view.setInt16(10, 5521, true); - view.setInt16(68, 28144, true); - view.setInt16(70, 673, true); - break; - case NpcType.Shambertin: - view.setInt16(4, 1362, true); - view.setInt16(6, 24, true); // Clone count - view.setInt16(8, 9, true); - view.setInt16(10, 5662, true); - view.setFloat32(44, 1, true); // Scale x - view.setInt16(68, 31280, true); - view.setInt16(70, 491, true); - break; - } -} diff --git a/src/core/data_formats/parsing/quest/set_object_default_data.ts b/src/core/data_formats/parsing/quest/set_object_default_data.ts deleted file mode 100644 index 2d0203ea..00000000 --- a/src/core/data_formats/parsing/quest/set_object_default_data.ts +++ /dev/null @@ -1,1219 +0,0 @@ -import { ObjectType } from "./object_types"; - -export function set_object_default_data(type: ObjectType, view: DataView): void { - view.setFloat32(40, 1, true); // Scale x - view.setFloat32(44, 1, true); // Scale y - view.setFloat32(48, 1, true); // Scale z - - switch (type) { - case ObjectType.PlayerSet: - view.setInt16(2, 2, true); - view.setInt16(4, 4, true); - view.setFloat32(40, 0, true); // Slot ID - view.setInt32(64, -1929687552, true); - break; - case ObjectType.Particle: - view.setInt16(4, 5639, true); - view.setInt16(6, 10, true); - view.setFloat32(40, 38, true); // Scale x - view.setInt32(64, 1351475840, true); - break; - case ObjectType.Teleporter: - view.setInt16(2, 2, true); - view.setInt16(4, 90, true); - view.setInt16(6, 1, true); - view.setInt32(64, -1929650432, true); - break; - case ObjectType.Warp: - view.setInt16(4, 1332, true); - view.setInt16(6, 4, true); - view.setFloat32(40, 0, true); // Destination x - view.setFloat32(44, 0, true); // Destination y - view.setFloat32(48, 0, true); // Destination z - view.setInt32(52, 0, true); // Dst. rotation y - view.setInt32(64, -1929729040, true); - break; - case ObjectType.LightCollision: - view.setFloat32(48, 0.5, true); // Scale z - view.setInt32(56, 26112, true); - view.setInt32(64, -802624128, true); - break; - case ObjectType.FogCollision: - view.setInt16(4, 2019, true); - view.setInt16(6, 10, true); - view.setFloat32(40, 140, true); // Radius - view.setInt32(52, 17, true); // Fog index no. - view.setInt32(64, 36780240, true); - break; - case ObjectType.EventCollision: - view.setInt16(4, 2131, true); - view.setInt16(6, 8, true); - view.setFloat32(40, 30, true); // Radius - view.setInt32(64, 71359776, true); - break; - case ObjectType.ElementalTrap: - view.setFloat32(40, 0, true); // Radius - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, -1, true); // Trap link - view.setInt32(52, 100, true); // Damage - view.setInt32(60, 20, true); // Delay - break; - case ObjectType.StatusTrap: - view.setFloat32(40, 0, true); // Radius - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, -1, true); // Trap link - view.setInt32(56, 17, true); // Subtype - view.setInt32(60, 20, true); // Delay - break; - case ObjectType.HealTrap: - view.setInt16(4, 1566, true); - view.setInt16(6, 4, true); - view.setFloat32(40, -32.00001525878906, true); // Radius - view.setFloat32(44, -60.00002670288086, true); // Scale y - view.setFloat32(48, -1.000000238418579, true); // Trap link - view.setInt32(52, 200, true); // HP - view.setInt32(60, 60, true); // Delay - view.setInt32(64, -1929453936, true); - break; - case ObjectType.LargeElementalTrap: - view.setFloat32(40, 0, true); // Radus - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, -1, true); // Trap link - view.setInt32(52, 200, true); // Damage - view.setInt32(60, 50, true); // Delay - break; - case ObjectType.ObjRoomID: - view.setInt16(4, 1545, true); - view.setInt16(6, 1, true); - view.setFloat32(40, 3.9999988079071045, true); // SCL_TAMA - view.setFloat32(44, 5, true); // Next section - view.setFloat32(48, 10, true); // Previous section - view.setInt32(56, 16384, true); - view.setInt32(64, -1929753600, true); - break; - case ObjectType.ScriptCollision: - view.setInt16(4, 1771, true); - view.setInt16(6, 14, true); - view.setFloat32(40, 250.00009155273438, true); // Radius - view.setInt32(64, -1929714224, true); - break; - case ObjectType.HealRing: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - break; - case ObjectType.ItemLight: - view.setInt16(4, 1990, true); - view.setInt16(6, 8, true); - view.setFloat32(40, 3, true); // Subtype - view.setInt32(64, 39205168, true); - break; - case ObjectType.FogCollisionSW: - view.setInt16(4, 1550, true); - view.setInt16(6, 3, true); - view.setFloat32(40, 240.0000762939453, true); // Radius - view.setFloat32(48, 0, true); // Scale z - view.setInt32(52, 17, true); // Fog index no. - view.setInt32(64, -1929715680, true); - break; - case ObjectType.BossTeleporter: - view.setInt16(4, 1555, true); - view.setInt16(6, 2, true); - view.setInt32(56, 31, true); - view.setInt32(64, -1929731696, true); - break; - case ObjectType.ImageBoard: - view.setInt16(4, 384, true); - view.setFloat32(40, 0.5, true); // Scale x - view.setFloat32(44, 2.000000476837158, true); // Scale y - view.setFloat32(48, 1.000000238418579, true); // Scale z - view.setInt32(64, 72261968, true); - break; - case ObjectType.QuestWarp: - view.setInt16(4, 1555, true); - view.setInt16(6, 2, true); - view.setInt32(60, 1, true); - view.setInt32(64, -1929711344, true); - break; - case ObjectType.BoxDetectObject: - view.setInt16(4, 1776, true); - view.setInt16(6, 5, true); - view.setFloat32(40, 30.000015258789062, true); // Radius - view.setInt32(56, 6, true); - view.setInt32(60, 3, true); - view.setInt32(64, -1929661840, true); - break; - case ObjectType.SymbolChatObject: - view.setInt16(4, 1792, true); - view.setInt16(6, 5, true); - view.setFloat32(40, 30.000015258789062, true); // Radius - view.setInt32(56, 30, true); - view.setInt32(60, 30, true); - view.setInt32(64, -1929667104, true); - break; - case ObjectType.TouchPlateObject: - view.setInt16(4, 26119, true); - view.setInt16(6, 11, true); - view.setFloat32(40, 8, true); // Radius - view.setInt32(56, -1, true); - view.setInt32(64, -259264640, true); - break; - case ObjectType.TargetableObject: - view.setInt16(4, -23032, true); - view.setInt16(6, 2, true); - view.setFloat32(40, -1, true); // Scale x - view.setFloat32(48, 0, true); // Switch ID - view.setInt32(52, 2, true); // HP - view.setInt32(64, -2144604032, true); - break; - case ObjectType.EffectObject: - view.setInt16(4, 25863, true); - view.setInt16(6, 11, true); - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setInt32(60, 1, true); - view.setInt32(64, -259199104, true); - break; - case ObjectType.CountDownObject: - view.setInt16(4, -31992, true); - view.setInt16(6, 1, true); - view.setInt32(64, -252124544, true); - break; - case ObjectType.UnknownItem39: - view.setInt16(4, 30728, true); - view.setInt16(6, 1, true); - view.setInt32(56, 65641, true); - view.setInt32(64, 821944960, true); - break; - case ObjectType.MenuActivation: - view.setInt16(2, 2, true); - view.setInt32(64, -1929688192, true); - break; - case ObjectType.TelepipeLocation: - view.setInt16(2, 2, true); - view.setInt16(4, 13, true); - view.setInt32(64, -1929685680, true); - break; - case ObjectType.BGMCollision: - view.setInt16(2, 512, true); - view.setInt16(4, 11520, true); - view.setFloat32(40, 500, true); // Scale x - view.setInt32(64, -265293952, true); - break; - case ObjectType.MainRagolTeleporter: - view.setInt16(4, 1879, true); - view.setFloat32(40, 1.000000238418579, true); // Scale x - view.setInt32(64, -1929740080, true); - break; - case ObjectType.LobbyTeleporter: - view.setInt16(2, 512, true); - view.setInt32(64, -1073221760, true); - break; - case ObjectType.PrincipalWarp: - view.setInt16(2, 2, true); - view.setInt16(4, 9, true); - view.setFloat32(40, 10, true); // Destination x - view.setFloat32(44, 0, true); // Destination y - view.setFloat32(48, -1760.001, true); // Destination z - view.setInt32(52, 32768, true); // Dst. rotation y - view.setInt32(56, 65536, true); - view.setInt32(64, -1929686608, true); - break; - case ObjectType.ShopDoor: - view.setInt16(2, 2, true); - view.setInt16(4, 18, true); - view.setFloat32(40, 3.0000007152557373, true); // Scale x - view.setInt32(64, -1929684656, true); - break; - case ObjectType.HuntersGuildDoor: - view.setInt16(2, 2, true); - view.setInt16(4, 20, true); - view.setFloat32(40, 3.0000007152557373, true); // Scale x - view.setInt32(64, -1929684240, true); - break; - case ObjectType.TeleporterDoor: - view.setInt16(2, 2, true); - view.setInt16(4, 21, true); - view.setFloat32(40, 3.0000007152557373, true); // Scale x - view.setInt32(64, -1929683984, true); - break; - case ObjectType.MedicalCenterDoor: - view.setInt16(2, 2, true); - view.setInt16(4, 17, true); - view.setFloat32(40, 3.0000007152557373, true); // Scale x - view.setInt32(64, -1929684912, true); - break; - case ObjectType.Sonic: - view.setInt16(2, 2, true); - view.setUint32(52, 1, true); // Model - view.setInt32(64, 79126144, true); - break; - case ObjectType.WelcomeBoard: - view.setInt16(4, 23304, true); - view.setInt32(64, -1864965504, true); - break; - case ObjectType.LobbyScreenDoor: - view.setInt16(2, 2, true); - view.setInt16(4, 25, true); - view.setInt32(64, 118136448, true); - break; - case ObjectType.LabTeleporterDoor: - view.setInt16(4, 16904, true); - view.setInt32(64, -266145920, true); - break; - case ObjectType.Pioneer2InvisibleTouchplate: - view.setInt16(2, 2, true); - view.setInt16(4, 27, true); - view.setFloat32(40, 150, true); // Radius - view.setInt32(64, 70133216, true); - break; - case ObjectType.ForestDoor: - view.setInt16(4, 1581, true); - view.setInt16(6, 1, true); - view.setFloat32(40, 0.9999980926513672, true); // Scale x - view.setFloat32(44, 1.000000238418579, true); // Scale y - view.setFloat32(48, 0.9999954700469971, true); // Scale z - view.setInt32(64, -1929757168, true); - break; - case ObjectType.ForestSwitch: - view.setInt16(4, 1543, true); - view.setInt16(6, 1, true); - view.setFloat32(40, 1.000000238418579, true); // Scale x - view.setFloat32(44, 1.0000005960464478, true); // Scale y - view.setFloat32(48, 1.0000001192092896, true); // Scale z - view.setInt32(60, 7, true); // Color - view.setInt32(64, -1929750128, true); - break; - case ObjectType.LaserFence: - view.setInt16(4, 1542, true); - view.setInt16(6, 1, true); - view.setFloat32(40, 0, true); // Color - view.setFloat32(44, 1.0000009536743164, true); // Scale y - view.setFloat32(48, 0.9999961853027344, true); // Scale z - view.setInt32(64, -1929756272, true); - break; - case ObjectType.LaserSquareFence: - view.setInt16(4, 1468, true); - view.setInt16(6, 3, true); - view.setFloat32(40, 1.000000238418579, true); // Color - view.setUint32(60, 1, true); // Model - view.setInt32(64, -1929753744, true); - break; - case ObjectType.ForestLaserFenceSwitch: - view.setInt16(4, 1478, true); - view.setInt16(6, 3, true); - view.setInt32(56, 3, true); - view.setInt32(60, 3, true); // Color - view.setInt32(64, -1929696640, true); - break; - case ObjectType.LightRays: - view.setInt16(4, 2369, true); - view.setInt16(6, 8, true); - view.setFloat32(44, 10, true); // Scale y - view.setFloat32(48, 20, true); // Scale z - view.setInt32(64, 74962176, true); - break; - case ObjectType.BlueButterfly: - view.setInt16(4, 2048, true); - view.setInt16(6, 2, true); - view.setInt32(64, -1929720176, true); - break; - case ObjectType.Probe: - view.setInt16(2, 2, true); - view.setInt16(4, 80, true); - view.setInt16(6, 1, true); - view.setFloat32(40, 0, true); // Model - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - view.setInt32(64, -1929746928, true); - break; - case ObjectType.RandomTypeBox1: - view.setInt16(4, 1635, true); - view.setInt16(6, 2, true); - view.setFloat32(40, 8.000000953674316, true); // Scale x - view.setFloat32(44, 3.1000001430511475, true); // Scale y - view.setFloat32(48, 10.100005149841309, true); // Scale z - view.setInt32(56, 57344, true); - view.setInt32(64, -1929730096, true); - break; - case ObjectType.ForestWeatherStation: - view.setInt16(2, 2, true); - view.setInt16(4, 147, true); - view.setInt16(6, 2, true); - view.setFloat32(40, 1.000000238418579, true); // Scale x - view.setFloat32(44, 1.0000016689300537, true); // Scale y - view.setFloat32(48, 1.0000005960464478, true); // Scale z - view.setInt32(56, 2816, true); - view.setInt32(64, -1929753232, true); - break; - case ObjectType.ForestConsole: - view.setInt16(4, 1331, true); - view.setInt16(6, 2, true); - view.setFloat32(40, 0, true); // Scale x - view.setInt32(52, 1050, true); // Script label - view.setInt32(64, -1929750848, true); - break; - case ObjectType.BlackSlidingDoor: - view.setInt16(4, 1625, true); - view.setInt16(6, 1, true); - view.setFloat32(40, 30.000015258789062, true); // Distance - view.setFloat32(44, 0.8999999761581421, true); // Speed - view.setInt32(52, 101, true); // Switch no. - view.setInt32(64, -1929721536, true); - break; - case ObjectType.RicoMessagePod: - view.setInt16(4, 1654, true); - view.setInt16(6, 13, true); - view.setInt32(60, 259, true); - view.setInt32(64, -1929755408, true); - break; - case ObjectType.EnergyBarrier: - view.setInt16(4, 1342, true); - view.setInt16(6, 1, true); - view.setFloat32(40, 15.000005722045898, true); // Scale x - view.setFloat32(44, 1.0000001192092896, true); // Scale y - view.setFloat32(48, 1.000000238418579, true); // Scale z - view.setInt32(52, -1, true); // Door ID - view.setInt32(64, -1929730384, true); - break; - case ObjectType.ForestRisingBridge: - view.setInt16(2, 2, true); - view.setInt16(4, 145, true); - view.setInt16(6, 2, true); - view.setFloat32(40, 1.000000238418579, true); // Scale x - view.setFloat32(44, 1.0000015497207642, true); // Scale y - view.setFloat32(48, 1.0000005960464478, true); // Scale z - view.setInt32(52, -1, true); // Door ID - view.setInt32(56, 2816, true); - view.setInt32(64, -1929751104, true); - break; - case ObjectType.SwitchNoneDoor: - view.setInt16(4, 1495, true); - view.setInt16(6, 2, true); - view.setFloat32(40, 0, true); // Scale x - view.setInt32(64, -1929748688, true); - break; - case ObjectType.EnemyBoxGrey: - view.setInt16(4, 1525, true); - view.setInt16(6, 5, true); - view.setInt32(64, -1929732576, true); - break; - case ObjectType.FixedTypeBox: - view.setFloat32(40, 0, true); // Full random - view.setFloat32(48, 0, true); // Fixed item - break; - case ObjectType.EmptyTypeBox: - view.setInt16(2, 512, true); - view.setInt16(4, 32001, true); - view.setInt16(6, 6, true); - view.setInt32(64, -1862737024, true); - break; - case ObjectType.LaserFenceEx: - view.setInt16(4, 28167, true); - view.setInt16(6, 11, true); - view.setFloat32(40, 0, true); // Color - view.setFloat32(44, 8, true); // Collision width - view.setFloat32(48, 25, true); // Collision depth - view.setInt32(64, -526061696, true); - break; - case ObjectType.FloorPanel1: - view.setInt16(4, 1556, true); - view.setInt16(6, 4, true); - view.setFloat32(40, 1.000000238418579, true); // Scale x - view.setFloat32(44, 1.000000238418579, true); // Scale y - view.setFloat32(48, 0.9990062713623047, true); // Scale z - view.setInt32(64, -1929651776, true); - break; - case ObjectType.Caves4ButtonDoor: - view.setInt16(2, 2, true); - view.setInt16(4, 542, true); - view.setInt16(6, 4, true); - view.setInt32(52, -1, true); // Door ID - view.setInt32(64, -1929625056, true); - break; - case ObjectType.CavesNormalDoor: - view.setInt16(4, 1464, true); - view.setInt16(6, 4, true); - view.setFloat32(40, 0.9999891519546509, true); // Scale x - view.setFloat32(44, 1.000000238418579, true); // Scale y - view.setFloat32(48, 0.9990062713623047, true); // Scale z - view.setInt32(52, -1, true); // Door ID - view.setInt32(56, 3, true); - view.setInt32(64, -1929741968, true); - break; - case ObjectType.CavesSmashingPillar: - view.setInt16(4, 1559, true); - view.setInt16(6, 3, true); - view.setInt32(64, -1929691696, true); - break; - case ObjectType.CavesSign1: - view.setInt16(2, 512, true); - view.setInt16(4, -23552, true); - view.setInt16(6, 5, true); - view.setInt32(64, 814801792, true); - break; - case ObjectType.CavesSign2: - view.setInt16(2, 512, true); - view.setInt16(4, 26624, true); - view.setInt16(6, 5, true); - view.setInt32(64, 1884021632, true); - break; - case ObjectType.CavesSign3: - view.setInt16(2, 512, true); - view.setInt16(4, -18944, true); - view.setInt16(6, 5, true); - view.setInt32(64, 280945536, true); - break; - case ObjectType.HexagonalTank: - view.setInt16(2, 2, true); - view.setInt16(4, 740, true); - view.setInt16(6, 5, true); - view.setInt32(64, -1334188928, true); - break; - case ObjectType.BrownPlatform: - view.setInt16(2, 2, true); - view.setInt16(4, 559, true); - view.setInt16(6, 5, true); - view.setInt32(64, 276292480, true); - break; - case ObjectType.FloatingDragonfly: - view.setInt16(4, 1517, true); - view.setInt16(6, 6, true); - view.setInt32(64, 37198656, true); - break; - case ObjectType.CavesSwitchDoor: - view.setInt16(4, 1450, true); - view.setInt16(6, 3, true); - view.setInt32(52, -1, true); // Door ID - view.setInt32(56, 3, true); - view.setInt32(64, -1929685552, true); - break; - case ObjectType.RobotRechargeStation: - view.setInt16(2, 512, true); - view.setInt16(4, -29952, true); - view.setInt16(6, 5, true); - view.setInt32(64, 275440512, true); - break; - case ObjectType.CavesCakeShop: - view.setInt16(4, -6905, true); - view.setInt16(6, 5, true); - view.setInt32(64, -1067911552, true); - break; - case ObjectType.Caves1SmallRedRock: - view.setInt16(4, 1965, true); - view.setInt16(6, 3, true); - view.setInt32(64, -1929677200, true); - break; - case ObjectType.Caves1MediumRedRock: - view.setInt16(4, 1968, true); - view.setInt16(6, 3, true); - view.setInt32(64, -1929811824, true); - break; - case ObjectType.Caves1LargeRedRock: - view.setInt16(4, 1552, true); - view.setInt16(6, 3, true); - view.setInt32(64, -1929724048, true); - break; - case ObjectType.Caves2SmallRock1: - view.setInt16(4, 1563, true); - view.setInt16(6, 4, true); - view.setFloat32(40, 1.000000238418579, true); // Scale x - view.setFloat32(44, 1.000000238418579, true); // Scale y - view.setInt32(64, -1929710640, true); - break; - case ObjectType.Caves2MediumRock1: - view.setInt16(2, 2, true); - view.setInt16(4, 569, true); - view.setInt16(6, 4, true); - view.setFloat32(40, -20.000011444091797, true); // Scale x - view.setFloat32(44, -80.00003814697266, true); // Scale y - view.setFloat32(48, -1.000000238418579, true); // Scale z - view.setInt32(60, 40, true); - view.setInt32(64, -1929628992, true); - break; - case ObjectType.Caves2LargeRock1: - view.setInt16(4, 2051, true); - view.setInt16(6, 4, true); - view.setInt32(64, -1929711328, true); - break; - case ObjectType.Caves2SmallRock2: - view.setInt16(4, 1961, true); - view.setInt16(6, 4, true); - view.setInt32(64, -1929702432, true); - break; - case ObjectType.Caves2MediumRock2: - view.setInt16(4, 1550, true); - view.setInt16(6, 4, true); - view.setFloat32(40, 1.000000238418579, true); // Scale x - view.setFloat32(44, 1.000000238418579, true); // Scale y - view.setFloat32(48, 0.9990062713623047, true); // Scale z - view.setInt32(64, -1929604016, true); - break; - case ObjectType.Caves2LargeRock2: - view.setInt16(4, 1517, true); - view.setInt16(6, 4, true); - view.setInt32(64, -1929749872, true); - break; - case ObjectType.Caves3SmallRock: - view.setInt16(4, 1722, true); - view.setInt16(6, 5, true); - view.setInt32(64, -1929727392, true); - break; - case ObjectType.Caves3MediumRock: - view.setInt16(4, 1580, true); - view.setInt16(6, 5, true); - view.setInt32(64, -1929674160, true); - break; - case ObjectType.Caves3LargeRock: - view.setInt16(4, -18425, true); - view.setInt16(6, 5, true); - view.setInt32(64, 279115136, true); - break; - case ObjectType.FloorPanel2: - view.setInt16(4, 23560, true); - view.setInt16(6, 1, true); - view.setInt32(60, 65537, true); - view.setInt32(64, 16310912, true); - break; - case ObjectType.DestructableRockCaves1: - view.setInt16(2, 512, true); - view.setInt16(4, 23553, true); - view.setInt16(6, 3, true); - view.setInt32(64, 10347136, true); - break; - case ObjectType.DestructableRockCaves2: - view.setInt16(4, 2006, true); - view.setInt16(6, 4, true); - view.setInt32(64, -1929719824, true); - break; - case ObjectType.DestructableRockCaves3: - view.setInt16(4, 1617, true); - view.setInt16(6, 5, true); - view.setInt32(64, -1929688384, true); - break; - case ObjectType.MinesDoor: - view.setInt16(2, 2, true); - view.setInt16(4, 715, true); - view.setInt16(6, 6, true); - view.setInt32(52, -1, true); // Door ID - view.setInt32(56, 3, true); // Switch total - view.setInt32(64, -1929747520, true); - break; - case ObjectType.FloorPanel3: - view.setInt16(4, 23304, true); - view.setInt16(6, 3, true); - view.setInt32(56, -1, true); // Stay active - view.setInt32(64, 1889001856, true); - break; - case ObjectType.MinesSwitchDoor: - view.setInt16(4, 1887, true); - view.setInt16(6, 6, true); - view.setInt32(52, -1, true); // Door ID - view.setInt32(64, -1929658608, true); - break; - case ObjectType.LargeCryoTube: - view.setInt16(2, 512, true); - view.setInt16(4, 28161, true); - view.setInt16(6, 6, true); - view.setInt32(64, -1329536128, true); - break; - case ObjectType.ComputerLikeCalus: - view.setInt16(4, 2006, true); - view.setInt16(6, 6, true); - view.setFloat32(44, 0, true); // Scale y - view.setInt32(64, -1929695952, true); - break; - case ObjectType.GreenScreenOpeningAndClosing: - view.setInt16(4, 4866, true); - view.setInt16(6, 6, true); - view.setInt32(64, 281469568, true); - break; - case ObjectType.FloatingRobot: - view.setInt16(4, 1533, true); - view.setInt16(6, 6, true); - view.setFloat32(40, -35.00001525878906, true); // Scale x - view.setFloat32(44, 20.000011444091797, true); // Scale y - view.setInt32(64, -1929732496, true); - break; - case ObjectType.MinesLargeFlashingCrate: - view.setInt16(4, 1546, true); - view.setInt16(6, 6, true); - view.setFloat32(40, 1.000000238418579, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setInt32(64, -1929727328, true); - break; - case ObjectType.RuinsSeal: - view.setInt16(4, 1550, true); - view.setInt16(6, 13, true); - view.setInt32(64, -1929755808, true); - break; - case ObjectType.RuinsTeleporter: - view.setInt16(4, 1483, true); - view.setInt16(6, 8, true); - view.setInt32(64, -1929759760, true); - break; - case ObjectType.RuinsWarpSiteToSite: - view.setInt16(4, 2017, true); - view.setInt16(6, 8, true); - view.setFloat32(40, 0, true); // Destination x - view.setFloat32(44, 0, true); // Destination y - view.setFloat32(48, 0, true); // Destination z - view.setInt32(64, 39228864, true); - break; - case ObjectType.RuinsSwitch: - view.setInt16(4, 1910, true); - view.setInt16(6, 8, true); - view.setInt32(64, -1929687952, true); - break; - case ObjectType.FloorPanel4: - view.setInt16(4, 1660, true); - view.setInt16(6, 9, true); - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - view.setInt32(64, -1929749648, true); - break; - case ObjectType.Ruins1Door: - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - view.setInt32(52, -1, true); // Door ID - break; - case ObjectType.Ruins3Door: - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - view.setInt32(52, -1, true); // Door ID - break; - case ObjectType.Ruins2Door: - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - view.setInt32(52, -1, true); // Door ID - break; - case ObjectType.Ruins11ButtonDoor: - view.setInt16(4, 31751, true); - view.setInt16(6, 8, true); - view.setInt32(52, -1, true); // Door ID - view.setInt32(64, -1874992256, true); - break; - case ObjectType.Ruins21ButtonDoor: - view.setInt16(2, 2, true); - view.setInt16(4, 1371, true); - view.setInt16(6, 9, true); - view.setInt32(52, -1, true); // Door ID - view.setInt32(64, -1929663984, true); - break; - case ObjectType.Ruins4ButtonDoor: - view.setInt16(4, 1480, true); - view.setInt16(6, 8, true); - view.setInt32(52, -1, true); // Door ID - view.setInt32(60, -1, true); // Stay active - view.setInt32(64, -1929730336, true); - break; - case ObjectType.Ruins2ButtonDoor: - view.setInt16(4, 1909, true); - view.setInt16(6, 8, true); - view.setInt32(52, -1, true); // Door ID - view.setInt32(64, -1929493856, true); - break; - case ObjectType.RuinsFenceSwitch: - view.setInt16(4, 1899, true); - view.setInt16(6, 8, true); - view.setInt32(56, 1, true); // Color - view.setInt32(64, -1929707856, true); - break; - case ObjectType.RuinsLaserFence4x2: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - view.setInt32(56, 1, true); // Color - break; - case ObjectType.RuinsLaserFence6x2: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - view.setInt32(56, 1, true); // Color - break; - case ObjectType.RuinsLaserFence4x4: - view.setInt16(4, 2064, true); - view.setInt16(6, 9, true); - view.setInt32(56, 1, true); // Color - view.setInt32(64, -1929548960, true); - break; - case ObjectType.RuinsPillarTrap: - view.setFloat32(40, -25, true); // Scale x - view.setFloat32(44, 100, true); // Scale y - view.setFloat32(48, 15, true); // Scale z - view.setInt32(60, 60, true); - break; - case ObjectType.PopupTrapNoTech: - view.setInt16(2, 2, true); - view.setInt16(4, 1432, true); - view.setInt16(6, 9, true); - view.setFloat32(40, 1.000000238418579, true); // Radius - view.setInt32(64, -1929630640, true); - break; - case ObjectType.RuinsCrystal: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - break; - case ObjectType.Monument: - view.setInt16(4, 1557, true); - view.setInt16(6, 4, true); - view.setFloat32(40, 1.000000238418579, true); // Scale x - view.setFloat32(44, 1.000000238418579, true); // Scale y - view.setFloat32(48, 1.000000238418579, true); // Scale z - view.setInt32(64, -1929727536, true); - break; - case ObjectType.RuinsRock1: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - break; - case ObjectType.RuinsRock2: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - break; - case ObjectType.RuinsRock3: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - break; - case ObjectType.RuinsRock4: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - break; - case ObjectType.RuinsRock5: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - break; - case ObjectType.RuinsRock6: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - break; - case ObjectType.RuinsRock7: - view.setInt16(4, 1548, true); - view.setInt16(6, 8, true); - view.setInt32(64, -1929795888, true); - break; - case ObjectType.Poison: - view.setInt16(4, 1983, true); - view.setInt16(6, 13, true); - view.setInt32(52, 8, true); // Switch mode - view.setInt32(64, -1929757344, true); - break; - case ObjectType.FixedBoxTypeRuins: - view.setFloat32(40, 0, true); // Full random - view.setFloat32(44, 0, true); // Random item - view.setFloat32(48, 0, true); // Fixed item - break; - case ObjectType.RandomBoxTypeRuins: - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(44, 0, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - break; - case ObjectType.EnemyTypeBoxYellow: - view.setInt16(4, 2043, true); - view.setInt16(6, 10, true); - view.setInt32(64, 39241584, true); - break; - case ObjectType.DestructableRock: - view.setInt16(2, 2, true); - view.setInt16(4, 1517, true); - view.setInt16(6, 9, true); - view.setInt32(64, -1929579040, true); - break; - case ObjectType.PopupTrapsTechs: - view.setFloat32(40, 50, true); // Radius - view.setFloat32(44, 0, true); // HP - view.setFloat32(48, 30, true); // Scale z - view.setInt32(56, -1, true); // Action - view.setInt32(60, 2, true); // Tech - break; - case ObjectType.GreyWallLow: - view.setInt16(4, 2095, true); - view.setInt16(6, 17, true); - view.setInt32(64, 206220336, true); - break; - case ObjectType.SpaceshipDoor: - view.setInt16(4, -18681, true); - view.setInt16(6, 18, true); - view.setInt32(64, -254418560, true); - break; - case ObjectType.GreyWallHigh: - view.setInt16(4, 28424, true); - view.setInt16(6, 3, true); - view.setInt32(64, 548332416, true); - break; - case ObjectType.TempleNormalDoor: - view.setInt16(4, 1638, true); - view.setInt16(6, 17, true); - view.setInt32(64, 1356460160, true); - break; - case ObjectType.BreakableWallWallButUnbreakable: - view.setInt16(4, 21505, true); - view.setInt16(6, 2, true); - view.setInt32(64, -521801600, true); - break; - case ObjectType.BrokenCylinderAndRubble: - view.setInt16(4, 30984, true); - view.setInt16(6, 1, true); - view.setInt32(64, 1077601152, true); - break; - case ObjectType.ThreeBrokenWallPiecesOnFloor: - view.setInt16(4, -28409, true); - view.setInt16(6, 1, true); - view.setInt32(64, -255991424, true); - break; - case ObjectType.HighBrickCylinder: - view.setInt16(4, -19448, true); - view.setInt16(6, 1, true); - view.setInt32(64, -1597054592, true); - break; - case ObjectType.LyingCylinder: - view.setInt16(4, 16136, true); - view.setInt16(6, 2, true); - view.setInt32(64, -1069292672, true); - break; - case ObjectType.BrickConeWithFlatTop: - view.setInt16(4, 4361, true); - view.setInt16(6, 1, true); - view.setInt32(64, -1864506752, true); - break; - case ObjectType.BreakableTempleWall: - view.setInt16(4, -18936, true); - view.setInt16(6, 1, true); - view.setInt32(64, -1873157504, true); - break; - case ObjectType.TempleMapDetect: - view.setInt16(4, 17416, true); - view.setInt16(6, 14, true); - view.setFloat32(40, 0, true); // Scale x - view.setInt32(64, -262672512, true); - break; - case ObjectType.SmallBrownBrickRisingBridge: - view.setInt16(4, -24824, true); - view.setInt16(6, 1, true); - view.setFloat32(40, 0.5, true); // Scale x - view.setFloat32(44, 0.5, true); // Scale y - view.setInt32(64, -1601638272, true); - break; - case ObjectType.LongRisingBridgeWithPinkHighEdges: - view.setInt16(4, 32264, true); - view.setInt16(6, 1, true); - view.setFloat32(40, 0.29999998211860657, true); // Scale x - view.setFloat32(44, 0.29999998211860657, true); // Scale y - view.setInt32(64, -265231488, true); - break; - case ObjectType.FourSwitchTempleDoor: - view.setInt16(4, 1289, true); - view.setInt16(6, 1, true); - view.setInt32(56, 1, true); - view.setInt32(64, -254680448, true); - break; - case ObjectType.FourButtonSpaceshipDoor: - view.setInt16(4, 23048, true); - view.setInt16(6, 3, true); - view.setInt32(56, 2, true); - view.setInt32(60, -1, true); - view.setInt32(64, 1620500864, true); - break; - case ObjectType.ItemBoxCca: - view.setInt16(2, 512, true); - view.setInt16(4, 22019, true); - view.setInt16(6, 5, true); - view.setInt32(64, -1599409280, true); - break; - case ObjectType.TeleporterEp2: - view.setInt16(4, 2110, true); - view.setInt16(6, 16, true); - view.setInt32(60, 1, true); - view.setInt32(64, 71221728, true); - break; - case ObjectType.CcaDoor: - view.setInt16(2, 512, true); - view.setInt16(4, 21763, true); - view.setInt16(6, 5, true); - view.setInt32(56, 1, true); // Switch amount - view.setInt32(64, -2136345728, true); - break; - case ObjectType.SpecialBoxCca: - view.setInt16(2, 512, true); - view.setInt16(4, -15612, true); - view.setInt16(6, 7, true); - view.setFloat32(40, 0, true); // Scale x - view.setFloat32(48, 0, true); // Scale z - view.setInt32(64, -1871846784, true); - break; - case ObjectType.BigCcaDoor: - view.setInt16(4, 2118, true); - view.setInt16(6, 5, true); - view.setInt32(64, 70753104, true); - break; - case ObjectType.BigCcaDoorSwitch: - view.setInt16(4, 2111, true); - view.setInt16(6, 6, true); - view.setInt32(64, 71229312, true); - break; - case ObjectType.LittleRock: - view.setInt16(4, 2126, true); - view.setInt16(6, 16, true); - view.setInt32(64, 71221728, true); - break; - case ObjectType.Little3StoneWall: - view.setInt16(4, 2129, true); - view.setInt16(6, 16, true); - view.setInt32(64, 71227424, true); - break; - case ObjectType.Medium3StoneWall: - view.setInt16(4, 2129, true); - view.setInt16(6, 8, true); - view.setInt32(64, 71259376, true); - break; - case ObjectType.SpiderPlant: - view.setInt16(4, 2129, true); - view.setInt16(6, 16, true); - view.setInt32(64, 71231904, true); - break; - case ObjectType.OrangeBird: - view.setInt16(4, 2086, true); - view.setInt16(6, 9, true); - view.setInt32(64, 70881472, true); - break; - case ObjectType.Saw: - view.setInt16(4, 29959, true); - view.setInt16(6, 11, true); - view.setFloat32(44, 300, true); // Speed - view.setInt32(56, 1073742320, true); // Arc - view.setInt32(60, 1, true); // Switch flag - view.setInt32(64, 547417984, true); - break; - case ObjectType.LaserDetect: - view.setInt16(4, 32519, true); - view.setInt16(6, 11, true); - view.setInt32(56, 1073742160, true); // Arc - view.setInt32(60, 2, true); - view.setInt32(64, 1082650496, true); - break; - case ObjectType.UnknownItem529: - view.setInt16(4, 2139, true); - view.setInt16(6, 6, true); - view.setInt32(64, 71348128, true); - break; - case ObjectType.UnknownItem530: - view.setInt16(4, 2046, true); - view.setInt16(6, 9, true); - view.setInt32(64, 206357088, true); - break; - case ObjectType.Seagull: - view.setInt16(4, 2120, true); - view.setInt16(6, 8, true); - view.setInt32(64, 71256080, true); - break; - case ObjectType.Fish: - view.setInt16(4, -29432, true); - view.setInt16(6, 9, true); - view.setFloat32(40, 11, true); // Scale x - view.setFloat32(44, 0.5, true); // Scale y - view.setFloat32(48, 11, true); // Scale z - view.setInt32(64, 73579344, true); - break; - case ObjectType.SeabedDoorWithBlueEdges: - view.setInt16(4, 29959, true); - view.setInt16(6, 11, true); - view.setInt32(56, 1, true); // Switch amount - view.setInt32(64, 1611984768, true); - break; - case ObjectType.SeabedDoorAlwaysOpenNonTriggerable: - view.setInt16(4, 1884, true); - view.setInt16(6, 11, true); - view.setInt32(64, 45365632, true); - break; - case ObjectType.LittleCryotube: - view.setInt16(4, 2093, true); - view.setInt16(6, 17, true); - view.setInt32(64, 206221408, true); - break; - case ObjectType.WideGlassWallBreakable: - view.setInt16(2, 2048, true); - view.setInt16(4, 25863, true); - view.setInt16(6, 10, true); - view.setInt32(56, 1, true); - view.setInt32(64, 8712064, true); - break; - case ObjectType.CaptureTrap: - view.setInt16(4, 2123, true); - view.setInt16(6, 5, true); - view.setFloat32(40, 3, true); // Scale x - view.setFloat32(44, 400, true); // Scale y - view.setInt32(60, 3, true); - view.setInt32(64, 37000640, true); - break; - case ObjectType.VRLink: - view.setInt16(4, 21256, true); - view.setInt16(6, 3, true); - view.setInt32(64, -1068113280, true); - break; - case ObjectType.WarpInBarbaRayRoom: - view.setInt16(4, 17416, true); - view.setInt16(6, 14, true); - view.setInt32(60, 1, true); - view.setInt32(64, -266342528, true); - break; - case ObjectType.GeeNest: - view.setInt16(4, 28169, true); - view.setInt16(6, 6, true); - view.setInt32(60, -2, true); - view.setInt32(64, 8053376, true); - break; - case ObjectType.LabComputerConsole: - view.setInt16(4, 14600, true); - view.setInt32(64, 1075834752, true); - break; - case ObjectType.LabComputerConsoleGreenScreen: - view.setInt16(2, 512, true); - view.setInt16(4, 11776, true); - view.setInt32(64, -1334123904, true); - break; - case ObjectType.ChairYellowPillow: - view.setInt16(2, 512, true); - view.setInt16(4, 13312, true); - view.setInt32(64, -253697408, true); - break; - case ObjectType.OrangeWallWithHoleInMiddle: - view.setInt16(2, 512, true); - view.setInt16(4, 13056, true); - view.setInt32(64, -1327635840, true); - break; - case ObjectType.GreyWallWithHoleInMiddle: - view.setInt16(2, 512, true); - view.setInt16(4, 8192, true); - view.setInt32(64, 1080287872, true); - break; - case ObjectType.LongTable: - view.setInt16(2, 2, true); - view.setInt16(4, 45, true); - view.setInt32(64, 78812400, true); - break; - case ObjectType.GBAStation: - view.setInt16(4, -31232, true); - view.setInt32(64, -532547200, true); - break; - case ObjectType.TalkLinkToSupport: - view.setInt16(4, 21768, true); - view.setInt16(6, 3, true); - view.setFloat32(40, 22, true); // Scale x - view.setInt32(64, -1067195776, true); - break; - case ObjectType.InstaWarp: - view.setInt16(4, 2085, true); - view.setInt16(6, 17, true); - view.setFloat32(40, -9995, true); // Scale x - view.setFloat32(48, -385, true); // Scale z - view.setInt32(56, 4, true); - view.setInt32(64, 206217872, true); - break; - case ObjectType.LabInvisibleObject: - view.setInt16(2, 512, true); - view.setInt16(4, 1536, true); - view.setFloat32(40, 35, true); // Scale x - view.setInt32(56, 1, true); - view.setInt32(64, 1611394944, true); - break; - case ObjectType.LabGlassWindowDoor: - view.setInt16(4, 23048, true); - view.setInt32(64, 272035712, true); - break; - case ObjectType.LabCeilingWarp: - view.setInt16(2, 2, true); - view.setInt16(4, 24, true); - view.setFloat32(40, -9990, true); // Scale x - view.setFloat32(48, 60, true); // Scale z - view.setInt32(60, 2, true); - view.setInt32(64, 79130448, true); - break; - case ObjectType.Cactus: - view.setInt16(4, 1495, true); - view.setInt16(6, 1, true); - view.setFloat32(40, 2, true); // Scale x - view.setFloat32(44, 0.5, true); // Scale y - view.setInt32(64, 75997776, true); - break; - case ObjectType.BigBrownRock: - view.setInt16(4, 1480, true); - view.setInt16(6, 1, true); - view.setUint32(52, 2, true); // Model - view.setInt32(64, 77443856, true); - break; - case ObjectType.BreakableBrownRock: - view.setInt16(4, 1486, true); - view.setInt16(6, 2, true); - view.setInt32(64, 77425824, true); - break; - case ObjectType.PoisonPlant: - view.setInt16(4, 1412, true); - view.setInt16(6, 6, true); - view.setInt32(64, 37198464, true); - break; - case ObjectType.OozingDesertPlant: - view.setInt16(4, 1409, true); - view.setInt16(6, 6, true); - view.setInt32(64, 37197792, true); - break; - case ObjectType.UnknownItem901: - view.setInt16(4, 1476, true); - view.setInt16(6, 6, true); - view.setInt32(64, 125843920, true); - break; - case ObjectType.BigBlackRocks: - view.setInt16(4, 1488, true); - view.setInt16(6, 5, true); - view.setUint32(52, 1, true); // Model - view.setInt32(64, 53452336, true); - break; - case ObjectType.FallingRock: - view.setInt16(4, 1579, true); - view.setInt16(6, 8, true); - view.setInt32(64, 36923424, true); - break; - case ObjectType.DesertPlantHasCollision: - view.setInt16(4, 1278, true); - view.setInt16(6, 7, true); - view.setInt32(64, 42538928, true); - break; - case ObjectType.DesertFixedTypeBoxBreakableCrystals: - view.setInt16(2, 2, true); - view.setInt16(4, 1308, true); - view.setInt16(6, 8, true); - view.setInt32(64, 36805664, true); - break; - case ObjectType.UnknownItem910: - view.setInt16(4, 1309, true); - view.setInt16(6, 6, true); - break; - case ObjectType.BeeHive: - view.setInt16(4, 1269, true); - view.setInt16(6, 7, true); - view.setInt32(64, 42531632, true); - break; - case ObjectType.Heat: - view.setInt16(4, 1246, true); - view.setInt16(6, 6, true); - view.setFloat32(40, 251, true); // Radius - view.setFloat32(44, 3, true); // Scale y - view.setFloat32(48, 0, true); // Scale z - view.setInt32(52, 137, true); // Fog index no. - view.setInt32(56, 1, true); - view.setInt32(60, 5, true); - view.setInt32(64, 26818944, true); - break; - case ObjectType.UnknownItem961: - view.setInt16(4, 1322, true); - view.setInt16(6, 9, true); - view.setInt32(64, 207524384, true); - break; - } -} diff --git a/src/core/data_formats/parsing/rel.ts b/src/core/data_formats/parsing/rel.ts deleted file mode 100644 index 16fd9ca1..00000000 --- a/src/core/data_formats/parsing/rel.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { Cursor } from "../block/cursor/Cursor"; - -export type Rel = { - data_offset: number; - index: RelIndexEntry[]; -}; - -export type RelIndexEntry = { - offset: number; - size: number; -}; - -export function parse_rel(cursor: Cursor, parse_index: boolean): Rel { - cursor.seek_end(32); - - const index_offset = cursor.u32(); - const index_size = cursor.u32(); - cursor.seek(8); // Typically 1, 0, 0,... - const data_offset = cursor.u32(); - // Typically followed by 12 nul bytes. - - cursor.seek_start(index_offset); - const index = parse_index ? parse_indices(cursor, index_size) : []; - - return { data_offset, index }; -} - -function parse_indices(cursor: Cursor, index_size: number): RelIndexEntry[] { - const compact_offsets = cursor.u16_array(index_size); - const index: RelIndexEntry[] = []; - let expanded_offset = 0; - - for (const compact_offset of compact_offsets) { - expanded_offset = expanded_offset + 4 * compact_offset; - - // Size is not always present. - cursor.seek_start(expanded_offset - 4); - const size = cursor.u32(); - const offset = cursor.u32(); - index.push({ offset, size }); - } - - return index; -} diff --git a/src/core/data_formats/parsing/rlc.ts b/src/core/data_formats/parsing/rlc.ts deleted file mode 100644 index 27000702..00000000 --- a/src/core/data_formats/parsing/rlc.ts +++ /dev/null @@ -1,57 +0,0 @@ -import { Endianness } from "../block/Endianness"; -import { Cursor } from "../block/cursor/Cursor"; -import { parse_prc } from "./prc"; -import { LogManager } from "../../logging"; -import { Result, ResultBuilder } from "../../Result"; -import { Severity } from "../../Severity"; - -const logger = LogManager.get("core/data_formats/parsing/rlc"); -const MARKER = "RelChunkVer0.20"; - -/** - * Container of prc files. - * - * @returns the contained files, decrypted and decompressed. - */ -export function parse_rlc(cursor: Cursor): Result { - const rb = new ResultBuilder(logger); - const marker = cursor.string_ascii(16, true, true); - - if (marker !== MARKER) { - rb.add_problem( - Severity.Warning, - "This file doesn't seem to be an RLC file.", - `First 16 bytes where "${marker}" instead of expected "${MARKER}".`, - ); - } - - const table_size = cursor.u32(); - cursor.seek(12); - - const files: Cursor[] = []; - - for (let i = 0; i < table_size; ++i) { - const offset = cursor.u32(); - const size = cursor.u32(); - const prev_pos = cursor.position; - - cursor.seek_start(offset); - - const file = cursor.take(size); - file.endianness = Endianness.Little; - file.seek_start(0); - - const prc_result = parse_prc(file); - rb.add_result(prc_result); - - if (!prc_result.success) { - return rb.failure(); - } - - files.push(prc_result.value); - - cursor.seek_start(prev_pos); - } - - return rb.success(files); -} diff --git a/src/core/data_formats/parsing/unitxt.ts b/src/core/data_formats/parsing/unitxt.ts deleted file mode 100644 index c838bc07..00000000 --- a/src/core/data_formats/parsing/unitxt.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { prs_decompress } from "../compression/prs/decompress"; -import { Cursor } from "../block/cursor/Cursor"; -import { Result, success } from "../../Result"; - -export type Unitxt = string[][]; - -export function parse_unitxt(buf: Cursor, compressed: boolean = true): Result { - if (compressed) { - const decompression_result = prs_decompress(buf); - - if (!decompression_result.success) { - return decompression_result; - } - - buf = decompression_result.value; - } - - const category_count = buf.u32(); - const entry_counts = buf.u32_array(category_count); - const category_entry_offsets: number[][] = []; - - for (const entry_count of entry_counts) { - category_entry_offsets.push(buf.u32_array(entry_count)); - } - - const categories: Unitxt = []; - - for (const category_entry_offset of category_entry_offsets) { - const entries: string[] = []; - categories.push(entries); - - for (const entry_offset of category_entry_offset) { - buf.seek_start(entry_offset); - const str = buf.string_utf16(Math.min(1024, buf.bytes_left), true, true); - entries.push(str); - } - } - - return success(categories); -} diff --git a/src/core/data_formats/vector.ts b/src/core/data_formats/vector.ts deleted file mode 100644 index 0211863f..00000000 --- a/src/core/data_formats/vector.ts +++ /dev/null @@ -1,10 +0,0 @@ -export type Vec2 = { - readonly x: number; - readonly y: number; -}; - -export type Vec3 = { - readonly x: number; - readonly y: number; - readonly z: number; -}; diff --git a/src/core/dto/ItemTypeDto.ts b/src/core/dto/ItemTypeDto.ts deleted file mode 100644 index 00f11a1a..00000000 --- a/src/core/dto/ItemTypeDto.ts +++ /dev/null @@ -1,59 +0,0 @@ -export type ItemTypeDto = - | WeaponItemTypeDto - | ArmorItemTypeDto - | ShieldItemTypeDto - | UnitItemTypeDto - | ToolItemTypeDto; - -export type WeaponItemTypeDto = { - class: "weapon"; - id: number; - name: string; - min_atp: number; - max_atp: number; - ata: number; - max_grind: number; - required_atp: number; -}; - -export type ArmorItemTypeDto = { - class: "armor"; - id: number; - name: string; - atp: number; - ata: number; - min_evp: number; - max_evp: number; - min_dfp: number; - max_dfp: number; - mst: number; - hp: number; - lck: number; -}; - -export type ShieldItemTypeDto = { - class: "shield"; - id: number; - name: string; - atp: number; - ata: number; - min_evp: number; - max_evp: number; - min_dfp: number; - max_dfp: number; - mst: number; - hp: number; - lck: number; -}; - -export type UnitItemTypeDto = { - class: "unit"; - id: number; - name: string; -}; - -export type ToolItemTypeDto = { - class: "tool"; - id: number; - name: string; -}; diff --git a/src/core/enums.test.ts b/src/core/enums.test.ts deleted file mode 100644 index 1de3f780..00000000 --- a/src/core/enums.test.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { enum_values } from "./enums"; - -enum Test { - TestA, - TestB, - TestC, -} - -enum TestString { - TestA, - TestB, - TestC, -} - -test("enum_values of integer enum", () => { - const values = enum_values(Test); - - expect(values.length).toBe(3); - expect(values[0]).toBe(Test.TestA); - expect(values[1]).toBe(Test.TestB); - expect(values[2]).toBe(Test.TestC); -}); - -test("enum_values of string enum", () => { - const values = enum_values(TestString); - - expect(values.length).toBe(3); - expect(values[0]).toBe(TestString.TestA); - expect(values[1]).toBe(TestString.TestB); - expect(values[2]).toBe(TestString.TestC); -}); diff --git a/src/core/enums.ts b/src/core/enums.ts deleted file mode 100644 index fe8dce3d..00000000 --- a/src/core/enums.ts +++ /dev/null @@ -1,23 +0,0 @@ -// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types -export function enum_values(e: any): E[] { - const values = Object.values(e); - const number_values = values.filter(v => typeof v === "number"); - - if (number_values.length) { - return (number_values as any) as E[]; - } else { - return (values as any) as E[]; - } -} - -// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types -export function string_to_enum(e: any, str: string): E | undefined { - if (str === "") return undefined; - - // Filter out strings that start with a digit to avoid index `e` with a number string which - // could result in return a string. - const first_char_code = str.charCodeAt(0); - if (48 <= first_char_code && first_char_code <= 57) return undefined; - - return e[str]; -} diff --git a/src/core/files.ts b/src/core/files.ts deleted file mode 100644 index ad9515a6..00000000 --- a/src/core/files.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { input } from "./gui/dom"; - -export function open_files(options?: { accept?: string; multiple?: boolean }): Promise { - return new Promise(resolve => { - const el = input({ type: "file" }); - el.accept = options?.accept ?? ""; - el.multiple = options?.multiple ?? false; - - el.onchange = () => { - if (el.files && el.files.length) { - resolve([...el.files]); - } else { - resolve([]); - } - }; - - el.click(); - }); -} - -export function read_file(file: File): Promise { - return new Promise((resolve, reject) => { - const reader = new FileReader(); - - reader.addEventListener("loadend", () => { - if (reader.result instanceof ArrayBuffer) { - resolve(reader.result); - } else { - reject(new Error("Couldn't read file.")); - } - }); - - reader.readAsArrayBuffer(file); - }); -} diff --git a/src/core/gui/Button.css b/src/core/gui/Button.css deleted file mode 100644 index de1b0049..00000000 --- a/src/core/gui/Button.css +++ /dev/null @@ -1,70 +0,0 @@ -.core_Button { - display: inline-flex; - flex-direction: row; - align-items: stretch; - align-content: stretch; - box-sizing: border-box; - height: 26px; - padding: 0; - border: var(--control-border); - color: var(--control-text-color); - outline: none; - font-size: 13px; - font-family: var(--font-family); - overflow: hidden; -} - -.core_Button .core_Button_inner { - flex: 1; - display: inline-flex; - flex-direction: row; - align-items: center; - box-sizing: border-box; - background-color: var(--control-bg-color); - height: 24px; - padding: 3px 5px; - border: var(--control-inner-border); - overflow: hidden; -} - -.core_Button:hover .core_Button_inner { - background-color: var(--control-bg-color-hover); - border-color: hsl(0, 0%, 40%); - color: var(--control-text-color-hover); -} - -.core_Button:active .core_Button_inner { - background-color: hsl(0, 0%, 20%); - border-color: hsl(0, 0%, 30%); - color: hsl(0, 0%, 75%); -} - -.core_Button:focus-within .core_Button_inner { - border: var(--control-inner-border-focus); -} - -.core_Button:disabled .core_Button_inner { - background-color: hsl(0, 0%, 15%); - border-color: hsl(0, 0%, 25%); - color: hsl(0, 0%, 55%); -} - -.core_Button_inner > * { - display: inline-block; - margin: 0 3px; -} - -.core_Button_center { - flex: 1; - text-align: left; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.core_Button_left, -.core_Button_right { - display: inline-flex; - align-content: center; - font-size: 11px; -} diff --git a/src/core/gui/Button.ts b/src/core/gui/Button.ts deleted file mode 100644 index 1f26080e..00000000 --- a/src/core/gui/Button.ts +++ /dev/null @@ -1,76 +0,0 @@ -import { button, Icon, icon, span } from "./dom"; -import "./Button.css"; -import { Observable } from "../observable/Observable"; -import { emitter } from "../observable"; -import { Control, ControlOptions } from "./Control"; -import { Property } from "../observable/property/Property"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import { WidgetProperty } from "../observable/property/WidgetProperty"; - -export type ButtonOptions = ControlOptions & { - readonly text?: string | Property; - readonly icon_left?: Icon; - readonly icon_right?: Icon; -}; - -export class Button extends Control { - private readonly _onmouseup = emitter(); - private readonly _onclick = emitter(); - private readonly _onkeydown = emitter(); - private readonly _text: WidgetProperty; - private readonly center_element: HTMLSpanElement; - - readonly element = button({ className: "core_Button" }); - readonly onmouseup: Observable = this._onmouseup; - readonly onclick: Observable = this._onclick; - readonly onkeydown: Observable = this._onkeydown; - readonly text: WritableProperty; - - constructor(options?: ButtonOptions) { - super(options); - - const inner_element = span({ className: "core_Button_inner" }); - - if (options?.icon_left != undefined) { - inner_element.append(span({ className: "core_Button_left" }, icon(options.icon_left))); - } - - this.center_element = span({ className: "core_Button_center" }); - inner_element.append(this.center_element); - - if (options?.icon_right != undefined) { - inner_element.append( - span({ className: "core_Button_right" }, icon(options.icon_right)), - ); - } - - this.element.onmouseup = (e: MouseEvent) => this._onmouseup.emit({ value: e }); - this.element.onclick = (e: MouseEvent) => this._onclick.emit({ value: e }); - this.element.onkeydown = (e: KeyboardEvent) => this._onkeydown.emit({ value: e }); - - this._text = new WidgetProperty(this, "", this.set_text); - this.text = this._text; - - if (typeof options?.text === "string") { - this.text.val = options.text; - } else if (options?.text) { - this.text.bind_to(options.text); - } else { - this.text.val = ""; - } - - this.element.append(inner_element); - - this.finalize_construction(Button); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - this.element.disabled = !enabled; - } - - protected set_text(text: string): void { - this.center_element.textContent = text; - this.center_element.hidden = text === ""; - } -} diff --git a/src/core/gui/CheckBox.ts b/src/core/gui/CheckBox.ts deleted file mode 100644 index d4890dff..00000000 --- a/src/core/gui/CheckBox.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { WritableProperty } from "../observable/property/WritableProperty"; -import { LabelledControl, LabelledControlOptions } from "./LabelledControl"; -import { WidgetProperty } from "../observable/property/WidgetProperty"; -import { input } from "./dom"; - -export type CheckBoxOptions = LabelledControlOptions; - -export class CheckBox extends LabelledControl { - readonly element = input({ className: "core_CheckBox" }); - - readonly preferred_label_position = "right"; - - readonly checked: WritableProperty; - - private readonly _checked: WidgetProperty; - - constructor(checked: boolean = false, options?: CheckBoxOptions) { - super(options); - - this._checked = new WidgetProperty(this, checked, this.set_checked); - this.checked = this._checked; - this.set_checked(checked); - - this.element.type = "checkbox"; - this.element.onchange = () => - this._checked.set_val(this.element.checked, { silent: false }); - - this.finalize_construction(CheckBox); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - this.element.disabled = !enabled; - } - - protected set_checked(checked: boolean): void { - this.element.checked = checked; - } -} diff --git a/src/core/gui/ComboBox.css b/src/core/gui/ComboBox.css deleted file mode 100644 index 2233e645..00000000 --- a/src/core/gui/ComboBox.css +++ /dev/null @@ -1,34 +0,0 @@ -.core_ComboBox { - box-sizing: border-box; - position: relative; -} - -.core_ComboBox_inner { - box-sizing: border-box; - display: flex; - align-items: center; -} - -.core_ComboBox_inner input { - flex: 1; - padding: 0; - border: none; - margin: 0; - color: var(--input-text-color); - background-color: transparent; - outline: none; -} - -.core_ComboBox.disabled input { - color: var(--input-text-color-disabled); -} - -.core_ComboBox .core_Menu { - top: 23px; - left: -2px; - min-width: calc(100% + 4px); -} - -.core_ComboBox_button { - padding: 0 2px; -} diff --git a/src/core/gui/ComboBox.ts b/src/core/gui/ComboBox.ts deleted file mode 100644 index 0baadeeb..00000000 --- a/src/core/gui/ComboBox.ts +++ /dev/null @@ -1,147 +0,0 @@ -import { LabelledControl, LabelledControlOptions } from "./LabelledControl"; -import { bind_attr, Icon, icon, input, span } from "./dom"; -import "./ComboBox.css"; -import "./Input.css"; -import { Menu } from "./Menu"; -import { Property } from "../observable/property/Property"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import { WidgetProperty } from "../observable/property/WidgetProperty"; - -export type ComboBoxOptions = LabelledControlOptions & { - items: readonly T[] | Property; - to_label(item: T): string; - placeholder_text?: string; - filter?(text: string): void; -}; - -export class ComboBox extends LabelledControl { - readonly element = span({ className: "core_ComboBox core_Input" }); - - readonly preferred_label_position = "left"; - - readonly selected: WritableProperty; - - private readonly to_label: (element: T) => string; - private readonly menu: Menu; - private readonly input_element: HTMLInputElement = input(); - private readonly _selected: WidgetProperty; - - constructor(options: ComboBoxOptions) { - super(options); - - this.to_label = options.to_label; - - this._selected = new WidgetProperty(this, undefined, this.set_selected); - this.selected = this._selected; - - this.menu = this.disposable( - new Menu({ - items: options.items, - to_label: options.to_label, - related_element: this.element, - }), - ); - this.menu.element.onmousedown = e => e.preventDefault(); - - this.input_element.placeholder = options.placeholder_text || ""; - this.input_element.onmousedown = () => { - this.menu.visible.set_val(true, { silent: false }); - }; - - this.input_element.onkeydown = (e: Event) => { - const key = (e as KeyboardEvent).key; - - switch (key) { - case "ArrowDown": - e.preventDefault(); - this.menu.hover_next(); - break; - - case "ArrowUp": - e.preventDefault(); - this.menu.hover_prev(); - break; - - case "Enter": - this.menu.select_hovered(); - break; - } - }; - - const filter = options.filter; - - if (filter) { - let input_value = ""; - - this.input_element.onkeyup = () => { - if (this.input_element.value !== input_value) { - input_value = this.input_element.value; - filter(input_value); - - if (this.menu.visible.val || input_value) { - this.menu.hover_next(); - } - } - }; - } - - this.input_element.onblur = () => { - this.menu.visible.set_val(false, { silent: false }); - }; - - const down_arrow_element = icon(Icon.TriangleDown); - const up_arrow_element = icon(Icon.TriangleUp); - const button_element = span( - { className: "core_ComboBox_button" }, - down_arrow_element, - up_arrow_element, - ); - button_element.onmousedown = e => { - e.preventDefault(); - this.menu.visible.set_val(!this.menu.visible.val, { silent: false }); - }; - - this.element.append( - span( - { className: "core_ComboBox_inner core_Input_inner" }, - this.input_element, - button_element, - ), - this.menu.element, - ); - - this.disposables( - this.menu.visible.observe(({ value: visible }) => { - if (visible) { - this.menu.hover_next(); - } - }), - - this.menu.selected.observe(({ value }) => { - this.selected.set_val(value, { silent: false }); - this.input_element.focus(); - }), - - bind_attr( - up_arrow_element, - "hidden", - this.menu.visible.map(v => !v), - ), - - bind_attr(down_arrow_element, "hidden", this.menu.visible), - ); - - this.finalize_construction(ComboBox); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - this.input_element.disabled = !enabled; - this.menu.enabled.val = enabled; - } - - protected set_selected(selected?: T): void { - this.input_element.value = selected ? this.to_label(selected) : ""; - this.menu.selected.val = selected; - } -} diff --git a/src/core/gui/Control.ts b/src/core/gui/Control.ts deleted file mode 100644 index 2b9e5f96..00000000 --- a/src/core/gui/Control.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Widget, WidgetOptions } from "./Widget"; - -export type ControlOptions = WidgetOptions; - -/** - * Represents all widgets that allow for user interaction such as buttons, text inputs, combo boxes, - * etc. - */ -export abstract class Control extends Widget { - readonly children: readonly Widget[] = []; -} diff --git a/src/core/gui/Dialog.css b/src/core/gui/Dialog.css deleted file mode 100644 index 15a53fc5..00000000 --- a/src/core/gui/Dialog.css +++ /dev/null @@ -1,55 +0,0 @@ -.core_Dialog { - z-index: 20; - display: flex; - flex-direction: column; - outline: none; - position: fixed; - background-color: var(--bg-color); - border: var(--border); - padding: 10px; - box-shadow: black 0 0 10px -2px; -} - -.core_Dialog:focus-within { - border: var(--border-focus); -} - -.core_Dialog h1 { - font-size: 20px; - margin: 0 0 10px 0; - padding-bottom: 4px; - border-bottom: var(--border); -} - -.core_Dialog_description { - user-select: text; - cursor: text; -} - -.core_Dialog_body { - flex: 1; - margin: 4px 0; -} - -.core_Dialog_footer { - display: flex; - flex-direction: row; - justify-content: flex-end; -} - -.core_Dialog_footer > * { - margin-left: 2px; -} - -.core_Dialog_modal_overlay { - outline: none; - z-index: 10; - position: fixed; - top: 0; - bottom: 0; - left: 0; - right: 0; - background-color: black; - opacity: 50%; - backdrop-filter: blur(5px); -} diff --git a/src/core/gui/Dialog.ts b/src/core/gui/Dialog.ts deleted file mode 100644 index 8f21e97b..00000000 --- a/src/core/gui/Dialog.ts +++ /dev/null @@ -1,194 +0,0 @@ -import { ResizableWidget } from "./ResizableWidget"; -import { Widget, WidgetOptions } from "./Widget"; -import { Child, div, h1, section } from "./dom"; -import "./Dialog.css"; -import { is_property, Property } from "../observable/property/Property"; -import { WidgetProperty } from "../observable/property/WidgetProperty"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import { Emitter } from "../observable/Emitter"; -import { Observable } from "../observable/Observable"; -import { emitter } from "../observable"; - -const DIALOG_WIDTH = 500; -const DIALOG_MAX_HEIGHT = 500; - -export type DialogOptions = WidgetOptions & { - readonly title?: string | Property; - readonly description?: string | Property; - readonly content?: Child | Property; - readonly footer?: readonly Child[]; -}; - -/** - * A popup window with a title, description, body and dismiss button. - */ -export class Dialog extends ResizableWidget { - private x = 0; - private y = 0; - private prev_mouse_x = 0; - private prev_mouse_y = 0; - - private _title = new WidgetProperty(this, "", this.set_title); - private _description = new WidgetProperty(this, "", this.set_description); - private _content = new WidgetProperty(this, "", this.set_content); - - private readonly overlay_element: HTMLElement; - private readonly header_element: HTMLElement; - private readonly description_element: HTMLElement; - private readonly content_element: HTMLElement; - - protected readonly _ondismiss: Emitter = emitter(); - - readonly element: HTMLElement; - readonly children: readonly Widget[] = []; - - readonly title: WritableProperty = this._title; - readonly description: WritableProperty = this._description; - readonly content: WritableProperty = this._content; - - /** - * Emits an event when the user presses the escape key. - */ - readonly ondismiss: Observable = this._ondismiss; - - constructor(options?: DialogOptions) { - super(options); - - this.element = section( - { className: "core_Dialog", tabIndex: 0 }, - (this.header_element = h1()), - (this.description_element = div({ className: "core_Dialog_description" })), - (this.content_element = div({ className: "core_Dialog_body" })), - div({ className: "core_Dialog_footer" }, ...(options?.footer ?? [])), - ); - - this.element.style.width = `${DIALOG_WIDTH}px`; - this.element.style.maxHeight = `${DIALOG_MAX_HEIGHT}px`; - - this.element.addEventListener("keydown", evt => this.keydown(evt)); - - if (options) { - if (typeof options.title === "string") { - this.title.val = options.title; - } else if (options.title) { - this.title.bind_to(options.title); - } - - if (typeof options.description === "string") { - this.description.val = options.description; - } else if (options.description) { - this.description.bind_to(options.description); - } - - if (is_property(options.content)) { - this.content.bind_to(options.content); - } else if (options.content != undefined) { - this.content.val = options.content; - } - } - - this.set_position( - (window.innerWidth - DIALOG_WIDTH) / 2, - (window.innerHeight - DIALOG_MAX_HEIGHT) / 2, - ); - - this.header_element.addEventListener("mousedown", this.mousedown); - - this.overlay_element = div({ className: "core_Dialog_modal_overlay", tabIndex: -1 }); - this.overlay_element.addEventListener("focus", () => this.focus()); - - this.finalize_construction(Dialog); - } - - dispose(): void { - super.dispose(); - this.overlay_element.remove(); - } - - focus(): void { - (this.first_focusable_child(this.element) || this.element).focus(); - } - - private first_focusable_child(element: HTMLElement): HTMLElement | undefined { - for (const child of element.children) { - if (child instanceof HTMLElement) { - if (child.tabIndex >= 0) { - return child; - } else { - const element = this.first_focusable_child(child); - - if (element) { - return element; - } - } - } - } - - return undefined; - } - - set_position(x: number, y: number): void { - this.x = x; - this.y = y; - this.element.style.transform = `translate(${Math.floor(x)}px, ${Math.floor(y)}px)`; - } - - protected set_visible(visible: boolean): void { - if (visible) { - document.body.append(this.overlay_element); - document.body.append(this.element); - this.focus(); - } else { - this.overlay_element.remove(); - this.element.remove(); - } - } - - private set_title(title: string): void { - this.header_element.textContent = title; - } - - private set_description(description: string): void { - if (description === "") { - this.description_element.hidden = true; - this.description_element.textContent = ""; - } else { - this.description_element.hidden = false; - this.description_element.textContent = description; - } - } - - private set_content(content: Child): void { - this.content_element.textContent = ""; - this.content_element.append(content); - } - - private mousedown = (evt: MouseEvent): void => { - this.prev_mouse_x = evt.clientX; - this.prev_mouse_y = evt.clientY; - window.addEventListener("mousemove", this.window_mousemove); - window.addEventListener("mouseup", this.window_mouseup); - }; - - private window_mousemove = (evt: MouseEvent): void => { - evt.preventDefault(); - this.set_position( - this.x + evt.clientX - this.prev_mouse_x, - this.y + evt.clientY - this.prev_mouse_y, - ); - this.prev_mouse_x = evt.clientX; - this.prev_mouse_y = evt.clientY; - }; - - private window_mouseup = (evt: MouseEvent): void => { - evt.preventDefault(); - window.removeEventListener("mousemove", this.window_mousemove); - window.removeEventListener("mouseup", this.window_mouseup); - }; - - private keydown(evt: KeyboardEvent): void { - if (evt.key === "Escape") { - this._ondismiss.emit({ value: evt }); - } - } -} diff --git a/src/core/gui/DropDown.css b/src/core/gui/DropDown.css deleted file mode 100644 index 13c35e3b..00000000 --- a/src/core/gui/DropDown.css +++ /dev/null @@ -1,9 +0,0 @@ -.core_DropDown { - position: relative; -} - -.core_DropDown .core_Menu { - top: 25px; - left: 0; - min-width: 100%; -} diff --git a/src/core/gui/DropDown.ts b/src/core/gui/DropDown.ts deleted file mode 100644 index 52a4bf22..00000000 --- a/src/core/gui/DropDown.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { disposable_listener, div, Icon } from "./dom"; -import "./DropDown.css"; -import { Property } from "../observable/property/Property"; -import { Button } from "./Button"; -import { Menu } from "./Menu"; -import { Control, ControlOptions } from "./Control"; -import { Observable } from "../observable/Observable"; -import { Emitter } from "../observable/Emitter"; -import { emitter } from "../observable"; - -export type DropDownOptions = ControlOptions & { - readonly text: string; - readonly icon_left?: Icon; - readonly items: readonly T[] | Property; - readonly to_label?: (element: T) => string; -}; - -export class DropDown extends Control { - readonly element = div({ className: "core_DropDown" }); - - readonly chosen: Observable; - - private readonly button: Button; - private readonly menu: Menu; - private readonly _chosen: Emitter; - private just_opened: boolean; - - constructor(options: DropDownOptions) { - super(options); - - this.button = this.disposable( - new Button({ - text: options.text, - icon_left: options && options.icon_left, - icon_right: Icon.TriangleDown, - }), - ); - this.menu = this.disposable( - new Menu({ - items: options.items, - to_label: options.to_label, - related_element: this.element, - }), - ); - this.element.append(this.button.element, this.menu.element); - - this._chosen = emitter(); - this.chosen = this._chosen; - - this.just_opened = false; - - this.disposables( - disposable_listener(this.button.element, "mousedown", this.button_mousedown, { - capture: true, - }), - - this.button.onmouseup.observe(this.button_mouseup), - - this.button.onkeydown.observe(this.button_keydown), - - this.menu.selected.observe(({ value }) => { - if (value !== undefined) { - this._chosen.emit({ value }); - this.menu.selected.val = undefined; - } - }), - ); - - this.finalize_construction(DropDown); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - this.button.enabled.val = enabled; - this.menu.enabled.val = enabled; - } - - private button_mousedown = (): void => { - this.just_opened = !this.menu.visible.val; - this.menu.visible.val = true; - }; - - private button_mouseup = (): void => { - if (this.just_opened) { - this.menu.focus(); - } else { - this.menu.visible.val = false; - } - - this.just_opened = false; - }; - - private button_keydown = ({ value: evt }: { value: KeyboardEvent }): void => { - if (evt.key === "Enter" || evt.key === " ") { - evt.preventDefault(); - this.just_opened = !this.menu.visible.val; - this.menu.visible.val = true; - this.menu.focus(); - this.menu.hover_next(); - } - }; -} diff --git a/src/core/gui/DurationInput.css b/src/core/gui/DurationInput.css deleted file mode 100644 index 39c3a50c..00000000 --- a/src/core/gui/DurationInput.css +++ /dev/null @@ -1,3 +0,0 @@ -.core_DurationInput input { - text-align: center; -} \ No newline at end of file diff --git a/src/core/gui/DurationInput.ts b/src/core/gui/DurationInput.ts deleted file mode 100644 index 312d203c..00000000 --- a/src/core/gui/DurationInput.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { Input, InputOptions } from "./Input"; -import { Duration } from "luxon"; -import "./DurationInput.css"; - -export type DurationInputOptions = InputOptions; - -export class DurationInput extends Input { - readonly preferred_label_position = "left"; - - constructor(value = Duration.fromMillis(0), options?: DurationInputOptions) { - super(value, "core_DurationInput", "text", "core_DurationInput_inner", options); - - this.input_element.pattern = "(60|[0-5][0-9]):(60|[0-5][0-9])"; - - this.set_value(value); - - this.finalize_construction(DurationInput); - } - - protected get_value(): Duration { - const str = this.input_element.value; - - if (this.input_element.validity.valid) { - return Duration.fromObject({ - hours: parseInt(str.slice(0, 2), 10), - minutes: parseInt(str.slice(3), 10), - }); - } else { - const colon_pos = str.indexOf(":"); - - if (colon_pos === -1) { - return Duration.fromObject({ minutes: parseInt(str, 10) }); - } else { - return Duration.fromObject({ - hours: parseInt(str.slice(0, colon_pos), 10), - minutes: parseInt(str.slice(colon_pos + 1), 10), - }); - } - } - } - - protected set_value(value: Duration): void { - this.input_element.value = value.toFormat("hh:mm"); - } -} diff --git a/src/core/gui/ErrorWidget.css b/src/core/gui/ErrorWidget.css deleted file mode 100644 index 3d0e2449..00000000 --- a/src/core/gui/ErrorWidget.css +++ /dev/null @@ -1,10 +0,0 @@ -.core_ErrorWidget { - box-sizing: border-box; - display: flex; - align-items: center; - justify-content: center; - width: 100%; - height: 100%; - padding: 10%; - text-align: center; -} diff --git a/src/core/gui/ErrorWidget.ts b/src/core/gui/ErrorWidget.ts deleted file mode 100644 index c30d2018..00000000 --- a/src/core/gui/ErrorWidget.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { ResizableWidget } from "./ResizableWidget"; -import "./ErrorWidget.css"; -import { div } from "./dom"; -import { Widget } from "./Widget"; -import { Label } from "./Label"; - -export class ErrorWidget extends ResizableWidget { - private readonly label: Label; - - readonly element = div({ className: "core_ErrorWidget" }); - readonly children: readonly Widget[] = []; - - constructor(message: string) { - super(); - - this.label = this.disposable(new Label(message, { enabled: false })); - - this.element.append(this.label.element); - - this.finalize_construction(ErrorWidget); - } -} diff --git a/src/core/gui/FileButton.ts b/src/core/gui/FileButton.ts deleted file mode 100644 index e7bbba21..00000000 --- a/src/core/gui/FileButton.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { property } from "../observable"; -import { Property } from "../observable/property/Property"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import { Button, ButtonOptions } from "./Button"; -import { open_files } from "../files"; - -export type FileButtonOptions = ButtonOptions & { - accept?: string; - multiple?: boolean; -}; - -export class FileButton extends Button { - private readonly _files: WritableProperty = property([]); - - readonly files: Property = this._files; - - constructor(options?: FileButtonOptions) { - super(options); - - this.element.classList.add("core_FileButton"); - - this.disposables( - this.onclick.observe(async () => { - this._files.val = await open_files(options); - }), - ); - - this.finalize_construction(FileButton); - } -} diff --git a/src/core/gui/Input.css b/src/core/gui/Input.css deleted file mode 100644 index cc6ff4b7..00000000 --- a/src/core/gui/Input.css +++ /dev/null @@ -1,35 +0,0 @@ -.core_Input { - display: inline-block; - box-sizing: border-box; - height: 24px; - border: var(--input-border); -} - -.core_Input .core_Input_inner { - box-sizing: border-box; - width: 100%; - height: 100%; - padding: 0 3px; - border: var(--input-inner-border); - background-color: var(--input-bg-color); - color: var(--input-text-color); - outline: none; - font-size: 13px; -} - -.core_Input:hover { - border: var(--input-border-hover); -} - -.core_Input:focus-within { - border: var(--input-border-focus); -} - -.core_Input.disabled { - border: var(--input-border-disabled); -} - -.core_Input.disabled .core_Input_inner { - color: var(--input-text-color-disabled); - background-color: var(--input-bg-color-disabled); -} diff --git a/src/core/gui/Input.ts b/src/core/gui/Input.ts deleted file mode 100644 index 34215023..00000000 --- a/src/core/gui/Input.ts +++ /dev/null @@ -1,85 +0,0 @@ -import { LabelledControl, LabelledControlOptions } from "./LabelledControl"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import { is_property, Property } from "../observable/property/Property"; -import "./Input.css"; -import { WidgetProperty } from "../observable/property/WidgetProperty"; -import { input, span } from "./dom"; - -export type InputOptions = { readonly readonly?: boolean } & LabelledControlOptions; - -export abstract class Input extends LabelledControl { - readonly element: HTMLElement; - - readonly value: WritableProperty; - - protected readonly input_element: HTMLInputElement; - - private readonly _value: WidgetProperty; - - protected constructor( - value: T, - class_name: string, - input_type: string, - input_class_name: string, - options?: InputOptions, - ) { - super(options); - - this.element = span({ className: `${class_name} core_Input` }); - - this._value = new WidgetProperty(this, value, this.set_value); - this.value = this._value; - - this.input_element = input({ - className: `${input_class_name} core_Input_inner`, - }); - this.input_element.type = input_type; - this.input_element.addEventListener("change", () => { - this._value.set_val(this.get_value(), { silent: false }); - }); - this.input_element.addEventListener("keydown", evt => { - if (evt.key === "Enter") { - this._value.set_val(this.get_value(), { silent: false }); - } - }); - - if (options) { - if (options.readonly) { - this.set_attr("readOnly", true); - } - } - - this.element.append(this.input_element); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - this.input_element.disabled = !enabled; - } - - protected abstract get_value(): T; - - protected abstract set_value(value: T): void; - - protected set_attr( - attr: InputAttrsOfType, - value?: T | Property, - convert?: (value: T) => U, - ): void { - if (value == undefined) return; - - const input = this.input_element as any; - const cvt = convert ? convert : (v: T) => (v as any) as U; - - if (is_property(value)) { - input[attr] = cvt(value.val); - this.disposable(value.observe(({ value }) => (input[attr] = cvt(value)))); - } else { - input[attr] = cvt(value); - } - } -} - -type InputAttrsOfType = { - [K in keyof HTMLInputElement]: T extends HTMLInputElement[K] ? K : never; -}[keyof HTMLInputElement]; diff --git a/src/core/gui/Label.css b/src/core/gui/Label.css deleted file mode 100644 index f998b694..00000000 --- a/src/core/gui/Label.css +++ /dev/null @@ -1,3 +0,0 @@ -.core_Label.disabled { - color: var(--text-color-disabled); -} diff --git a/src/core/gui/Label.ts b/src/core/gui/Label.ts deleted file mode 100644 index ba453706..00000000 --- a/src/core/gui/Label.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { Widget, WidgetOptions } from "./Widget"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import "./Label.css"; -import { Property } from "../observable/property/Property"; -import { WidgetProperty } from "../observable/property/WidgetProperty"; -import { label } from "./dom"; - -export class Label extends Widget { - private readonly _text = new WidgetProperty(this, "", this.set_text); - - readonly element = label({ className: "core_Label" }); - readonly children: readonly Widget[] = []; - - set for(id: string) { - this.element.htmlFor = id; - } - - readonly text: WritableProperty = this._text; - - constructor(text: string | Property, options?: WidgetOptions) { - super(options); - - if (typeof text === "string") { - this.set_text(text); - } else { - this.disposable(this._text.bind_to(text)); - } - - this.finalize_construction(Label); - } - - protected set_text(text: string): void { - this.element.textContent = text; - } -} diff --git a/src/core/gui/LabelledControl.ts b/src/core/gui/LabelledControl.ts deleted file mode 100644 index cf9a58cc..00000000 --- a/src/core/gui/LabelledControl.ts +++ /dev/null @@ -1,62 +0,0 @@ -import { Label } from "./Label"; -import { Control, ControlOptions } from "./Control"; - -export type LabelledControlOptions = ControlOptions & { - readonly label?: string; -}; - -export type LabelPosition = "left" | "right" | "top" | "bottom"; - -export abstract class LabelledControl extends Control { - abstract readonly preferred_label_position: LabelPosition; - - get label(): Label | undefined { - if (!this._label && this._label_text != undefined) { - this._label = this.disposable( - new Label(this._label_text, { - enabled: this.enabled.val, - tooltip: this.tooltip.val, - }), - ); - - if (!this.id) { - this.id = unique_id(); - } - - this._label.for = this.id; - } - - return this._label; - } - - private readonly _label_text?: string; - private _label?: Label; - - protected constructor(options?: LabelledControlOptions) { - super(options); - - this._label_text = options && options.label; - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - - if (this._label) { - this._label.enabled.val = enabled; - } - } - - protected set_tooltip(tooltip: string): void { - super.set_tooltip(tooltip); - - if (this._label) { - this._label.tooltip.val = tooltip; - } - } -} - -let id = 0; - -function unique_id(): string { - return "core_LabelledControl_id_" + String(id++); -} diff --git a/src/core/gui/LazyWidget.ts b/src/core/gui/LazyWidget.ts deleted file mode 100644 index 265cb6e3..00000000 --- a/src/core/gui/LazyWidget.ts +++ /dev/null @@ -1,52 +0,0 @@ -import { ResizableWidget } from "./ResizableWidget"; -import { div } from "./dom"; -import { Widget } from "./Widget"; -import { Resizable } from "./Resizable"; - -export class LazyWidget extends ResizableWidget { - private initialized = false; - private view: (Widget & Resizable) | undefined; - - readonly element = div({ className: "core_LazyView" }); - - get children(): readonly (Widget & Resizable)[] { - return this.view ? [this.view] : []; - } - - constructor(private create_view: () => Promise) { - super(); - - this.visible.val = false; - } - - resize(width: number, height: number): this { - super.resize(width, height); - - if (this.view) { - this.view.resize(width, height); - } - - return this; - } - - protected set_visible(visible: boolean): void { - super.set_visible(visible); - - if (visible && !this.initialized) { - this.initialized = true; - - this.create_view().then(view => { - if (this.disposed) { - view.dispose(); - } else { - this.view = this.disposable(view); - this.view.resize(this.width, this.height); - this.element.append(view.element); - this.view.activate(); - } - }); - } - - this.finalize_construction(LazyWidget); - } -} diff --git a/src/core/gui/Menu.css b/src/core/gui/Menu.css deleted file mode 100644 index c81cd5c9..00000000 --- a/src/core/gui/Menu.css +++ /dev/null @@ -1,26 +0,0 @@ -.core_Menu { - z-index: 1000; - position: absolute; - box-sizing: border-box; - outline: none; - border: var(--control-border); - --scrollbar-color: hsl(0, 0%, 18%); - --scrollbar-thumb-color: hsl(0, 0%, 22%); -} - -.core_Menu > .core_Menu_inner { - overflow: auto; - background-color: var(--control-bg-color); - max-height: 500px; - border: var(--control-inner-border); -} - -.core_Menu > .core_Menu_inner > * { - padding: 4px 8px; - white-space: nowrap; -} - -.core_Menu > .core_Menu_inner > .core_Menu_hovered { - background-color: var(--control-bg-color-hover); - color: var(--control-text-color-hover); -} diff --git a/src/core/gui/Menu.ts b/src/core/gui/Menu.ts deleted file mode 100644 index 0fde364a..00000000 --- a/src/core/gui/Menu.ts +++ /dev/null @@ -1,200 +0,0 @@ -import { disposable_listener, div } from "./dom"; -import { Widget } from "./Widget"; -import { is_property, Property } from "../observable/property/Property"; -import { property } from "../observable"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import { WidgetProperty } from "../observable/property/WidgetProperty"; -import "./Menu.css"; - -export type MenuOptions = { - readonly items: readonly T[] | Property; - readonly to_label?: (item: T) => string; - readonly related_element: HTMLElement; -}; - -export class Menu extends Widget { - readonly element = div({ className: "core_Menu", tabIndex: -1 }); - readonly children: readonly Widget[] = []; - readonly selected: WritableProperty; - - private readonly to_label: (item: T) => string; - private readonly items: Property; - private readonly inner_element = div({ className: "core_Menu_inner" }); - private readonly related_element: HTMLElement; - private readonly _selected: WidgetProperty; - private hovered_index?: number; - private hovered_element?: HTMLElement; - private previously_focused_element?: Element; - - constructor(options: MenuOptions) { - super(); - - this.visible.val = false; - - this.element.onmouseup = this.mouseup; - this.element.onkeydown = this.keydown; - this.element.onblur = this.blur; - - this.inner_element.onmouseover = this.inner_mouseover; - this.element.append(this.inner_element); - - this.to_label = options.to_label ?? (item => String(item)); - this.items = is_property(options.items) ? options.items : property(options.items); - this.related_element = options.related_element; - - this._selected = new WidgetProperty(this, undefined, this.set_selected); - this.selected = this._selected; - - this.disposables( - this.items.observe( - ({ value: items }) => { - this.inner_element.innerHTML = ""; - this.inner_element.append( - ...items.map((item, index) => - div({ data: { index: index.toString() } }, this.to_label(item)), - ), - ); - this.hover_item(); - }, - { call_now: true }, - ), - - disposable_listener(document, "mousedown", this.document_mousedown, { - capture: true, - }), - - disposable_listener(document, "keydown", this.document_keydown), - ); - - this.finalize_construction(Menu); - } - - focus(): void { - this.previously_focused_element = document.activeElement ?? undefined; - this.element.focus(); - } - - hover_next(): void { - this.visible.set_val(true, { silent: false }); - this.hover_item( - this.hovered_index != undefined ? (this.hovered_index + 1) % this.items.val.length : 0, - ); - } - - hover_prev(): void { - this.visible.set_val(true, { silent: false }); - this.hover_item(this.hovered_index ? this.hovered_index - 1 : this.items.val.length - 1); - } - - select_hovered(): void { - if (this.hovered_index != undefined) { - this.select_item(this.hovered_index); - } - } - - protected set_visible(visible: boolean): void { - super.set_visible(visible); - - if (this.visible.val != visible) { - this.hover_item(); - this.inner_element.scrollTop = 0; - - if (!visible && this.previously_focused_element instanceof HTMLElement) { - this.previously_focused_element.focus(); - } - } - } - - protected set_selected(): void { - // Noop - } - - private mouseup = (e: Event): void => { - if (!(e.target instanceof HTMLElement)) return; - - const index_str = e.target.dataset.index; - if (index_str == undefined) return; - - this.select_item(parseInt(index_str, 10)); - }; - - private keydown = (evt: Event): void => { - const key = (evt as KeyboardEvent).key; - - switch (key) { - case "ArrowDown": - evt.preventDefault(); - this.hover_next(); - break; - - case "ArrowUp": - evt.preventDefault(); - this.hover_prev(); - break; - - case "Enter": - evt.preventDefault(); - evt.stopPropagation(); - this.select_hovered(); - break; - } - }; - - private blur = (): void => { - this.visible.val = false; - }; - - private inner_mouseover = (e: Event): void => { - if (e.target && e.target instanceof HTMLElement) { - const index = e.target.dataset.index; - - if (index != undefined) { - this.hover_item(parseInt(index, 10)); - } - } - }; - - private document_mousedown = (e: Event): void => { - if ( - this.visible.val && - !this.element.contains(e.target as Node) && - !this.related_element.contains(e.target as Node) - ) { - this.visible.set_val(false, { silent: false }); - } - }; - - private document_keydown = (e: Event): void => { - if ((e as KeyboardEvent).key === "Escape") { - this.visible.set_val(false, { silent: false }); - } - }; - - private hover_item(index?: number): void { - if (this.hovered_element) { - this.hovered_element.classList.remove("core_Menu_hovered"); - } - - if (index == undefined) { - this.hovered_index = undefined; - this.hovered_element = undefined; - } else { - this.hovered_element = this.inner_element.children.item(index) as HTMLElement; - - if (this.hovered_element) { - this.hovered_index = index; - this.hovered_element.classList.add("core_Menu_hovered"); - this.hovered_element.scrollIntoView({ block: "nearest" }); - } - } - } - - private select_item(index: number): void { - if (!this.enabled.val) return; - const item = this.items.val[index]; - if (item === undefined) return; - - this.selected.set_val(item, { silent: false }); - this.visible.set_val(false, { silent: false }); - } -} diff --git a/src/core/gui/NumberInput.css b/src/core/gui/NumberInput.css deleted file mode 100644 index 8c41e9c7..00000000 --- a/src/core/gui/NumberInput.css +++ /dev/null @@ -1,7 +0,0 @@ -.core_NumberInput { - width: 54px; -} - -.core_NumberInput .core_NumberInput_inner { - padding-right: 1px; -} \ No newline at end of file diff --git a/src/core/gui/NumberInput.ts b/src/core/gui/NumberInput.ts deleted file mode 100644 index a14141f3..00000000 --- a/src/core/gui/NumberInput.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { Property } from "../observable/property/Property"; -import { Input, InputOptions } from "./Input"; -import "./NumberInput.css"; - -export type NumberInputOptions = InputOptions & { - label?: string; - min?: number | Property; - max?: number | Property; - step?: number | Property; - width?: number; - round_to?: number; -}; - -export class NumberInput extends Input { - readonly preferred_label_position = "left"; - - private readonly rounding_factor: number; - - constructor(value: number = 0, options?: NumberInputOptions) { - super(value, "core_NumberInput", "number", "core_NumberInput_inner", options); - - if (options) { - const { min, max, step, width } = options; - - this.set_attr("min", min, String); - this.set_attr("max", max, String); - this.input_element.step = "any"; - this.set_attr("step", step, String); - - if (width != undefined) { - this.element.style.width = `${width}px`; - } - } - - if (options && options.round_to != undefined && options.round_to >= 0) { - this.rounding_factor = Math.pow(10, options.round_to); - } else { - this.rounding_factor = 1; - } - - this.set_value(value); - - this.finalize_construction(NumberInput); - } - - protected get_value(): number { - // Don't use valueAsNumber until jsdom supports it. - return parseFloat(this.input_element.value); - } - - protected set_value(value: number): void { - this.input_element.valueAsNumber = - Math.round(this.rounding_factor * value) / this.rounding_factor; - } -} diff --git a/src/core/gui/RendererWidget.ts b/src/core/gui/RendererWidget.ts deleted file mode 100644 index 694927c4..00000000 --- a/src/core/gui/RendererWidget.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { ResizableWidget } from "./ResizableWidget"; -import { div } from "./dom"; -import { Widget } from "./Widget"; -import { Renderer } from "../rendering/Renderer"; - -export class RendererWidget extends ResizableWidget { - readonly element = div({ className: "core_RendererWidget" }); - readonly children: readonly Widget[] = []; - - constructor(private renderer: Renderer) { - super(); - - this.element.append(renderer.canvas_element); - - this.disposable(renderer); - - this.finalize_construction(RendererWidget); - } - - activate(): void { - this.renderer.start_rendering(); - super.activate(); - } - - deactivate(): void { - super.deactivate(); - this.renderer.stop_rendering(); - } - - resize(width: number, height: number): this { - super.resize(width, height); - - this.renderer.set_size(width, height); - - return this; - } -} diff --git a/src/core/gui/Resizable.ts b/src/core/gui/Resizable.ts deleted file mode 100644 index a1853a90..00000000 --- a/src/core/gui/Resizable.ts +++ /dev/null @@ -1,3 +0,0 @@ -export interface Resizable { - resize(width: number, height: number): void; -} diff --git a/src/core/gui/ResizableView.ts b/src/core/gui/ResizableView.ts deleted file mode 100644 index 00d7a219..00000000 --- a/src/core/gui/ResizableView.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { View } from "./View"; -import { Resizable } from "./Resizable"; - -export abstract class ResizableView extends View implements Resizable { - protected width: number = 0; - protected height: number = 0; - - resize(width: number, height: number): void { - this.width = width; - this.height = height; - this.element.style.width = `${width}px`; - this.element.style.height = `${height}px`; - } -} diff --git a/src/core/gui/ResizableWidget.ts b/src/core/gui/ResizableWidget.ts deleted file mode 100644 index 43aaecfe..00000000 --- a/src/core/gui/ResizableWidget.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { Widget } from "./Widget"; -import { Resizable } from "./Resizable"; - -export abstract class ResizableWidget extends Widget implements Resizable { - protected width: number = 0; - protected height: number = 0; - - resize(width: number, height: number): void { - this.width = width; - this.height = height; - this.element.style.width = `${width}px`; - this.element.style.height = `${height}px`; - } -} diff --git a/src/core/gui/ResultDialog.ts b/src/core/gui/ResultDialog.ts deleted file mode 100644 index 4953ca19..00000000 --- a/src/core/gui/ResultDialog.ts +++ /dev/null @@ -1,89 +0,0 @@ -import { Dialog } from "./Dialog"; -import { Button } from "./Button"; -import { Result } from "../Result"; -import { is_property, Property } from "../observable/property/Property"; -import { div, li, ul } from "./dom"; -import { property } from "../observable"; -import { WidgetOptions } from "./Widget"; - -/** - * Does not inherit {@link Dialog}'s options. The parent class' options are determined by this - * class. - */ -export type ResultDialogOptions = WidgetOptions & { - readonly result?: Result | Property | undefined>; - /** - * Message to show if problems occurred when result is successful. - */ - readonly problems_message: string | Property; - /** - * Message to show if result failed. - */ - readonly error_message: string | Property; -}; - -/** - * Shows the details of a result if the result failed or succeeded with problems. Shows a "Dismiss" - * button in the footer which triggers emission of a dismiss event. - */ -export class ResultDialog extends Dialog { - private readonly problems_message: Property; - private readonly error_message: Property; - - constructor(options: ResultDialogOptions) { - const dismiss_button = new Button({ text: "Dismiss" }); - - super({ footer: [dismiss_button.element], ...options }); - - const result: Property | undefined> = is_property(options.result) - ? options.result - : property(options.result); - - this.problems_message = is_property(options.problems_message) - ? options.problems_message - : property(options.problems_message); - - this.error_message = is_property(options.error_message) - ? options.error_message - : property(options.error_message); - - this.disposables( - dismiss_button, - dismiss_button.onclick.observe(evt => this._ondismiss.emit(evt)), - - result.observe(({ value }) => this.result_changed(value), { call_now: true }), - ); - - this.finalize_construction(ResultDialog); - } - - private result_changed(result?: Result): void { - if (result) { - this.content.val = create_result_body(result); - - if (!result.success) { - this.title.val = "Error"; - this.description.val = this.error_message.val; - } else if (result.problems.length) { - this.title.val = "Problems"; - this.description.val = this.problems_message.val; - } - } else { - this.content.val = ""; - } - } -} - -function create_result_body(result: Result): HTMLElement { - const body = div(); - body.style.overflow = "auto"; - body.style.userSelect = "text"; - body.style.height = "100%"; - body.style.maxHeight = "400px"; // Workaround for chrome bug. - - const list_element = ul(...result.problems.map(problem => li(problem.ui_message))); - list_element.style.cursor = "text"; - body.append(list_element); - - return body; -} diff --git a/src/core/gui/Select.css b/src/core/gui/Select.css deleted file mode 100644 index 225f8d5a..00000000 --- a/src/core/gui/Select.css +++ /dev/null @@ -1,15 +0,0 @@ -.core_Select { - position: relative; - display: inline-flex; - width: 160px; -} - -.core_Select .core_Button { - flex: 1; -} - -.core_Select .core_Menu { - top: 25px; - left: 0; - min-width: 100%; -} diff --git a/src/core/gui/Select.ts b/src/core/gui/Select.ts deleted file mode 100644 index 0dfba6a9..00000000 --- a/src/core/gui/Select.ts +++ /dev/null @@ -1,143 +0,0 @@ -import { LabelledControl, LabelledControlOptions, LabelPosition } from "./LabelledControl"; -import { disposable_listener, div, Icon } from "./dom"; -import "./Select.css"; -import { is_property, Property } from "../observable/property/Property"; -import { Button } from "./Button"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import { WidgetProperty } from "../observable/property/WidgetProperty"; -import { Menu } from "./Menu"; -import { property } from "../observable"; - -export type SelectOptions = LabelledControlOptions & { - readonly items: readonly T[] | Property; - readonly to_label?: (element: T) => string; - readonly selected?: T | Property; -}; - -export class Select extends LabelledControl { - readonly element = div({ className: "core_Select" }); - - readonly preferred_label_position: LabelPosition; - - readonly selected: WritableProperty; - - private readonly items: Property; - private readonly to_label: (element: T) => string; - private readonly button: Button; - private readonly menu: Menu; - private readonly _selected: WidgetProperty; - private just_opened: boolean; - - constructor(options: SelectOptions) { - super(options); - - this.preferred_label_position = "left"; - - this.items = is_property(options.items) ? options.items : property(options.items); - this.to_label = options.to_label ?? String; - this.button = this.disposable( - new Button({ - text: " ", - icon_right: Icon.TriangleDown, - }), - ); - this.menu = this.disposable( - new Menu({ - items: this.items, - to_label: this.to_label, - related_element: this.element, - }), - ); - this.element.append(this.button.element, this.menu.element); - - this._selected = new WidgetProperty(this, undefined, this.set_selected); - this.selected = this._selected; - - this.just_opened = false; - - this.disposables( - disposable_listener(this.button.element, "mousedown", this.button_mousedown), - - this.button.onmouseup.observe(this.button_mouseup), - - this.button.onkeydown.observe(this.button_keydown), - - this.menu.selected.observe(({ value }) => { - this._selected.set_val(value, { silent: false }); - }), - ); - - if (options) { - if (is_property(options.selected)) { - this.selected.bind_to(options.selected); - } else if (options.selected) { - this.selected.val = options.selected; - } - } - - this.finalize_construction(Select); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - this.button.enabled.val = enabled; - this.menu.enabled.val = enabled; - } - - protected set_selected(selected?: T): void { - this.button.text.val = selected !== undefined ? this.to_label(selected) : " "; - this.menu.selected.val = selected; - } - - private button_mousedown = (e: Event): void => { - e.stopPropagation(); - this.just_opened = !this.menu.visible.val; - this.menu.visible.val = true; - }; - - private button_mouseup = (): void => { - if (this.just_opened) { - this.menu.focus(); - } else { - this.menu.visible.val = false; - } - - this.just_opened = false; - }; - - private button_keydown = ({ value: evt }: { value: KeyboardEvent }): void => { - switch (evt.key) { - case "Enter": - case " ": - evt.preventDefault(); - evt.stopPropagation(); - this.just_opened = !this.menu.visible.val; - this.menu.visible.val = true; - this.menu.focus(); - this.menu.hover_next(); - break; - - case "ArrowUp": - { - if (this._selected.val === undefined) break; - - const index = this.items.val.indexOf(this._selected.val) - 1; - if (index < 0) break; - - this._selected.set_val(this.items.val[index], { silent: false }); - } - break; - - case "ArrowDown": - { - if (this._selected.val === undefined) break; - - const index = this.items.val.indexOf(this._selected.val) + 1; - if (index >= this.items.val.length) break; - - this._selected.set_val(this.items.val[index], { silent: false }); - } - break; - } - }; -} diff --git a/src/core/gui/TabContainer.css b/src/core/gui/TabContainer.css deleted file mode 100644 index 8fac13a5..00000000 --- a/src/core/gui/TabContainer.css +++ /dev/null @@ -1,29 +0,0 @@ -.core_TabContainer_Bar { - box-sizing: border-box; - padding: 3px 3px 0 3px; - border-bottom: var(--border); -} - -.core_TabContainer_Tab { - box-sizing: border-box; - display: inline-flex; - align-items: center; - height: calc(100% + 1px); - padding: 0 10px; - border: var(--border); - margin: 0 1px -1px 1px; - background-color: hsl(0, 0%, 12%); - color: hsl(0, 0%, 75%); - font-size: 13px; -} - -.core_TabContainer_Tab:hover { - background-color: hsl(0, 0%, 18%); - color: hsl(0, 0%, 85%); -} - -.core_TabContainer_Tab.active { - background-color: var(--bg-color); - color: hsl(0, 0%, 90%); - border-bottom-color: var(--bg-color); -} diff --git a/src/core/gui/TabContainer.ts b/src/core/gui/TabContainer.ts deleted file mode 100644 index 233533e1..00000000 --- a/src/core/gui/TabContainer.ts +++ /dev/null @@ -1,143 +0,0 @@ -import { Widget, WidgetOptions } from "./Widget"; -import { LazyWidget } from "./LazyWidget"; -import { ResizableWidget } from "./ResizableWidget"; -import "./TabContainer.css"; -import { div, span } from "./dom"; -import { GuiStore } from "../stores/GuiStore"; -import { Resizable } from "./Resizable"; - -export type Tab = { - title: string; - key: string; - path?: string; - create_view: () => Promise; -}; - -export type TabContainerOptions = WidgetOptions & { - tabs: Tab[]; -}; - -type TabInfo = Tab & { tab_element: HTMLSpanElement; lazy_view: LazyWidget }; - -const BAR_HEIGHT = 28; - -export class TabContainer extends ResizableWidget { - private tabs: TabInfo[] = []; - private bar_element = div({ className: "core_TabContainer_Bar" }); - private panes_element = div({ className: "core_TabContainer_Panes" }); - private active_tab?: TabInfo; - - readonly element = div({ className: "core_TabContainer" }); - - get children(): readonly Widget[] { - return this.tabs.flatMap(tab => tab.lazy_view.children); - } - - constructor(private readonly gui_store: GuiStore, options: TabContainerOptions) { - super(options); - - this.bar_element.onmousedown = this.bar_mousedown; - - for (const tab of options.tabs) { - const tab_element = span( - { - className: "core_TabContainer_Tab", - data: { key: tab.key }, - }, - tab.title, - ); - this.bar_element.append(tab_element); - - const lazy_view = this.disposable(new LazyWidget(tab.create_view)); - - const tab_info: TabInfo = { - ...tab, - tab_element, - lazy_view, - }; - this.tabs.push(tab_info); - - this.panes_element.append(lazy_view.element); - } - - this.element.append(this.bar_element, this.panes_element); - - this.finalize_construction(TabContainer); - } - - resize(width: number, height: number): this { - super.resize(width, height); - - this.bar_element.style.width = `${width}px`; - this.bar_element.style.height = `${BAR_HEIGHT}px`; - - const tab_pane_height = height - BAR_HEIGHT; - - this.panes_element.style.width = `${width}px`; - this.panes_element.style.height = `${tab_pane_height}px`; - - for (const tabs of this.tabs) { - tabs.lazy_view.resize(width, tab_pane_height); - } - - return this; - } - - activate(): void { - if (this.active_tab) { - this.activate_tab(this.active_tab); - } else { - let active_tab: TabInfo | undefined; - - for (const tab_info of this.tabs) { - if ( - tab_info.path != undefined && - this.gui_store.path.val.startsWith(tab_info.path) - ) { - active_tab = tab_info; - } - } - - if (active_tab) { - this.activate_tab(active_tab); - } else if (this.tabs.length) { - this.activate_tab(this.tabs[0]); - } - } - } - - private bar_mousedown = (e: MouseEvent): void => { - if (e.target instanceof HTMLElement) { - const key = e.target.dataset["key"]; - if (key) this.activate_key(key); - } - }; - - private activate_key(key: string): void { - for (const tab of this.tabs) { - if (tab.key === key) { - this.activate_tab(tab); - break; - } - } - } - - private activate_tab(tab: TabInfo): void { - if (this.active_tab !== tab) { - if (this.active_tab) { - this.active_tab.tab_element.classList.remove("active"); - this.active_tab.lazy_view.visible.val = false; - this.active_tab.lazy_view.deactivate(); - } - - this.active_tab = tab; - tab.tab_element.classList.add("active"); - tab.lazy_view.visible.val = true; - } - - if (tab.path != undefined) { - this.gui_store.set_path_prefix(tab.path); - tab.lazy_view.activate(); - } - } -} diff --git a/src/core/gui/Table.css b/src/core/gui/Table.css deleted file mode 100644 index 5e5efb4d..00000000 --- a/src/core/gui/Table.css +++ /dev/null @@ -1,92 +0,0 @@ -.core_Table { - position: relative; - display: block; - box-sizing: border-box; - overflow: auto; - background-color: var(--bg-color); - border-collapse: collapse; -} - -.core_Table tr { - display: flex; - align-items: stretch; -} - -.core_Table thead { - position: sticky; - display: inline-block; - top: 0; - z-index: 2; -} - -.core_Table thead tr { - position: sticky; - top: 0; -} - -.core_Table thead th { - display: flex; - flex-direction: column; - justify-content: center; - overflow: hidden; -} - -.core_Table th, -.core_Table td { - box-sizing: border-box; - overflow: hidden; - text-overflow: ellipsis; - padding: 3px 6px; - border-right: var(--border); - border-bottom: var(--border); - background-color: var(--bg-color); -} - -.core_Table tbody { - user-select: text; - cursor: text; -} - -.core_Table tbody th, -.core_Table tbody td { - white-space: nowrap; -} - -.core_Table tbody th, -.core_Table tfoot th { - text-align: left; -} - -.core_Table th.fixed { - position: sticky; - text-align: left; -} - -.core_Table th.input { - padding: 0; - overflow: visible; -} - -.core_Table th.input .core_DurationInput { - z-index: 0; - height: 100%; - width: 100%; - border: none; -} - -.core_Table th.input .core_DurationInput:hover, -.core_Table th.input .core_DurationInput:focus-within { - margin: -1px; - height: calc(100% + 2px); - width: calc(100% + 2px); -} - -.core_Table th.input .core_DurationInput:hover { - z-index: 4; - border: var(--input-border-hover); -} - -.core_Table th.input .core_DurationInput:focus-within { - z-index: 6; - border: var(--input-border-focus); -} diff --git a/src/core/gui/Table.ts b/src/core/gui/Table.ts deleted file mode 100644 index e2d6f21c..00000000 --- a/src/core/gui/Table.ts +++ /dev/null @@ -1,228 +0,0 @@ -import { Widget, WidgetOptions } from "./Widget"; -import { bind_children_to, span, table, tbody, td, tfoot, th, thead, tr } from "./dom"; -import { ListProperty } from "../observable/property/list/ListProperty"; -import { Disposer } from "../observable/Disposer"; -import "./Table.css"; -import { Disposable } from "../observable/Disposable"; -import { LogManager } from "../logging"; - -const logger = LogManager.get("core/gui/Table"); - -export type Column = { - key?: string; - title: string; - fixed?: boolean; - width: number; - input?: boolean; - text_align?: string; - tooltip?: (value: T) => string; - sortable?: boolean; - render_cell(value: T, disposer: Disposer): string | HTMLElement; - footer?: { - render_cell(): string; - tooltip?(): string; - }; -}; - -export enum SortDirection { - Asc, - Desc, -} - -export type TableOptions = WidgetOptions & { - values: ListProperty; - columns: Column[]; - sort?(sort_columns: { column: Column; direction: SortDirection }[]): void; -}; - -export class Table extends Widget { - private readonly tbody_element = tbody(); - private readonly footer_row_element?: HTMLTableRowElement; - private readonly values: ListProperty; - private readonly columns: Column[]; - - readonly element = table({ className: "core_Table" }); - readonly children: readonly Widget[] = []; - - constructor(options: TableOptions) { - super(options); - - this.values = options.values; - this.columns = options.columns; - - const sort_columns: { column: Column; direction: SortDirection }[] = []; - - const thead_element = thead(); - const header_tr_element = tr(); - - let left = 0; - let has_footer = false; - - header_tr_element.append( - ...this.columns.map((column, index) => { - const th_element = th({ data: { index: index.toString() } }, span(column.title)); - - if (column.fixed) { - th_element.style.position = "sticky"; - th_element.style.left = `${left}px`; - left += column.width; - } - - th_element.style.width = `${column.width}px`; - - if (column.footer) { - has_footer = true; - } - - return th_element; - }), - ); - - const sort = options.sort; - - if (sort) { - header_tr_element.onmousedown = e => { - if (e.target instanceof HTMLElement) { - let element: HTMLElement = e.target; - - for (let i = 0; i < 5; i++) { - if (element.dataset.index) { - break; - } else if (element.parentElement) { - element = element.parentElement; - } else { - return; - } - } - - if (!element.dataset.index) return; - - const index = parseInt(element.dataset.index, 10); - const column = this.columns[index]; - if (!column.sortable) return; - - const existing_index = sort_columns.findIndex(sc => sc.column === column); - - if (existing_index === 0) { - const sc = sort_columns[0]; - sc.direction = - sc.direction === SortDirection.Asc - ? SortDirection.Desc - : SortDirection.Asc; - } else { - if (existing_index !== -1) { - sort_columns.splice(existing_index, 1); - } - - sort_columns.unshift({ column, direction: SortDirection.Asc }); - } - - sort(sort_columns); - } - }; - } - - thead_element.append(header_tr_element); - this.tbody_element = tbody(); - this.element.append(thead_element, this.tbody_element); - - if (has_footer) { - this.footer_row_element = tr(); - this.element.append(tfoot({}, this.footer_row_element)); - this.create_footer(); - } - - this.disposables( - bind_children_to(this.tbody_element, this.values, this.create_row), - this.values.observe(this.update_footer), - ); - - this.finalize_construction(Table); - } - - private create_row = (value: T, index: number): [HTMLTableRowElement, Disposable] => { - const disposer = new Disposer(); - let left = 0; - - return [ - tr( - ...this.columns.map((column, i) => { - const cell = column.fixed ? th() : td(); - - try { - const content = column.render_cell(value, disposer); - - cell.append(content); - - if (column.input) cell.classList.add("input"); - - if (column.fixed) { - cell.classList.add("fixed"); - cell.style.left = `${left}px`; - left += column.width || 0; - } - - cell.style.width = `${column.width}px`; - - if (column.text_align) cell.style.textAlign = column.text_align; - - if (column.tooltip) cell.title = column.tooltip(value); - } catch (e) { - logger.warn( - `Error while rendering cell for index ${index}, column ${i}.`, - e, - ); - } - - return cell; - }), - ), - disposer, - ]; - }; - - private create_footer(): void { - const footer_cells: HTMLTableHeaderCellElement[] = []; - let left = 0; - - for (let i = 0; i < this.columns.length; i++) { - const column = this.columns[i]; - const cell = th(); - - cell.style.width = `${column.width}px`; - - if (column.fixed) { - cell.classList.add("fixed"); - cell.style.left = `${left}px`; - left += column.width || 0; - } - - if (column.footer) { - cell.textContent = column.footer.render_cell(); - cell.title = column.footer.tooltip ? column.footer.tooltip() : ""; - } - - if (column.text_align) cell.style.textAlign = column.text_align; - - footer_cells.push(cell); - } - - this.footer_row_element!.append(...footer_cells); - } - - private update_footer = (): void => { - if (!this.footer_row_element) return; - - const col_count = this.columns.length; - - for (let i = 0; i < col_count; i++) { - const column = this.columns[i]; - - if (column.footer) { - const cell = this.footer_row_element.children[i] as HTMLTableHeaderCellElement; - cell.textContent = column.footer.render_cell(); - cell.title = column.footer.tooltip ? column.footer.tooltip() : ""; - } - } - }; -} diff --git a/src/core/gui/TextArea.css b/src/core/gui/TextArea.css deleted file mode 100644 index 5a2a291c..00000000 --- a/src/core/gui/TextArea.css +++ /dev/null @@ -1,34 +0,0 @@ -.core_TextArea { - box-sizing: border-box; - display: inline-block; - border: var(--input-border); -} - -.core_TextArea .core_TextArea_inner { - box-sizing: border-box; - vertical-align: top; - padding: 3px; - border: var(--input-inner-border); - margin: 0; - background-color: var(--input-bg-color); - color: var(--input-text-color); - outline: none; - font-size: 13px; -} - -.core_TextArea:hover { - border: var(--input-border-hover); -} - -.core_TextArea:focus-within { - border: var(--input-border-focus); -} - -.core_TextArea.disabled { - border: var(--input-border-disabled); -} - -.core_TextArea.disabled .core_TextArea_inner { - color: var(--input-text-color-disabled); - background-color: var(--input-bg-color-disabled); -} diff --git a/src/core/gui/TextArea.ts b/src/core/gui/TextArea.ts deleted file mode 100644 index 0380d939..00000000 --- a/src/core/gui/TextArea.ts +++ /dev/null @@ -1,58 +0,0 @@ -import { LabelledControl, LabelledControlOptions } from "./LabelledControl"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import "./TextArea.css"; -import { WidgetProperty } from "../observable/property/WidgetProperty"; -import { div, textarea } from "./dom"; - -export type TextAreaOptions = LabelledControlOptions & { - max_length?: number; - font_family?: string; - rows?: number; - cols?: number; -}; - -export class TextArea extends LabelledControl { - readonly element = div({ className: "core_TextArea" }); - - readonly preferred_label_position = "left"; - - readonly value: WritableProperty; - - private readonly text_element: HTMLTextAreaElement = textarea({ - className: "core_TextArea_inner", - }); - - private readonly _value = new WidgetProperty(this, "", this.set_value); - - constructor(value = "", options?: TextAreaOptions) { - super(options); - - if (options) { - if (options.max_length != undefined) this.text_element.maxLength = options.max_length; - if (options.font_family != undefined) - this.text_element.style.fontFamily = options.font_family; - if (options.rows != undefined) this.text_element.rows = options.rows; - if (options.cols != undefined) this.text_element.cols = options.cols; - } - - this.value = this._value; - this.set_value(value); - - this.text_element.onchange = () => - this._value.set_val(this.text_element.value, { silent: false }); - - this.element.append(this.text_element); - - this.finalize_construction(TextArea); - } - - protected set_value(value: string): void { - this.text_element.value = value; - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - - this.text_element.disabled = !enabled; - } -} diff --git a/src/core/gui/TextInput.ts b/src/core/gui/TextInput.ts deleted file mode 100644 index 64d0334d..00000000 --- a/src/core/gui/TextInput.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { Input, InputOptions } from "./Input"; -import { Property } from "../observable/property/Property"; - -export type TextInputOptions = InputOptions & { - max_length?: number | Property; -}; - -export class TextInput extends Input { - readonly preferred_label_position = "left"; - - constructor(value = "", options?: TextInputOptions) { - super(value, "core_TextInput", "text", "core_TextInput_inner", options); - - if (options) { - const { max_length } = options; - this.set_attr("maxLength", max_length); - } - - this.set_value(value); - - this.finalize_construction(TextInput); - } - - protected get_value(): string { - return this.input_element.value; - } - - protected set_value(value: string): void { - this.input_element.value = value; - } -} diff --git a/src/core/gui/ToolBar.css b/src/core/gui/ToolBar.css deleted file mode 100644 index de3c0f4b..00000000 --- a/src/core/gui/ToolBar.css +++ /dev/null @@ -1,27 +0,0 @@ -.core_ToolBar { - box-sizing: border-box; - display: flex; - flex-direction: row; - align-items: center; - border-bottom: var(--border); - padding: 0 2px; -} - -.core_ToolBar > * { - margin: 2px 1px; -} - -.core_ToolBar > .core_ToolBar_group { - margin: 2px 3px; - display: flex; - flex-direction: row; - align-items: center; -} - -.core_ToolBar > .core_ToolBar_group > * { - margin: 0 2px; -} - -.core_ToolBar .core_Input { - height: 26px; -} diff --git a/src/core/gui/ToolBar.ts b/src/core/gui/ToolBar.ts deleted file mode 100644 index a1cc5ecc..00000000 --- a/src/core/gui/ToolBar.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { Widget, WidgetOptions } from "./Widget"; -import "./ToolBar.css"; -import { LabelledControl } from "./LabelledControl"; -import { div } from "./dom"; - -export class ToolBar extends Widget { - readonly element = div({ className: "core_ToolBar" }); - readonly height = 33; - readonly children: readonly Widget[]; - - constructor(options?: WidgetOptions, ...children: Widget[]) { - // noinspection SuspiciousTypeOfGuard - super(options instanceof Widget ? undefined : options); - - this.element.style.height = `${this.height}px`; - // noinspection SuspiciousTypeOfGuard - this.children = options instanceof Widget ? [options, ...children] : children; - - for (const child of this.children) { - this.disposable(child); - - if (child instanceof LabelledControl && child.label) { - const group = div({ className: "core_ToolBar_group" }); - - if ( - child.preferred_label_position === "left" || - child.preferred_label_position === "top" - ) { - group.append(child.label.element, child.element); - } else { - group.append(child.element, child.label.element); - } - - this.element.append(group); - } else { - this.element.append(child.element); - } - } - - this.finalize_construction(ToolBar); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - - for (const child of this.children) { - child.enabled.val = enabled; - } - } -} diff --git a/src/core/gui/View.ts b/src/core/gui/View.ts deleted file mode 100644 index 274b6922..00000000 --- a/src/core/gui/View.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { Widget } from "./Widget"; -import { array_remove } from "../util"; - -export abstract class View extends Widget { - private readonly _children: Widget[] = []; - - get children(): readonly Widget[] { - return this._children; - } - - dispose(): void { - this._children.splice(0); - super.dispose(); - } - - /** - * Adds a child widget to the {@link _children} array and makes sure it is disposed when this - * widget is disposed. - */ - protected add(child: T): T { - this._children.push(child); - return this.disposable(child); - } - - /** - * Removes a child widget from the {@link _children} array and disposes it. - */ - protected remove(child: Widget): void { - array_remove(this._children, child); - this.remove_disposable(child); - } -} diff --git a/src/core/gui/Widget.ts b/src/core/gui/Widget.ts deleted file mode 100644 index fbffc0b1..00000000 --- a/src/core/gui/Widget.ts +++ /dev/null @@ -1,199 +0,0 @@ -import { Disposable } from "../observable/Disposable"; -import { Disposer } from "../observable/Disposer"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import { WidgetProperty } from "../observable/property/WidgetProperty"; -import { Property } from "../observable/property/Property"; -import { LogManager } from "../logging"; - -const logger = LogManager.get("core/gui/Widget"); - -export type WidgetOptions = { - readonly id?: string; - readonly class?: string; - readonly visible?: boolean | Property; - readonly enabled?: boolean | Property; - readonly tooltip?: string | Property; -}; - -/** - * A user interface element. - */ -export abstract class Widget implements Disposable { - private readonly disposer = new Disposer(); - - private _active = false; - - private readonly _visible: WidgetProperty = new WidgetProperty( - this, - true, - this.set_visible, - ); - private readonly _enabled: WidgetProperty = new WidgetProperty( - this, - true, - this.set_enabled, - ); - private readonly _tooltip: WidgetProperty = new WidgetProperty( - this, - "", - this.set_tooltip, - ); - private readonly options: WidgetOptions; - private construction_finalized = false; - - abstract readonly element: HTMLElement; - - get id(): string { - return this.element.id; - } - - set id(id: string) { - this.element.id = id; - } - - /** - * An active widget might, for example, run an animation loop. - */ - get active(): boolean { - return this._active; - } - - abstract readonly children: readonly Widget[]; - - get disposed(): boolean { - return this.disposer.disposed; - } - - /** - * An invisible widget typically sets the hidden attribute on its {@link element}. - */ - readonly visible: WritableProperty = this._visible; - /** - * A disabled widget typically sets the disabled attribute on its {@link element} and adds the - * `disabled` class to it. - */ - readonly enabled: WritableProperty = this._enabled; - /** - * The {@link tooltip} property typically corresponds to the `tooltip` attribute of its - * {@link element}. - */ - readonly tooltip: WritableProperty = this._tooltip; - - protected constructor(options: WidgetOptions = {}) { - this.options = options; - - setTimeout(() => { - if (!this.construction_finalized) { - logger.error( - `finalize_construction is never called for ${ - Object.getPrototypeOf(this).constructor.name - }.`, - ); - } - }, 0); - } - - /** - * Activate this widget. This call will also be propagated to the relevant children. - */ - activate(): void { - this._active = true; - - for (const child of this.children) { - child.activate(); - } - } - - /** - * Deactivate this widget. This call will also be propagated to the relevant children. - */ - deactivate(): void { - this._active = false; - - for (const child of this.children) { - child.deactivate(); - } - } - - /** - * Move focus to this widget. - */ - focus(): void { - this.element.focus(); - } - - /** - * Removes the widget's {@link element} from the DOM and disposes all its held disposables. - */ - dispose(): void { - this.element.remove(); - this.disposer.dispose(); - } - - /** - * Every concrete subclass of {@link Widget} should call this method at the end of its - * constructor. When this method is called, we can refer to abstract properties that are - * provided by subclasses. - */ - // eslint-disable-next-line @typescript-eslint/ban-types - protected finalize_construction(klass: Function): void { - if (Object.getPrototypeOf(this) !== klass.prototype) return; - - // At this point we know `this.element` is initialized. - if (this.options.id) { - this.element.id = this.options.id; - } - - if (this.options.class) { - this.element.classList.add(this.options.class); - } - - if (typeof this.options.visible === "boolean") { - this.visible.val = this.options.visible; - } else if (this.options.visible) { - this.visible.bind_to(this.options.visible); - } - - if (typeof this.options.enabled === "boolean") { - this.enabled.val = this.options.enabled; - } else if (this.options.enabled) { - this.enabled.bind_to(this.options.enabled); - } - - if (typeof this.options.tooltip === "string") { - this.tooltip.val = this.options.tooltip; - } else if (this.options.tooltip) { - this.tooltip.bind_to(this.options.tooltip); - } - - this.construction_finalized = true; - } - - protected set_visible(visible: boolean): void { - this.element.hidden = !visible; - } - - protected set_enabled(enabled: boolean): void { - if (enabled) { - this.element.classList.remove("disabled"); - } else { - this.element.classList.add("disabled"); - } - } - - protected set_tooltip(tooltip: string): void { - this.element.title = tooltip; - } - - protected disposable(disposable: T): T { - return this.disposer.add(disposable); - } - - protected disposables(...disposables: Disposable[]): void { - this.disposer.add_all(...disposables); - } - - protected remove_disposable(disposable: Disposable): void { - this.disposer.remove(disposable); - } -} diff --git a/src/core/gui/dom.ts b/src/core/gui/dom.ts deleted file mode 100644 index d070cde9..00000000 --- a/src/core/gui/dom.ts +++ /dev/null @@ -1,451 +0,0 @@ -import { Disposable } from "../observable/Disposable"; -import { Observable } from "../observable/Observable"; -import { is_property } from "../observable/property/Property"; -import { SectionId } from "../model"; -import { - ListChange, - ListChangeEvent, - ListChangeType, - ListProperty, -} from "../observable/property/list/ListProperty"; -import { Disposer } from "../observable/Disposer"; -import { LogManager } from "../logging"; - -const logger = LogManager.get("core/gui/dom"); - -export type Attributes = Partial & { data?: { [key: string]: string } }; - -export type Child = string | Node; - -export function a( - attributes?: Attributes, - ...children: Child[] -): HTMLAnchorElement { - const element = create_element("a", attributes, ...children); - - if (attributes && attributes.href && attributes.href.trimLeft().startsWith("http")) { - element.target = "_blank"; - element.rel = "noopener noreferrer"; - } - - return element; -} - -export function button( - attributes?: Attributes, - ...children: Child[] -): HTMLButtonElement { - return create_element("button", attributes, ...children); -} - -export function div(attributes?: Attributes, ...children: Child[]): HTMLDivElement { - return create_element("div", attributes, ...children); -} - -export function h1( - attributes?: Attributes, - ...children: Child[] -): HTMLHeadingElement { - return create_element("h1", attributes, ...children); -} - -export function h2( - attributes?: Attributes, - ...children: Child[] -): HTMLHeadingElement { - return create_element("h2", attributes, ...children); -} - -export function input( - attributes?: Attributes, - ...children: HTMLImageElement[] -): HTMLInputElement { - return create_element("input", attributes, ...children); -} - -export function img( - attributes?: Attributes, - ...children: HTMLImageElement[] -): HTMLImageElement { - return create_element("img", attributes, ...children); -} - -export function label( - attributes?: Attributes, - ...children: Child[] -): HTMLLabelElement { - return create_element("label", attributes, ...children); -} - -export function li(attributes?: Attributes, ...children: Child[]): HTMLLIElement { - return create_element("li", attributes, ...children); -} - -export function p( - attributes?: Attributes, - ...children: Child[] -): HTMLParagraphElement { - return create_element("p", attributes, ...children); -} - -export function section(attributes?: Attributes, ...children: Child[]): HTMLElement { - return create_element("section", attributes, ...children); -} - -export function span( - attributes?: Attributes, - ...children: Child[] -): HTMLSpanElement { - return create_element("span", attributes, ...children); -} - -export function table( - attributes?: Attributes, - ...children: Child[] -): HTMLTableElement { - return create_element("table", attributes, ...children); -} - -export function tbody( - attributes?: Attributes, - ...children: Child[] -): HTMLTableSectionElement { - return create_element("tbody", attributes, ...children); -} - -export function td( - attributes?: Attributes, - ...children: Child[] -): HTMLTableCellElement { - return create_element("td", attributes, ...children); -} - -export function textarea( - attributes?: Attributes, - ...children: Child[] -): HTMLTextAreaElement { - return create_element("textarea", attributes, ...children); -} - -export function tfoot( - attributes?: Attributes, - ...children: Child[] -): HTMLTableSectionElement { - return create_element("tfoot", attributes, ...children); -} - -export function th( - attributes?: Attributes, - ...children: Child[] -): HTMLTableHeaderCellElement { - return create_element("th", attributes, ...children); -} - -export function thead( - attributes?: Attributes, - ...children: Child[] -): HTMLTableSectionElement { - return create_element("thead", attributes, ...children); -} - -export function tr( - attributes?: Attributes, - ...children: Child[] -): HTMLTableRowElement { - return create_element("tr", attributes, ...children); -} - -export function ul( - attributes?: Attributes, - ...children: Child[] -): HTMLUListElement { - return create_element("ul", attributes, ...children); -} - -function create_element( - tag_name: string, - attributes?: Attributes, - ...children: Child[] -): E { - const element = (document.createElement(tag_name) as any) as E; - - if (attributes) { - // noinspection SuspiciousTypeOfGuard - if (attributes instanceof Node || typeof attributes === "string") { - element.append(attributes); - } else { - const data = attributes.data; - delete attributes.data; - Object.assign(element, attributes); - - if (data) { - for (const [key, val] of Object.entries(data)) { - element.dataset[key] = val; - } - } - } - } - - element.append(...children); - - return element; -} - -export function bind_attr( - element: E, - attribute: A, - observable: Observable, -): Disposable { - if (is_property(observable)) { - element[attribute] = observable.val; - } - - return observable.observe(({ value }) => (element[attribute] = value)); -} - -export enum Icon { - ArrowDown, - Eye, - File, - GitHub, - LevelDown, - LevelUp, - LongArrowRight, - NewFile, - Play, - Plus, - Redo, - Remove, - Save, - SquareArrowRight, - Stop, - TriangleDown, - TriangleUp, - Undo, -} - -export function icon(icon: Icon): HTMLElement { - let icon_str!: string; - - switch (icon) { - case Icon.ArrowDown: - icon_str = "fas fa-arrow-down"; - break; - case Icon.Eye: - icon_str = "far fa-eye"; - break; - case Icon.File: - icon_str = "fas fa-file"; - break; - case Icon.GitHub: - icon_str = "fab fa-github"; - break; - case Icon.LevelDown: - icon_str = "fas fa-level-down-alt"; - break; - case Icon.LevelUp: - icon_str = "fas fa-level-up-alt"; - break; - case Icon.LongArrowRight: - icon_str = "fas fa-long-arrow-alt-right"; - break; - case Icon.NewFile: - icon_str = "fas fa-file-medical"; - break; - case Icon.Play: - icon_str = "fas fa-play"; - break; - case Icon.Plus: - icon_str = "fas fa-plus"; - break; - case Icon.Redo: - icon_str = "fas fa-redo"; - break; - case Icon.Remove: - icon_str = "fas fa-trash-alt"; - break; - case Icon.Save: - icon_str = "fas fa-save"; - break; - case Icon.Stop: - icon_str = "fas fa-stop"; - break; - case Icon.SquareArrowRight: - icon_str = "far fa-caret-square-right"; - break; - case Icon.TriangleDown: - icon_str = "fas fa-caret-down"; - break; - case Icon.TriangleUp: - icon_str = "fas fa-caret-up"; - break; - case Icon.Undo: - icon_str = "fas fa-undo"; - break; - } - - // Wrap the span in another span, because Font Awesome will replace the inner element. This way - // the returned element will stay valid. - return span(span({ className: icon_str })); -} - -export function section_id_icon(section_id: SectionId, options?: { size?: number }): HTMLElement { - const element = span(); - const size = options && options.size; - - element.style.display = "inline-block"; - element.style.width = `${size}px`; - element.style.height = `${size}px`; - element.style.backgroundImage = `url(${process.env.PUBLIC_URL}/images/sectionids/${SectionId[section_id]}.png)`; - element.style.backgroundSize = `${size}px`; - element.title = SectionId[section_id]; - - return element; -} - -export function disposable_listener( - target: GlobalEventHandlers, - type: K, - listener: (this: GlobalEventHandlers, ev: GlobalEventHandlersEventMap[K]) => any, - options?: AddEventListenerOptions, -): Disposable; -export function disposable_listener( - target: WindowEventHandlers, - type: K, - listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, - options?: AddEventListenerOptions, -): Disposable; -export function disposable_listener( - target: DocumentAndElementEventHandlers, - type: K, - listener: ( - this: DocumentAndElementEventHandlers, - ev: DocumentAndElementEventHandlersEventMap[K], - ) => any, - options?: AddEventListenerOptions, -): Disposable; -export function disposable_listener( - target: - | GlobalEventHandlers - | DocumentAndElementEventHandlers - | WindowEventHandlers - | EventTarget, - type: string, - listener: EventListenerOrEventListenerObject, - options?: AddEventListenerOptions, -): Disposable { - target.addEventListener(type, listener, options); - - return { - dispose(): void { - target.removeEventListener(type, listener); - }, - }; -} - -/** - * More lax definition of {@link disposable_listener} for custom and experimental event types. - */ -export function disposable_custom_listener( - target: EventTarget, - type: string, - listener: EventListenerOrEventListenerObject, - options?: AddEventListenerOptions, -): Disposable { - target.addEventListener(type, listener, options); - - return { - dispose(): void { - target.removeEventListener(type, listener); - }, - }; -} - -export function bind_children_to( - element: Element, - list: ListProperty, - create_child: (value: T, index: number) => Element | [Element, Disposable], - options?: { - after?: (change: ListChangeEvent) => void; - }, -): Disposable { - const children_disposer = new Disposer(); - - const observer = list.observe_list( - (change: ListChangeEvent) => { - if (change.type === ListChangeType.ListChange) { - splice_children(change); - } else if (change.type === ListChangeType.ValueChange) { - // TODO: update children - } - - options?.after?.(change); - }, - { call_now: true }, - ); - - function splice_children(change: ListChange): void { - for (let i = 0; i < change.removed.length; i++) { - const child_element = element.children[change.index]; - - if (child_element) { - child_element.remove(); - } else { - logger.warn( - `Expected an element for removal at child index ${ - change.index - } of ${node_to_string(element)} (child count: ${element.childElementCount}).`, - ); - } - } - - children_disposer.dispose_at(change.index, change.removed.length); - - const children = change.inserted.map((value, i) => { - const child = create_child(value, change.index + i); - - if (Array.isArray(child)) { - children_disposer.insert(change.index + i, child[1]); - return child[0]; - } else { - return child; - } - }); - - if (change.index >= element.childElementCount) { - element.append(...children); - } else { - for (let i = 0; i < children.length; i++) { - element.children[change.index + i].insertAdjacentElement( - "beforebegin", - children[i], - ); - } - } - } - - return { - dispose(): void { - observer.dispose(); - children_disposer.dispose(); - element.innerHTML = ""; - }, - }; -} - -function node_to_string(node: Node): string { - const str = ["<", node.nodeName.toLowerCase()]; - - if (node instanceof Element) { - if (node.id) { - str.push(' id="', node.id, '"'); - } - - if (node.className) { - str.push(' className="', node.className, '"'); - } - } - - str.push("/>"); - return str.join(""); -} diff --git a/src/core/gui/golden_layout_theme.css b/src/core/gui/golden_layout_theme.css deleted file mode 100644 index 7215eb16..00000000 --- a/src/core/gui/golden_layout_theme.css +++ /dev/null @@ -1,75 +0,0 @@ -#root .lm_header { - box-sizing: border-box; - padding: 3px 0 0 0; - border-bottom: var(--border); -} - -#root .lm_tabs { - padding: 0 3px; -} - -#root .lm_tab { - cursor: default; - display: inline-flex; - align-items: center; - height: 23px; - padding: 0 10px; - border: var(--border); - margin: 0 1px -1px 1px; - background-color: hsl(0, 0%, 12%); - color: hsl(0, 0%, 75%); - font-size: 13px; -} - -#root .lm_tab:hover { - background-color: hsl(0, 0%, 18%); - color: hsl(0, 0%, 85%); -} - -#root .lm_tab.lm_active { - background-color: var(--bg-color); - color: hsl(0, 0%, 90%); - border-bottom-color: var(--bg-color); -} - -#root .lm_header .lm_controls > li { - cursor: default; -} - -#root .lm_header .lm_controls .lm_close { - /* a white 9x9 X shape */ - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAQUlEQVR4nHXOQQ4AMAgCQeT/f6aXpsGK3jSTuCVJAAr7iBdoAwCKd0nwfaAdHbYERw5b44+E8JoBjEYGMBq5gAYP3usUDu2IvoUAAAAASUVORK5CYII=); - background-position: center center; - background-repeat: no-repeat; - cursor: pointer; - opacity: 0.4; - transition: opacity 300ms ease; -} - -#root .lm_header .lm_controls .lm_close:hover { - opacity: 1; -} - -#root .lm_content { - overflow: visible; -} - -#root .lm_splitter { - box-sizing: border-box; - background-color: hsl(0, 0%, 20%); -} - -#root .lm_splitter.lm_vertical { - border-top: var(--border); - border-bottom: var(--border); -} - -#root .lm_splitter.lm_horizontal { - border-left: var(--border); - border-right: var(--border); -} - -body .lm_dropTargetIndicator { - box-sizing: border-box; - background-color: hsla(0, 0%, 100%, 0.2); -} diff --git a/src/core/logging.ts b/src/core/logging.ts deleted file mode 100644 index 63062041..00000000 --- a/src/core/logging.ts +++ /dev/null @@ -1,150 +0,0 @@ -import { Severity, severity_from_string } from "./Severity"; -import { basename, try_finally } from "./util"; - -export type LogEntry = { - readonly time: Date; - readonly message: string; - readonly severity: Severity; - readonly logger: Logging; - readonly cause?: any; -}; - -export type LogHandler = (entry: LogEntry, logger_name: string) => void; - -function default_log_handler({ time, message, severity, logger, cause }: LogEntry): void { - const str = `${time_to_string(time)} [${Severity[severity]}] ${logger.name} - ${message}`; - - /* eslint-disable no-console */ - let method: (...args: any[]) => void; - - switch (severity) { - case Severity.Trace: - method = console.trace; - break; - case Severity.Debug: - method = console.debug; - break; - case Severity.Info: - method = console.info; - break; - case Severity.Warning: - method = console.warn; - break; - case Severity.Error: - method = console.error; - break; - default: - method = console.log; - break; - } - - if (cause == undefined) { - method.call(console, str); - } else { - method.call(console, str, cause); - } - /* eslint-enable no-console */ -} - -export function time_to_string(time: Date): string { - const hours = time_part_to_string(time.getHours(), 2); - const minutes = time_part_to_string(time.getMinutes(), 2); - const seconds = time_part_to_string(time.getSeconds(), 2); - const millis = time_part_to_string(time.getMilliseconds(), 3); - return `${hours}:${minutes}:${seconds}.${millis}`; -} - -function time_part_to_string(value: number, n: number): string { - return value.toString().padStart(n, "0"); -} - -export class Logging { - private _severity?: Severity; - - get severity(): Severity { - return this._severity ?? LogManager.default_severity; - } - - set severity(severity: Severity) { - this._severity = severity; - } - - private _handler?: LogHandler; - - get handler(): LogHandler { - return this._handler ?? LogManager.default_handler; - } - - set handler(handler: LogHandler) { - this._handler = handler; - } - - constructor(readonly name: string) {} - - trace = (message: string, cause?: unknown): void => { - this.log(Severity.Trace, message, cause); - }; - - debug = (message: string, cause?: unknown): void => { - this.log(Severity.Debug, message, cause); - }; - - info = (message: string, cause?: unknown): void => { - this.log(Severity.Info, message, cause); - }; - - warn = (message: string, cause?: unknown): void => { - this.log(Severity.Warning, message, cause); - }; - - error = (message: string, cause?: unknown): void => { - this.log(Severity.Error, message, cause); - }; - - log(severity: Severity, message: string, cause?: unknown): void { - if (severity >= this.severity) { - this.handler({ time: new Date(), message, severity, logger: this, cause }, this.name); - } - } -} - -export class LogManager { - private static readonly loggers = new Map(); - - static default_severity: Severity = severity_from_string(process.env["LOG_LEVEL"] ?? "Info"); - static default_handler: LogHandler = default_log_handler; - - static get(name: string): Logging { - name = basename(name); - - let logger = this.loggers.get(name); - - if (!logger) { - logger = new Logging(name); - this.loggers.set(name, logger); - } - - return logger; - } - - static with_defaults( - defaults: { severity?: Severity; handler?: LogHandler }, - f: () => T, - ): T { - const orig_severity = this.default_severity; - const orig_handler = this.default_handler; - - if (defaults.severity != undefined) { - this.default_severity = defaults.severity; - } - - if (defaults.handler != undefined) { - this.default_handler = defaults.handler; - } - - return try_finally(f, () => { - this.default_severity = orig_severity; - this.default_handler = orig_handler; - }); - } -} diff --git a/src/core/math/index.ts b/src/core/math/index.ts deleted file mode 100644 index 89c02e53..00000000 --- a/src/core/math/index.ts +++ /dev/null @@ -1,34 +0,0 @@ -const TO_DEG = 180 / Math.PI; -const TO_RAD = Math.PI / 180; - -/** - * Converts radians to degrees. - */ -export function rad_to_deg(rad: number): number { - return rad * TO_DEG; -} - -/** - * Converts degrees to radians. - */ -export function deg_to_rad(deg: number): number { - return deg * TO_RAD; -} - -/** - * @returns the floored modulus of its arguments. The computed value will have the same sign as the - * `divisor`. - */ -export function floor_mod(dividend: number, divisor: number): number { - return ((dividend % divisor) + divisor) % divisor; -} - -/** - * Makes sure a value is between a minimum and maximum. - * - * @returns `min` if `value` is lower than `min`, `max` if `value` is greater than `max` and `value` - * otherwise. - */ -export function clamp(value: number, min: number, max: number): number { - return Math.max(min, Math.min(value, max)); -} diff --git a/src/core/model/index.ts b/src/core/model/index.ts deleted file mode 100644 index 1bf4f22f..00000000 --- a/src/core/model/index.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { enum_values } from "../enums"; - -export const RARE_ENEMY_PROB = 1 / 512; -export const KONDRIEU_PROB = 1 / 10; - -export enum Server { - Ephinea = "Ephinea", -} - -export const Servers: readonly Server[] = enum_values(Server); - -export enum SectionId { - Viridia, - Greenill, - Skyly, - Bluefull, - Purplenum, - Pinkal, - Redria, - Oran, - Yellowboze, - Whitill, -} - -export const SectionIds: readonly SectionId[] = enum_values(SectionId); - -export enum Difficulty { - Normal, - Hard, - VHard, - Ultimate, -} - -export const Difficulties: readonly Difficulty[] = enum_values(Difficulty); diff --git a/src/core/model/items.ts b/src/core/model/items.ts deleted file mode 100644 index cba2d0ca..00000000 --- a/src/core/model/items.ts +++ /dev/null @@ -1,129 +0,0 @@ -import { Property } from "../observable/property/Property"; -import { WritableProperty } from "../observable/property/WritableProperty"; -import { property } from "../observable"; - -// -// Item types. -// Instances of these classes contain the data that is the same for every item of a specific type. -// E.g. all spread needles are called "Spread Needle" and they all have the same ATA. -// - -export interface ItemType { - readonly id: number; - readonly name: string; -} - -export class WeaponItemType implements ItemType { - constructor( - readonly id: number, - readonly name: string, - readonly min_atp: number, - readonly max_atp: number, - readonly ata: number, - readonly max_grind: number, - readonly required_atp: number, - ) {} -} - -export class ArmorItemType implements ItemType { - constructor( - readonly id: number, - readonly name: string, - readonly atp: number, - readonly ata: number, - readonly min_evp: number, - readonly max_evp: number, - readonly min_dfp: number, - readonly max_dfp: number, - readonly mst: number, - readonly hp: number, - readonly lck: number, - ) {} -} - -export class ShieldItemType implements ItemType { - constructor( - readonly id: number, - readonly name: string, - readonly atp: number, - readonly ata: number, - readonly min_evp: number, - readonly max_evp: number, - readonly min_dfp: number, - readonly max_dfp: number, - readonly mst: number, - readonly hp: number, - readonly lck: number, - ) {} -} - -export class UnitItemType implements ItemType { - constructor(readonly id: number, readonly name: string) {} -} - -export class ToolItemType implements ItemType { - constructor(readonly id: number, readonly name: string) {} -} - -// -// Item instances. -// Instances of these classes contain the data that is unique to each item. -// E.g. a specific spread needle dropped by an enemy or in an inventory. -// - -export interface Item { - readonly type: ItemType; -} - -export class WeaponItem implements Item { - readonly type: WeaponItemType; - - /** - * Integer from 0 to 100. - */ - readonly attribute: Property; - - /** - * Integer from 0 to 100. - */ - readonly hit: Property; - - readonly grind: Property; - - readonly grind_atp: Property; - - private readonly _attribute: WritableProperty; - private readonly _hit: WritableProperty; - private readonly _grind: WritableProperty; - - constructor(type: WeaponItemType) { - this.type = type; - - this._attribute = property(0); - this.attribute = this._attribute; - - this._hit = property(0); - this.hit = this._hit; - - this._grind = property(0); - this.grind = this._grind; - - this.grind_atp = this.grind.map(grind => 2 * grind); - } -} - -export class ArmorItem implements Item { - constructor(readonly type: ArmorItemType) {} -} - -export class ShieldItem implements Item { - constructor(readonly type: ShieldItemType) {} -} - -export class UnitItem implements Item { - constructor(readonly type: UnitItemType) {} -} - -export class ToolItem implements Item { - constructor(readonly type: ToolItemType) {} -} diff --git a/src/core/observable/Disposable.ts b/src/core/observable/Disposable.ts deleted file mode 100644 index 7c931406..00000000 --- a/src/core/observable/Disposable.ts +++ /dev/null @@ -1,10 +0,0 @@ -/** - * Objects implementing this interface should be disposed when they're not used anymore. This is to - * avoid resource leaks. - */ -export interface Disposable { - /** - * Releases any held resources. - */ - dispose(): void; -} diff --git a/src/core/observable/Disposer.test.ts b/src/core/observable/Disposer.test.ts deleted file mode 100644 index 1c58d308..00000000 --- a/src/core/observable/Disposer.test.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { Disposer } from "./Disposer"; -import { Disposable } from "./Disposable"; - -test("calling add or add_all should increase length correctly", () => { - const disposer = new Disposer(); - expect(disposer.length).toBe(0); - - disposer.add(dummy()); - expect(disposer.length).toBe(1); - - disposer.add_all(dummy(), dummy()); - expect(disposer.length).toBe(3); - - disposer.add(dummy()); - expect(disposer.length).toBe(4); - - disposer.add_all(dummy(), dummy()); - expect(disposer.length).toBe(6); -}); - -test("length should be 0 after calling dispose", () => { - const disposer = new Disposer(); - disposer.add_all(dummy(), dummy(), dummy()); - expect(disposer.length).toBe(3); - - disposer.dispose(); - expect(disposer.length).toBe(0); -}); - -test("contained disposables should be disposed when calling dispose", () => { - let dispose_calls = 0; - - function disposable(): Disposable { - return { - dispose(): void { - dispose_calls++; - }, - }; - } - - const disposer = new Disposer(); - disposer.add_all(disposable(), disposable(), disposable()); - expect(dispose_calls).toBe(0); - - disposer.dispose(); - expect(dispose_calls).toBe(3); -}); - -function dummy(): Disposable { - return { - dispose(): void { - // Do nothing. - }, - }; -} diff --git a/src/core/observable/Disposer.ts b/src/core/observable/Disposer.ts deleted file mode 100644 index ab0df352..00000000 --- a/src/core/observable/Disposer.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { Disposable } from "./Disposable"; -import { LogManager } from "../logging"; -import { array_remove } from "../util"; - -const logger = LogManager.get("core/observable/Disposer"); - -/** - * Container for disposables. - */ -export class Disposer implements Disposable { - private _disposed = false; - private readonly disposables: Disposable[]; - - /** - * The amount of disposables contained in this disposer. - */ - get length(): number { - return this.disposables.length; - } - - get disposed(): boolean { - return this._disposed; - } - - constructor(...disposables: Disposable[]) { - this.disposables = disposables; - } - - /** - * Add a single disposable and return the given disposable. - */ - add(disposable: T): T { - if (this.disposed) { - disposable.dispose(); - } else { - this.disposables.push(disposable); - } - - return disposable; - } - - /** - * Insert a single disposable at the given index and return the given disposable. - */ - insert(index: number, disposable: T): T { - if (this._disposed) { - disposable.dispose(); - } else { - this.disposables.splice(index, 0, disposable); - } - - return disposable; - } - - /** - * Add 0 or more disposables. - */ - add_all(...disposables: Disposable[]): this { - if (this._disposed) { - for (const disposable of disposables) { - disposable.dispose(); - } - } else { - this.disposables.push(...disposables); - } - - return this; - } - - /** - * Removes and disposes the given disposable. - */ - remove(disposable: Disposable): void { - array_remove(this.disposables, disposable); - disposable.dispose(); - } - - /** - * Disposes all held disposables. - */ - dispose_all(): void { - this.dispose_at(0, this.disposables.length); - } - - /** - * Disposes all held disposables. - */ - dispose(): void { - this.dispose_all(); - this._disposed = true; - } - - dispose_at(index: number, amount = 1): void { - for (const disposable of this.disposables.splice(index, amount)) { - try { - disposable.dispose(); - } catch (e) { - logger.warn("Error while disposing.", e); - } - } - } -} diff --git a/src/core/observable/Emitter.ts b/src/core/observable/Emitter.ts deleted file mode 100644 index 18a937ef..00000000 --- a/src/core/observable/Emitter.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { ChangeEvent, Observable } from "./Observable"; - -export interface Emitter extends Observable { - emit(event: ChangeEvent): void; -} diff --git a/src/core/observable/Observable.test.ts b/src/core/observable/Observable.test.ts deleted file mode 100644 index ef48e99e..00000000 --- a/src/core/observable/Observable.test.ts +++ /dev/null @@ -1,118 +0,0 @@ -import { ChangeEvent, Observable } from "./Observable"; -import { SimpleEmitter } from "./SimpleEmitter"; -import { SimpleProperty } from "./property/SimpleProperty"; -import { MappedProperty } from "./property/MappedProperty"; -import { list_property, property } from "./index"; -import { FlatMappedProperty } from "./property/FlatMappedProperty"; -import { SimpleListProperty } from "./property/list/SimpleListProperty"; -import { MappedListProperty } from "./property/list/MappedListProperty"; - -// This suite tests every implementation of Observable. - -function test_observable( - name: string, - create: () => { - observable: Observable; - emit: () => void; - }, -): void { - test(`${name} should call observers when events are emitted`, () => { - const { observable, emit } = create(); - const changes: ChangeEvent[] = []; - - observable.observe(c => { - changes.push(c); - }); - - emit(); - - expect(changes.length).toBe(1); - - emit(); - emit(); - emit(); - - expect(changes.length).toBe(4); - }); - - test(`${name} should not call observers after they are disposed`, () => { - const { observable, emit } = create(); - const changes: ChangeEvent[] = []; - - const observer = observable.observe(c => { - changes.push(c); - }); - - emit(); - - expect(changes.length).toBe(1); - - observer.dispose(); - - emit(); - emit(); - emit(); - - expect(changes.length).toBe(1); - }); -} - -test_observable(SimpleEmitter.name, () => { - const observable = new SimpleEmitter(); - return { - observable, - emit: () => observable.emit({ value: 1 }), - }; -}); - -test_observable(SimpleProperty.name, () => { - const observable = new SimpleProperty(1); - return { - observable, - emit: () => (observable.val += 1), - }; -}); - -test_observable(MappedProperty.name, () => { - const p = property(0); - const observable = new MappedProperty([p], () => 2 * p.val); - return { - observable, - emit: () => (p.val += 2), - }; -}); - -test_observable(`${FlatMappedProperty.name} (dependent property emits)`, () => { - const p = property({ x: property(5) }); - const observable = new FlatMappedProperty([p], () => p.val.x); - return { - observable, - emit: () => (p.val = { x: property(p.val.x.val + 5) }), - }; -}); - -test_observable(`${FlatMappedProperty.name} (nested property emits)`, () => { - const p = property({ x: property(5) }); - const observable = new FlatMappedProperty([p], () => p.val.x); - return { - observable, - emit: () => (p.val.x.val += 5), - }; -}); - -test_observable(SimpleListProperty.name, () => { - const observable = new SimpleListProperty(); - return { - observable, - emit: () => observable.push("test"), - }; -}); - -test_observable(MappedListProperty.name, () => { - const list = list_property(); - const observable = new MappedListProperty([list], () => list.val.map(v => 2 * v)); - return { - observable, - emit: () => list.push(10), - }; -}); diff --git a/src/core/observable/Observable.ts b/src/core/observable/Observable.ts deleted file mode 100644 index a9fb3644..00000000 --- a/src/core/observable/Observable.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Disposable } from "./Disposable"; - -export interface ChangeEvent { - value: T; -} - -export interface Observable { - observe(observer: (event: ChangeEvent) => void): Disposable; -} diff --git a/src/core/observable/SimpleEmitter.ts b/src/core/observable/SimpleEmitter.ts deleted file mode 100644 index 1547427b..00000000 --- a/src/core/observable/SimpleEmitter.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { Disposable } from "./Disposable"; -import { Emitter } from "./Emitter"; -import { ChangeEvent } from "./Observable"; -import { LogManager } from "../logging"; - -const logger = LogManager.get("core/observable/SimpleEmitter"); - -export class SimpleEmitter implements Emitter { - protected readonly observers: ((event: ChangeEvent) => void)[] = []; - - emit(event: ChangeEvent): void { - for (const observer of this.observers) { - try { - observer(event); - } catch (e) { - logger.error("Observer threw error.", e); - } - } - } - - observe(observer: (event: ChangeEvent) => void): Disposable { - if (!this.observers.includes(observer)) { - this.observers.push(observer); - } - - return { - dispose: () => { - const index = this.observers.indexOf(observer); - - if (index !== -1) { - this.observers.splice(index, 1); - } - }, - }; - } -} diff --git a/src/core/observable/index.test.ts b/src/core/observable/index.test.ts deleted file mode 100644 index c2398196..00000000 --- a/src/core/observable/index.test.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { flat_map_to_list, list_property, property } from "./index"; -import { ListChangeEvent, ListChangeType } from "./property/list/ListProperty"; - -test("flat_map_to_list filtered", () => { - const prop = property({ list: list_property(undefined, 1, 2, 3) }); - const mapped = flat_map_to_list(p => p.list.filtered(e => e % 2 === 0), prop); - const change_events: ListChangeEvent[] = []; - - mapped.observe_list(change => change_events.push(change)); - - expect(mapped.val).toEqual([2]); - expect(change_events).toEqual([]); - - prop.val.list.push(4); - - expect(mapped.val).toEqual([2, 4]); - expect(change_events).toEqual([ - { - type: ListChangeType.ListChange, - index: 0, - removed: [2], - inserted: [2, 4], - }, - ]); -}); diff --git a/src/core/observable/index.ts b/src/core/observable/index.ts deleted file mode 100644 index f8440a28..00000000 --- a/src/core/observable/index.ts +++ /dev/null @@ -1,179 +0,0 @@ -import { SimpleEmitter } from "./SimpleEmitter"; -import { WritableProperty } from "./property/WritableProperty"; -import { SimpleProperty } from "./property/SimpleProperty"; -import { Emitter } from "./Emitter"; -import { Property } from "./property/Property"; -import { MappedProperty } from "./property/MappedProperty"; -import { WritableListProperty } from "./property/list/WritableListProperty"; -import { SimpleListProperty } from "./property/list/SimpleListProperty"; -import { Observable } from "./Observable"; -import { FlatMappedProperty } from "./property/FlatMappedProperty"; -import { ListProperty } from "./property/list/ListProperty"; -import { FlatMappedListProperty } from "./property/list/FlatMappedListProperty"; -import { Disposable } from "./Disposable"; -import { Disposer } from "./Disposer"; - -export function emitter(): Emitter { - return new SimpleEmitter(); -} - -export function property(value: T): WritableProperty { - return new SimpleProperty(value); -} - -export function list_property( - extract_observables?: (element: T) => Observable[], - ...elements: T[] -): WritableListProperty { - return new SimpleListProperty(extract_observables, ...elements); -} - -export function add(left: Property, right: number): Property { - return left.map(l => l + right); -} - -export function sub(left: Property, right: number): Property { - return left.map(l => l - right); -} - -export function observe(observer: (prop_1: P1) => void, prop_1: Property): Disposable; -export function observe( - observer: (prop_1: P1, prop_2: P2) => void, - prop_1: Property, - prop_2: Property, -): Disposable; -export function observe( - observer: (prop_1: P1, prop_2: P2, prop_3: P3) => void, - prop_1: Property, - prop_2: Property, - prop_3: Property, -): Disposable; -export function observe( - observer: (prop_1: P1, prop_2: P2, prop_3: P3, prop_4: P4) => void, - prop_1: Property, - prop_2: Property, - prop_3: Property, - prop_4: Property, -): Disposable; -export function observe( - observer: (prop_1: P1, prop_2: P2, prop_3: P3, prop_4: P4, prop_5: P5) => void, - prop_1: Property, - prop_2: Property, - prop_3: Property, - prop_4: Property, - prop_5: Property, -): Disposable; -export function observe( - observer: (...props: any[]) => void, - ...props: Property[] -): Disposable { - const observer_function = (prop: Property): Disposable => - prop.observe(() => observer(...props.map(p => p.val))); - - return new Disposer(...props.map(observer_function)); -} - -export function map(transform: (prop_1: P1) => R, prop_1: Property): Property; -export function map( - transform: (prop_1: P1, prop_2: P2) => R, - prop_1: Property, - prop_2: Property, -): Property; -export function map( - transform: (prop_1: P1, prop_2: P2, prop_3: P3) => R, - prop_1: Property, - prop_2: Property, - prop_3: Property, -): Property; -export function map( - transform: (prop_1: P1, prop_2: P2, prop_3: P3, prop_4: P4) => R, - prop_1: Property, - prop_2: Property, - prop_3: Property, - prop_4: Property, -): Property; -export function map( - transform: (prop_1: P1, prop_2: P2, prop_3: P3, prop_4: P4, prop_5: P5) => R, - prop_1: Property, - prop_2: Property, - prop_3: Property, - prop_4: Property, - prop_5: Property, -): Property; -export function map(transform: (...props: any[]) => R, ...props: Property[]): Property { - return new MappedProperty(props, () => transform(...props.map(p => p.val))); -} - -export function flat_map( - transform: (prop_1: P1) => Property, - prop_1: Property, -): Property; -export function flat_map( - transform: (prop_1: P1, prop_2: P2) => Property, - prop_1: Property, - prop_2: Property, -): Property; -export function flat_map( - transform: (prop_1: P1, prop_2: P2, prop_3: P3) => Property, - prop_1: Property, - prop_2: Property, - prop_3: Property, -): Property; -export function flat_map( - transform: (prop_1: P1, prop_2: P2, prop_3: P3, prop_4: P4) => Property, - prop_1: Property, - prop_2: Property, - prop_3: Property, - prop_4: Property, -): Property; -export function flat_map( - transform: (prop_1: P1, prop_2: P2, prop_3: P3, prop_4: P4, prop_5: P5) => Property, - prop_1: Property, - prop_2: Property, - prop_3: Property, - prop_4: Property, - prop_5: Property, -): Property; -export function flat_map( - transform: (...props: any[]) => Property, - ...props: Property[] -): Property { - return new FlatMappedProperty(props, () => transform(...props.map(p => p.val))); -} - -export function flat_map_to_list( - transform: (prop_1: P1) => ListProperty, - prop_1: Property, -): ListProperty; -export function flat_map_to_list( - transform: (prop_1: P1, prop_2: P2) => ListProperty, - prop_1: Property, - prop_2: Property, -): ListProperty; -export function flat_map_to_list( - transform: (prop_1: P1, prop_2: P2, prop_3: P3) => ListProperty, - prop_1: Property, - prop_2: Property, - prop_3: Property, -): ListProperty; -export function flat_map_to_list( - transform: (prop_1: P1, prop_2: P2, prop_3: P3, prop_4: P4) => ListProperty, - prop_1: Property, - prop_2: Property, - prop_3: Property, - prop_4: Property, -): ListProperty; -export function flat_map_to_list( - transform: (prop_1: P1, prop_2: P2, prop_3: P3, prop_4: P4, prop_5: P5) => ListProperty, - prop_1: Property, - prop_2: Property, - prop_3: Property, - prop_4: Property, - prop_5: Property, -): ListProperty; -export function flat_map_to_list( - transform: (...props: any[]) => ListProperty, - ...props: Property[] -): ListProperty { - return new FlatMappedListProperty(props, () => transform(...props.map(p => p.val))); -} diff --git a/src/core/observable/property/AbstractMinimalProperty.ts b/src/core/observable/property/AbstractMinimalProperty.ts deleted file mode 100644 index c2e599c7..00000000 --- a/src/core/observable/property/AbstractMinimalProperty.ts +++ /dev/null @@ -1,59 +0,0 @@ -import { Disposable } from "../Disposable"; -import { Property } from "./Property"; -import { LogManager } from "../../logging"; -import { ChangeEvent } from "../Observable"; - -const logger = LogManager.get("core/observable/property/AbstractMinimalProperty"); - -// This class exists purely because otherwise the resulting cyclic dependency graph would trip up -// webpack. The dependency graph is still cyclic but for some reason it's not a problem this way. -export abstract class AbstractMinimalProperty implements Property { - readonly is_property = true; - - abstract readonly val: T; - - abstract get_val(): T; - - protected readonly observers: ((change: ChangeEvent) => void)[] = []; - - observe( - observer: (change: ChangeEvent) => void, - options?: { call_now?: boolean }, - ): Disposable { - this.observers.push(observer); - - if (options && options.call_now) { - this.call_observer(observer, this.val); - } - - return { - dispose: () => { - const index = this.observers.indexOf(observer); - - if (index !== -1) { - this.observers.splice(index, 1); - } - }, - }; - } - - abstract map(transform: (value: T) => U): Property; - - abstract flat_map(transform: (value: T) => Property): Property; - - protected emit(): void { - const value = this.val; - - for (const observer of this.observers) { - this.call_observer(observer, value); - } - } - - private call_observer(observer: (event: ChangeEvent) => void, value: T): void { - try { - observer({ value }); - } catch (e) { - logger.error("Observer threw error.", e); - } - } -} diff --git a/src/core/observable/property/AbstractProperty.ts b/src/core/observable/property/AbstractProperty.ts deleted file mode 100644 index 16de738e..00000000 --- a/src/core/observable/property/AbstractProperty.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { MappedProperty } from "./MappedProperty"; -import { FlatMappedProperty } from "./FlatMappedProperty"; -import { AbstractMinimalProperty } from "./AbstractMinimalProperty"; -import { Property } from "./Property"; - -export abstract class AbstractProperty extends AbstractMinimalProperty { - map(transform: (value: T) => U): Property { - return new MappedProperty([this], () => transform(this.val)); - } - - flat_map(transform: (value: T) => Property): Property { - return new FlatMappedProperty([this], () => transform(this.val)); - } -} diff --git a/src/core/observable/property/DependentProperty.ts b/src/core/observable/property/DependentProperty.ts deleted file mode 100644 index e15f6dbb..00000000 --- a/src/core/observable/property/DependentProperty.ts +++ /dev/null @@ -1,72 +0,0 @@ -import { Disposable } from "../Disposable"; -import { Disposer } from "../Disposer"; -import { AbstractMinimalProperty } from "./AbstractMinimalProperty"; -import { Property } from "./Property"; -import { ChangeEvent } from "../Observable"; - -/** - * Starts observing its dependencies when the first observer on this property is registered. - * Stops observing its dependencies when the last observer on this property is disposed. - * This way no extra disposables need to be managed when e.g. {@link Property.map} is used. - */ -export abstract class DependentProperty extends AbstractMinimalProperty { - private dependency_disposer = new Disposer(); - - protected _val?: T; - - get val(): T { - return this.get_val(); - } - - get_val(): T { - if (this.should_recompute()) { - this._val = this.compute_value(this.observers.length > 0); - } - - return this._val as T; - } - - protected constructor(private dependencies: readonly Property[]) { - super(); - } - - observe( - observer: (event: ChangeEvent) => void, - options?: { call_now?: boolean }, - ): Disposable { - if (this.dependency_disposer.length === 0) { - this._val = this.compute_value(true); - - this.dependency_disposer.add_all( - ...this.dependencies.map(dependency => - dependency.observe(() => { - const old_value = this._val!; - this._val = this.compute_value(true); - - if (this._val !== old_value) { - this.emit(); - } - }), - ), - ); - } - - const super_disposable = super.observe(observer, options); - - return { - dispose: () => { - super_disposable.dispose(); - - if (this.observers.length === 0) { - this.dependency_disposer.dispose_all(); - } - }, - }; - } - - protected should_recompute(): boolean { - return this.dependency_disposer.length === 0; - } - - protected abstract compute_value(has_observers: boolean): T; -} diff --git a/src/core/observable/property/FlatMappedProperty.test.ts b/src/core/observable/property/FlatMappedProperty.test.ts deleted file mode 100644 index ae5f1db3..00000000 --- a/src/core/observable/property/FlatMappedProperty.test.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { FlatMappedProperty } from "./FlatMappedProperty"; -import { SimpleProperty } from "./SimpleProperty"; -import { pw_test } from "../../../../test/src/utils"; - -// This is a regression test, it's important that this exact sequence of statements stays the same. -test( - `It should emit a change when its direct property dependency changes.`, - pw_test({}, disposer => { - // p is the direct property dependency. - const p = new SimpleProperty(new SimpleProperty(7)); - const fp = new FlatMappedProperty([p], () => p.val); - let v: number | undefined = undefined; - - disposer.add(fp.observe(({ value }) => (v = value))); - - expect(v).toBeUndefined(); - - p.val.val = 99; - - expect(v).toBe(99); - - p.val = new SimpleProperty(7); - - expect(v).toBe(7); - }), -); diff --git a/src/core/observable/property/FlatMappedProperty.ts b/src/core/observable/property/FlatMappedProperty.ts deleted file mode 100644 index d21a4ebc..00000000 --- a/src/core/observable/property/FlatMappedProperty.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { Disposable } from "../Disposable"; -import { MappedProperty } from "./MappedProperty"; -import { Property } from "./Property"; -import { DependentProperty } from "./DependentProperty"; -import { ChangeEvent } from "../Observable"; - -export class FlatMappedProperty extends DependentProperty { - private computed_property?: Property; - private computed_disposable?: Disposable; - - get_val(): T { - if (this.should_recompute()) { - return super.get_val(); - } else { - return this.computed_property!.val; - } - } - - constructor( - dependencies: readonly Property[], - private readonly compute: () => Property, - ) { - super(dependencies); - } - - observe( - observer: (event: ChangeEvent) => void, - options?: { call_now?: boolean }, - ): Disposable { - const super_disposable = super.observe(observer, options); - - return { - dispose: () => { - super_disposable.dispose(); - - if (this.observers.length === 0) { - this.computed_disposable?.dispose(); - this.computed_disposable = undefined; - this.computed_property = undefined; - } - }, - }; - } - - map(transform: (value: T) => U): Property { - return new MappedProperty([this], () => transform(this.val)); - } - - flat_map(transform: (value: T) => Property): Property { - return new FlatMappedProperty([this], () => transform(this.val)); - } - - protected compute_value(has_observers: boolean): T { - this.computed_property = this.compute(); - - this.computed_disposable?.dispose(); - - if (has_observers) { - this.computed_disposable = this.computed_property.observe(() => { - this._val = this.computed_property!.val; - this.emit(); - }); - } - - return this.computed_property.val; - } -} diff --git a/src/core/observable/property/MappedProperty.ts b/src/core/observable/property/MappedProperty.ts deleted file mode 100644 index 84a08f95..00000000 --- a/src/core/observable/property/MappedProperty.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { FlatMappedProperty } from "./FlatMappedProperty"; -import { Property } from "./Property"; -import { DependentProperty } from "./DependentProperty"; - -export class MappedProperty extends DependentProperty { - constructor(dependencies: readonly Property[], protected compute_value: () => T) { - super(dependencies); - } - - map(transform: (element: T) => U): Property { - return new MappedProperty([this], () => transform(this.val)); - } - - flat_map(transform: (element: T) => Property): Property { - return new FlatMappedProperty([this], () => transform(this.val)); - } -} diff --git a/src/core/observable/property/Property.test.ts b/src/core/observable/property/Property.test.ts deleted file mode 100644 index c5f0d4da..00000000 --- a/src/core/observable/property/Property.test.ts +++ /dev/null @@ -1,154 +0,0 @@ -import { SimpleProperty } from "./SimpleProperty"; -import { MappedProperty } from "./MappedProperty"; -import { list_property } from "../index"; -import { FlatMappedProperty } from "./FlatMappedProperty"; -import { SimpleListProperty } from "./list/SimpleListProperty"; -import { MappedListProperty } from "./list/MappedListProperty"; -import { is_property, Property } from "./Property"; -import { FlatMappedListProperty } from "./list/FlatMappedListProperty"; -import { ChangeEvent } from "../Observable"; - -// This suite tests every implementation of Property. - -function test_property( - name: string, - create: () => { - property: Property; - emit: () => void; - }, -): void { - test(`${name} should be a property according to is_property`, () => { - const { property } = create(); - - expect(is_property(property)).toBe(true); - }); - - test(`${name} should call observers immediately if added with call_now set to true`, () => { - const { property } = create(); - const events: ChangeEvent[] = []; - - property.observe(event => events.push(event), { call_now: true }); - - expect(events.length).toBe(1); - }); - - test(`${name} should propagate updates to mapped properties`, () => { - const { property, emit } = create(); - - let i = 0; - const mapped = property.map(() => i++); - const initial_value = mapped.val; - const events: ChangeEvent[] = []; - - mapped.observe(event => events.push(event)); - - emit(); - - expect(events.length).toBe(1); - expect(mapped.val !== initial_value).toBe(true); - }); - - test(`${name} should propagate updates to flat mapped properties`, () => { - const { property, emit } = create(); - - let i = 0; - const flat_mapped = property.flat_map(() => new SimpleProperty(i++)); - const initial_value = flat_mapped.val; - const events: ChangeEvent[] = []; - - flat_mapped.observe(event => events.push(event)); - - emit(); - - expect(events.length).toBe(1); - expect(flat_mapped.val !== initial_value).toBe(true); - }); - - test(`${name} should correctly set value in emitted ChangeEvents`, () => { - const { property, emit } = create(); - - const events: ChangeEvent[] = []; - - property.observe(event => events.push(event)); - - emit(); - - expect(events.length).toBe(1); - expect(events[0].value).toBe(property.val); - - emit(); - - expect(events.length).toBe(2); - expect(events[1].value).toBe(property.val); - }); -} - -test_property(SimpleProperty.name, () => { - const property = new SimpleProperty(1); - return { - property, - emit: () => (property.val += 1), - }; -}); - -test_property(MappedProperty.name, () => { - const p = new SimpleProperty(0); - const property = new MappedProperty([p], () => 2 * p.val); - return { - property, - emit: () => (p.val += 2), - }; -}); - -test_property(`${FlatMappedProperty.name} (dependent property emits)`, () => { - const p = new SimpleProperty(new SimpleProperty(5)); - const property = new FlatMappedProperty([p], () => p.val); - return { - property, - emit: () => (p.val = new SimpleProperty(p.val.val + 5)), - }; -}); - -test_property(`${FlatMappedProperty.name} (nested property emits)`, () => { - const p = new SimpleProperty(new SimpleProperty(5)); - const property = new FlatMappedProperty([p], () => p.val); - return { - property, - emit: () => (p.val.val += 5), - }; -}); - -test_property(SimpleListProperty.name, () => { - const property = new SimpleListProperty(); - return { - property, - emit: () => property.push("test"), - }; -}); - -test_property(MappedListProperty.name, () => { - const list = list_property(); - const property = new MappedListProperty([list], () => list.val.map(v => 2 * v)); - return { - property, - emit: () => list.push(10), - }; -}); - -test_property(`${FlatMappedListProperty.name} (dependent property emits)`, () => { - const list = list_property(undefined, list_property(undefined, 5)); - const property = new FlatMappedListProperty([list], () => list.get(0)); - return { - property, - emit: () => list.set(0, list_property(undefined, 5, 10)), - }; -}); - -test_property(`${FlatMappedListProperty.name} (nested property emits)`, () => { - const list = list_property(undefined, list_property(undefined, 5)); - const property = new FlatMappedListProperty([list], () => list.get(0)); - return { - property, - emit: () => list.get(0).push(10), - }; -}); diff --git a/src/core/observable/property/Property.ts b/src/core/observable/property/Property.ts deleted file mode 100644 index 30c13f2e..00000000 --- a/src/core/observable/property/Property.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ChangeEvent, Observable } from "../Observable"; -import { Disposable } from "../Disposable"; - -export interface Property extends Observable { - readonly is_property: true; - - readonly val: T; - - get_val(): T; - - observe( - observer: (event: ChangeEvent) => void, - options?: { call_now?: boolean }, - ): Disposable; - - map(transform: (value: T) => U): Property; - - flat_map(transform: (value: T) => Property): Property; -} - -export function is_property(observable: unknown): observable is Property { - return observable != undefined && (observable as any).is_property; -} diff --git a/src/core/observable/property/SimpleProperty.test.ts b/src/core/observable/property/SimpleProperty.test.ts deleted file mode 100644 index 6f9acbc3..00000000 --- a/src/core/observable/property/SimpleProperty.test.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { SimpleProperty } from "./SimpleProperty"; - -test("flat_mapped property without observers.", () => { - const property: SimpleProperty<{ x?: SimpleProperty }> = new SimpleProperty({}); - const flat_mapped = property.flat_map(p => p.x ?? new SimpleProperty(13)); - - expect(flat_mapped.val).toBe(13); - - property.val = { x: new SimpleProperty(17) }; - - expect(flat_mapped.val).toBe(17); - - property.val.x!.val = 23; - - expect(flat_mapped.val).toBe(23); -}); diff --git a/src/core/observable/property/SimpleProperty.ts b/src/core/observable/property/SimpleProperty.ts deleted file mode 100644 index b208617e..00000000 --- a/src/core/observable/property/SimpleProperty.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { Disposable } from "../Disposable"; -import { Observable } from "../Observable"; -import { WritableProperty } from "./WritableProperty"; -import { AbstractProperty } from "./AbstractProperty"; -import { is_property } from "./Property"; - -export class SimpleProperty extends AbstractProperty implements WritableProperty { - constructor(private _val: T) { - super(); - } - - get val(): T { - return this.get_val(); - } - - set val(value: T) { - this.set_val(value); - } - - get_val(): T { - return this._val; - } - - set_val(val: T, options: { silent?: boolean } = {}): void { - if (val !== this._val) { - this._val = val; - - if (!options.silent) { - this.emit(); - } - } - } - - update(f: (value: T) => T): void { - this.val = f(this.val); - } - - bind_to(observable: Observable): Disposable { - if (is_property(observable)) { - this.val = observable.val; - } - - return observable.observe(event => (this.val = event.value)); - } -} diff --git a/src/core/observable/property/WidgetProperty.ts b/src/core/observable/property/WidgetProperty.ts deleted file mode 100644 index 013578cd..00000000 --- a/src/core/observable/property/WidgetProperty.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { SimpleProperty } from "./SimpleProperty"; -import { Widget } from "../../gui/Widget"; - -export class WidgetProperty extends SimpleProperty { - constructor(private widget: Widget, val: T, private set_value: (this: Widget, val: T) => void) { - super(val); - } - - set_val(val: T, options?: { silent?: boolean }): void { - this.set_value.call(this.widget, val); - super.set_val(val, { silent: true, ...options }); - } -} diff --git a/src/core/observable/property/WritableProperty.test.ts b/src/core/observable/property/WritableProperty.test.ts deleted file mode 100644 index 55f961bc..00000000 --- a/src/core/observable/property/WritableProperty.test.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { SimpleProperty } from "./SimpleProperty"; -import { SimpleListProperty } from "./list/SimpleListProperty"; -import { WritableProperty } from "./WritableProperty"; -import { ChangeEvent } from "../Observable"; - -// This suite tests every implementation of WritableProperty. - -function test_writable_property( - name: string, - create: () => { - property: WritableProperty; - emit: () => void; - create_val: () => T; - }, -): void { - test(`${name} should emit a ChangeEvent when val is modified`, () => { - const { property, create_val } = create(); - const events: ChangeEvent[] = []; - - property.observe(event => events.push(event)); - - const new_val = create_val(); - property.val = new_val; - - expect(events.length).toBe(1); - expect(events[0].value).toEqual(new_val); - }); -} - -test_writable_property(SimpleProperty.name, () => { - const property = new SimpleProperty(1); - return { - property, - emit: () => (property.val += 1), - create_val: () => property.val + 1, - }; -}); - -test_writable_property(SimpleListProperty.name, () => { - const property = new SimpleListProperty(); - return { - property, - emit: () => property.push("test"), - create_val: () => ["test"], - }; -}); diff --git a/src/core/observable/property/WritableProperty.ts b/src/core/observable/property/WritableProperty.ts deleted file mode 100644 index 77bdcda5..00000000 --- a/src/core/observable/property/WritableProperty.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Observable } from "../Observable"; -import { Disposable } from "../Disposable"; -import { Property } from "./Property"; - -export interface WritableProperty extends Property { - val: T; - - set_val(value: T, options?: { silent?: boolean }): void; - - update(f: (value: T) => T): void; - - /** - * Bind the value of this property to the given observable. - * - * @param observable the observable who's events will be propagated to this property. - */ - bind_to(observable: Observable): Disposable; -} diff --git a/src/core/observable/property/list/AbstractListProperty.ts b/src/core/observable/property/list/AbstractListProperty.ts deleted file mode 100644 index b3f8b77d..00000000 --- a/src/core/observable/property/list/AbstractListProperty.ts +++ /dev/null @@ -1,194 +0,0 @@ -import { ListChangeType, ListProperty, ListChangeEvent } from "./ListProperty"; -import { AbstractProperty } from "../AbstractProperty"; -import { Disposable } from "../../Disposable"; -import { Observable } from "../../Observable"; -import { Property } from "../Property"; -import { LogManager } from "../../../logging"; - -const logger = LogManager.get("core/observable/property/list/AbstractListProperty"); - -class LengthProperty extends AbstractProperty { - private length = 0; - - get val(): number { - return this.get_val(); - } - - get_val(): number { - return (this.length = this.compute_length()); - } - - constructor(private compute_length: () => number) { - super(); - } - - update(): void { - const old_length = this.length; - const length = this.compute_length(); - - if (old_length !== length) { - this.length = length; - this.emit(); - } - } -} - -export abstract class AbstractListProperty - extends AbstractProperty - implements ListProperty { - readonly is_list_property = true; - - readonly length: Property; - - private readonly _length: LengthProperty; - private readonly extract_observables?: (element: T) => Observable[]; - /** - * Internal observers which observe observables related to this list's values so that their - * changes can be propagated via update events. - */ - private readonly value_observers: { index: number; disposables: Disposable[] }[] = []; - /** - * External observers which are observing this list. - */ - protected readonly list_observers: ((change: ListChangeEvent) => void)[] = []; - - protected constructor(extract_observables?: (element: T) => Observable[]) { - super(); - - this._length = new LengthProperty(() => this.compute_length()); - this.length = this._length; - this.extract_observables = extract_observables; - } - - get(index: number): T { - return this.val[index]; - } - - observe_list( - observer: (change: ListChangeEvent) => void, - options?: { call_now?: boolean }, - ): Disposable { - if (this.value_observers.length === 0 && this.extract_observables) { - this.replace_element_observers(0, Infinity, this.val); - } - - if (!this.list_observers.includes(observer)) { - this.list_observers.push(observer); - } - - if (options && options.call_now) { - this.call_list_observer(observer, { - type: ListChangeType.ListChange, - index: 0, - removed: [], - inserted: this.val.slice(), - }); - } - - return { - dispose: () => { - const index = this.list_observers.indexOf(observer); - - if (index !== -1) { - this.list_observers.splice(index, 1); - } - - if (this.list_observers.length === 0) { - for (const { disposables } of this.value_observers) { - for (const disposable of disposables) { - disposable.dispose(); - } - } - - this.value_observers.splice(0, Infinity); - } - }, - }; - } - - [Symbol.iterator](): IterableIterator { - return this.val[Symbol.iterator](); - } - - abstract filtered( - predicate: ((value: T) => boolean) | Property<(value: T) => boolean>, - ): ListProperty; - - protected abstract compute_length(): number; - - /** - * Does the following in the given order: - * - Updates value observers - * - Emits length ChangeEvent if necessary - * - Emits ListChangeEvent - * - Emits ChangeEvent - */ - protected finalize_update(change: ListChangeEvent): void { - if ( - this.list_observers.length && - this.extract_observables && - change.type === ListChangeType.ListChange - ) { - this.replace_element_observers(change.index, change.removed.length, change.inserted); - } - - this._length.update(); - - for (const observer of this.list_observers) { - this.call_list_observer(observer, change); - } - - this.emit(); - } - - private call_list_observer( - observer: (change: ListChangeEvent) => void, - change: ListChangeEvent, - ): void { - try { - observer(change); - } catch (e) { - logger.error("Observer threw error.", e); - } - } - - private replace_element_observers( - from: number, - amount: number, - new_elements: readonly T[], - ): void { - let index = from; - - const removed = this.value_observers.splice( - from, - amount, - ...new_elements.map(element => { - const obj = { - index, - disposables: this.extract_observables!(element).map(observable => - observable.observe(() => { - this.finalize_update({ - type: ListChangeType.ValueChange, - updated: [element], - index: obj.index, - }); - }), - ), - }; - index++; - return obj; - }), - ); - - for (const { disposables } of removed) { - for (const disposable of disposables) { - disposable.dispose(); - } - } - - while (index < this.value_observers.length) { - this.value_observers[index].index = index; - index++; - } - } -} diff --git a/src/core/observable/property/list/DependentListProperty.ts b/src/core/observable/property/list/DependentListProperty.ts deleted file mode 100644 index 37077264..00000000 --- a/src/core/observable/property/list/DependentListProperty.ts +++ /dev/null @@ -1,111 +0,0 @@ -import { ListChangeType, ListChangeEvent } from "./ListProperty"; -import { Property } from "../Property"; -import { Disposable } from "../../Disposable"; -import { AbstractListProperty } from "./AbstractListProperty"; -import { Disposer } from "../../Disposer"; -import { ChangeEvent } from "../../Observable"; - -/** - * Starts observing its dependencies when the first observer on this property is registered. - * Stops observing its dependencies when the last observer on this property is disposed. - * This way no extra disposables need to be managed when e.g. {@link Property.map} is used. - */ -export abstract class DependentListProperty extends AbstractListProperty { - private dependency_disposer = new Disposer(); - - protected values: T[] = []; - - get val(): readonly T[] { - return this.get_val(); - } - - get_val(): readonly T[] { - if (this.should_recompute()) { - this.values = this.compute_values(); - } - - return this.values; - } - - protected constructor(private dependencies: readonly Property[]) { - super(); - } - - observe( - observer: (event: ChangeEvent) => void, - options: { call_now?: boolean } = {}, - ): Disposable { - this.init_dependency_disposables(); - - const super_disposable = super.observe(observer, options); - - return { - dispose: () => { - super_disposable.dispose(); - this.dispose_dependency_disposables(); - }, - }; - } - - observe_list( - observer: (change: ListChangeEvent) => void, - options?: { call_now?: boolean }, - ): Disposable { - const super_disposable = super.observe_list(observer, options); - - this.init_dependency_disposables(); - - return { - dispose: () => { - super_disposable.dispose(); - this.dispose_dependency_disposables(); - }, - }; - } - - protected should_recompute(): boolean { - return this.dependency_disposer.length === 0; - } - - protected compute_length(): number { - if (this.should_recompute()) { - this.values = this.compute_values(); - } - - return this.values.length; - } - - protected abstract compute_values(): T[]; - - protected recompute_and_emit(): void { - const removed = this.values.slice(); - this.values = this.compute_values(); - - this.finalize_update({ - type: ListChangeType.ListChange, - index: 0, - removed, - inserted: this.values.slice(), - }); - } - - private init_dependency_disposables(): void { - if (this.dependency_disposer.length === 0) { - this.values = this.compute_values(); - - this.dependency_disposer.add_all( - ...this.dependencies.map(dependency => - dependency.observe(() => { - this.recompute_and_emit(); - }), - ), - ); - } - } - - private dispose_dependency_disposables(): void { - if (this.observers.length === 0 && this.list_observers.length === 0) { - this.dependency_disposer.dispose_all(); - } - } -} diff --git a/src/core/observable/property/list/FlatMappedListProperty.ts b/src/core/observable/property/list/FlatMappedListProperty.ts deleted file mode 100644 index 315a3016..00000000 --- a/src/core/observable/property/list/FlatMappedListProperty.ts +++ /dev/null @@ -1,98 +0,0 @@ -import { Disposable } from "../../Disposable"; -import { MappedProperty } from "../MappedProperty"; -import { is_property, Property } from "../Property"; -import { ListChangeEvent, ListChangeType, ListProperty } from "./ListProperty"; -import { FlatMappedProperty } from "../FlatMappedProperty"; -import { DependentListProperty } from "./DependentListProperty"; -import { MappedListProperty } from "./MappedListProperty"; -import { ChangeEvent } from "../../Observable"; - -export class FlatMappedListProperty extends DependentListProperty { - private computed_property?: ListProperty; - private computed_disposable?: Disposable; - - get_val(): readonly T[] { - if (this.should_recompute() || !this.computed_property) { - return super.get_val(); - } else { - return this.computed_property.val; - } - } - - constructor( - dependencies: readonly Property[], - private readonly compute: () => ListProperty, - ) { - super(dependencies); - } - - observe( - observer: (event: ChangeEvent) => void, - options?: { call_now?: boolean }, - ): Disposable { - const super_disposable = super.observe(observer, options); - - return { - dispose: () => { - super_disposable.dispose(); - - if (this.observers.length === 0) { - this.computed_disposable?.dispose(); - this.computed_disposable = undefined; - this.computed_property = undefined; - } - }, - }; - } - - observe_list( - observer: (change: ListChangeEvent) => void, - options?: { call_now?: boolean }, - ): Disposable { - const super_disposable = super.observe_list(observer, options); - - return { - dispose: () => { - super_disposable.dispose(); - }, - }; - } - - map(f: (element: readonly T[]) => U): Property { - return new MappedProperty([this], () => f(this.val)); - } - - flat_map(f: (element: readonly T[]) => Property): Property { - return new FlatMappedProperty([this], () => f(this.val)); - } - - filtered( - predicate: ((value: T) => boolean) | Property<(value: T) => boolean>, - ): ListProperty { - if (is_property(predicate)) { - return new MappedListProperty([this, predicate], () => this.val.filter(predicate.val)); - } else { - return new MappedListProperty([this], () => this.val.filter(predicate)); - } - } - - protected compute_values(): T[] { - this.computed_disposable?.dispose(); - - this.computed_property = this.compute(); - - this.computed_disposable = this.computed_property.observe_list(change_event => { - if (change_event.type === ListChangeType.ListChange) { - this.values.splice( - change_event.index, - change_event.removed.length, - ...change_event.inserted, - ); - } - - this.finalize_update(change_event); - }); - - return this.computed_property.val.slice(); - } -} diff --git a/src/core/observable/property/list/ListProperty.test.ts b/src/core/observable/property/list/ListProperty.test.ts deleted file mode 100644 index 33f381b3..00000000 --- a/src/core/observable/property/list/ListProperty.test.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { is_list_property, ListChangeType, ListProperty, ListChangeEvent } from "./ListProperty"; -import { SimpleListProperty } from "./SimpleListProperty"; -import { MappedListProperty } from "./MappedListProperty"; -import { list_property } from "../../index"; -import { FlatMappedListProperty } from "./FlatMappedListProperty"; - -// This suite tests every implementation of ListProperty. - -function test_list_property( - name: string, - create: () => { - property: ListProperty; - emit_list_change: () => void; - }, -): void { - test(`${name} should be a list property according to is_list_property`, () => { - const { property } = create(); - - expect(is_list_property(property)).toBe(true); - }); - - test(`${name} should propagate list changes to a filtered list`, () => { - const { property, emit_list_change } = create(); - const filtered = property.filtered(() => true); - const events: ListChangeEvent[] = []; - - filtered.observe_list(event => events.push(event)); - - emit_list_change(); - - expect(events.length).toBe(1); - expect(events[0].type).toBe(ListChangeType.ListChange); - }); -} - -test_list_property(SimpleListProperty.name, () => { - const property = new SimpleListProperty(); - return { - property, - emit_list_change: () => property.push("test"), - }; -}); - -test_list_property(MappedListProperty.name, () => { - const list = list_property(); - const property = new MappedListProperty([list], () => list.val.map(v => 2 * v)); - return { - property, - emit_list_change: () => list.push(10), - }; -}); - -test_list_property(`${FlatMappedListProperty.name} (dependent property emits)`, () => { - const list = list_property(undefined, list_property(undefined, 5)); - const property = new FlatMappedListProperty([list], () => list.get(0)); - return { - property, - emit_list_change: () => list.set(0, list_property(undefined, 5, 10)), - }; -}); - -test_list_property(`${FlatMappedListProperty.name} (nested property emits)`, () => { - const list = list_property(undefined, list_property(undefined, 5)); - const property = new FlatMappedListProperty([list], () => list.get(0)); - return { - property, - emit_list_change: () => list.get(0).push(10), - }; -}); diff --git a/src/core/observable/property/list/ListProperty.ts b/src/core/observable/property/list/ListProperty.ts deleted file mode 100644 index a7b8ad0c..00000000 --- a/src/core/observable/property/list/ListProperty.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { Property } from "../Property"; -import { Disposable } from "../../Disposable"; - -export enum ListChangeType { - ListChange, - ValueChange, -} - -export type ListChangeEvent = ListChange | ListValueChange; - -export type ListChange = { - readonly type: ListChangeType.ListChange; - readonly index: number; - readonly removed: readonly T[]; - readonly inserted: readonly T[]; -}; - -export type ListValueChange = { - readonly type: ListChangeType.ValueChange; - readonly index: number; - readonly updated: readonly T[]; -}; - -export interface ListProperty extends Property { - readonly is_list_property: true; - - readonly length: Property; - - get(index: number): T; - - observe_list( - observer: (change: ListChangeEvent) => void, - options?: { call_now?: boolean }, - ): Disposable; - - filtered(predicate: ((value: T) => boolean) | Property<(value: T) => boolean>): ListProperty; - - [Symbol.iterator](): IterableIterator; -} - -export function is_list_property(observable: unknown): observable is ListProperty { - return observable != undefined && (observable as any).is_list_property; -} diff --git a/src/core/observable/property/list/MappedListProperty.test.ts b/src/core/observable/property/list/MappedListProperty.test.ts deleted file mode 100644 index a426304a..00000000 --- a/src/core/observable/property/list/MappedListProperty.test.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { list_property } from "../../index"; - -test("filtered list should contain only values that match the predicate", () => { - const list = list_property(undefined, 1, 2, 3, 4, 5); - const filtered = list.filtered(v => v > 1); - - expect(filtered.val).toEqual([2, 3, 4, 5]); - - list.push(6); - - expect(filtered.val).toEqual([2, 3, 4, 5, 6]); - - list.push(0); - - expect(filtered.val).toEqual([2, 3, 4, 5, 6]); -}); - -test("length", () => { - const list = list_property(undefined, 1, 2, 3, 4, 5); - const filtered = list.filtered(v => v > 1); - - expect(filtered.length.val).toBe(4); - - list.push(6); - - expect(filtered.length.val).toBe(5); - - list.push(0); - - expect(filtered.length.val).toBe(5); -}); diff --git a/src/core/observable/property/list/MappedListProperty.ts b/src/core/observable/property/list/MappedListProperty.ts deleted file mode 100644 index 4c7d117d..00000000 --- a/src/core/observable/property/list/MappedListProperty.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ListProperty } from "./ListProperty"; -import { is_property, Property } from "../Property"; -import { DependentListProperty } from "./DependentListProperty"; - -export class MappedListProperty extends DependentListProperty { - // noinspection JSUnusedGlobalSymbols - constructor( - dependencies: readonly Property[], - protected readonly compute_values: () => T[], - ) { - super(dependencies); - } - - filtered( - predicate: ((value: T) => boolean) | Property<(value: T) => boolean>, - ): ListProperty { - if (is_property(predicate)) { - return new MappedListProperty([this, predicate], () => this.val.filter(predicate.val)); - } else { - return new MappedListProperty([this], () => this.val.filter(predicate)); - } - } -} diff --git a/src/core/observable/property/list/SimpleListProperty.test.ts b/src/core/observable/property/list/SimpleListProperty.test.ts deleted file mode 100644 index 5baec344..00000000 --- a/src/core/observable/property/list/SimpleListProperty.test.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { SimpleListProperty } from "./SimpleListProperty"; -import { ListChangeType, ListChangeEvent } from "./ListProperty"; - -test("constructor", () => { - const list = new SimpleListProperty(undefined, 1, 2, 3); - - expect(list.val).toEqual([1, 2, 3]); - expect(list.length.val).toBe(3); -}); - -test("push", () => { - const changes: ListChangeEvent[] = []; - const list = new SimpleListProperty(); - - list.observe_list(change => changes.push(change)); - - list.push(9); - - expect(list.val).toEqual([9]); - expect(changes.length).toBe(1); - expect(changes[0]).toEqual({ - type: ListChangeType.ListChange, - index: 0, - removed: [], - inserted: [9], - }); - - list.push(1, 2, 3); - - expect(list.val).toEqual([9, 1, 2, 3]); - expect(changes.length).toBe(2); - expect(changes[1]).toEqual({ - type: ListChangeType.ListChange, - index: 1, - removed: [], - inserted: [1, 2, 3], - }); -}); diff --git a/src/core/observable/property/list/SimpleListProperty.ts b/src/core/observable/property/list/SimpleListProperty.ts deleted file mode 100644 index c73ef2e1..00000000 --- a/src/core/observable/property/list/SimpleListProperty.ts +++ /dev/null @@ -1,166 +0,0 @@ -import { WritableListProperty } from "./WritableListProperty"; -import { Disposable } from "../../Disposable"; -import { Observable } from "../../Observable"; -import { is_property, Property } from "../Property"; -import { is_list_property, ListChangeType, ListProperty } from "./ListProperty"; -import { AbstractListProperty } from "./AbstractListProperty"; -import { MappedListProperty } from "./MappedListProperty"; - -export class SimpleListProperty - extends AbstractListProperty - implements WritableListProperty { - get val(): readonly T[] { - return this.get_val(); - } - - set val(values: readonly T[]) { - this.set_val(values); - } - - private readonly values: T[]; - - /** - * @param extract_observables - Extractor function called on each value in this list. Changes - * to the returned observables will be propagated via ValueChange events. - * @param values - Initial values of this list. - */ - constructor(extract_observables?: (element: T) => Observable[], ...values: T[]) { - super(extract_observables); - - this.values = values || []; - } - - get_val(): readonly T[] { - return this.values; - } - - set_val(values: readonly T[]): T[] { - const removed = this.values.splice(0, this.values.length, ...values); - this.finalize_update({ - type: ListChangeType.ListChange, - index: 0, - removed, - inserted: values.slice(), - }); - return removed; - } - - filtered( - predicate: ((value: T) => boolean) | Property<(value: T) => boolean>, - ): ListProperty { - if (is_property(predicate)) { - return new MappedListProperty([this, predicate], () => this.val.filter(predicate.val)); - } else { - return new MappedListProperty([this], () => this.val.filter(predicate)); - } - } - - bind_to(observable: Observable): Disposable { - if (is_list_property(observable)) { - this.set_val(observable.val); - - return observable.observe_list(change => { - if (change.type === ListChangeType.ListChange) { - this.splice(change.index, change.removed.length, ...change.inserted); - } - }); - } else { - if (is_property(observable)) { - this.set_val(observable.val); - } - - return observable.observe(({ value }) => this.set_val(value)); - } - } - - update(f: (element: T[]) => T[]): void { - this.splice(0, this.values.length, ...f(this.values)); - } - - set(index: number, element: T): void { - const removed = [this.values[index]]; - this.values[index] = element; - this.finalize_update({ - type: ListChangeType.ListChange, - index, - removed, - inserted: [element], - }); - } - - push(...values: readonly T[]): number { - const index = this.values.length; - this.values.push(...values); - - this.finalize_update({ - type: ListChangeType.ListChange, - index, - removed: [], - inserted: values.slice(), - }); - - return this.length.val; - } - - remove(...values: T[]): void { - for (const value of values) { - const index = this.values.indexOf(value); - - if (index > -1) { - this.values.splice(index, 1); - - this.finalize_update({ - type: ListChangeType.ListChange, - index, - removed: [value], - inserted: [], - }); - } - } - } - - clear(): void { - const removed = this.values.splice(0, this.values.length); - this.finalize_update({ - type: ListChangeType.ListChange, - index: 0, - removed, - inserted: [], - }); - } - - splice(index: number, delete_count?: number, ...values: readonly T[]): T[] { - let removed: T[]; - - if (delete_count == undefined) { - removed = this.values.splice(index); - } else { - removed = this.values.splice(index, delete_count, ...values); - } - - this.finalize_update({ - type: ListChangeType.ListChange, - index, - removed, - inserted: values.slice(), - }); - - return removed; - } - - sort(compare: (a: T, b: T) => number): void { - const removed = this.values.slice(); - this.values.sort(compare); - - this.finalize_update({ - type: ListChangeType.ListChange, - index: 0, - removed, - inserted: this.values.slice(), - }); - } - - protected compute_length(): number { - return this.values.length; - } -} diff --git a/src/core/observable/property/list/WritableListProperty.ts b/src/core/observable/property/list/WritableListProperty.ts deleted file mode 100644 index 912f8578..00000000 --- a/src/core/observable/property/list/WritableListProperty.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { ListProperty } from "./ListProperty"; -import { WritableProperty } from "../WritableProperty"; - -export interface WritableListProperty extends ListProperty, WritableProperty { - val: readonly T[]; - - set(index: number, value: T): void; - - push(...values: readonly T[]): number; - - splice(index: number, delete_count?: number): T[]; - splice(index: number, delete_count: number, ...values: readonly T[]): T[]; - - remove(...values: readonly T[]): void; - - clear(): void; - - sort(compare: (a: T, b: T) => number): void; -} diff --git a/src/core/persistence/Persister.ts b/src/core/persistence/Persister.ts deleted file mode 100644 index f2790002..00000000 --- a/src/core/persistence/Persister.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { Server } from "../model"; -import { LogManager } from "../logging"; - -const logger = LogManager.get("core/persistence/Persister"); - -export abstract class Persister { - protected persist_for_server(server: Server, key: string, data: unknown): void { - this.persist(this.server_key(server, key), data); - } - - protected persist(key: string, data: unknown): void { - try { - localStorage.setItem(key, JSON.stringify(data)); - } catch (e) { - logger.error(`Couldn't persist ${key}.`, e); - } - } - - protected async load_for_server(server: Server, key: string): Promise { - return this.load(this.server_key(server, key)); - } - - protected async load(key: string): Promise { - try { - const json = localStorage.getItem(key); - return json && JSON.parse(json); - } catch (e) { - logger.error(`Couldn't load ${key}.`, e); - return undefined; - } - } - - private server_key(server: Server, key: string): string { - let k = key + "."; - - // Do this manually per server type instead of just appending e.g. `Server[server]` to - // ensure the persisted key never changes. - switch (server) { - case Server.Ephinea: - k += "Ephinea"; - break; - default: - throw new Error(`Server ${Server[server]} not supported.`); - } - - return k; - } -} diff --git a/src/core/primitive_conversion.ts b/src/core/primitive_conversion.ts deleted file mode 100644 index 65748b32..00000000 --- a/src/core/primitive_conversion.ts +++ /dev/null @@ -1,11 +0,0 @@ -const data_view = new DataView(new ArrayBuffer(4)); - -export function reinterpret_i32_as_f32(i32: number): number { - data_view.setInt32(0, i32); - return data_view.getFloat32(0); -} - -export function reinterpret_f32_as_i32(f32: number): number { - data_view.setFloat32(0, f32); - return data_view.getInt32(0); -} diff --git a/src/core/rendering/Renderer.ts b/src/core/rendering/Renderer.ts deleted file mode 100644 index 6610ed52..00000000 --- a/src/core/rendering/Renderer.ts +++ /dev/null @@ -1,140 +0,0 @@ -import CameraControls from "camera-controls"; -import * as THREE from "three"; -import { - Clock, - Color, - Group, - HemisphereLight, - OrthographicCamera, - PerspectiveCamera, - Scene, - Vector2, - Vector3, -} from "three"; -import { Disposable } from "../observable/Disposable"; - -CameraControls.install({ - // Hack to make panning and orbiting work the way we want. - THREE: { - ...THREE, - MOUSE: { ...THREE.MOUSE, LEFT: THREE.MOUSE.RIGHT, RIGHT: THREE.MOUSE.LEFT }, - }, -}); - -export interface DisposableThreeRenderer extends THREE.WebGLRenderer, Disposable {} - -/** - * Uses THREE.js for rendering. - */ -export abstract class Renderer implements Disposable { - private _debug = false; - - get debug(): boolean { - return this._debug; - } - - set debug(debug: boolean) { - this._debug = debug; - } - - abstract readonly camera: PerspectiveCamera | OrthographicCamera; - readonly controls!: CameraControls; - readonly scene = new Scene(); - readonly light_holder = new Group(); - - private readonly renderer: DisposableThreeRenderer; - private render_scheduled = false; - private animation_frame_handle?: number = undefined; - private readonly light = new HemisphereLight(0xffffff, 0x505050, 1.0); - private readonly controls_clock = new Clock(); - private readonly size = new Vector2(0, 0); - - protected constructor(three_renderer: DisposableThreeRenderer) { - this.renderer = three_renderer; - this.renderer.domElement.tabIndex = 0; - this.renderer.domElement.addEventListener("mousedown", this.on_mouse_down); - this.renderer.domElement.style.outline = "none"; - - this.scene.background = new Color(0x181818); - this.light_holder.add(this.light); - this.scene.add(this.light_holder); - } - - get canvas_element(): HTMLCanvasElement { - return this.renderer.domElement; - } - - set_size(width: number, height: number): void { - this.size.set(width, height); - this.renderer.setSize(width, height); - this.schedule_render(); - } - - pointer_pos_to_device_coords(pos: Vector2): void { - pos.set((pos.x / this.size.width) * 2 - 1, (pos.y / this.size.height) * -2 + 1); - } - - start_rendering(): void { - if (this.animation_frame_handle == undefined) { - this.schedule_render(); - this.animation_frame_handle = requestAnimationFrame(this.call_render); - } - } - - stop_rendering(): void { - if (this.animation_frame_handle != undefined) { - cancelAnimationFrame(this.animation_frame_handle); - this.animation_frame_handle = undefined; - } - } - - schedule_render = (): void => { - this.render_scheduled = true; - }; - - reset_camera(position: Vector3, look_at: Vector3): void { - this.controls.setLookAt( - position.x, - position.y, - position.z, - look_at.x, - look_at.y, - look_at.z, - ); - } - - dispose(): void { - this.renderer.dispose(); - this.controls.dispose(); - } - - protected init_camera_controls(): void { - (this.controls as CameraControls) = new CameraControls( - this.camera, - this.renderer.domElement, - ); - this.controls.dampingFactor = 1; - this.controls.draggingDampingFactor = 1; - } - - protected render(): void { - this.renderer.render(this.scene, this.camera); - } - - private on_mouse_down = (e: Event): void => { - if (e.currentTarget) (e.currentTarget as HTMLElement).focus(); - }; - - private call_render = (): void => { - const controls_updated = this.controls.update(this.controls_clock.getDelta()); - const should_render = this.render_scheduled || controls_updated; - - this.render_scheduled = false; - - if (should_render) { - this.render(); - } - - this.animation_frame_handle = requestAnimationFrame(this.call_render); - }; -} diff --git a/src/core/rendering/conversion/GeometryBuilder.ts b/src/core/rendering/conversion/GeometryBuilder.ts deleted file mode 100644 index 6306dad7..00000000 --- a/src/core/rendering/conversion/GeometryBuilder.ts +++ /dev/null @@ -1,186 +0,0 @@ -import { - Bone, - BufferGeometry, - Float32BufferAttribute, - Uint16BufferAttribute, - Vector3, -} from "three"; -import { map_get_or_put } from "../../util"; - -export type BuilderData = { - readonly created_by_geometry_builder: boolean; - readonly materials: BuilderMaterial[]; - readonly bones: Bone[]; -}; - -export type BuilderVec2 = { - readonly x: number; - readonly y: number; -}; - -export type BuilderVec3 = { - readonly x: number; - readonly y: number; - readonly z: number; -}; - -export type BuilderMaterial = { - readonly texture_id?: number; - readonly alpha: boolean; - readonly additive_blending: boolean; -}; - -/** - * Maps various material properties to material IDs. - */ -export class MaterialMap { - private readonly materials: BuilderMaterial[] = [{ alpha: false, additive_blending: false }]; - private readonly map = new Map(); - - /** - * Returns an index to an existing material if one exists for the given arguments. Otherwise - * adds a new material and returns its index. - */ - add_material( - texture_id?: number, - alpha: boolean = false, - additive_blending: boolean = false, - ): number { - if (texture_id == undefined) { - return 0; - } else { - const key = (texture_id << 2) | (alpha ? 0b10 : 0) | (additive_blending ? 1 : 0); - return map_get_or_put(this.map, key, () => { - this.materials.push({ texture_id, alpha, additive_blending }); - return this.materials.length - 1; - }); - } - } - - get_materials(): BuilderMaterial[] { - return this.materials; - } -} - -type VertexGroup = { - offset: number; - size: number; - material_index: number; -}; - -export class GeometryBuilder { - private readonly positions: number[] = []; - private readonly normals: number[] = []; - private readonly uvs: number[] = []; - private readonly indices: number[] = []; - private readonly bones: Bone[] = []; - private readonly bone_indices: number[] = []; - private readonly bone_weights: number[] = []; - private readonly groups: VertexGroup[] = []; - /** - * Will contain all material indices used in {@link this.groups} and -1 for the dummy material. - */ - private readonly material_map = new MaterialMap(); - - get vertex_count(): number { - return this.positions.length / 3; - } - - get index_count(): number { - return this.indices.length; - } - - get_position(index: number): Vector3 { - return new Vector3( - this.positions[3 * index], - this.positions[3 * index + 1], - this.positions[3 * index + 2], - ); - } - - get_normal(index: number): Vector3 { - return new Vector3( - this.normals[3 * index], - this.normals[3 * index + 1], - this.normals[3 * index + 2], - ); - } - - add_vertex(position: BuilderVec3, normal: BuilderVec3, uv: BuilderVec2): void { - this.positions.push(position.x, position.y, position.z); - this.normals.push(normal.x, normal.y, normal.z); - this.uvs.push(uv.x, uv.y); - } - - add_index(index: number): void { - this.indices.push(index); - } - - add_bone(bone: Bone): void { - this.bones.push(bone); - } - - add_bone_weight(index: number, weight: number): void { - this.bone_indices.push(index); - this.bone_weights.push(weight); - } - - add_group( - offset: number, - size: number, - texture_id?: number, - alpha: boolean = false, - additive_blending: boolean = false, - ): void { - const last_group = this.groups[this.groups.length - 1]; - const material_index = this.material_map.add_material(texture_id, alpha, additive_blending); - - if (last_group && last_group.material_index === material_index) { - last_group.size += size; - } else { - this.groups.push({ - offset, - size, - material_index, - }); - } - } - - build(): BufferGeometry { - const geom = new BufferGeometry(); - - geom.setAttribute("position", new Float32BufferAttribute(this.positions, 3)); - geom.setAttribute("normal", new Float32BufferAttribute(this.normals, 3)); - geom.setAttribute("uv", new Float32BufferAttribute(this.uvs, 2)); - - geom.setIndex(new Uint16BufferAttribute(this.indices, 1)); - - let bones: Bone[]; - - if (this.bone_indices.length && this.bones.length) { - geom.setAttribute("skinIndex", new Uint16BufferAttribute(this.bone_indices, 4)); - geom.setAttribute("skinWeight", new Float32BufferAttribute(this.bone_weights, 4)); - bones = this.bones; - } else { - bones = []; - } - - for (const group of this.groups) { - geom.addGroup(group.offset, group.size, group.material_index); - } - - // noinspection UnnecessaryLocalVariableJS - const data: BuilderData = { - created_by_geometry_builder: true, - materials: this.material_map.get_materials(), - bones, - }; - - geom.userData = data; - - geom.computeBoundingSphere(); - geom.computeBoundingBox(); - - return geom; - } -} diff --git a/src/core/rendering/conversion/create_mesh.ts b/src/core/rendering/conversion/create_mesh.ts deleted file mode 100644 index 35dffb59..00000000 --- a/src/core/rendering/conversion/create_mesh.ts +++ /dev/null @@ -1,78 +0,0 @@ -import { - AdditiveBlending, - BufferGeometry, - DoubleSide, - Material, - Mesh, - MeshBasicMaterial, - MeshLambertMaterial, - Skeleton, - SkinnedMesh, - Texture, -} from "three"; -import { BuilderData } from "./GeometryBuilder"; -import { MeshBasicMaterialParameters } from "three/src/materials/MeshBasicMaterial"; - -const DUMMY_MATERIAL = new MeshLambertMaterial({ - color: 0x00ff00, - side: DoubleSide, -}); - -export function create_mesh( - geometry: BufferGeometry, - textures: (Texture | undefined)[], - default_material: Material, - skinning: boolean, -): Mesh { - const { created_by_geometry_builder, materials, bones } = geometry.userData as BuilderData; - - let mat: Material | Material[]; - - if (textures.length && created_by_geometry_builder) { - mat = [DUMMY_MATERIAL]; - - for (let i = 1; i < materials.length; i++) { - const { texture_id, alpha, additive_blending } = materials[i]; - const tex = texture_id == undefined ? undefined : textures[texture_id]; - - if (tex) { - const mat_params: MeshBasicMaterialParameters = { - skinning, - map: tex, - side: DoubleSide, - }; - - if (alpha) { - mat_params.transparent = true; - mat_params.alphaTest = 0.01; - } - - if (additive_blending) { - mat_params.transparent = true; - mat_params.alphaTest = 0.01; - mat_params.blending = AdditiveBlending; - } - - mat.push(new MeshBasicMaterial(mat_params)); - } else { - mat.push( - new MeshLambertMaterial({ - skinning, - side: DoubleSide, - }), - ); - } - } - } else { - mat = default_material; - } - - if (created_by_geometry_builder && bones.length && skinning) { - const mesh = new SkinnedMesh(geometry, mat); - mesh.add(bones[0]); - mesh.bind(new Skeleton(bones)); - return mesh; - } else { - return new Mesh(geometry, mat); - } -} diff --git a/src/core/rendering/conversion/index.ts b/src/core/rendering/conversion/index.ts deleted file mode 100644 index 7edbd0b7..00000000 --- a/src/core/rendering/conversion/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { Vec3 } from "../../data_formats/vector"; -import { Vector3 } from "three"; - -export function vec3_to_threejs(v: Vec3): Vector3 { - return new Vector3(v.x, v.y, v.z); -} diff --git a/src/core/rendering/conversion/ninja_animation.ts b/src/core/rendering/conversion/ninja_animation.ts deleted file mode 100644 index 4c2767e1..00000000 --- a/src/core/rendering/conversion/ninja_animation.ts +++ /dev/null @@ -1,74 +0,0 @@ -import { - AnimationClip, - Euler, - InterpolateLinear, - InterpolateSmooth, - KeyframeTrack, - Quaternion, - QuaternionKeyframeTrack, - VectorKeyframeTrack, -} from "three"; -import { NjObject } from "../../data_formats/parsing/ninja"; -import { - NjInterpolation, - NjKeyframeTrackType, - NjMotion, -} from "../../data_formats/parsing/ninja/motion"; - -export const PSO_FRAME_RATE = 30; - -export function create_animation_clip(nj_object: NjObject, nj_motion: NjMotion): AnimationClip { - const interpolation = - nj_motion.interpolation === NjInterpolation.Spline ? InterpolateSmooth : InterpolateLinear; - - const tracks: KeyframeTrack[] = []; - - nj_motion.motion_data.forEach((motion_data, bone_id) => { - const bone = nj_object.get_bone(bone_id); - if (!bone) return; - - motion_data.tracks.forEach(({ type, keyframes }) => { - const times: number[] = []; - const values: number[] = []; - - for (const keyframe of keyframes) { - times.push(keyframe.frame / PSO_FRAME_RATE); - - if (type === NjKeyframeTrackType.Rotation) { - const order = bone.evaluation_flags.zxy_rotation_order ? "ZXY" : "ZYX"; - const quat = new Quaternion().setFromEuler( - new Euler(keyframe.value.x, keyframe.value.y, keyframe.value.z, order), - ); - - values.push(quat.x, quat.y, quat.z, quat.w); - } else { - values.push(keyframe.value.x, keyframe.value.y, keyframe.value.z); - } - } - - if (type === NjKeyframeTrackType.Rotation) { - tracks.push( - new QuaternionKeyframeTrack( - `.bones[${bone_id}].quaternion`, - times, - values, - interpolation, - ), - ); - } else { - const name = - type === NjKeyframeTrackType.Position - ? `.bones[${bone_id}].position` - : `.bones[${bone_id}].scale`; - - tracks.push(new VectorKeyframeTrack(name, times, values, interpolation)); - } - }); - }); - - return new AnimationClip( - "Animation", - (nj_motion.frame_count - 1) / PSO_FRAME_RATE, - tracks, - ).optimize(); -} diff --git a/src/core/rendering/conversion/ninja_geometry.ts b/src/core/rendering/conversion/ninja_geometry.ts deleted file mode 100644 index 6c647e9d..00000000 --- a/src/core/rendering/conversion/ninja_geometry.ts +++ /dev/null @@ -1,312 +0,0 @@ -import { Bone, BufferGeometry, Euler, Matrix3, Matrix4, Quaternion, Vector2, Vector3 } from "three"; -import { vec3_to_threejs } from "./index"; -import { is_njcm_model, NjModel, NjObject } from "../../data_formats/parsing/ninja"; -import { NjcmModel } from "../../data_formats/parsing/ninja/njcm"; -import { XjModel } from "../../data_formats/parsing/ninja/xj"; -import { GeometryBuilder } from "./GeometryBuilder"; - -const DEFAULT_NORMAL = new Vector3(0, 1, 0); -const DEFAULT_UV = new Vector2(0, 0); -const NO_TRANSLATION = new Vector3(0, 0, 0); -const NO_ROTATION = new Quaternion(0, 0, 0, 1); -const NO_SCALE = new Vector3(1, 1, 1); - -export function ninja_object_to_geometry_builder(object: NjObject, builder: GeometryBuilder): void { - new GeometryCreator(builder).to_geometry_builder(object); -} - -export function ninja_object_to_buffer_geometry(object: NjObject): BufferGeometry { - return new GeometryCreator(new GeometryBuilder()).create_buffer_geometry(object); -} - -type Vertex = { - bone_id: number; - position: Vector3; - normal?: Vector3; - bone_weight: number; - bone_weight_status: number; - calc_continue: boolean; -}; - -class VerticesHolder { - private readonly vertices_stack: Vertex[][] = []; - - put(vertices: Vertex[]): void { - this.vertices_stack.push(vertices); - } - - get(index: number): Vertex[] { - const vertices: Vertex[] = []; - - for (let i = this.vertices_stack.length - 1; i >= 0; i--) { - const vertex = this.vertices_stack[i][index]; - - if (vertex) { - vertices.push(vertex); - } - } - - return vertices; - } -} - -class GeometryCreator { - private readonly vertices = new VerticesHolder(); - private readonly builder: GeometryBuilder; - private bone_id = 0; - - constructor(builder: GeometryBuilder) { - this.builder = builder; - } - - to_geometry_builder(object: NjObject): void { - this.object_to_geometry(object, undefined, new Matrix4()); - } - - create_buffer_geometry(object: NjObject): BufferGeometry { - this.to_geometry_builder(object); - return this.builder.build(); - } - - private object_to_geometry( - object: NjObject, - parent_bone: Bone | undefined, - parent_matrix: Matrix4, - ): void { - const { - no_translate, - no_rotate, - no_scale, - hidden, - break_child_trace, - zxy_rotation_order, - skip, - } = object.evaluation_flags; - const { position, rotation, scale } = object; - - const euler = new Euler( - rotation.x, - rotation.y, - rotation.z, - zxy_rotation_order ? "ZXY" : "ZYX", - ); - const matrix = new Matrix4() - .compose( - no_translate ? NO_TRANSLATION : vec3_to_threejs(position), - no_rotate ? NO_ROTATION : new Quaternion().setFromEuler(euler), - no_scale ? NO_SCALE : vec3_to_threejs(scale), - ) - .premultiply(parent_matrix); - - let bone: Bone | undefined; - - if (skip) { - bone = parent_bone; - } else { - bone = new Bone(); - bone.name = this.bone_id.toString(); - - bone.position.set(position.x, position.y, position.z); - bone.setRotationFromEuler(euler); - bone.scale.set(scale.x, scale.y, scale.z); - - this.builder.add_bone(bone); - - if (parent_bone) { - parent_bone.add(bone); - } - } - - if (object.model && !hidden) { - this.model_to_geometry(object.model, matrix); - } - - this.bone_id++; - - if (!break_child_trace) { - for (const child of object.children) { - this.object_to_geometry(child, bone, matrix); - } - } - } - - private model_to_geometry(model: NjModel, matrix: Matrix4): void { - if (is_njcm_model(model)) { - this.njcm_model_to_geometry(model, matrix); - } else { - this.xj_model_to_geometry(model, matrix); - } - } - - private njcm_model_to_geometry(model: NjcmModel, matrix: Matrix4): void { - const normal_matrix = new Matrix3().getNormalMatrix(matrix); - - const new_vertices = model.vertices.map(vertex => { - const position = vec3_to_threejs(vertex.position); - const normal = vertex.normal ? vec3_to_threejs(vertex.normal) : new Vector3(0, 1, 0); - - position.applyMatrix4(matrix); - normal.applyMatrix3(normal_matrix); - - return { - bone_id: this.bone_id, - position, - normal, - bone_weight: vertex.bone_weight, - bone_weight_status: vertex.bone_weight_status, - calc_continue: vertex.calc_continue, - }; - }); - - this.vertices.put(new_vertices); - - for (const mesh of model.meshes) { - const start_index_count = this.builder.index_count; - - for (let i = 0; i < mesh.vertices.length; ++i) { - const mesh_vertex = mesh.vertices[i]; - const vertices = this.vertices.get(mesh_vertex.index); - - if (vertices.length) { - const vertex = vertices[0]; - const normal = vertex.normal ?? mesh_vertex.normal ?? DEFAULT_NORMAL; - const index = this.builder.vertex_count; - - this.builder.add_vertex( - vertex.position, - normal, - mesh.has_tex_coords ? mesh_vertex.tex_coords! : DEFAULT_UV, - ); - - if (i >= 2) { - if (i % 2 === (mesh.clockwise_winding ? 1 : 0)) { - this.builder.add_index(index - 2); - this.builder.add_index(index - 1); - this.builder.add_index(index); - } else { - this.builder.add_index(index - 2); - this.builder.add_index(index); - this.builder.add_index(index - 1); - } - } - - const bones = [ - [0, 0], - [0, 0], - [0, 0], - [0, 0], - ]; - - for (let j = vertices.length - 1; j >= 0; j--) { - const vertex = vertices[j]; - bones[vertex.bone_weight_status] = [vertex.bone_id, vertex.bone_weight]; - } - - const total_weight = bones.reduce((total, [, weight]) => total + weight, 0); - - for (const [bone_index, bone_weight] of bones) { - this.builder.add_bone_weight( - bone_index, - total_weight > 0 ? bone_weight / total_weight : bone_weight, - ); - } - } - } - - this.builder.add_group( - start_index_count, - this.builder.index_count - start_index_count, - mesh.texture_id, - mesh.use_alpha, - mesh.src_alpha !== 4 || mesh.dst_alpha !== 5, - ); - } - } - - private xj_model_to_geometry(model: XjModel, matrix: Matrix4): void { - const index_offset = this.builder.vertex_count; - const normal_matrix = new Matrix3().getNormalMatrix(matrix); - - for (const { position, normal, uv } of model.vertices) { - const p = vec3_to_threejs(position).applyMatrix4(matrix); - - const local_n = normal ? vec3_to_threejs(normal) : new Vector3(0, 1, 0); - const n = local_n.applyMatrix3(normal_matrix); - - const tuv = uv || DEFAULT_UV; - - this.builder.add_vertex(p, n, tuv); - } - - let current_mat_idx: number | undefined; - let current_src_alpha: number | undefined; - let current_dst_alpha: number | undefined; - - for (const mesh of model.meshes) { - const start_index_count = this.builder.index_count; - let clockwise = false; - - for (let j = 2; j < mesh.indices.length; ++j) { - const a = index_offset + mesh.indices[j - 2]; - const b = index_offset + mesh.indices[j - 1]; - const c = index_offset + mesh.indices[j]; - const pa = this.builder.get_position(a); - const pb = this.builder.get_position(b); - const pc = this.builder.get_position(c); - const na = this.builder.get_normal(a); - const nb = this.builder.get_normal(b); - const nc = this.builder.get_normal(c); - - // Calculate a surface normal and reverse the vertex winding if at least 2 of the - // vertex normals point in the opposite direction. This hack fixes the winding for - // most models. - const normal = pb.clone().sub(pa).cross(pc.clone().sub(pa)); - - if (clockwise) { - normal.negate(); - } - - const opposite_count = - (normal.dot(na) < 0 ? 1 : 0) + - (normal.dot(nb) < 0 ? 1 : 0) + - (normal.dot(nc) < 0 ? 1 : 0); - - if (opposite_count >= 2) { - clockwise = !clockwise; - } - - if (clockwise) { - this.builder.add_index(b); - this.builder.add_index(a); - this.builder.add_index(c); - } else { - this.builder.add_index(a); - this.builder.add_index(b); - this.builder.add_index(c); - } - - clockwise = !clockwise; - } - - if (mesh.material_properties.texture_id != undefined) { - current_mat_idx = mesh.material_properties.texture_id; - } - - if (mesh.material_properties.src_alpha != undefined) { - current_src_alpha = mesh.material_properties.src_alpha; - } - - if (mesh.material_properties.dst_alpha != undefined) { - current_dst_alpha = mesh.material_properties.dst_alpha; - } - - this.builder.add_group( - start_index_count, - this.builder.index_count - start_index_count, - current_mat_idx, - true, - current_src_alpha !== 4 || current_dst_alpha !== 5, - ); - } - } -} diff --git a/src/core/rendering/conversion/ninja_textures.ts b/src/core/rendering/conversion/ninja_textures.ts deleted file mode 100644 index 5163305d..00000000 --- a/src/core/rendering/conversion/ninja_textures.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { - CompressedPixelFormat, - CompressedTexture, - LinearFilter, - MirroredRepeatWrapping, - RGBA_S3TC_DXT1_Format, - RGBA_S3TC_DXT3_Format, - Texture as ThreeTexture, -} from "three"; -import { Xvm, XvrTexture } from "../../data_formats/parsing/ninja/texture"; - -export function xvm_to_three_textures(xvm: Xvm): ThreeTexture[] { - return xvm.textures.map(xvr_texture_to_three_texture); -} - -export function xvr_texture_to_three_texture(xvr: XvrTexture): ThreeTexture { - let format: CompressedPixelFormat; - let data_size: number; - - // Ignore mipmaps. - switch (xvr.format[1]) { - case 6: - format = RGBA_S3TC_DXT1_Format; - data_size = (xvr.width * xvr.height) / 2; - break; - case 7: - format = RGBA_S3TC_DXT3_Format; - data_size = xvr.width * xvr.height; - break; - default: - throw new Error(`Format ${xvr.format.join(", ")} not supported.`); - } - - const texture_3js = new CompressedTexture( - [ - { - data: new Uint8Array(xvr.data, 0, data_size) as any, - width: xvr.width, - height: xvr.height, - }, - ], - xvr.width, - xvr.height, - format, - ); - - texture_3js.minFilter = LinearFilter; - texture_3js.wrapS = MirroredRepeatWrapping; - texture_3js.wrapT = MirroredRepeatWrapping; - texture_3js.needsUpdate = true; - - return texture_3js; -} diff --git a/src/core/sequential.test.ts b/src/core/sequential.test.ts deleted file mode 100644 index 6fc1a874..00000000 --- a/src/core/sequential.test.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { sequential } from "./sequential"; - -test("sequential functions should run sequentially", () => { - let time = 10; - const f = sequential(() => new Promise(resolve => setTimeout(resolve, time--))); - - const resolved_values: number[] = []; - let last_promise!: Promise; - - for (let i = 0; i < 10; i++) { - last_promise = f().then(() => resolved_values.push(i)); - } - - expect(resolved_values).toEqual([]); - - return last_promise.then(() => expect(resolved_values).toEqual([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])); -}); diff --git a/src/core/sequential.ts b/src/core/sequential.ts deleted file mode 100644 index 16bac21d..00000000 --- a/src/core/sequential.ts +++ /dev/null @@ -1,37 +0,0 @@ -/** - * Takes a function f that returns a promise and returns a function that forwards calls to f - * sequentially. So f will never be called while a call to f is underway. - */ -export function sequential Promise>(f: F): F { - const queue: { - args: any[]; - resolve: (value: any) => void; - reject: (reason: any) => void; - }[] = []; - - async function process_queue(): Promise { - while (queue.length) { - const { args, resolve, reject } = queue[0]; - - try { - resolve(await f(...args)); - } catch (e) { - reject(e); - } finally { - queue.shift(); - } - } - } - - function g(...args: any[]): Promise { - const promise = new Promise((resolve, reject) => queue.push({ args, resolve, reject })); - - if (queue.length === 1) { - process_queue(); - } - - return promise; - } - - return g as F; -} diff --git a/src/core/stores/DisposableServerMap.ts b/src/core/stores/DisposableServerMap.ts deleted file mode 100644 index 8cf15805..00000000 --- a/src/core/stores/DisposableServerMap.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { Server } from "../model"; -import { GuiStore } from "./GuiStore"; -import { ServerMap } from "./ServerMap"; -import { Disposable } from "../observable/Disposable"; -import { Disposer } from "../observable/Disposer"; - -export class DisposableServerMap extends ServerMap implements Disposable { - private readonly disposer = new Disposer(); - - constructor(gui_store: GuiStore, get_value: (server: Server) => Promise) { - super(gui_store, async server => { - const value = await get_value(server); - - if (this.disposer.disposed) { - value.dispose(); - } else { - this.disposer.add(value); - } - - return value; - }); - } - - dispose(): void { - this.disposer.dispose(); - } -} diff --git a/src/core/stores/GuiStore.ts b/src/core/stores/GuiStore.ts deleted file mode 100644 index acd8bee4..00000000 --- a/src/core/stores/GuiStore.ts +++ /dev/null @@ -1,208 +0,0 @@ -import { WritableProperty } from "../observable/property/WritableProperty"; -import { Disposable } from "../observable/Disposable"; -import { property } from "../observable"; -import { Property } from "../observable/property/Property"; -import { Server } from "../model"; -import { Store } from "./Store"; -import { disposable_listener } from "../gui/dom"; -import { assert, map_get_or_put } from "../util"; -import { Observable } from "../observable/Observable"; - -export enum GuiTool { - Viewer, - QuestEditor, - HuntOptimizer, -} - -const GUI_TOOL_TO_STRING = new Map([ - [GuiTool.Viewer, "viewer"], - [GuiTool.QuestEditor, "quest_editor"], - [GuiTool.HuntOptimizer, "hunt_optimizer"], -]); -const STRING_TO_GUI_TOOL = new Map([...GUI_TOOL_TO_STRING.entries()].map(([k, v]) => [v, k])); - -export class GuiStore extends Store { - private readonly _tool: WritableProperty = property(GuiTool.Viewer); - private readonly _path: WritableProperty = property(""); - - /** - * Path prefixed with tool path. - */ - private get full_path(): string { - return `/${gui_tool_to_string(this.tool.val)}${this.path.val}`; - } - - /** - * Maps full paths to maps of parameters and their values. In other words we keep track of - * parameter values per {@link full_path}. - */ - private readonly parameters: Map> = new Map(); - private readonly _server: WritableProperty = property(Server.Ephinea); - private readonly global_keydown_handlers = new Map void>(); - private readonly features: Set = new Set(); - - readonly tool: Property = this._tool; - readonly path: Property = this._path; - readonly server: Property = this._server; - - constructor() { - super(); - - const url = window.location.hash.slice(1); - const [full_path, params_str] = url.split("?"); - const second_slash_idx = full_path.indexOf("/", 1); - const tool_str = - second_slash_idx === -1 ? full_path.slice(1) : full_path.slice(1, second_slash_idx); - - const tool = string_to_gui_tool(tool_str) ?? GuiTool.Viewer; - const path = second_slash_idx === -1 ? "" : full_path.slice(second_slash_idx); - - if (params_str) { - const params = new Map(); - - for (const [param, value] of params_str.split("&").map(p => p.split("=", 2))) { - if (param === "features") { - for (const feature of value.split(",")) { - this.features.add(feature); - } - } else { - params.set(param, value); - } - } - - this.parameters.set(full_path, params); - } - - this.disposables(disposable_listener(window, "keydown", this.dispatch_global_keydown)); - - this.set_tool(tool, path); - } - - set_tool(tool: GuiTool, path: string = ""): void { - this._path.val = path; - this._tool.val = tool; - this.update_location(); - } - - /** - * Updates the path to `path_prefix` if the current path doesn't start with `path_prefix`. - */ - set_path_prefix(path_prefix: string): void { - if (!this.path.val.startsWith(path_prefix)) { - this._path.val = path_prefix; - this.update_location(); - } - } - - get_parameter(tool: GuiTool, path: string, parameter: string): string | undefined { - return map_get_or_put( - this.parameters, - `/${gui_tool_to_string(tool)}${path}`, - () => new Map(), - ).get(parameter); - } - - bind_parameter( - tool: GuiTool, - path: string, - parameter: string, - observable: Observable, - ): Disposable { - assert( - parameter !== "features", - "features can't be bound because it is a global parameter.", - ); - - const params: Map = map_get_or_put( - this.parameters, - this.full_path, - () => new Map(), - ); - - return observable.observe(({ value }) => { - if (this.tool.val !== tool || this.path.val !== path) return; - - if (value === undefined) { - params.delete(parameter); - } else { - params.set(parameter, value); - } - - this.update_location(); - }); - } - - private update_location(): void { - const params_array: [string, string][] = []; - const params = this.parameters.get(this.full_path); - - if (params) { - for (const [param, value] of params.entries()) { - params_array.push([param, value]); - } - } - - if (this.features.size) { - params_array.push(["features", [...this.features].join(",")]); - } - - const param_str = - params_array.length === 0 ? "" : "?" + params_array.map(kv => kv.join("=")).join("&"); - - window.location.hash = `#${this.full_path}${param_str}`; - } - - on_global_keydown( - tool: GuiTool, - binding: string, - handler: (e: KeyboardEvent) => void, - ): Disposable { - const key = this.handler_key(tool, binding); - this.global_keydown_handlers.set(key, handler); - - return { - dispose: () => { - this.global_keydown_handlers.delete(key); - }, - }; - } - - feature_active(feature: string): boolean { - return this.features.has(feature); - } - - private dispatch_global_keydown = (e: KeyboardEvent): void => { - const binding_parts: string[] = []; - if (e.ctrlKey) binding_parts.push("Ctrl"); - if (e.shiftKey) binding_parts.push("Shift"); - if (e.altKey) binding_parts.push("Alt"); - binding_parts.push(e.key.toUpperCase()); - - const binding = binding_parts.join("-"); - - const handler = this.global_keydown_handlers.get(this.handler_key(this.tool.val, binding)); - - if (handler) { - e.preventDefault(); - handler(e); - } - }; - - private handler_key(tool: GuiTool, binding: string): string { - return `${(GuiTool as any)[tool]} -> ${binding}`; - } -} - -function string_to_gui_tool(tool: string): GuiTool | undefined { - return STRING_TO_GUI_TOOL.get(tool); -} - -function gui_tool_to_string(tool: GuiTool): string { - const str = GUI_TOOL_TO_STRING.get(tool); - - if (str) { - return str; - } else { - throw new Error(`To string not implemented for ${(GuiTool as any)[tool]}.`); - } -} diff --git a/src/core/stores/ItemTypeStore.ts b/src/core/stores/ItemTypeStore.ts deleted file mode 100644 index 8541047e..00000000 --- a/src/core/stores/ItemTypeStore.ts +++ /dev/null @@ -1,105 +0,0 @@ -import { - ArmorItemType, - ItemType, - ShieldItemType, - ToolItemType, - UnitItemType, - WeaponItemType, -} from "../model/items"; -import { Server } from "../model"; -import { ItemTypeDto } from "../dto/ItemTypeDto"; -import { GuiStore } from "./GuiStore"; -import { HttpClient } from "../HttpClient"; -import { DisposableServerMap } from "./DisposableServerMap"; -import { Store } from "./Store"; - -export function create_item_type_stores( - http_client: HttpClient, - gui_store: GuiStore, -): DisposableServerMap { - return new DisposableServerMap(gui_store, create_loader(http_client)); -} - -export class ItemTypeStore extends Store { - readonly item_types: ItemType[]; - - constructor(item_types: ItemType[], private readonly id_to_item_type: ItemType[]) { - super(); - this.item_types = item_types; - } - - get_by_id = (id: number): ItemType | undefined => { - return this.id_to_item_type[id]; - }; -} - -function create_loader(http_client: HttpClient): (server: Server) => Promise { - return async server => { - const data: ItemTypeDto[] = await http_client - .get(`/item_types.${Server[server].toLowerCase()}.json`) - .json(); - const item_types: ItemType[] = []; - const id_to_item_type: ItemType[] = []; - - for (const item_type_dto of data) { - let item_type: ItemType; - - switch (item_type_dto.class) { - case "weapon": - item_type = new WeaponItemType( - item_type_dto.id, - item_type_dto.name, - item_type_dto.min_atp, - item_type_dto.max_atp, - item_type_dto.ata, - item_type_dto.max_grind, - item_type_dto.required_atp, - ); - break; - case "armor": - item_type = new ArmorItemType( - item_type_dto.id, - item_type_dto.name, - item_type_dto.atp, - item_type_dto.ata, - item_type_dto.min_evp, - item_type_dto.max_evp, - item_type_dto.min_dfp, - item_type_dto.max_dfp, - item_type_dto.mst, - item_type_dto.hp, - item_type_dto.lck, - ); - break; - case "shield": - item_type = new ShieldItemType( - item_type_dto.id, - item_type_dto.name, - item_type_dto.atp, - item_type_dto.ata, - item_type_dto.min_evp, - item_type_dto.max_evp, - item_type_dto.min_dfp, - item_type_dto.max_dfp, - item_type_dto.mst, - item_type_dto.hp, - item_type_dto.lck, - ); - break; - case "unit": - item_type = new UnitItemType(item_type_dto.id, item_type_dto.name); - break; - case "tool": - item_type = new ToolItemType(item_type_dto.id, item_type_dto.name); - break; - default: - continue; - } - - id_to_item_type[item_type.id] = item_type; - item_types.push(item_type); - } - - return new ItemTypeStore(item_types, id_to_item_type); - }; -} diff --git a/src/core/stores/ServerMap.ts b/src/core/stores/ServerMap.ts deleted file mode 100644 index a25f36e0..00000000 --- a/src/core/stores/ServerMap.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { Server } from "../model"; -import { Property } from "../observable/property/Property"; -import { memoize } from "lodash"; -import { GuiStore } from "./GuiStore"; - -/** - * Map with a lazily-loaded, guaranteed value per server. - */ -export class ServerMap { - /** - * The value for the current server as set in the {@link GuiStore}. - */ - get current(): Property> { - if (!this._current) { - this._current = this.gui_store.server.map(server => this.get(server)); - } - - return this._current; - } - - private readonly get_value: (server: Server) => Promise; - private _current?: Property>; - - constructor(private readonly gui_store: GuiStore, get_value: (server: Server) => Promise) { - this.get_value = memoize(get_value); - } - - get(server: Server): Promise { - return this.get_value(server); - } -} diff --git a/src/core/stores/Store.ts b/src/core/stores/Store.ts deleted file mode 100644 index d67e5721..00000000 --- a/src/core/stores/Store.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Disposable } from "../observable/Disposable"; -import { Disposer } from "../observable/Disposer"; - -export abstract class Store implements Disposable { - private readonly disposer = new Disposer(); - - protected get disposed(): boolean { - return this.disposer.disposed; - } - - dispose(): void { - this.disposer.dispose(); - } - - protected disposable(disposable: T): T { - return this.disposer.add(disposable); - } - - protected disposables(...disposables: Disposable[]): void { - this.disposer.add_all(...disposables); - } -} diff --git a/src/core/undo/Action.ts b/src/core/undo/Action.ts deleted file mode 100644 index 5b429ffe..00000000 --- a/src/core/undo/Action.ts +++ /dev/null @@ -1,5 +0,0 @@ -export interface Action { - readonly description: string; - readonly undo: () => void; - readonly redo: () => void; -} diff --git a/src/core/undo/SimpleUndo.ts b/src/core/undo/SimpleUndo.ts deleted file mode 100644 index f39c50dc..00000000 --- a/src/core/undo/SimpleUndo.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { Undo } from "./Undo"; -import { Action } from "./Action"; -import { Property } from "../observable/property/Property"; -import { map, property } from "../observable"; -import { undo_manager } from "./UndoManager"; -import { WritableProperty } from "../observable/property/WritableProperty"; - -/** - * Simply contains a single action. `can_undo` and `can_redo` must be managed manually. - */ -export class SimpleUndo implements Undo { - readonly action: WritableProperty; - - constructor(description: string, undo: () => void, redo: () => void) { - this.action = property({ description, undo, redo }); - - this.first_undo = map( - (action, can_undo) => (can_undo ? action : undefined), - this.action, - this.can_undo, - ); - - this.first_redo = map( - (action, can_redo) => (can_redo ? action : undefined), - this.action, - this.can_redo, - ); - } - - make_current(): void { - undo_manager.current.val = this; - } - - readonly can_undo: WritableProperty = property(false); - - readonly can_redo: WritableProperty = property(false); - - readonly first_undo: Property; - - readonly first_redo: Property; - - undo(): boolean { - if (this.can_undo) { - this.action.val.undo(); - return true; - } else { - return false; - } - } - - redo(): boolean { - if (this.can_redo) { - this.action.val.redo(); - return true; - } else { - return false; - } - } - - reset(): void { - this.can_undo.val = false; - this.can_redo.val = false; - } -} diff --git a/src/core/undo/Undo.ts b/src/core/undo/Undo.ts deleted file mode 100644 index 5426053a..00000000 --- a/src/core/undo/Undo.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { Property } from "../observable/property/Property"; -import { Action } from "./Action"; - -export interface Undo { - make_current(): void; - - readonly can_undo: Property; - - readonly can_redo: Property; - - /** - * The first action that will be undone when calling undo(). - */ - readonly first_undo: Property; - - /** - * The first action that will be redone when calling redo(). - */ - readonly first_redo: Property; - - undo(): boolean; - - redo(): boolean; - - reset(): void; -} diff --git a/src/core/undo/UndoManager.ts b/src/core/undo/UndoManager.ts deleted file mode 100644 index 0bfd09d9..00000000 --- a/src/core/undo/UndoManager.ts +++ /dev/null @@ -1,58 +0,0 @@ -import { property } from "../observable"; -import { Undo } from "./Undo"; -import { Property } from "../observable/property/Property"; -import { Action } from "./Action"; -import { WritableProperty } from "../observable/property/WritableProperty"; - -class NoopUndo implements Undo { - readonly can_redo = property(false); - readonly can_undo = property(false); - readonly first_redo = property(undefined); - readonly first_undo = property(undefined); - - constructor(private readonly manager: UndoManager) {} - - make_current(): void { - this.manager.current.val = this; - } - - redo(): boolean { - return false; - } - - reset(): void { - // Do nothing. - } - - undo(): boolean { - return false; - } -} - -export class UndoManager { - private readonly noop_undo = new NoopUndo(this); - - readonly current: WritableProperty = property(this.noop_undo); - - readonly can_undo: Property = this.current.flat_map(c => c.can_undo); - - readonly can_redo: Property = this.current.flat_map(c => c.can_redo); - - readonly first_undo: Property = this.current.flat_map(c => c.first_undo); - - readonly first_redo: Property = this.current.flat_map(c => c.first_redo); - - undo(): boolean { - return this.current.val.undo(); - } - - redo(): boolean { - return this.current.val.redo(); - } - - make_noop_current(): void { - this.current.val = this.noop_undo; - } -} - -export const undo_manager = new UndoManager(); diff --git a/src/core/undo/UndoStack.test.ts b/src/core/undo/UndoStack.test.ts deleted file mode 100644 index 87c9807a..00000000 --- a/src/core/undo/UndoStack.test.ts +++ /dev/null @@ -1,71 +0,0 @@ -import { UndoStack } from "./UndoStack"; - -test("simple properties and invariants", () => { - const stack = new UndoStack(); - - expect(stack.can_undo.val).toBe(false); - expect(stack.can_redo.val).toBe(false); - - /* eslint-disable */ - stack.push({ description: "", undo: () => {}, redo: () => {} }); - stack.push({ description: "", undo: () => {}, redo: () => {} }); - stack.push({ description: "", undo: () => {}, redo: () => {} }); - /* eslint-enable */ - - expect(stack.can_undo.val).toBe(true); - expect(stack.can_redo.val).toBe(false); - - stack.undo(); - - expect(stack.can_undo.val).toBe(true); - expect(stack.can_redo.val).toBe(true); - - stack.undo(); - stack.undo(); - - expect(stack.can_undo.val).toBe(false); - expect(stack.can_redo.val).toBe(true); -}); - -test("undo", () => { - const stack = new UndoStack(); - - // Pretend value started and 3 and we've set it to 7 and then 13. - let value = 13; - - stack.push({ description: "X", undo: () => (value = 3), redo: () => (value = 7) }); - stack.push({ description: "Y", undo: () => (value = 7), redo: () => (value = 13) }); - - expect(stack.undo()).toBe(true); - expect(value).toBe(7); - - expect(stack.undo()).toBe(true); - expect(value).toBe(3); - - expect(stack.undo()).toBe(false); - expect(value).toBe(3); -}); - -test("redo", () => { - const stack = new UndoStack(); - - // Pretend value started and 3 and we've set it to 7 and then 13. - let value = 13; - - stack.push({ description: "X", undo: () => (value = 3), redo: () => (value = 7) }); - stack.push({ description: "Y", undo: () => (value = 7), redo: () => (value = 13) }); - - stack.undo(); - stack.undo(); - - expect(value).toBe(3); - - expect(stack.redo()).toBe(true); - expect(value).toBe(7); - - expect(stack.redo()).toBe(true); - expect(value).toBe(13); - - expect(stack.redo()).toBe(false); - expect(value).toBe(13); -}); diff --git a/src/core/undo/UndoStack.ts b/src/core/undo/UndoStack.ts deleted file mode 100644 index 6de42524..00000000 --- a/src/core/undo/UndoStack.ts +++ /dev/null @@ -1,96 +0,0 @@ -import { Undo } from "./Undo"; -import { WritableListProperty } from "../observable/property/list/WritableListProperty"; -import { Action } from "./Action"; -import { list_property, map, property } from "../observable"; -import { undo_manager } from "./UndoManager"; -import { LogManager } from "../logging"; - -const logger = LogManager.get("core/undo/UndoStack"); - -/** - * Full-fledged linear undo/redo implementation. - */ -export class UndoStack implements Undo { - private readonly stack: WritableListProperty = list_property(); - - /** - * The index where new actions are inserted. - */ - private readonly index = property(0); - - readonly can_undo = this.index.map(index => index > 0); - - readonly can_redo = map((stack, index) => index < stack.length, this.stack, this.index); - - readonly first_undo = this.can_undo.map(can_undo => { - return can_undo ? this.stack.get(this.index.val - 1) : undefined; - }); - - readonly first_redo = this.can_redo.map(can_redo => { - return can_redo ? this.stack.get(this.index.val) : undefined; - }); - - private undoing_or_redoing = false; - - make_current(): void { - undo_manager.current.val = this; - } - - push(action: Action): Action { - if (!this.undoing_or_redoing) { - this.stack.splice(this.index.val, Infinity, action); - this.index.update(i => i + 1); - } - - return action; - } - - /** - * Pop an action off the stack without undoing. - */ - pop(): Action | undefined { - this.index.update(i => i - 1); - return this.stack.splice(this.index.val, 1)[0]; - } - - undo(): boolean { - if (this.can_undo.val && !this.undoing_or_redoing) { - try { - this.undoing_or_redoing = true; - this.index.update(i => i - 1); - this.stack.get(this.index.val).undo(); - } catch (e) { - logger.warn("Error while undoing action.", e); - } finally { - this.undoing_or_redoing = false; - } - - return true; - } else { - return false; - } - } - - redo(): boolean { - if (this.can_redo.val && !this.undoing_or_redoing) { - try { - this.undoing_or_redoing = true; - this.stack.get(this.index.val).redo(); - this.index.update(i => i + 1); - } catch (e) { - logger.warn("Error while redoing action.", e); - } finally { - this.undoing_or_redoing = false; - } - - return true; - } else { - return false; - } - } - - reset(): void { - this.stack.clear(); - this.index.val = 0; - } -} diff --git a/src/core/util.test.ts b/src/core/util.test.ts deleted file mode 100644 index 3ab53266..00000000 --- a/src/core/util.test.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { try_finally } from "./util"; - -test("try_finally with synchronous function", () => { - let after_called = false; - - const value = try_finally( - () => 999, - () => (after_called = true), - ); - - expect(value).toBe(999); - expect(after_called).toBe(true); -}); - -test("try_finally with asynchronous function", async () => { - let after_called = false; - - const value = await try_finally( - async () => 567, - () => (after_called = true), - ); - - expect(value).toBe(567); - expect(after_called).toBe(true); -}); - -test("try_finally with promise-returning function", async () => { - let after_called = false; - - const value = await try_finally( - () => new Promise(resolve => setTimeout(() => resolve(849), 10)), - () => (after_called = true), - ); - - expect(value).toBe(849); - expect(after_called).toBe(true); -}); diff --git a/src/core/util.ts b/src/core/util.ts deleted file mode 100644 index baa4c31b..00000000 --- a/src/core/util.ts +++ /dev/null @@ -1,177 +0,0 @@ -export function arrays_equal( - a: readonly T[], - b: readonly T[], - equal: (element_a: T, element_b: T) => boolean = (a, b) => a === b, -): boolean { - const len = a.length; - - if (len !== b.length) return false; - - for (let i = 0; i < len; i++) { - if (!equal(a[i], b[i])) return false; - } - - return true; -} - -/** - * Removes 0 or more elements from `array`. - * - * @returns The number of removed elements. - */ -export function array_remove(array: T[], ...elements: T[]): number { - let count = 0; - - for (const element of elements) { - const index = array.indexOf(element); - - if (index !== -1) { - array.splice(index, 1); - count++; - } - } - - return count; -} - -export function array_buffers_equal(a: ArrayBuffer, b: ArrayBuffer): boolean { - if (a.byteLength !== b.byteLength) return false; - - const a_arr = new Uint8Array(a); - const b_arr = new Uint8Array(b); - - for (let i = 0; i < a_arr.length; i++) { - if (a_arr[i] !== b_arr[i]) return false; - } - - return true; -} - -export function map_get_or_put(map: Map, key: K, get_default: () => V): V { - let value = map.get(key); - - if (value === undefined) { - value = get_default(); - map.set(key, value); - } - - return value; -} - -/** - * Returns the given filename without the file extension. - */ -export function basename(filename: string): string { - const dot_idx = filename.lastIndexOf("."); - - // < 0 means filename doesn't contain any "." - // also skip index 0 because that would mean the basename is empty - if (dot_idx > 1) { - return filename.slice(0, dot_idx); - } - - return filename; -} - -export function filename_extension(filename: string): string { - const dot_idx = filename.lastIndexOf("."); - - // < 0 means filename doesn't contain any "." - // also skip index 0 because that would mean the basename is empty - if (dot_idx > 1) { - return filename.slice(dot_idx + 1); - } - - return filename; -} - -export function assert(condition: unknown, msg?: string | (() => string)): asserts condition { - if (!condition) { - let full_msg = "Assertion Error"; - - if (msg) { - full_msg += ": " + (msg instanceof Function ? msg() : msg); - } - - throw new Error(full_msg); - } -} - -/** - * Asserts that `value` is not null and not undefined. - */ -export function defined(value: T | undefined | null, name: string): asserts value is T { - assert(value != undefined, () => `${name} should not be null or undefined (was ${value}).`); -} - -export function require_finite(value: unknown, name: string): asserts value is number { - assert(Number.isFinite(value), () => `${name} should be a finite number (was ${value}).`); -} - -export function require_number(value: unknown, name: string): asserts value is number { - assert(typeof value === "number", () => `${name} should be a number (was ${value}).`); -} - -export function require_integer(value: unknown, name: string): asserts value is number { - assert(Number.isInteger(value), () => `${name} should be an integer (was ${value}).`); -} - -export function require_non_negative_integer( - value: unknown, - name: string, -): asserts value is number { - assert( - Number.isInteger(value) && (value as any) >= 0, - () => `${name} should be a non-negative integer (was ${value}).`, - ); -} - -export function require_array(value: readonly T[], name: string): void { - assert(Array.isArray(value), () => `${name} should be an array (was ${value}).`); -} - -export function number_to_hex_string(num: number, min_len: number = 8): string { - return num.toString(16).padStart(min_len, "0"); -} - -export function browser_supports_webassembly(): boolean { - return typeof window === "object" && typeof window.WebAssembly === "object"; -} - -/** - * @returns true iff the given value implements PromiseLike. - */ -export function is_promise_like(value?: T | PromiseLike): value is PromiseLike { - return value != undefined && typeof (value as any).then === "function"; -} - -/** - * @returns true iff the given value implements Promise. - */ -export function is_promise(value?: T | Promise): value is Promise { - return ( - value != undefined && - typeof (value as any).then === "function" && - typeof (value as any).catch === "function" && - typeof (value as any).finally === "function" - ); -} - -export function try_finally(f: () => T, after: () => void): T { - let return_promise = false; - - try { - const r = f(); - - if (is_promise(r)) { - return_promise = true; - return (r.finally(() => after()) as unknown) as T; - } else { - return r; - } - } finally { - if (!return_promise) { - after(); - } - } -} diff --git a/src/dps_calc/stores/DpsCalcStore.ts b/src/dps_calc/stores/DpsCalcStore.ts deleted file mode 100644 index 9cedde2a..00000000 --- a/src/dps_calc/stores/DpsCalcStore.ts +++ /dev/null @@ -1,189 +0,0 @@ -import { ArmorItemType, ShieldItemType, WeaponItem, WeaponItemType } from "../../core/model/items"; -import { ItemTypeStore } from "../../core/stores/ItemTypeStore"; -import { Property } from "../../core/observable/property/Property"; -import { list_property, map, property } from "../../core/observable"; -import { WritableProperty } from "../../core/observable/property/WritableProperty"; -import { ListProperty } from "../../core/observable/property/list/ListProperty"; -import { WritableListProperty } from "../../core/observable/property/list/WritableListProperty"; -import { sequential } from "../../core/sequential"; -import { Disposable } from "../../core/observable/Disposable"; -import { ServerMap } from "../../core/stores/ServerMap"; - -const NORMAL_DAMAGE_FACTOR = 0.2 * 0.9; -const HEAVY_DAMAGE_FACTOR = NORMAL_DAMAGE_FACTOR * 1.89; -// const SAC_DAMAGE_FACTOR = NORMAL_DAMAGE_FACTOR * 3.32; -// const VJAYA_DAMAGE_FACTOR = NORMAL_DAMAGE_FACTOR * 5.56; -// const CRIT_FACTOR = 1.5; - -export class Weapon { - readonly shifta_atp: Property = this.store.shifta_factor.map(shifta_factor => { - if (this.item.type.min_atp === this.item.type.max_atp) { - return 0; - } else { - return this.item.type.max_atp * shifta_factor; - } - }); - - readonly min_atp: Property = this.item.grind_atp.map( - grind_atp => this.item.type.min_atp + grind_atp, - ); - - readonly max_atp: Property = map( - (grind_atp, shifta_atp) => this.item.type.max_atp + grind_atp + shifta_atp, - this.item.grind_atp, - this.shifta_atp, - ); - - readonly final_min_atp: Property = map( - (min_atp, armor_atp, shield_atp, base_atp, base_shifta_atp) => - min_atp + armor_atp + shield_atp + base_atp + base_shifta_atp, - this.min_atp, - this.store.armor_atp, - this.store.shield_atp, - this.store.base_atp, - this.store.base_shifta_atp, - ); - - readonly final_max_atp: Property = map( - (max_atp, armor_atp, shield_atp, base_atp, base_shifta_atp) => - max_atp + armor_atp + shield_atp + base_atp + base_shifta_atp, - this.max_atp, - this.store.armor_atp, - this.store.shield_atp, - this.store.base_atp, - this.store.base_shifta_atp, - ); - - readonly min_normal_damage: Property = map( - (final_min_atp, enemy_dfp) => (final_min_atp - enemy_dfp) * NORMAL_DAMAGE_FACTOR, - this.final_min_atp, - this.store.enemy_dfp, - ); - - readonly max_normal_damage: Property = map( - (final_max_atp, enemy_dfp) => (final_max_atp - enemy_dfp) * NORMAL_DAMAGE_FACTOR, - this.final_max_atp, - this.store.enemy_dfp, - ); - - readonly avg_normal_damage: Property = map( - (min_normal_damage, max_normal_damage) => (min_normal_damage + max_normal_damage) / 2, - this.min_normal_damage, - this.max_normal_damage, - ); - - readonly min_heavy_damage: Property = map( - (final_min_atp, enemy_dfp) => (final_min_atp - enemy_dfp) * HEAVY_DAMAGE_FACTOR, - this.final_min_atp, - this.store.enemy_dfp, - ); - - readonly max_heavy_damage: Property = map( - (final_max_atp, enemy_dfp) => (final_max_atp - enemy_dfp) * HEAVY_DAMAGE_FACTOR, - this.final_max_atp, - this.store.enemy_dfp, - ); - - readonly avg_heavy_damage: Property = map( - (min_heavy_damage, max_heavy_damage) => (min_heavy_damage + max_heavy_damage) / 2, - this.min_heavy_damage, - this.max_heavy_damage, - ); - - constructor(private readonly store: DpsCalcStore, readonly item: WeaponItem) {} -} - -export class DpsCalcStore implements Disposable { - private readonly _weapon_types: WritableListProperty = list_property(); - private readonly _armor_types: WritableListProperty = list_property(); - private readonly _shield_types: WritableListProperty = list_property(); - private readonly _char_atp = property(0); - private readonly _mag_pow = property(0); - private readonly _shifta_lvl = property(0); - private readonly _weapons: WritableListProperty = list_property(); - private readonly _armor_type: WritableProperty = property(undefined); - private readonly _shield_type: WritableProperty = property( - undefined, - ); - private readonly _enemy_dfp = property(0); - private readonly disposable: Disposable; - - // - // Public Properties - // - - readonly weapon_types: ListProperty = this._weapon_types; - readonly armor_types: ListProperty = this._armor_types; - readonly shield_types: ListProperty = this._shield_types; - - // - // Character Details - // - - readonly char_atp: Property = this._char_atp; - readonly mag_pow: Property = this._mag_pow; - - readonly armor_atp: Property = this._armor_type.map(armor_type => - armor_type ? armor_type.atp : 0, - ); - - readonly shield_atp: Property = this._shield_type.map(shield_type => - shield_type ? shield_type.atp : 0, - ); - - readonly shifta_lvl: Property = this._shifta_lvl; - readonly base_atp: Property = map( - (char_atp, mag_pow) => char_atp + 2 * mag_pow, - this.char_atp, - this.mag_pow, - ); - readonly shifta_factor: Property = this.shifta_lvl.map(shifta_lvl => - shifta_lvl ? 0.013 * (shifta_lvl - 1) + 0.1 : 0, - ); - readonly base_shifta_atp: Property = map( - (base_atp, shifta_factor) => base_atp * shifta_factor, - this.base_atp, - this.shifta_factor, - ); - readonly weapons: ListProperty = this._weapons; - readonly armor_type: Property = this._armor_type; - readonly shield_type: Property = this._shield_type; - - // - // Enemy Details - // - - readonly enemy_dfp: Property = this._enemy_dfp; - - constructor(item_type_stores: ServerMap) { - this.disposable = item_type_stores.current.observe( - sequential(async ({ value: item_type_store }: { value: Promise }) => { - const weapon_types: WeaponItemType[] = []; - const armor_types: ArmorItemType[] = []; - const shield_types: ShieldItemType[] = []; - - for (const item_type of (await item_type_store).item_types) { - if (item_type instanceof WeaponItemType) { - weapon_types.push(item_type); - } else if (item_type instanceof ArmorItemType) { - armor_types.push(item_type); - } else if (item_type instanceof ShieldItemType) { - shield_types.push(item_type); - } - } - - this._weapon_types.val = weapon_types; - this._armor_types.val = armor_types; - this._shield_types.val = shield_types; - }), - ); - } - - dispose = (): void => { - this.disposable.dispose(); - }; - - add_weapon = (type: WeaponItemType): void => { - this._weapons.push(new Weapon(this, new WeaponItem(type))); - }; -} diff --git a/src/hunt_optimizer/dto/QuestDto.ts b/src/hunt_optimizer/dto/QuestDto.ts deleted file mode 100644 index e47ea385..00000000 --- a/src/hunt_optimizer/dto/QuestDto.ts +++ /dev/null @@ -1,6 +0,0 @@ -export type QuestDto = { - id: number; - name: string; - episode: 1 | 2 | 4; - enemy_counts: { [npc_type_code: string]: number }; -}; diff --git a/src/hunt_optimizer/dto/drops.ts b/src/hunt_optimizer/dto/drops.ts deleted file mode 100644 index afad91aa..00000000 --- a/src/hunt_optimizer/dto/drops.ts +++ /dev/null @@ -1,18 +0,0 @@ -export type EnemyDropDto = { - difficulty: string; - episode: number; - section_id: string; - enemy: string; - item_type_id: number; - drop_rate: number; - rare_rate: number; -}; - -export type BoxDropDto = { - difficulty: string; - episode: number; - section_id: string; - area_id: number; - item_type_id: number; - drop_rate: number; -}; diff --git a/src/hunt_optimizer/gui/HelpView.css b/src/hunt_optimizer/gui/HelpView.css deleted file mode 100644 index 163947b4..00000000 --- a/src/hunt_optimizer/gui/HelpView.css +++ /dev/null @@ -1,4 +0,0 @@ -.hunt_optimizer_HelpView p { - margin: 1em; - max-width: 600px; -} \ No newline at end of file diff --git a/src/hunt_optimizer/gui/HelpView.ts b/src/hunt_optimizer/gui/HelpView.ts deleted file mode 100644 index 67f1858e..00000000 --- a/src/hunt_optimizer/gui/HelpView.ts +++ /dev/null @@ -1,24 +0,0 @@ -import "./HelpView.css"; -import { div, p } from "../../core/gui/dom"; -import { ResizableView } from "../../core/gui/ResizableView"; - -export class HelpView extends ResizableView { - readonly element = div( - { className: "hunt_optimizer_HelpView" }, - p( - "Add some items with the combo box on the left to see the optimal combination of hunt methods on the right.", - ), - p( - 'At the moment a hunt method is simply a quest run-through. Partial quest run-throughs are coming. View the list of methods on the "Methods" tab. Each method takes a certain amount of time, which affects the optimization result. Make sure the times are correct for you.', - ), - p("Only enemy drops are considered. Box drops are coming."), - p( - "The optimal result is calculated using linear optimization. The optimizer takes into account rare enemies and the fact that pan arms can be split in two.", - ), - ); - - constructor() { - super(); - this.finalize_construction(HelpView); - } -} diff --git a/src/hunt_optimizer/gui/HuntOptimizerView.ts b/src/hunt_optimizer/gui/HuntOptimizerView.ts deleted file mode 100644 index 8b148d16..00000000 --- a/src/hunt_optimizer/gui/HuntOptimizerView.ts +++ /dev/null @@ -1,66 +0,0 @@ -import { TabContainer } from "../../core/gui/TabContainer"; -import { ServerMap } from "../../core/stores/ServerMap"; -import { HuntOptimizerStore } from "../stores/HuntOptimizerStore"; -import { HuntMethodStore } from "../stores/HuntMethodStore"; -import { GuiStore } from "../../core/stores/GuiStore"; -import { ResizableView } from "../../core/gui/ResizableView"; - -export class HuntOptimizerView extends ResizableView { - private readonly tab_container: TabContainer; - - get element(): HTMLElement { - return this.tab_container.element; - } - - constructor( - gui_store: GuiStore, - hunt_optimizer_stores: ServerMap, - hunt_method_stores: ServerMap, - ) { - super(); - - this.tab_container = this.add( - new TabContainer(gui_store, { - class: "hunt_optimizer_HuntOptimizerView", - tabs: [ - { - title: "Optimize", - key: "optimize", - path: "/optimize", - create_view: async () => { - return new (await import("./OptimizerView")).OptimizerView( - hunt_optimizer_stores, - ); - }, - }, - { - title: "Methods", - key: "methods", - path: "/methods", - create_view: async () => { - return new (await import("./MethodsView")).MethodsView( - gui_store, - hunt_method_stores, - ); - }, - }, - { - title: "Help", - key: "help", - path: "/help", - create_view: async () => { - return new (await import("./HelpView")).HelpView(); - }, - }, - ], - }), - ); - - this.finalize_construction(HuntOptimizerView); - } - - resize(width: number, height: number): void { - super.resize(width, height); - this.tab_container.resize(width, height); - } -} diff --git a/src/hunt_optimizer/gui/MethodsForEpisodeView.css b/src/hunt_optimizer/gui/MethodsForEpisodeView.css deleted file mode 100644 index d563e0d5..00000000 --- a/src/hunt_optimizer/gui/MethodsForEpisodeView.css +++ /dev/null @@ -1,4 +0,0 @@ -.hunt_optimizer_MethodsForEpisodeView_table { - width: 100%; - height: 100%; -} diff --git a/src/hunt_optimizer/gui/MethodsForEpisodeView.ts b/src/hunt_optimizer/gui/MethodsForEpisodeView.ts deleted file mode 100644 index 3d572af2..00000000 --- a/src/hunt_optimizer/gui/MethodsForEpisodeView.ts +++ /dev/null @@ -1,164 +0,0 @@ -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { HuntMethodModel } from "../model/HuntMethodModel"; -import { - ENEMY_NPC_TYPES, - npc_data, - NpcType, -} from "../../core/data_formats/parsing/quest/npc_types"; -import "./MethodsForEpisodeView.css"; -import { Disposer } from "../../core/observable/Disposer"; -import { DurationInput } from "../../core/gui/DurationInput"; -import { Disposable } from "../../core/observable/Disposable"; -import { SortDirection, Table } from "../../core/gui/Table"; -import { list_property } from "../../core/observable"; -import { ServerMap } from "../../core/stores/ServerMap"; -import { HuntMethodStore } from "../stores/HuntMethodStore"; -import { LogManager } from "../../core/logging"; -import { div } from "../../core/gui/dom"; -import { ResizableView } from "../../core/gui/ResizableView"; - -const logger = LogManager.get("hunt_optimizer/gui/MethodsForEpisodeView"); - -export class MethodsForEpisodeView extends ResizableView { - readonly element = div({ className: "hunt_optimizer_MethodsForEpisodeView" }); - - private readonly episode: Episode; - private readonly enemy_types: NpcType[]; - private hunt_methods_observer?: Disposable; - - constructor(hunt_method_stores: ServerMap, episode: Episode) { - super(); - - this.episode = episode; - - this.enemy_types = ENEMY_NPC_TYPES.filter(type => npc_data(type).episode === this.episode); - - const hunt_methods = list_property(); - - const table = this.add( - new Table({ - class: "hunt_optimizer_MethodsForEpisodeView_table", - values: hunt_methods, - sort: sort_columns => { - hunt_methods.sort((a, b) => { - for (const { column, direction } of sort_columns) { - let cmp = 0; - - switch (column.key) { - case "method": - cmp = a.name.localeCompare(b.name); - break; - - case "time": - cmp = a.time.val.as("minutes") - b.time.val.as("minutes"); - break; - - default: - { - const type = (NpcType as any)[column.key!]; - - if (type) { - cmp = - (a.enemy_counts.get(type) || 0) - - (b.enemy_counts.get(type) || 0); - } - } - break; - } - - if (cmp !== 0) { - return direction === SortDirection.Asc ? cmp : -cmp; - } - } - - return 0; - }); - }, - columns: [ - { - key: "method", - title: "Method", - fixed: true, - width: 250, - sortable: true, - render_cell(method: HuntMethodModel) { - return method.name; - }, - }, - { - key: "time", - title: "Time", - fixed: true, - width: 60, - input: true, - sortable: true, - render_cell(method: HuntMethodModel, disposer: Disposer) { - const time_input = disposer.add(new DurationInput(method.time.val)); - - disposer.add( - time_input.value.observe(({ value }) => - method.set_user_time(value), - ), - ); - - return time_input.element; - }, - }, - ...this.enemy_types.map(enemy_type => { - return { - key: NpcType[enemy_type], - title: npc_data(enemy_type).simple_name, - width: 90, - text_align: "right", - sortable: true, - render_cell(method: HuntMethodModel) { - const count = method.enemy_counts.get(enemy_type); - return count == undefined ? "" : count.toString(); - }, - }; - }), - ], - }), - ); - - this.element.append(table.element); - - this.disposables( - hunt_method_stores.current.observe( - async ({ value }) => { - try { - const hunt_method_store = await value; - - if (this.hunt_methods_observer) { - this.hunt_methods_observer.dispose(); - } - - this.hunt_methods_observer = hunt_method_store.methods.observe( - ({ value }) => { - hunt_methods.val = value.filter( - method => method.episode === this.episode, - ); - }, - { - call_now: true, - }, - ); - } catch (e) { - logger.error("Couldn't load hunt optimizer store.", e); - } - }, - { call_now: true }, - ), - ); - - this.finalize_construction(MethodsForEpisodeView); - } - - dispose(): void { - super.dispose(); - - if (this.hunt_methods_observer) { - this.hunt_methods_observer.dispose(); - } - } -} diff --git a/src/hunt_optimizer/gui/MethodsView.ts b/src/hunt_optimizer/gui/MethodsView.ts deleted file mode 100644 index d4e96fae..00000000 --- a/src/hunt_optimizer/gui/MethodsView.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { TabContainer } from "../../core/gui/TabContainer"; -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { MethodsForEpisodeView } from "./MethodsForEpisodeView"; -import { ServerMap } from "../../core/stores/ServerMap"; -import { HuntMethodStore } from "../stores/HuntMethodStore"; -import { GuiStore } from "../../core/stores/GuiStore"; - -export class MethodsView extends TabContainer { - constructor(gui_store: GuiStore, hunt_method_stores: ServerMap) { - super(gui_store, { - class: "hunt_optimizer_MethodsView", - tabs: [ - { - title: "Episode I", - key: "episode_1", - path: "/methods/episode_1", - create_view: async () => { - return new MethodsForEpisodeView(hunt_method_stores, Episode.I); - }, - }, - { - title: "Episode II", - key: "episode_2", - path: "/methods/episode_2", - create_view: async () => { - return new MethodsForEpisodeView(hunt_method_stores, Episode.II); - }, - }, - { - title: "Episode IV", - key: "episode_4", - path: "/methods/episode_4", - create_view: async () => { - return new MethodsForEpisodeView(hunt_method_stores, Episode.IV); - }, - }, - ], - }); - - this.finalize_construction(MethodsView); - } -} diff --git a/src/hunt_optimizer/gui/OptimizationResultView.css b/src/hunt_optimizer/gui/OptimizationResultView.css deleted file mode 100644 index 3d1717e8..00000000 --- a/src/hunt_optimizer/gui/OptimizationResultView.css +++ /dev/null @@ -1,10 +0,0 @@ -.hunt_optimizer_OptimizationResultView { - display: flex; - flex-direction: column; -} - -.hunt_optimizer_OptimizationResultView_table { - flex: 1; - border-top: var(--border); - border-left: var(--border); -} diff --git a/src/hunt_optimizer/gui/OptimizationResultView.ts b/src/hunt_optimizer/gui/OptimizationResultView.ts deleted file mode 100644 index 9d9f1e1c..00000000 --- a/src/hunt_optimizer/gui/OptimizationResultView.ts +++ /dev/null @@ -1,208 +0,0 @@ -import { div, h2, section_id_icon, span } from "../../core/gui/dom"; -import { Column, Table } from "../../core/gui/Table"; -import { Disposable } from "../../core/observable/Disposable"; -import { list_property } from "../../core/observable"; -import { OptimalMethodModel, OptimalResultModel } from "../model"; -import { Difficulty } from "../../core/model"; -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import "./OptimizationResultView.css"; -import { Duration } from "luxon"; -import { ServerMap } from "../../core/stores/ServerMap"; -import { HuntOptimizerStore } from "../stores/HuntOptimizerStore"; -import { LogManager } from "../../core/logging"; -import { View } from "../../core/gui/View"; - -const logger = LogManager.get("hunt_optimizer/gui/OptimizationResultView"); - -export class OptimizationResultView extends View { - readonly element = div( - { className: "hunt_optimizer_OptimizationResultView" }, - h2("Ideal Combination of Methods"), - ); - - private results_observer?: Disposable; - private table?: Table; - - constructor(hunt_optimizer_stores: ServerMap) { - super(); - - this.disposable( - hunt_optimizer_stores.current.observe( - async ({ value }) => { - try { - const hunt_optimizer_store = await value; - if (this.disposed) return; - - if (this.results_observer) { - this.remove_disposable(this.results_observer); - } - - this.results_observer = this.disposable( - hunt_optimizer_store.result.observe( - ({ value }) => this.update_table(value), - { - call_now: true, - }, - ), - ); - } catch (e) { - logger.error("Couldn't load hunt optimizer store.", e); - } - }, - { call_now: true }, - ), - ); - - this.finalize_construction(OptimizationResultView); - } - - private update_table(result?: OptimalResultModel): void { - if (this.table) { - this.remove(this.table); - } - - let total_runs = 0; - let total_time = Duration.fromMillis(0); - - if (result) { - for (const method of result.optimal_methods) { - total_runs += method.runs; - total_time = total_time.plus(method.total_time); - } - } - - const columns: Column[] = [ - { - title: "Difficulty", - fixed: true, - width: 80, - render_cell(value: OptimalMethodModel) { - return Difficulty[value.difficulty]; - }, - footer: { - render_cell() { - return "Totals:"; - }, - }, - }, - { - title: "Method", - fixed: true, - width: 250, - render_cell(value: OptimalMethodModel) { - return value.method_name; - }, - }, - { - title: "Ep.", - fixed: true, - width: 40, - render_cell(value: OptimalMethodModel) { - return Episode[value.method_episode]; - }, - }, - { - title: "Section ID", - fixed: true, - width: 90, - render_cell(value: OptimalMethodModel) { - const element = span( - ...value.section_ids.map(sid => section_id_icon(sid, { size: 17 })), - ); - element.style.display = "flex"; - return element; - }, - }, - { - title: "Time/Run", - width: 90, - text_align: "center", - render_cell(value: OptimalMethodModel) { - return value.method_time.toFormat("hh:mm"); - }, - }, - { - title: "Runs", - width: 60, - text_align: "right", - render_cell(value: OptimalMethodModel) { - return value.runs.toFixed(1); - }, - tooltip(value: OptimalMethodModel) { - return value.runs.toString(); - }, - footer: { - render_cell() { - return total_runs.toFixed(1); - }, - tooltip() { - return total_runs.toString(); - }, - }, - }, - { - title: "Total Hours", - width: 60, - text_align: "right", - render_cell(value: OptimalMethodModel) { - return value.total_time.as("hours").toFixed(1); - }, - tooltip(value: OptimalMethodModel) { - return value.total_time.as("hours").toString(); - }, - footer: { - render_cell() { - return total_time.as("hours").toFixed(1); - }, - tooltip() { - return total_time.as("hours").toString(); - }, - }, - }, - ]; - - if (result) { - for (const item of result.wanted_items) { - let total_count = 0; - - for (const method of result.optimal_methods) { - total_count += method.item_counts.get(item) || 0; - } - - columns.push({ - title: item.name, - width: 80, - text_align: "right", - render_cell(value: OptimalMethodModel) { - const count = value.item_counts.get(item); - return count ? count.toFixed(2) : ""; - }, - tooltip(value: OptimalMethodModel) { - const count = value.item_counts.get(item); - return count ? count.toString() : ""; - }, - footer: { - render_cell() { - return total_count.toFixed(2); - }, - tooltip() { - return total_count.toString(); - }, - }, - }); - } - } - - this.table = this.add( - new Table({ - class: "hunt_optimizer_OptimizationResultView_table", - values: result - ? list_property(undefined, ...result.optimal_methods) - : list_property(), - columns, - }), - ); - - this.element.append(this.table.element); - } -} diff --git a/src/hunt_optimizer/gui/OptimizerView.css b/src/hunt_optimizer/gui/OptimizerView.css deleted file mode 100644 index ff1dc9e3..00000000 --- a/src/hunt_optimizer/gui/OptimizerView.css +++ /dev/null @@ -1,10 +0,0 @@ -.hunt_optimizer_OptimizerView { - display: flex; - align-items: stretch; - overflow: hidden; -} - -.hunt_optimizer_OptimizerView div:nth-child(2) { - flex: 1; - overflow: hidden; -} diff --git a/src/hunt_optimizer/gui/OptimizerView.ts b/src/hunt_optimizer/gui/OptimizerView.ts deleted file mode 100644 index 70ab3f16..00000000 --- a/src/hunt_optimizer/gui/OptimizerView.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { WantedItemsView } from "./WantedItemsView"; -import "./OptimizerView.css"; -import { OptimizationResultView } from "./OptimizationResultView"; -import { ServerMap } from "../../core/stores/ServerMap"; -import { HuntOptimizerStore } from "../stores/HuntOptimizerStore"; -import { div } from "../../core/gui/dom"; -import { ResizableView } from "../../core/gui/ResizableView"; - -export class OptimizerView extends ResizableView { - readonly element = div({ className: "hunt_optimizer_OptimizerView" }); - - constructor(hunt_optimizer_stores: ServerMap) { - super(); - - this.element.append( - this.add(new WantedItemsView(hunt_optimizer_stores)).element, - this.add(new OptimizationResultView(hunt_optimizer_stores)).element, - ); - - this.finalize_construction(OptimizerView); - } -} diff --git a/src/hunt_optimizer/gui/WantedItemsView.css b/src/hunt_optimizer/gui/WantedItemsView.css deleted file mode 100644 index c8bf3f8f..00000000 --- a/src/hunt_optimizer/gui/WantedItemsView.css +++ /dev/null @@ -1,23 +0,0 @@ -.hunt_optimizer_WantedItemsView { - display: flex; - flex-direction: column; - align-items: stretch; - padding: 0 6px; - min-width: 220px; -} - -.hunt_optimizer_WantedItemsView .hunt_optimizer_WantedItemsView_table_wrapper { - flex: 1; - width: calc(100% + 6px); - overflow: auto; - margin: 4px -3px; -} - -.hunt_optimizer_WantedItemsView .hunt_optimizer_WantedItemsView_table_wrapper table { - width: 100%; - border-collapse: collapse; -} - -.hunt_optimizer_WantedItemsView .hunt_optimizer_WantedItemsView_table_wrapper td { - padding: 1px 3px; -} diff --git a/src/hunt_optimizer/gui/WantedItemsView.ts b/src/hunt_optimizer/gui/WantedItemsView.ts deleted file mode 100644 index 3c38a54c..00000000 --- a/src/hunt_optimizer/gui/WantedItemsView.ts +++ /dev/null @@ -1,115 +0,0 @@ -import { bind_children_to, div, h2, Icon, table, tbody, td, tr } from "../../core/gui/dom"; -import "./WantedItemsView.css"; -import { Button } from "../../core/gui/Button"; -import { Disposer } from "../../core/observable/Disposer"; -import { WantedItemModel } from "../model"; -import { NumberInput } from "../../core/gui/NumberInput"; -import { ComboBox } from "../../core/gui/ComboBox"; -import { list_property } from "../../core/observable"; -import { ItemType } from "../../core/model/items"; -import { Disposable } from "../../core/observable/Disposable"; -import { ServerMap } from "../../core/stores/ServerMap"; -import { HuntOptimizerStore } from "../stores/HuntOptimizerStore"; -import { LogManager } from "../../core/logging"; -import { View } from "../../core/gui/View"; - -const logger = LogManager.get("hunt_optimizer/gui/WantedItemsView"); - -export class WantedItemsView extends View { - private readonly tbody_element = tbody(); - private readonly store_disposer = this.disposable(new Disposer()); - - readonly element = div({ className: "hunt_optimizer_WantedItemsView" }); - - constructor(private readonly hunt_optimizer_stores: ServerMap) { - super(); - - const huntable_items = list_property(); - const filtered_huntable_items = list_property(); - - const combo_box = this.add( - new ComboBox({ - items: filtered_huntable_items, - to_label: item_type => item_type.name, - placeholder_text: "Add an item", - filter(text: string): void { - const text_lower = text.toLowerCase(); - filtered_huntable_items.val = huntable_items.val.filter(item_type => - item_type.name.toLowerCase().includes(text_lower), - ); - }, - }), - ); - - this.element.append( - h2("Wanted Items"), - combo_box.element, - div( - { className: "hunt_optimizer_WantedItemsView_table_wrapper" }, - table(this.tbody_element), - ), - ); - - this.disposables( - hunt_optimizer_stores.current.observe( - async ({ value }) => { - try { - const hunt_optimizer_store = await value; - this.store_disposer.dispose_all(); - - this.store_disposer.add_all( - bind_children_to( - this.tbody_element, - hunt_optimizer_store.wanted_items, - this.create_row, - ), - - combo_box.selected.observe(({ value: item_type }) => { - if (item_type) { - hunt_optimizer_store.add_wanted_item(item_type); - combo_box.selected.val = undefined; - } - }), - ); - - huntable_items.val = hunt_optimizer_store.huntable_item_types - .slice() - .sort((a, b) => a.name.localeCompare(b.name)); - filtered_huntable_items.val = huntable_items.val; - } catch (e) { - logger.error("Couldn't load hunt optimizer store.", e); - } - }, - { call_now: true }, - ), - ); - - this.finalize_construction(WantedItemsView); - } - - private create_row = (wanted_item: WantedItemModel): [HTMLTableRowElement, Disposable] => { - const row_disposer = new Disposer(); - - const amount_input = row_disposer.add( - new NumberInput(wanted_item.amount.val, { min: 0, step: 1 }), - ); - - row_disposer.add_all( - amount_input.value.bind_to(wanted_item.amount), - amount_input.value.observe(({ value }) => wanted_item.set_amount(value)), - ); - - const remove_button = row_disposer.add(new Button({ icon_left: Icon.Remove })); - - row_disposer.add( - remove_button.onclick.observe(async () => - (await this.hunt_optimizer_stores.current.val).remove_wanted_item(wanted_item), - ), - ); - - return [ - tr(td(amount_input.element), td(wanted_item.item_type.name), td(remove_button.element)), - row_disposer, - ]; - }; -} diff --git a/src/hunt_optimizer/index.ts b/src/hunt_optimizer/index.ts deleted file mode 100644 index bb140982..00000000 --- a/src/hunt_optimizer/index.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { HuntOptimizerView } from "./gui/HuntOptimizerView"; -import { ServerMap } from "../core/stores/ServerMap"; -import { create_hunt_method_stores, HuntMethodStore } from "./stores/HuntMethodStore"; -import { GuiStore } from "../core/stores/GuiStore"; -import { create_hunt_optimizer_stores, HuntOptimizerStore } from "./stores/HuntOptimizerStore"; -import { ItemTypeStore } from "../core/stores/ItemTypeStore"; -import { HuntMethodPersister } from "./persistence/HuntMethodPersister"; -import { HuntOptimizerPersister } from "./persistence/HuntOptimizerPersister"; -import { ItemDropStore } from "./stores/ItemDropStore"; -import { HttpClient } from "../core/HttpClient"; -import { Disposable } from "../core/observable/Disposable"; -import { Disposer } from "../core/observable/Disposer"; - -export function initialize_hunt_optimizer( - http_client: HttpClient, - gui_store: GuiStore, - item_type_stores: ServerMap, - item_drop_stores: ServerMap, -): { view: HuntOptimizerView } & Disposable { - const disposer = new Disposer(); - - const hunt_method_stores: ServerMap = disposer.add( - create_hunt_method_stores(http_client, gui_store, new HuntMethodPersister()), - ); - const hunt_optimizer_stores: ServerMap = disposer.add( - create_hunt_optimizer_stores( - gui_store, - new HuntOptimizerPersister(item_type_stores), - item_type_stores, - item_drop_stores, - hunt_method_stores, - ), - ); - - const view = disposer.add( - new HuntOptimizerView(gui_store, hunt_optimizer_stores, hunt_method_stores), - ); - - return { - view, - dispose(): void { - disposer.dispose(); - }, - }; -} diff --git a/src/hunt_optimizer/model/HuntMethodModel.ts b/src/hunt_optimizer/model/HuntMethodModel.ts deleted file mode 100644 index f0cc1123..00000000 --- a/src/hunt_optimizer/model/HuntMethodModel.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; -import { SimpleQuestModel } from "./SimpleQuestModel"; -import { Property } from "../../core/observable/property/Property"; -import { WritableProperty } from "../../core/observable/property/WritableProperty"; -import { property } from "../../core/observable"; -import { Duration } from "luxon"; - -export class HuntMethodModel { - readonly id: string; - readonly name: string; - readonly episode: Episode; - readonly quest: SimpleQuestModel; - readonly enemy_counts: Map; - /** - * The time it takes to complete the quest in hours. - */ - readonly default_time: Duration; - /** - * The time it takes to complete the quest in hours as specified by the user. - */ - readonly user_time: Property; - readonly time: Property; - - private readonly _user_time: WritableProperty; - - constructor(id: string, name: string, quest: SimpleQuestModel, default_time: Duration) { - if (!id) throw new Error("id is required."); - if (!Duration.isDuration(default_time)) - throw new Error("default_time must a valid duration."); - if (!name) throw new Error("name is required."); - if (!quest) throw new Error("quest is required."); - - this.id = id; - this.name = name; - this.episode = quest.episode; - this.quest = quest; - this.enemy_counts = quest.enemy_counts; - this.default_time = default_time; - - this._user_time = property(undefined); - this.user_time = this._user_time; - - this.time = this.user_time.map(user_time => - user_time != undefined ? user_time : this.default_time, - ); - } - - set_user_time(user_time?: Duration): this { - this._user_time.val = user_time; - return this; - } -} diff --git a/src/hunt_optimizer/model/ItemDrop.ts b/src/hunt_optimizer/model/ItemDrop.ts deleted file mode 100644 index afd1e363..00000000 --- a/src/hunt_optimizer/model/ItemDrop.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { ItemType } from "../../core/model/items"; -import { Difficulty, SectionId } from "../../core/model"; -import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; - -interface ItemDrop { - readonly item_type: ItemType; - readonly anything_rate: number; - readonly rare_rate: number; -} - -export class EnemyDrop implements ItemDrop { - readonly rate: number; - - constructor( - readonly difficulty: Difficulty, - readonly section_id: SectionId, - readonly npc_type: NpcType, - readonly item_type: ItemType, - readonly anything_rate: number, - readonly rare_rate: number, - ) { - this.rate = anything_rate * rare_rate; - } -} diff --git a/src/hunt_optimizer/model/SimpleQuestModel.ts b/src/hunt_optimizer/model/SimpleQuestModel.ts deleted file mode 100644 index ea48b19a..00000000 --- a/src/hunt_optimizer/model/SimpleQuestModel.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; - -export class SimpleQuestModel { - constructor( - readonly id: number, - readonly name: string, - readonly episode: Episode, - readonly enemy_counts: Map, - ) { - if (!id) throw new Error("id is required."); - if (!name) throw new Error("name is required."); - if (!enemy_counts) throw new Error("enemyCounts is required."); - } -} diff --git a/src/hunt_optimizer/model/index.ts b/src/hunt_optimizer/model/index.ts deleted file mode 100644 index a3dcf9c2..00000000 --- a/src/hunt_optimizer/model/index.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { ItemType } from "../../core/model/items"; -import { Difficulty, SectionId } from "../../core/model"; -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { Duration } from "luxon"; -import { Property } from "../../core/observable/property/Property"; -import { WritableProperty } from "../../core/observable/property/WritableProperty"; -import { property } from "../../core/observable"; - -export class WantedItemModel { - readonly item_type: ItemType; - readonly amount: Property; - - private readonly _amount: WritableProperty; - - constructor(item_type: ItemType, amount: number) { - this.item_type = item_type; - this._amount = property(amount); - this.amount = this._amount; - } - - set_amount(amount: number): this { - this._amount.val = amount; - return this; - } -} - -export class OptimalResultModel { - constructor( - readonly wanted_items: ItemType[], - readonly optimal_methods: OptimalMethodModel[], - ) {} -} - -export class OptimalMethodModel { - readonly total_time: Duration; - - constructor( - readonly difficulty: Difficulty, - readonly section_ids: SectionId[], - readonly method_name: string, - readonly method_episode: Episode, - readonly method_time: Duration, - readonly runs: number, - readonly item_counts: Map, - ) { - this.total_time = Duration.fromMillis(runs * method_time.as("milliseconds")); - } -} diff --git a/src/hunt_optimizer/persistence/HuntMethodPersister.ts b/src/hunt_optimizer/persistence/HuntMethodPersister.ts deleted file mode 100644 index 0abaa620..00000000 --- a/src/hunt_optimizer/persistence/HuntMethodPersister.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { Server } from "../../core/model"; -import { HuntMethodModel } from "../model/HuntMethodModel"; -import { Duration } from "luxon"; -import { Persister } from "../../core/persistence/Persister"; - -const METHOD_USER_TIMES_KEY = "HuntMethodStore.methodUserTimes"; - -export class HuntMethodPersister extends Persister { - persist_method_user_times(hunt_methods: readonly HuntMethodModel[], server: Server): void { - const user_times: PersistedUserTimes = {}; - - for (const method of hunt_methods) { - if (method.user_time.val != undefined) { - user_times[method.id] = method.user_time.val.as("hours"); - } - } - - this.persist_for_server(server, METHOD_USER_TIMES_KEY, user_times); - } - - async load_method_user_times( - hunt_methods: readonly HuntMethodModel[], - server: Server, - ): Promise { - const user_times = await this.load_for_server( - server, - METHOD_USER_TIMES_KEY, - ); - - if (user_times) { - for (const method of hunt_methods) { - const hours = user_times[method.id]; - method.set_user_time( - hours == undefined ? undefined : Duration.fromObject({ hours }), - ); - } - } - } -} - -type PersistedUserTimes = { [method_id: string]: number }; diff --git a/src/hunt_optimizer/persistence/HuntOptimizerPersister.ts b/src/hunt_optimizer/persistence/HuntOptimizerPersister.ts deleted file mode 100644 index a099cacc..00000000 --- a/src/hunt_optimizer/persistence/HuntOptimizerPersister.ts +++ /dev/null @@ -1,57 +0,0 @@ -import { Server } from "../../core/model"; -import { Persister } from "../../core/persistence/Persister"; -import { WantedItemModel } from "../model"; -import { ItemTypeStore } from "../../core/stores/ItemTypeStore"; -import { ServerMap } from "../../core/stores/ServerMap"; - -const WANTED_ITEMS_KEY = "HuntOptimizerStore.wantedItems"; - -export class HuntOptimizerPersister extends Persister { - constructor(private readonly item_type_stores: ServerMap) { - super(); - } - - persist_wanted_items(server: Server, wanted_items: readonly WantedItemModel[]): void { - this.persist_for_server( - server, - WANTED_ITEMS_KEY, - wanted_items.map( - ({ item_type, amount }): PersistedWantedItem => ({ - itemTypeId: item_type.id, - amount: amount.val, - }), - ), - ); - } - - async load_wanted_items(server: Server): Promise { - const item_store = await this.item_type_stores.get(server); - - const persisted_wanted_items = await this.load_for_server( - server, - WANTED_ITEMS_KEY, - ); - const wanted_items: WantedItemModel[] = []; - - if (persisted_wanted_items) { - for (const { itemTypeId, itemKindId, amount } of persisted_wanted_items) { - const item = - itemTypeId != undefined - ? item_store.get_by_id(itemTypeId) - : item_store.get_by_id(itemKindId!); - - if (item) { - wanted_items.push(new WantedItemModel(item, amount)); - } - } - } - - return wanted_items; - } -} - -type PersistedWantedItem = { - itemTypeId?: number; // Should only be undefined if the legacy name is still used. - itemKindId?: number; // Legacy name, not persisted, only checked when loading. - amount: number; -}; diff --git a/src/hunt_optimizer/stores/HuntMethodStore.ts b/src/hunt_optimizer/stores/HuntMethodStore.ts deleted file mode 100644 index 52016266..00000000 --- a/src/hunt_optimizer/stores/HuntMethodStore.ts +++ /dev/null @@ -1,110 +0,0 @@ -import { Server } from "../../core/model"; -import { QuestDto } from "../dto/QuestDto"; -import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; -import { SimpleQuestModel } from "../model/SimpleQuestModel"; -import { HuntMethodModel } from "../model/HuntMethodModel"; -import { HuntMethodPersister } from "../persistence/HuntMethodPersister"; -import { Duration } from "luxon"; -import { ListProperty } from "../../core/observable/property/list/ListProperty"; -import { list_property } from "../../core/observable"; -import { GuiStore } from "../../core/stores/GuiStore"; -import { HttpClient } from "../../core/HttpClient"; -import { Store } from "../../core/stores/Store"; -import { DisposableServerMap } from "../../core/stores/DisposableServerMap"; -import { LogManager } from "../../core/logging"; - -const logger = LogManager.get("hunt_optimizer/stores/HuntMethodStore"); - -const DEFAULT_DURATION = Duration.fromObject({ minutes: 30 }); -const DEFAULT_GOVERNMENT_TEST_DURATION = Duration.fromObject({ minutes: 45 }); -const DEFAULT_LARGE_ENEMY_COUNT_DURATION = Duration.fromObject({ minutes: 45 }); - -export function create_hunt_method_stores( - http_client: HttpClient, - gui_store: GuiStore, - hunt_method_persister: HuntMethodPersister, -): DisposableServerMap { - return new DisposableServerMap(gui_store, create_loader(http_client, hunt_method_persister)); -} - -export class HuntMethodStore extends Store { - readonly methods: ListProperty; - - constructor( - hunt_method_persister: HuntMethodPersister, - server: Server, - methods: HuntMethodModel[], - ) { - super(); - - this.methods = list_property(method => [method.user_time], ...methods); - - this.disposables( - this.methods.observe_list(() => - hunt_method_persister.persist_method_user_times(this.methods.val, server), - ), - ); - } -} - -function create_loader( - http_client: HttpClient, - hunt_method_persister: HuntMethodPersister, -): (server: Server) => Promise { - return async server => { - const quests: QuestDto[] = await http_client - .get(`/quests.${Server[server].toLowerCase()}.json`) - .json(); - const methods: HuntMethodModel[] = []; - - for (const quest of quests) { - let total_enemy_count = 0; - const enemy_counts = new Map(); - - for (const [code, count] of Object.entries(quest.enemy_counts)) { - const npc_type = (NpcType as any)[code]; - - if (!npc_type) { - logger.error(`No NpcType found for code ${code}.`); - } else { - enemy_counts.set(npc_type, count); - total_enemy_count += count; - } - } - - // Filter out some quests. - /* eslint-disable no-fallthrough */ - switch (quest.id) { - // The following quests are left out because their enemies don't drop anything. - case 31: // Black Paper's Dangerous Deal - case 34: // Black Paper's Dangerous Deal 2 - case 1305: // Maximum Attack S (Ep. 1) - case 1306: // Maximum Attack S (Ep. 2) - case 1307: // Maximum Attack S (Ep. 4) - case 313: // Beyond the Horizon - - // MAXIMUM ATTACK 3 Ver2 is filtered out because its actual enemy count depends on the path taken. - // TODO: generate a method per path. - case 314: - continue; - } - - methods.push( - new HuntMethodModel( - `q${quest.id}`, - quest.name, - new SimpleQuestModel(quest.id, quest.name, quest.episode, enemy_counts), - /^\d-\d.*/.test(quest.name) - ? DEFAULT_GOVERNMENT_TEST_DURATION - : total_enemy_count > 400 - ? DEFAULT_LARGE_ENEMY_COUNT_DURATION - : DEFAULT_DURATION, - ), - ); - } - - await hunt_method_persister.load_method_user_times(methods, server); - - return new HuntMethodStore(hunt_method_persister, server, methods); - }; -} diff --git a/src/hunt_optimizer/stores/HuntOptimizerStore.ts b/src/hunt_optimizer/stores/HuntOptimizerStore.ts deleted file mode 100644 index 1fd2b8a2..00000000 --- a/src/hunt_optimizer/stores/HuntOptimizerStore.ts +++ /dev/null @@ -1,356 +0,0 @@ -import solver from "javascript-lp-solver"; -import { ItemType } from "../../core/model/items"; -import { - Difficulties, - Difficulty, - KONDRIEU_PROB, - RARE_ENEMY_PROB, - SectionId, - SectionIds, - Server, -} from "../../core/model"; -import { npc_data, NpcType } from "../../core/data_formats/parsing/quest/npc_types"; -import { HuntMethodModel } from "../model/HuntMethodModel"; -import { Property } from "../../core/observable/property/Property"; -import { OptimalMethodModel, OptimalResultModel, WantedItemModel } from "../model"; -import { ListProperty } from "../../core/observable/property/list/ListProperty"; -import { list_property, map } from "../../core/observable"; -import { WritableListProperty } from "../../core/observable/property/list/WritableListProperty"; -import { HuntMethodStore } from "./HuntMethodStore"; -import { ItemDropStore } from "./ItemDropStore"; -import { ItemTypeStore } from "../../core/stores/ItemTypeStore"; -import { ServerMap } from "../../core/stores/ServerMap"; -import { GuiStore } from "../../core/stores/GuiStore"; -import { HuntOptimizerPersister } from "../persistence/HuntOptimizerPersister"; -import { DisposableServerMap } from "../../core/stores/DisposableServerMap"; -import { Store } from "../../core/stores/Store"; - -export function create_hunt_optimizer_stores( - gui_store: GuiStore, - hunt_optimizer_persister: HuntOptimizerPersister, - item_type_stores: ServerMap, - item_drop_stores: ServerMap, - hunt_method_stores: ServerMap, -): DisposableServerMap { - return new DisposableServerMap( - gui_store, - create_loader( - hunt_optimizer_persister, - item_type_stores, - item_drop_stores, - hunt_method_stores, - ), - ); -} - -// TODO: take into account mothmants spawned from mothverts. -// TODO: take into account split slimes. -// TODO: Prefer methods that don't split pan arms over methods that do. -// For some reason this doesn't actually seem to be a problem, should probably investigate. -// TODO: Show expected value or probability per item per method. -// Can be useful when deciding which item to hunt first. -// TODO: boxes. -export class HuntOptimizerStore extends Store { - private readonly _wanted_items: WritableListProperty< - WantedItemModel - > = list_property(wanted_item => [wanted_item.amount]); - - readonly huntable_item_types: ItemType[]; - // TODO: wanted items per server. - readonly wanted_items: ListProperty = this._wanted_items; - readonly result: Property; - - constructor( - private readonly hunt_optimizer_persister: HuntOptimizerPersister, - private readonly server: Server, - item_type_store: ItemTypeStore, - private readonly item_drop_store: ItemDropStore, - hunt_method_store: HuntMethodStore, - ) { - super(); - - this.huntable_item_types = item_type_store.item_types.filter( - item_type => item_drop_store.enemy_drops.get_drops_for_item_type(item_type.id).length, - ); - - this.result = map(this.optimize, this.wanted_items, hunt_method_store.methods); - - this.initialize_persistence(); - } - - add_wanted_item(item_type: ItemType): void { - if (!this._wanted_items.val.find(wanted => wanted.item_type === item_type)) { - this._wanted_items.push(new WantedItemModel(item_type, 1)); - } - } - - remove_wanted_item(wanted_item: WantedItemModel): void { - this._wanted_items.remove(wanted_item); - } - - private optimize = ( - wanted_items: readonly WantedItemModel[], - methods: readonly HuntMethodModel[], - ): OptimalResultModel | undefined => { - if (!wanted_items.length) { - return undefined; - } - - const filtered_wanted_items = new Set( - wanted_items.filter(w => w.amount.val > 0).map(w => w.item_type), - ); - - const drop_table = this.item_drop_store.enemy_drops; - - // Add a constraint per wanted item. - const constraints: { [item_name: string]: { min: number } } = {}; - - for (const wanted of this.wanted_items.val) { - constraints[wanted.item_type.name] = { min: wanted.amount.val }; - } - - // Add a variable to the LP model per method per difficulty per section ID. - // When a method with pan arms is encountered, two variables are added. One for the method - // with migiums and hidooms and one with pan arms. - // Each variable has a time property to minimize and a property per item with the number - // of enemies that drop the item multiplied by the corresponding drop rate as its value. - type Variable = { - time: number; - [item_name: string]: number; - }; - const variables: { [method_name: string]: Variable } = {}; - - type VariableDetails = { - method: HuntMethodModel; - difficulty: Difficulty; - section_id: SectionId; - split_pan_arms: boolean; - }; - const variable_details: Map = new Map(); - - for (const method of methods) { - // Counts include rare enemies, so they are fractional. - const counts = new Map(); - - for (const [enemy_type, count] of method.enemy_counts.entries()) { - const old_count = counts.get(enemy_type) || 0; - const enemy = npc_data(enemy_type); - - if (enemy.rare_type == null) { - counts.set(enemy_type, old_count + count); - } else { - let rate, rare_rate; - - if (enemy.rare_type === NpcType.Kondrieu) { - rate = 1 - KONDRIEU_PROB; - rare_rate = KONDRIEU_PROB; - } else { - rate = 1 - RARE_ENEMY_PROB; - rare_rate = RARE_ENEMY_PROB; - } - - counts.set(enemy_type, old_count + count * rate); - counts.set( - enemy.rare_type, - (counts.get(enemy.rare_type) || 0) + count * rare_rate, - ); - } - } - - // Create a secondary counts map if there are any pan arms that can be split into - // migiums and hidooms. - const counts_list: Map[] = [counts]; - const pan_arms_count = counts.get(NpcType.PanArms); - - if (pan_arms_count) { - const split_counts = new Map(counts); - - split_counts.delete(NpcType.PanArms); - split_counts.set(NpcType.Migium, pan_arms_count); - split_counts.set(NpcType.Hidoom, pan_arms_count); - - counts_list.push(split_counts); - } - - const pan_arms_2_count = counts.get(NpcType.PanArms2); - - if (pan_arms_2_count) { - const split_counts = new Map(counts); - - split_counts.delete(NpcType.PanArms2); - split_counts.set(NpcType.Migium2, pan_arms_2_count); - split_counts.set(NpcType.Hidoom2, pan_arms_2_count); - - counts_list.push(split_counts); - } - - for (let i = 0; i < counts_list.length; i++) { - const counts = counts_list[i]; - const split_pan_arms = i === 1; - - for (const difficulty of Difficulties) { - for (const section_id of SectionIds) { - // Will contain an entry per wanted item dropped by enemies in this method/ - // difficulty/section ID combo. - const variable: Variable = { - time: method.time.val.as("hours"), - }; - // Only add the variable if the method provides at least 1 item we want. - let add_variable = false; - - for (const [npc_type, count] of counts.entries()) { - const drop = drop_table.get_drop(difficulty, section_id, npc_type); - - if (drop && filtered_wanted_items.has(drop.item_type)) { - const value = variable[drop.item_type.name] || 0; - variable[drop.item_type.name] = value + count * drop.rate; - add_variable = true; - } - } - - if (add_variable) { - const name = this.full_method_name( - difficulty, - section_id, - method, - split_pan_arms, - ); - variables[name] = variable; - variable_details.set(name, { - method, - difficulty, - section_id, - split_pan_arms, - }); - } - } - } - } - } - - const result: { - feasible: boolean; - bounded: boolean; - result: number; - /** - * Value will always be a number if result is indexed with an actual method name. - */ - [method: string]: number | boolean; - } = solver.Solve({ - optimize: "time", - opType: "min", - constraints, - variables, - }); - - if (!result.feasible) { - return undefined; - } - - const optimal_methods: OptimalMethodModel[] = []; - - // Loop over the entries in result, ignore standard properties that aren't variables. - for (const [variable_name, runs_or_other] of Object.entries(result)) { - const details = variable_details.get(variable_name); - - if (details) { - const { method, difficulty, section_id, split_pan_arms } = details; - const runs = runs_or_other as number; - const variable = variables[variable_name]; - - const items = new Map(); - - for (const [item_name, expected_amount] of Object.entries(variable)) { - for (const item of filtered_wanted_items) { - if (item_name === item.name) { - items.set(item, runs * expected_amount); - break; - } - } - } - - // Find all section IDs that provide the same items with the same expected amount. - // E.g. if you need a spread needle and a bringer's right arm, using either - // purplenum or yellowboze will give you the exact same probabilities. - const section_ids: SectionId[] = []; - - for (const sid of SectionIds) { - let match_found = true; - - if (sid !== section_id) { - const v = - variables[ - this.full_method_name(difficulty, sid, method, split_pan_arms) - ]; - - if (!v) { - match_found = false; - } else { - for (const item_name of Object.keys(variable)) { - if (variable[item_name] !== v[item_name]) { - match_found = false; - break; - } - } - } - } - - if (match_found) { - section_ids.push(sid); - } - } - - optimal_methods.push( - new OptimalMethodModel( - difficulty, - section_ids, - method.name + (split_pan_arms ? " (Split Pan Arms)" : ""), - method.episode, - method.time.val, - runs, - items, - ), - ); - } - } - - return new OptimalResultModel([...filtered_wanted_items], optimal_methods); - }; - - private full_method_name( - difficulty: Difficulty, - section_id: SectionId, - method: HuntMethodModel, - split_pan_arms: boolean, - ): string { - let name = `${difficulty}\t${section_id}\t${method.id}`; - if (split_pan_arms) name += "\tspa"; - return name; - } - - private initialize_persistence = async (): Promise => { - this._wanted_items.val = await this.hunt_optimizer_persister.load_wanted_items(this.server); - - this.disposable( - this._wanted_items.observe(({ value }) => { - this.hunt_optimizer_persister.persist_wanted_items(this.server, value); - }), - ); - }; -} - -function create_loader( - hunt_optimizer_persister: HuntOptimizerPersister, - item_type_stores: ServerMap, - item_drop_stores: ServerMap, - hunt_method_stores: ServerMap, -): (server: Server) => Promise { - return async server => - new HuntOptimizerStore( - hunt_optimizer_persister, - server, - await item_type_stores.get(server), - await item_drop_stores.get(server), - await hunt_method_stores.get(server), - ); -} diff --git a/src/hunt_optimizer/stores/ItemDropStore.ts b/src/hunt_optimizer/stores/ItemDropStore.ts deleted file mode 100644 index c10effb4..00000000 --- a/src/hunt_optimizer/stores/ItemDropStore.ts +++ /dev/null @@ -1,134 +0,0 @@ -import { Difficulties, Difficulty, SectionId, SectionIds, Server } from "../../core/model"; -import { ServerMap } from "../../core/stores/ServerMap"; -import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; -import { EnemyDrop } from "../model/ItemDrop"; -import { EnemyDropDto } from "../dto/drops"; -import { GuiStore } from "../../core/stores/GuiStore"; -import { ItemTypeStore } from "../../core/stores/ItemTypeStore"; -import { HttpClient } from "../../core/HttpClient"; -import { DisposableServerMap } from "../../core/stores/DisposableServerMap"; -import { Store } from "../../core/stores/Store"; -import { LogManager } from "../../core/logging"; - -const logger = LogManager.get("stores/ItemDropStore"); - -export function create_item_drop_stores( - http_client: HttpClient, - gui_store: GuiStore, - item_type_stores: ServerMap, -): DisposableServerMap { - return new DisposableServerMap(gui_store, create_loader(http_client, item_type_stores)); -} - -export class ItemDropStore extends Store { - readonly enemy_drops: EnemyDropTable; - - constructor(enemy_drops: EnemyDropTable) { - super(); - this.enemy_drops = enemy_drops; - } -} - -export class EnemyDropTable { - // Mapping of difficulties to section IDs to NpcTypes to EnemyDrops. - private table: EnemyDrop[][][] = []; - - // Mapping of ItemType ids to EnemyDrops. - private item_type_to_drops: EnemyDrop[][] = []; - - constructor() { - for (let i = 0; i < Difficulties.length; i++) { - const diff_array: EnemyDrop[][] = []; - this.table.push(diff_array); - - for (let j = 0; j < SectionIds.length; j++) { - diff_array.push([]); - } - } - } - - get_drop( - difficulty: Difficulty, - section_id: SectionId, - npc_type: NpcType, - ): EnemyDrop | undefined { - return this.table[difficulty][section_id][npc_type]; - } - - set_drop( - difficulty: Difficulty, - section_id: SectionId, - npc_type: NpcType, - drop: EnemyDrop, - ): void { - this.table[difficulty][section_id][npc_type] = drop; - - let drops = this.item_type_to_drops[drop.item_type.id]; - - if (!drops) { - drops = []; - this.item_type_to_drops[drop.item_type.id] = drops; - } - - drops.push(drop); - } - - get_drops_for_item_type(item_type_id: number): EnemyDrop[] { - return this.item_type_to_drops[item_type_id] || []; - } -} - -function create_loader( - http_client: HttpClient, - item_type_stores: ServerMap, -): (server: Server) => Promise { - return async server => { - const item_type_store = await item_type_stores.get(server); - const data: EnemyDropDto[] = await http_client - .get(`/enemy_drops.${Server[server].toLowerCase()}.json`) - .json(); - const enemy_drops = new EnemyDropTable(); - - for (const drop_dto of data) { - const npc_type = (NpcType as any)[drop_dto.enemy]; - - if (!npc_type) { - logger.warn( - `Couldn't determine NpcType of episode ${drop_dto.episode} ${drop_dto.enemy}.`, - ); - continue; - } - - const difficulty = (Difficulty as any)[drop_dto.difficulty]; - const item_type = item_type_store.get_by_id(drop_dto.item_type_id); - - if (!item_type) { - logger.warn(`Couldn't find item kind ${drop_dto.item_type_id}.`); - continue; - } - - const section_id = (SectionId as any)[drop_dto.section_id]; - - if (section_id == null) { - logger.warn(`Couldn't find section ID ${drop_dto.section_id}.`); - continue; - } - - enemy_drops.set_drop( - difficulty, - section_id, - npc_type, - new EnemyDrop( - difficulty, - section_id, - npc_type, - item_type, - drop_dto.drop_rate, - drop_dto.rare_rate, - ), - ); - } - - return new ItemDropStore(enemy_drops); - }; -} diff --git a/src/index.ts b/src/index.ts deleted file mode 100644 index 625bbf1d..00000000 --- a/src/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -// Import polyfills before anything else. -import "core-js/stable"; - -import "./core/gui/index.css"; -import "@fortawesome/fontawesome-free/js/fontawesome"; -import "@fortawesome/fontawesome-free/js/solid"; -import "@fortawesome/fontawesome-free/js/regular"; -import "@fortawesome/fontawesome-free/js/brands"; -import { initialize_application } from "./application"; -import { FetchClient } from "./core/HttpClient"; -import { WebGLRenderer } from "three"; -import { DisposableThreeRenderer } from "./core/rendering/Renderer"; -import { Random } from "./core/Random"; -import { DateClock } from "./core/Clock"; - -function create_three_renderer(): DisposableThreeRenderer { - const renderer = new WebGLRenderer({ antialias: true, alpha: true }); - renderer.setPixelRatio(window.devicePixelRatio); - return renderer; -} - -initialize_application(new FetchClient(), new Random(), new DateClock(), create_three_renderer); diff --git a/src/quest_editor/QuestRunner.ts b/src/quest_editor/QuestRunner.ts deleted file mode 100644 index 2ec58cfc..00000000 --- a/src/quest_editor/QuestRunner.ts +++ /dev/null @@ -1,381 +0,0 @@ -import { ExecutionResult, VirtualMachine } from "./scripting/vm/VirtualMachine"; -import { QuestModel } from "./model/QuestModel"; -import { VirtualMachineIO } from "./scripting/vm/io"; -import { WritableProperty } from "../core/observable/property/WritableProperty"; -import { list_property, property } from "../core/observable"; -import { Property } from "../core/observable/property/Property"; -import { Breakpoint, Debugger } from "./scripting/vm/Debugger"; -import { WritableListProperty } from "../core/observable/property/list/WritableListProperty"; -import { ListProperty } from "../core/observable/property/list/ListProperty"; -import { AreaVariantModel } from "./model/AreaVariantModel"; -import { Episode } from "../core/data_formats/parsing/quest/Episode"; -import { QuestNpcModel } from "./model/QuestNpcModel"; -import { QuestObjectModel } from "./model/QuestObjectModel"; -import { AreaStore } from "./stores/AreaStore"; -import { InstructionPointer } from "./scripting/vm/InstructionPointer"; -import { clone_segment } from "../core/data_formats/asm/instructions"; -import { Logging } from "../core/logging"; -import { LogStore } from "./stores/LogStore"; -import { Severity } from "../core/Severity"; - -export enum QuestRunnerState { - /** - * No quest is loading or loaded quest is not running. - */ - Stopped, - /** - * Quest has started up and is running nominally. - */ - Running, - /** - * Quest has started up and is paused. - */ - Paused, -} - -class GameStateInternal { - constructor(public episode: Episode) {} - - /** - * Maps area ids to function labels. - */ - readonly floor_handlers = new Map(); - /** - * Maps area ids to area variants. - */ - readonly area_variants = new Map(); - readonly current_area_variant = property(undefined); - readonly npcs = list_property(); - readonly objects = list_property(); -} - -export type GameState = Readonly; - -/** - * Orchestrates everything related to emulating a quest run. Drives a {@link VirtualMachine} and - * delegates to {@link Debugger}. - */ -export class QuestRunner { - private logger: Logging; - private animation_frame?: number; - private startup = true; - private readonly _state: WritableProperty = property( - QuestRunnerState.Stopped, - ); - - private initial_area_id = 0; - private readonly npcs: QuestNpcModel[] = []; - private readonly objects: QuestObjectModel[] = []; - - private readonly _breakpoints: WritableListProperty = list_property(); - private readonly _pause_location: WritableProperty = property(undefined); - private readonly _thread_ids: WritableListProperty = list_property(); - private readonly _active_thread_id: WritableProperty = property(undefined); - private readonly _shown_thread_id: WritableProperty = property(undefined); - - private readonly debugger: Debugger; - - private _game_state = new GameStateInternal(Episode.I); - - // TODO: make vm private again. - readonly vm: VirtualMachine; - /** - * There is a quest loaded and it is currently running or paused. - */ - readonly running: Property = this._state.map( - state => state !== QuestRunnerState.Stopped, - ); - /** - * A quest is running but execution is currently paused. - */ - readonly paused: Property = this._state.map( - state => state === QuestRunnerState.Paused, - ); - readonly breakpoints: ListProperty = this._breakpoints; - readonly pause_location: Property = this._pause_location; - readonly thread_ids: ListProperty = this._thread_ids; - readonly active_thread_id: Property = this._active_thread_id; - readonly shown_thread_id: Property = this._shown_thread_id; - - get game_state(): GameState { - return this._game_state; - } - - constructor(private readonly area_store: AreaStore, log_store: LogStore) { - this.logger = log_store.get_logger("quest_editor/QuestRunner"); - this.logger.severity = Severity.Trace; - this.vm = new VirtualMachine(this.create_vm_io()); - this.debugger = new Debugger(this.vm); - } - - run(quest: QuestModel): void { - this.stop(); - - // Runner state. - this.logger.info("Starting debugger."); - this.startup = true; - this.initial_area_id = 0; - this.npcs.splice(0, this.npcs.length, ...quest.npcs.val); - this.objects.splice(0, this.objects.length, ...quest.objects.val); - - // Current game state. - this._game_state = new GameStateInternal(quest.episode); - - // Virtual machine. - this.vm.load_object_code(quest.object_code.map(clone_segment), this.game_state.episode); - this.vm.start_thread(0); - - // Debugger. - this.debugger.activate_breakpoints(); - - this._state.val = QuestRunnerState.Running; - - this.schedule_frame(); - } - - resume(): void { - this.debugger.resume(); - this.schedule_frame(); - } - - step_over(): void { - this.debugger.step_over(); - this.schedule_frame(); - } - - step_into(): void { - this.debugger.step_in(); - this.schedule_frame(); - } - - step_out(): void { - this.debugger.step_out(); - this.schedule_frame(); - } - - stop(): void { - if (!this.running.val) { - return; - } - - this.logger.info("Stopping debugger."); - - if (this.animation_frame != undefined) { - cancelAnimationFrame(this.animation_frame); - this.animation_frame = undefined; - } - - this.vm.halt(); - this.debugger.deactivate_breakpoints(); - this._state.val = QuestRunnerState.Stopped; - this._pause_location.val = undefined; - this._active_thread_id.val = undefined; - this._shown_thread_id.val = undefined; - this._thread_ids.clear(); - this.npcs.splice(0, this.npcs.length); - this.objects.splice(0, this.objects.length); - this._game_state = new GameStateInternal(Episode.I); - } - - /** - * @returns false if there already was a breakpoint. - */ - set_breakpoint(line_no: number): boolean { - const set = this.debugger.set_breakpoint(line_no); - this._breakpoints.splice(0, Infinity, ...this.debugger.breakpoints); - return set; - } - - /** - * @returns false if there was no breakpoint to remove. - */ - remove_breakpoint(line_no: number): boolean { - const removed = this.debugger.remove_breakpoint(line_no); - this._breakpoints.splice(0, Infinity, ...this.debugger.breakpoints); - return removed; - } - - toggle_breakpoint(line_no: number): void { - this.debugger.toggle_breakpoint(line_no); - this._breakpoints.splice(0, Infinity, ...this.debugger.breakpoints); - } - - clear_breakpoints(): void { - this.debugger.clear_breakpoints(); - this._breakpoints.splice(0, Infinity, ...this.debugger.breakpoints); - } - - show_thread_location(thread_id: number): void { - // Update highlight location. - const ip = this.vm.get_instruction_pointer(thread_id); - - // Exists in source? - if (ip && ip.source_location) { - this._pause_location.val = ip.source_location.line_no; - this._shown_thread_id.val = thread_id; - } else { - this.logger.warn( - `Failed to select thread #${thread_id} because its execution location is unknown.`, - ); - } - } - - private schedule_frame(): void { - if (this.animation_frame == undefined) { - this.animation_frame = requestAnimationFrame(this.execution_loop); - } - } - - /** - * Executes instructions until all threads have yielded or a breakpoint is hit. - */ - private execution_loop = (): void => { - this.animation_frame = undefined; - - this.vm.vsync(); - - const result = this.vm.execute(); - - let pause_location: number | undefined; - - switch (result) { - case ExecutionResult.Suspended: - this._state.val = QuestRunnerState.Running; - this.update_thread_info(); - break; - - case ExecutionResult.Paused: - this._state.val = QuestRunnerState.Paused; - pause_location = this.vm.get_instruction_pointer()?.source_location?.line_no; - this.update_thread_info(); - break; - - case ExecutionResult.WaitingVsync: - this._state.val = QuestRunnerState.Running; - this.schedule_frame(); - break; - - case ExecutionResult.WaitingInput: - // TODO: implement input from gui - this._state.val = QuestRunnerState.Running; - this.schedule_frame(); - break; - - case ExecutionResult.WaitingSelection: - // TODO: implement input from gui - this.vm.list_select(0); - this._state.val = QuestRunnerState.Running; - this.schedule_frame(); - break; - - case ExecutionResult.Halted: - this.stop(); - break; - } - - this._pause_location.val = pause_location; - - if (this.startup && this._state.val === QuestRunnerState.Running) { - this.startup = false; - // At this point we know function 0 has run. All area variants have been designated and - // all floor handlers have been registered. - this.run_floor_handler( - this._game_state.area_variants.get(this.initial_area_id) || - this.area_store.get_variant(this._game_state.episode, this.initial_area_id, 0), - ); - } - }; - - private update_thread_info(): void { - const thread_id = this.vm.get_current_thread_id(); - this._active_thread_id.val = thread_id; - this._shown_thread_id.val = thread_id; - this._thread_ids.splice(0, this._thread_ids.length.val, ...this.vm.get_thread_ids()); - } - - private create_vm_io = (): VirtualMachineIO => { - function message_with_inst_ptr(message: string, inst_ptr?: InstructionPointer): string { - const msg = [message]; - - if (inst_ptr) { - const { instruction, source_location } = inst_ptr; - - msg.push(` [${instruction.opcode.mnemonic}`); - - if (source_location) { - msg.push(` ${source_location.line_no}:${source_location.col}`); - } - - msg.push("]"); - } - - return msg.join(""); - } - - return { - map_designate: (area_id: number, area_variant_id: number): void => { - this._game_state.area_variants.set( - area_id, - this.area_store.get_variant(this._game_state.episode, area_id, area_variant_id), - ); - }, - - set_floor_handler: (area_id: number, label: number) => { - this._game_state.floor_handlers.set(area_id, label); - }, - - window_msg: (msg: string): void => { - this.logger.info(`window_msg "${msg}"`); - }, - - message: (msg: string): void => { - this.logger.info(`message "${msg}"`); - }, - - add_msg: (msg: string): void => { - this.logger.info(`add_msg "${msg}"`); - }, - - winend: (): void => { - // TODO - }, - - p_dead_v3: (): boolean => { - // Players never die. - return false; - }, - - mesend: (): void => { - // TODO - }, - - list: (list_items: string[]): void => { - this.logger.info(`list "[${list_items}]"`); - }, - - warning: (msg: string, inst_ptr?: InstructionPointer): void => { - this.logger.warn(message_with_inst_ptr(msg, inst_ptr)); - }, - - error: (err: Error, inst_ptr?: InstructionPointer): void => { - this.logger.error(message_with_inst_ptr(err.message, inst_ptr)); - }, - }; - }; - - private run_floor_handler(area_variant: AreaVariantModel): void { - const area_id = area_variant.area.id; - - this._game_state.current_area_variant.val = area_variant; - this._game_state.objects.push(...this.objects.filter(obj => obj.area_id === area_id)); - - const label = this._game_state.floor_handlers.get(area_id); - - if (label == undefined) { - this.logger.debug(`No floor handler registered for floor ${area_id}.`); - } else { - this.vm.start_thread(label); - this.schedule_frame(); - } - } -} diff --git a/src/quest_editor/actions/CreateEntityAction.ts b/src/quest_editor/actions/CreateEntityAction.ts deleted file mode 100644 index 89c950a7..00000000 --- a/src/quest_editor/actions/CreateEntityAction.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { Action } from "../../core/undo/Action"; -import { QuestEntityModel } from "../model/QuestEntityModel"; -import { QuestModel } from "../model/QuestModel"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { entity_data } from "../../core/data_formats/parsing/quest/Quest"; - -export class CreateEntityAction implements Action { - readonly description: string; - - constructor( - private readonly quest_editor_store: QuestEditorStore, - private readonly quest: QuestModel, - private readonly entity: QuestEntityModel, - ) { - this.description = `Create ${entity_data(entity.type).name}`; - } - - undo(): void { - this.quest.remove_entity(this.entity); - } - - redo(): void { - this.quest.add_entity(this.entity); - - this.quest_editor_store.set_selected_entity(this.entity); - } -} diff --git a/src/quest_editor/actions/CreateEventAction.ts b/src/quest_editor/actions/CreateEventAction.ts deleted file mode 100644 index 7d006a6a..00000000 --- a/src/quest_editor/actions/CreateEventAction.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { Action } from "../../core/undo/Action"; -import { QuestModel } from "../model/QuestModel"; -import { QuestEventDagModel } from "../model/QuestEventDagModel"; -import { QuestEventModel } from "../model/QuestEventModel"; - -export class CreateEventAction implements Action { - readonly description: string; - - constructor( - private readonly quest: QuestModel, - private readonly event_dag: QuestEventDagModel, - private readonly event: QuestEventModel, - private readonly parent_event?: QuestEventModel, - ) { - this.description = `Add event ${event.id}`; - } - - undo(): void { - this.quest.remove_event(this.event_dag, this.event); - } - - redo(): void { - this.quest.add_event(this.event, this.parent_event ? [this.parent_event] : [], []); - } -} diff --git a/src/quest_editor/actions/EditEntityPropAction.ts b/src/quest_editor/actions/EditEntityPropAction.ts deleted file mode 100644 index 33cb91b5..00000000 --- a/src/quest_editor/actions/EditEntityPropAction.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { Action } from "../../core/undo/Action"; -import { QuestEntityPropModel } from "../model/QuestEntityPropModel"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { QuestEntityModel } from "../model/QuestEntityModel"; - -export class EditEntityPropAction implements Action { - readonly description: string; - - constructor( - private readonly quest_editor_store: QuestEditorStore, - private readonly entity: QuestEntityModel, - private readonly prop: QuestEntityPropModel, - private readonly old_value: number, - private readonly new_value: number, - ) { - this.description = `Edit ${prop.name}`; - } - - redo(): void { - this.prop.set_value(this.new_value); - this.quest_editor_store.set_selected_entity(this.entity); - } - - undo(): void { - this.prop.set_value(this.old_value); - this.quest_editor_store.set_selected_entity(this.entity); - } -} diff --git a/src/quest_editor/actions/EditEventDelayAction.ts b/src/quest_editor/actions/EditEventDelayAction.ts deleted file mode 100644 index 1db44895..00000000 --- a/src/quest_editor/actions/EditEventDelayAction.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Action } from "../../core/undo/Action"; -import { QuestEventModel } from "../model/QuestEventModel"; - -export class EditEventDelayAction implements Action { - readonly description: string; - - constructor( - private readonly event: QuestEventModel, - private readonly old_delay: number, - private readonly new_delay: number, - ) { - this.description = `Edit delay of event ${event.id}`; - } - - undo(): void { - this.event.set_delay(this.old_delay); - } - - redo(): void { - this.event.set_delay(this.new_delay); - } -} diff --git a/src/quest_editor/actions/EditIdAction.ts b/src/quest_editor/actions/EditIdAction.ts deleted file mode 100644 index f2ea0960..00000000 --- a/src/quest_editor/actions/EditIdAction.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { QuestEditAction } from "./QuestEditAction"; - -export class EditIdAction extends QuestEditAction { - readonly description = "Edit ID"; - - undo(): void { - this.quest.set_id(this.old); - } - - redo(): void { - this.quest.set_id(this.new); - } -} diff --git a/src/quest_editor/actions/EditLongDescriptionAction.ts b/src/quest_editor/actions/EditLongDescriptionAction.ts deleted file mode 100644 index e74760d8..00000000 --- a/src/quest_editor/actions/EditLongDescriptionAction.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { QuestEditAction } from "./QuestEditAction"; - -export class EditLongDescriptionAction extends QuestEditAction { - readonly description = "Edit long description"; - - undo(): void { - this.quest.set_long_description(this.old); - } - - redo(): void { - this.quest.set_long_description(this.new); - } -} diff --git a/src/quest_editor/actions/EditNameAction.ts b/src/quest_editor/actions/EditNameAction.ts deleted file mode 100644 index 1c848afd..00000000 --- a/src/quest_editor/actions/EditNameAction.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { QuestEditAction } from "./QuestEditAction"; - -export class EditNameAction extends QuestEditAction { - readonly description = "Edit name"; - - undo(): void { - this.quest.set_name(this.old); - } - - redo(): void { - this.quest.set_name(this.new); - } -} diff --git a/src/quest_editor/actions/EditShortDescriptionAction.ts b/src/quest_editor/actions/EditShortDescriptionAction.ts deleted file mode 100644 index 1fd44102..00000000 --- a/src/quest_editor/actions/EditShortDescriptionAction.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { QuestEditAction } from "./QuestEditAction"; - -export class EditShortDescriptionAction extends QuestEditAction { - readonly description = "Edit short description"; - - undo(): void { - this.quest.set_short_description(this.old); - } - - redo(): void { - this.quest.set_short_description(this.new); - } -} diff --git a/src/quest_editor/actions/QuestEditAction.ts b/src/quest_editor/actions/QuestEditAction.ts deleted file mode 100644 index 6f603df2..00000000 --- a/src/quest_editor/actions/QuestEditAction.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Action } from "../../core/undo/Action"; -import { QuestModel } from "../model/QuestModel"; - -export abstract class QuestEditAction implements Action { - abstract readonly description: string; - - protected readonly old: T; - protected readonly new: T; - - constructor(protected readonly quest: QuestModel, old_value: T, new_value: T) { - this.old = old_value; - this.new = new_value; - } - - abstract undo(): void; - - abstract redo(): void; -} diff --git a/src/quest_editor/actions/RemoveEntityAction.ts b/src/quest_editor/actions/RemoveEntityAction.ts deleted file mode 100644 index bcff53a3..00000000 --- a/src/quest_editor/actions/RemoveEntityAction.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { Action } from "../../core/undo/Action"; -import { QuestEntityModel } from "../model/QuestEntityModel"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { QuestModel } from "../model/QuestModel"; -import { entity_data } from "../../core/data_formats/parsing/quest/Quest"; - -export class RemoveEntityAction implements Action { - readonly description: string; - - constructor( - private readonly quest_editor_store: QuestEditorStore, - private readonly quest: QuestModel, - private readonly entity: QuestEntityModel, - ) { - this.description = `Delete ${entity_data(entity.type).name}`; - this.redo(); - } - - undo(): void { - this.quest.add_entity(this.entity); - - this.quest_editor_store.set_selected_entity(this.entity); - } - - redo(): void { - this.quest.remove_entity(this.entity); - } -} diff --git a/src/quest_editor/actions/RemoveEventAction.ts b/src/quest_editor/actions/RemoveEventAction.ts deleted file mode 100644 index 4b4def02..00000000 --- a/src/quest_editor/actions/RemoveEventAction.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { Action } from "../../core/undo/Action"; -import { QuestEventModel } from "../model/QuestEventModel"; -import { QuestEventDagModel } from "../model/QuestEventDagModel"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { QuestModel } from "../model/QuestModel"; -import { QuestNpcModel } from "../model/QuestNpcModel"; - -export class RemoveEventAction implements Action { - private readonly parents: readonly QuestEventModel[]; - private readonly children: readonly QuestEventModel[]; - /** - * The event's parents will be connected to the event's children. - */ - private readonly new_edges: { parent: QuestEventModel; child: QuestEventModel }[] = []; - /** - * NPCs who's waves have been removed. - */ - private readonly npcs: readonly QuestNpcModel[]; - private readonly event_index: number; - - readonly description: string; - - constructor( - private readonly store: QuestEditorStore, - private readonly quest: QuestModel, - private readonly event_dag: QuestEventDagModel, - private readonly event: QuestEventModel, - ) { - this.description = `Delete event ${event.id}`; - - this.parents = event_dag.get_parents(event).slice(); - this.children = event_dag.get_children(event).slice(); - - for (const parent of this.parents) { - const siblings = event_dag.get_children(parent); - - for (const child of this.children) { - if (!siblings.includes(child)) { - this.new_edges.push({ parent, child }); - } - } - } - - this.npcs = quest.npcs.val.filter(npc => npc.wave.val === event.wave); - - this.event_index = event_dag.get_index(event); - } - - undo(): void { - this.quest.insert_event(this.event_index, this.event, this.parents, this.children); - - for (const { parent, child } of this.new_edges) { - this.event_dag.remove_edge(parent, child); - } - - for (const npc of this.npcs) { - npc.set_wave(this.event.wave); - } - } - - redo(): void { - if (this.store.selected_wave.val === this.event.wave) { - this.store.set_selected_wave(undefined); - } - - // Connect event's parents to its children. - for (const { parent, child } of this.new_edges) { - this.event_dag.add_edge(parent, child); - } - - this.quest.remove_event(this.event_dag, this.event); - } -} diff --git a/src/quest_editor/actions/RotateEntityAction.ts b/src/quest_editor/actions/RotateEntityAction.ts deleted file mode 100644 index a145399a..00000000 --- a/src/quest_editor/actions/RotateEntityAction.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { Action } from "../../core/undo/Action"; -import { QuestEntityModel } from "../model/QuestEntityModel"; -import { Euler } from "three"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { entity_data } from "../../core/data_formats/parsing/quest/Quest"; - -export class RotateEntityAction implements Action { - readonly description: string; - - constructor( - private readonly quest_editor_store: QuestEditorStore, - private readonly entity: QuestEntityModel, - private readonly old_rotation: Euler, - private readonly new_rotation: Euler, - private readonly world: boolean, - ) { - this.description = `Rotate ${entity_data(entity.type).name}`; - } - - undo(): void { - this.quest_editor_store.set_selected_entity(this.entity); - - if (this.world) { - this.entity.set_world_rotation(this.old_rotation); - } else { - this.entity.set_rotation(this.old_rotation); - } - } - - redo(): void { - this.quest_editor_store.set_selected_entity(this.entity); - - if (this.world) { - this.entity.set_world_rotation(this.new_rotation); - } else { - this.entity.set_rotation(this.new_rotation); - } - } -} diff --git a/src/quest_editor/actions/TranslateEntityAction.ts b/src/quest_editor/actions/TranslateEntityAction.ts deleted file mode 100644 index d88a70cc..00000000 --- a/src/quest_editor/actions/TranslateEntityAction.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { Action } from "../../core/undo/Action"; -import { QuestEntityModel } from "../model/QuestEntityModel"; -import { SectionModel } from "../model/SectionModel"; -import { Vector3 } from "three"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { entity_data } from "../../core/data_formats/parsing/quest/Quest"; - -export class TranslateEntityAction implements Action { - readonly description: string; - - constructor( - private readonly quest_editor_store: QuestEditorStore, - private readonly entity: QuestEntityModel, - private readonly old_section: SectionModel | undefined, - private readonly new_section: SectionModel | undefined, - private readonly old_position: Vector3, - private readonly new_position: Vector3, - private readonly world: boolean, - ) { - this.description = `Move ${entity_data(entity.type).name}`; - } - - undo(): void { - this.quest_editor_store.set_selected_entity(this.entity); - - if (this.old_section) { - this.entity.set_section(this.old_section); - } - - if (this.world) { - this.entity.set_world_position(this.old_position); - } else { - this.entity.set_position(this.old_position); - } - } - - redo(): void { - this.quest_editor_store.set_selected_entity(this.entity); - - if (this.new_section) { - this.entity.set_section(this.new_section); - } - - if (this.world) { - this.entity.set_world_position(this.new_position); - } else { - this.entity.set_position(this.new_position); - } - } -} diff --git a/src/quest_editor/controllers/DebugController.test.ts b/src/quest_editor/controllers/DebugController.test.ts deleted file mode 100644 index 93c9f1eb..00000000 --- a/src/quest_editor/controllers/DebugController.test.ts +++ /dev/null @@ -1,80 +0,0 @@ -import { GuiStore } from "../../core/stores/GuiStore"; -import { create_area_store } from "../../../test/src/quest_editor/stores/store_creation"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { DebugController } from "./DebugController"; -import { LogStore } from "../stores/LogStore"; -import { load_default_quest_model, next_animation_frame, pw_test } from "../../../test/src/utils"; -import { disassemble } from "../scripting/disassembly"; -import { assemble } from "../scripting/assembly"; - -test( - "Some widgets should only be enabled when a quest is loaded.", - pw_test({}, async disposer => { - const gui_store = disposer.add(new GuiStore()); - const area_store = create_area_store(disposer); - const log_store = disposer.add(new LogStore()); - const quest_editor_store = disposer.add( - new QuestEditorStore(gui_store, area_store, log_store), - ); - const ctrl = disposer.add(new DebugController(gui_store, quest_editor_store, log_store)); - - expect(ctrl.can_debug.val).toBe(false); - expect(ctrl.can_step.val).toBe(false); - - await quest_editor_store.set_current_quest(load_default_quest_model(area_store)); - - expect(ctrl.can_debug.val).toBe(true); - expect(ctrl.can_step.val).toBe(false); - }), -); - -test( - "Debugging controls should be enabled and disabled at the right times.", - pw_test({}, async disposer => { - const gui_store = disposer.add(new GuiStore()); - const area_store = create_area_store(disposer); - const log_store = disposer.add(new LogStore()); - const quest_editor_store = disposer.add( - new QuestEditorStore(gui_store, area_store, log_store), - ); - const ctrl = disposer.add(new DebugController(gui_store, quest_editor_store, log_store)); - - const quest = load_default_quest_model(area_store); - // Disassemble and reassemble the IR to ensure we have source locations in the final IR. - quest.object_code.splice( - 0, - Infinity, - ...assemble(disassemble(quest.object_code)).object_code, - ); - - await quest_editor_store.set_current_quest(quest); - - // Before starting we can't step or stop. - expect(ctrl.can_step.val).toBe(false); - expect(ctrl.can_stop.val).toBe(false); - - ctrl.debug(); - await next_animation_frame(); - - // When all threads have yielded, all we can do is stop. - expect(ctrl.can_step.val).toBe(false); - expect(ctrl.can_stop.val).toBe(true); - - ctrl.stop(); - - // After stopping we can't step or stop anymore. - expect(ctrl.can_step.val).toBe(false); - expect(ctrl.can_stop.val).toBe(false); - - // After hitting a breakpoint, we can step and stop. - expect(quest_editor_store.quest_runner.set_breakpoint(5)).toBe(true); - - ctrl.debug(); - await next_animation_frame(); - - expect(quest_editor_store.quest_runner.pause_location.val).toBe(5); - - expect(ctrl.can_step.val).toBe(true); - expect(ctrl.can_stop.val).toBe(true); - }), -); diff --git a/src/quest_editor/controllers/DebugController.ts b/src/quest_editor/controllers/DebugController.ts deleted file mode 100644 index 9d0e5fbb..00000000 --- a/src/quest_editor/controllers/DebugController.ts +++ /dev/null @@ -1,115 +0,0 @@ -import { Controller } from "../../core/controllers/Controller"; -import { Property } from "../../core/observable/property/Property"; -import { ListProperty } from "../../core/observable/property/list/ListProperty"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { GuiStore, GuiTool } from "../../core/stores/GuiStore"; -import { LogEntry } from "../../core/logging"; -import { LogStore } from "../stores/LogStore"; -import { Severity } from "../../core/Severity"; -import { map } from "../../core/observable"; - -type ThreadIdAndLabel = { - id: number; - label: string; -}; - -export class DebugController extends Controller { - readonly can_debug: Property; - readonly can_step: Property; - readonly can_stop: Property; - readonly threads: Property; - readonly selected_thread_id: Property; - readonly can_select_thread: Property; - readonly log: ListProperty; - readonly severity: Property; - - constructor( - gui_store: GuiStore, - private readonly quest_editor_store: QuestEditorStore, - private readonly log_store: LogStore, - ) { - super(); - - this.can_debug = quest_editor_store.current_quest.map(q => q != undefined); - - this.can_step = quest_editor_store.quest_runner.paused; - - this.can_stop = quest_editor_store.quest_runner.running; - - this.threads = map( - (thread_ids, active_thread_id) => - thread_ids.map(id => { - const status = active_thread_id === id ? "Active" : "Yielded"; - return { - id, - label: `Thread #${id} (${status})`, - }; - }), - quest_editor_store.quest_runner.thread_ids, - quest_editor_store.quest_runner.active_thread_id, - ); - - this.selected_thread_id = map( - (threads, shown_thread_id) => threads.find(thread => thread.id === shown_thread_id)!, - this.threads, - quest_editor_store.quest_runner.shown_thread_id, - ); - - this.can_select_thread = quest_editor_store.quest_runner.thread_ids.map( - ids => ids.length > 0 && quest_editor_store.quest_runner.running.val, - ); - - this.log = log_store.log; - this.severity = log_store.severity; - - this.disposables( - gui_store.on_global_keydown(GuiTool.QuestEditor, "F5", this.debug), - - gui_store.on_global_keydown(GuiTool.QuestEditor, "Shift-F5", this.stop), - - gui_store.on_global_keydown(GuiTool.QuestEditor, "F6", this.resume), - - gui_store.on_global_keydown(GuiTool.QuestEditor, "F10", this.step_over), - - gui_store.on_global_keydown(GuiTool.QuestEditor, "F11", this.step_in), - - gui_store.on_global_keydown(GuiTool.QuestEditor, "Shift-F11", this.step_out), - ); - } - - debug = (): void => { - const quest = this.quest_editor_store.current_quest.val; - - if (quest) { - this.quest_editor_store.quest_runner.run(quest); - } - }; - - resume = (): void => { - this.quest_editor_store.quest_runner.resume(); - }; - - step_over = (): void => { - this.quest_editor_store.quest_runner.step_over(); - }; - - step_in = (): void => { - this.quest_editor_store.quest_runner.step_into(); - }; - - step_out = (): void => { - this.quest_editor_store.quest_runner.step_out(); - }; - - stop = (): void => { - this.quest_editor_store.quest_runner.stop(); - }; - - set_severity = (severity: Severity): void => { - this.log_store.set_severity(severity); - }; - - select_thread = (thread_id: number): void => { - this.quest_editor_store.quest_runner.show_thread_location(thread_id); - }; -} diff --git a/src/quest_editor/controllers/EntityInfoController.test.ts b/src/quest_editor/controllers/EntityInfoController.test.ts deleted file mode 100644 index d1ba55cc..00000000 --- a/src/quest_editor/controllers/EntityInfoController.test.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { EntityInfoController } from "./EntityInfoController"; -import { - create_area_store, - create_quest_editor_store, -} from "../../../test/src/quest_editor/stores/store_creation"; -import { Vector3 } from "three"; -import { euler } from "../model/euler"; -import { deg_to_rad } from "../../core/math"; -import { load_default_quest_model, pw_test } from "../../../test/src/utils"; - -test( - "When input values change, this should be reflected in the selected entity.", - pw_test({}, disposer => { - const area_store = create_area_store(disposer); - const store = create_quest_editor_store(disposer, area_store); - const ctrl = new EntityInfoController(store); - - const quest = load_default_quest_model(area_store); - const entity = quest.objects.get(0); - entity.set_position(new Vector3(0, 0, 0)); - entity.set_rotation(euler(0, 0, 0)); - store.set_current_quest(quest); - store.set_selected_entity(entity); - - ctrl.set_pos_x(9834.834); - expect(entity.position.val).toEqual(new Vector3(9834.834, 0, 0)); - - ctrl.set_pos_y(84093.87); - expect(entity.position.val).toEqual(new Vector3(9834.834, 84093.87, 0)); - - ctrl.set_pos_z(4279); - expect(entity.position.val).toEqual(new Vector3(9834.834, 84093.87, 4279)); - - ctrl.set_rot_x(180); - expect(entity.rotation.val.x).toBeCloseTo(deg_to_rad(180), 5); - expect(entity.rotation.val.y).toBeCloseTo(deg_to_rad(0), 5); - expect(entity.rotation.val.z).toBeCloseTo(deg_to_rad(0), 5); - - ctrl.set_rot_y(45); - expect(entity.rotation.val.x).toBeCloseTo(deg_to_rad(180), 5); - expect(entity.rotation.val.y).toBeCloseTo(deg_to_rad(45), 5); - expect(entity.rotation.val.z).toBeCloseTo(deg_to_rad(0), 5); - - ctrl.set_rot_z(223.83); - expect(entity.rotation.val.x).toBeCloseTo(deg_to_rad(180), 5); - expect(entity.rotation.val.y).toBeCloseTo(deg_to_rad(45), 5); - expect(entity.rotation.val.z).toBeCloseTo(deg_to_rad(223.83), 5); - }), -); diff --git a/src/quest_editor/controllers/EntityInfoController.ts b/src/quest_editor/controllers/EntityInfoController.ts deleted file mode 100644 index 8a2e2bdb..00000000 --- a/src/quest_editor/controllers/EntityInfoController.ts +++ /dev/null @@ -1,187 +0,0 @@ -import { Controller } from "../../core/controllers/Controller"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { Property } from "../../core/observable/property/Property"; -import { QuestNpcModel } from "../model/QuestNpcModel"; -import { flat_map_to_list, list_property, property } from "../../core/observable"; -import { Euler, Vector3 } from "three"; -import { deg_to_rad } from "../../core/math"; -import { TranslateEntityAction } from "../actions/TranslateEntityAction"; -import { RotateEntityAction } from "../actions/RotateEntityAction"; -import { euler } from "../model/euler"; -import { entity_data } from "../../core/data_formats/parsing/quest/Quest"; -import { ListProperty } from "../../core/observable/property/list/ListProperty"; -import { QuestEntityPropModel } from "../model/QuestEntityPropModel"; -import { EditEntityPropAction } from "../actions/EditEntityPropAction"; - -const DUMMY_VECTOR = Object.freeze(new Vector3()); -const DUMMY_EULER = Object.freeze(new Euler()); - -export class EntityInfoController extends Controller { - readonly unavailable: Property; - readonly enabled: Property; - readonly type: Property; - readonly name: Property; - readonly section_id: Property; - readonly wave: Property; - readonly wave_hidden: Property; - readonly position: Property; - readonly rotation: Property; - readonly props: ListProperty; - - constructor(private readonly store: QuestEditorStore) { - super(); - - const entity = store.selected_entity; - this.unavailable = entity.map(e => e == undefined); - this.enabled = store.quest_runner.running.map(r => !r); - - this.type = entity.map(e => (e instanceof QuestNpcModel ? "NPC" : "Object")); - this.name = entity.map(e => (e == undefined ? "" : entity_data(e.type).name)); - this.section_id = entity.flat_map(e => - e == undefined ? property("") : e.section_id.map(id => id.toString()), - ); - this.wave = entity.flat_map(e => - e instanceof QuestNpcModel - ? e.wave.flat_map(w => w?.id?.map(w => w.toString()) ?? property("None")) - : property(""), - ); - this.wave_hidden = entity.map(e => !(e instanceof QuestNpcModel)); - this.position = entity.flat_map(e => e?.position ?? property(DUMMY_VECTOR)); - this.rotation = entity.flat_map(e => e?.rotation ?? property(DUMMY_EULER)); - this.props = flat_map_to_list(e => e?.props ?? list_property(), entity); - } - - focused = (): void => { - this.store.undo.make_current(); - }; - - set_pos_x(x: number): void { - const entity = this.store.selected_entity.val; - - if (entity) { - const pos = entity.position.val; - this.store.undo - .push( - new TranslateEntityAction( - this.store, - entity, - entity.section.val, - entity.section.val, - pos, - new Vector3(x, pos.y, pos.z), - false, - ), - ) - .redo(); - } - } - - set_pos_y(y: number): void { - const entity = this.store.selected_entity.val; - - if (entity) { - const pos = entity.position.val; - this.store.undo - .push( - new TranslateEntityAction( - this.store, - entity, - entity.section.val, - entity.section.val, - pos, - new Vector3(pos.x, y, pos.z), - false, - ), - ) - .redo(); - } - } - - set_pos_z(z: number): void { - const entity = this.store.selected_entity.val; - - if (entity) { - const pos = entity.position.val; - this.store.undo - .push( - new TranslateEntityAction( - this.store, - entity, - entity.section.val, - entity.section.val, - pos, - new Vector3(pos.x, pos.y, z), - false, - ), - ) - .redo(); - } - } - - set_rot_x(x: number): void { - const entity = this.store.selected_entity.val; - - if (entity) { - const rot = entity.rotation.val; - this.store.undo - .push( - new RotateEntityAction( - this.store, - entity, - rot, - euler(deg_to_rad(x), rot.y, rot.z), - false, - ), - ) - .redo(); - } - } - - set_rot_y(y: number): void { - const entity = this.store.selected_entity.val; - - if (entity) { - const rot = entity.rotation.val; - this.store.undo - .push( - new RotateEntityAction( - this.store, - entity, - rot, - euler(rot.x, deg_to_rad(y), rot.z), - false, - ), - ) - .redo(); - } - } - - set_rot_z(z: number): void { - const entity = this.store.selected_entity.val; - - if (entity) { - const rot = entity.rotation.val; - this.store.undo - .push( - new RotateEntityAction( - this.store, - entity, - rot, - euler(rot.x, rot.y, deg_to_rad(z)), - false, - ), - ) - .redo(); - } - } - - set_prop_value(prop: QuestEntityPropModel, value: number): void { - const entity = this.store.selected_entity.val; - - if (entity) { - this.store.undo - .push(new EditEntityPropAction(this.store, entity, prop, prop.value.val, value)) - .redo(); - } - } -} diff --git a/src/quest_editor/controllers/EventsController.ts b/src/quest_editor/controllers/EventsController.ts deleted file mode 100644 index 3a443f0a..00000000 --- a/src/quest_editor/controllers/EventsController.ts +++ /dev/null @@ -1,196 +0,0 @@ -import { Controller } from "../../core/controllers/Controller"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { Property } from "../../core/observable/property/Property"; -import { QuestEventDagModel } from "../model/QuestEventDagModel"; -import { ListProperty } from "../../core/observable/property/list/ListProperty"; -import { flat_map_to_list, list_property, map } from "../../core/observable"; -import { QuestEventModel } from "../model/QuestEventModel"; -import { EditEventDelayAction } from "../actions/EditEventDelayAction"; -import { WaveModel } from "../model/WaveModel"; -import { RemoveEventAction } from "../actions/RemoveEventAction"; -import { CreateEventAction } from "../actions/CreateEventAction"; -import { - QuestEventActionLockModel, - QuestEventActionModel, - QuestEventActionSpawnNpcsModel, - QuestEventActionType, - QuestEventActionUnlockModel, -} from "../model/QuestEventActionModel"; - -export class EventsController extends Controller { - readonly event_dag: Property; - readonly event_sub_graphs: ListProperty>; - readonly enabled: Property; - readonly unavailable: Property; - - constructor(private readonly store: QuestEditorStore) { - super(); - - this.enabled = store.quest_runner.running.map(r => !r); - this.unavailable = store.current_quest.map(q => q == undefined); - - this.event_dag = map( - (quest, area) => { - if (quest && area) { - return quest.event_dags.get(area.id); - } else { - return undefined; - } - }, - store.current_quest, - store.current_area, - ); - - this.event_sub_graphs = flat_map_to_list( - dag => dag?.connected_sub_graphs ?? list_property(), - this.event_dag, - ); - } - - focused = (): void => { - this.store.undo.make_current(); - }; - - is_selected(event: QuestEventModel): Property { - return this.store.selected_wave.map(selected => event.wave === selected); - } - - add_event = (): void => { - const quest = this.store.current_quest.val; - const area = this.store.current_area.val; - - if (quest && area) { - const event_dag = quest.get_event_dag_or_create(area.id); - - const parent = event_dag.events.find( - event => event.wave === this.store.selected_wave.val, - ); - - const section_id = - parent?.section_id ?? this.store.selected_entity.val?.section_id?.val ?? 1; - - const event_ids: number[] = []; - const wave_ids: number[] = []; - - for (const event of event_dag.events) { - event_ids.push(event.id); - - if (event.wave.section_id.val === section_id) { - wave_ids.push(event.wave.id.val); - } - } - - event_ids.sort((a, b) => a - b); - wave_ids.sort((a, b) => a - b); - - // Find the first available wave id. - let wave_id: number = 0; - - for (const existing_wave_id of wave_ids) { - if (++wave_id !== existing_wave_id) { - break; - } - } - - if (wave_id === wave_ids.length) { - wave_id++; - } - - // Generate id. - let id_str: string; - - if (parent) { - // Generate id based on first ancestor id and amount of its child events. - let ancestor = parent; - - while (true) { - // Always choose the first parent. - const [p] = event_dag.get_parents(ancestor); - - if (p) { - ancestor = p; - } else { - break; - } - } - - const sub_graph_size = event_dag.get_sub_graph(ancestor).length.val; - id_str = `${ancestor.id}${sub_graph_size}`; - } else { - // Generate id based on section id and wave id. - id_str = `${section_id}${wave_id}`; - } - - let id = parseInt(id_str, 10); - - // Make sure id is unique. - let existing_index: number = 0; - - while (true) { - existing_index = event_ids.indexOf(id, existing_index); - - if (existing_index === -1) { - break; - } else { - id++; - } - } - - this.store.undo - .push( - new CreateEventAction( - quest, - event_dag, - new QuestEventModel( - id, - section_id, - new WaveModel(wave_id, area.id, section_id), - 30, - 0, // TODO: what is a sensible value for event.unknown? - ), - parent, - ), - ) - .redo(); - } - }; - - remove_event = (event: QuestEventModel): void => { - const quest = this.store.current_quest.val; - const dag = this.event_dag.val; - - if (quest && dag) { - this.store.undo.push(new RemoveEventAction(this.store, quest, dag, event)).redo(); - } - }; - - set_selected_wave = (wave?: WaveModel): void => { - this.store.set_selected_wave(wave); - }; - - set_delay = (event: QuestEventModel, delay: number): void => { - this.store.undo.push(new EditEventDelayAction(event, event.delay.val, delay)).redo(); - }; - - add_action(event: QuestEventModel, type: QuestEventActionType): void { - let action: QuestEventActionModel; - - switch (type) { - case QuestEventActionType.SpawnNpcs: - action = new QuestEventActionSpawnNpcsModel(0, 0); - break; - case QuestEventActionType.Unlock: - action = new QuestEventActionUnlockModel(0); - break; - case QuestEventActionType.Lock: - action = new QuestEventActionLockModel(0); - break; - } - - event.add_action(action); - } - - remove_action(event: QuestEventModel, action: QuestEventActionModel): void { - event.remove_action(action); - } -} diff --git a/src/quest_editor/controllers/NpcCountsController.ts b/src/quest_editor/controllers/NpcCountsController.ts deleted file mode 100644 index 22098352..00000000 --- a/src/quest_editor/controllers/NpcCountsController.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { Controller } from "../../core/controllers/Controller"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { Property } from "../../core/observable/property/Property"; -import { QuestNpcModel } from "../model/QuestNpcModel"; -import { npc_data, NpcType } from "../../core/data_formats/parsing/quest/npc_types"; -import { property } from "../../core/observable"; - -export type NameWithCount = { readonly name: string; readonly count: number }; - -export class NpcCountsController extends Controller { - readonly npc_counts: Property; - readonly unavailable: Property; - - constructor(store: QuestEditorStore) { - super(); - - this.unavailable = store.current_quest.map(q => q == undefined); - - this.npc_counts = store.current_quest - .flat_map(quest => (quest ? quest.npcs : property([]))) - .map(this.update_view); - } - - private update_view(npcs: readonly QuestNpcModel[]): NameWithCount[] { - const npc_counts = new Map(); - - for (const npc of npcs) { - // Don't count Vol Opt twice. - if (npc.type !== NpcType.VolOptPart2) { - const val = npc_counts.get(npc.type) || 0; - npc_counts.set(npc.type, val + 1); - } - } - - const extra_canadines = (npc_counts.get(NpcType.Canane) || 0) * 8; - - // Sort by canonical order. - const sorted_npc_counts = [...npc_counts].sort((a, b) => a[0] - b[0]); - - return sorted_npc_counts.map(([npc_type, count]) => { - const extra = npc_type === NpcType.Canadine ? extra_canadines : 0; - - return { name: npc_data(npc_type).name, count: count + extra }; - }); - } -} diff --git a/src/quest_editor/controllers/QuestEditorToolBarController.test.ts b/src/quest_editor/controllers/QuestEditorToolBarController.test.ts deleted file mode 100644 index 877fb44c..00000000 --- a/src/quest_editor/controllers/QuestEditorToolBarController.test.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { GuiStore } from "../../core/stores/GuiStore"; -import { - create_area_store, - create_quest_editor_store, -} from "../../../test/src/quest_editor/stores/store_creation"; -import { QuestEditorToolBarController } from "./QuestEditorToolBarController"; -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { QuestLoader } from "../loading/QuestLoader"; -import { FileSystemHttpClient } from "../../../test/src/core/FileSystemHttpClient"; -import { pw_test } from "../../../test/src/utils"; - -test( - "Some widgets should only be enabled when a quest is loaded.", - pw_test({}, async disposer => { - const quest_loader = disposer.add(new QuestLoader(new FileSystemHttpClient())); - const gui_store = disposer.add(new GuiStore()); - const area_store = create_area_store(disposer); - const quest_editor_store = create_quest_editor_store(disposer, area_store); - const ctrl = disposer.add( - new QuestEditorToolBarController( - quest_loader, - gui_store, - area_store, - quest_editor_store, - ), - ); - - expect(ctrl.can_save.val).toBe(false); - expect(ctrl.can_select_area.val).toBe(false); - - await ctrl.create_new_quest(Episode.I); - - expect(ctrl.can_save.val).toBe(true); - expect(ctrl.can_select_area.val).toBe(true); - }), -); diff --git a/src/quest_editor/controllers/QuestEditorToolBarController.ts b/src/quest_editor/controllers/QuestEditorToolBarController.ts deleted file mode 100644 index 35135605..00000000 --- a/src/quest_editor/controllers/QuestEditorToolBarController.ts +++ /dev/null @@ -1,269 +0,0 @@ -import { GuiStore, GuiTool } from "../../core/stores/GuiStore"; -import { AreaStore } from "../stores/AreaStore"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { AreaModel } from "../model/AreaModel"; -import { list_property, map, property } from "../../core/observable"; -import { Property } from "../../core/observable/property/Property"; -import { undo_manager } from "../../core/undo/UndoManager"; -import { Controller } from "../../core/controllers/Controller"; -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { open_files, read_file } from "../../core/files"; -import { - parse_bin_dat_to_quest, - parse_qst_to_quest, - write_quest_qst, -} from "../../core/data_formats/parsing/quest"; -import { ArrayBufferCursor } from "../../core/data_formats/block/cursor/ArrayBufferCursor"; -import { Endianness } from "../../core/data_formats/block/Endianness"; -import { convert_quest_from_model, convert_quest_to_model } from "../stores/model_conversion"; -import { LogManager } from "../../core/logging"; -import { basename } from "../../core/util"; -import { Version } from "../../core/data_formats/parsing/quest/Version"; -import { WritableProperty } from "../../core/observable/property/WritableProperty"; -import { failure, problem, Result } from "../../core/Result"; -import { Severity } from "../../core/Severity"; -import { Quest } from "../../core/data_formats/parsing/quest/Quest"; -import { QuestLoader } from "../loading/QuestLoader"; - -const logger = LogManager.get("quest_editor/controllers/QuestEditorToolBarController"); - -export type AreaAndLabel = { readonly area: AreaModel; readonly label: string }; - -export class QuestEditorToolBarController extends Controller { - private readonly _result_dialog_visible = property(false); - private readonly _result: WritableProperty | undefined> = property(undefined); - private readonly _result_problems_message = property(""); - private readonly _result_error_message = property(""); - - private _save_as_dialog_visible = property(false); - private _filename = property(""); - private _version = property(Version.BB); - - readonly result_dialog_visible: Property = this._result_dialog_visible; - readonly result: Property | undefined> = this._result; - readonly result_problems_message: Property = this._result_problems_message; - readonly result_error_message: Property = this._result_error_message; - - readonly areas: Property; - readonly current_area: Property; - readonly can_save: Property; - readonly can_undo: Property; - readonly can_redo: Property; - readonly can_select_area: Property; - readonly save_as_dialog_visible: Property = this._save_as_dialog_visible; - readonly filename: Property = this._filename; - readonly version: Property = this._version; - - constructor( - private readonly quest_loader: QuestLoader, - gui_store: GuiStore, - private readonly area_store: AreaStore, - private readonly quest_editor_store: QuestEditorStore, - ) { - super(); - - // Ensure the areas list is updated when entities are added or removed (the count in the - // label should update). - this.areas = quest_editor_store.current_quest.flat_map(quest => { - if (quest) { - return quest.entities_per_area.flat_map(entities_per_area => { - return list_property( - undefined, - ...area_store.get_areas_for_episode(quest.episode).map(area => { - const entity_count = entities_per_area.get(area.id); - return { - area, - label: area.name + (entity_count ? ` (${entity_count})` : ""), - }; - }), - ); - }); - } else { - return list_property(); - } - }); - - this.current_area = map( - (areas, area) => areas.find(al => al.area == area)!, - this.areas, - quest_editor_store.current_area, - ); - - const quest_loaded = quest_editor_store.current_quest.map(q => q != undefined); - this.can_save = quest_loaded; - this.can_select_area = quest_loaded; - - this.can_undo = map( - (c, r) => c && !r, - undo_manager.can_undo, - quest_editor_store.quest_runner.running, - ); - - this.can_redo = map( - (c, r) => c && !r, - undo_manager.can_redo, - quest_editor_store.quest_runner.running, - ); - - this.disposables( - gui_store.on_global_keydown(GuiTool.QuestEditor, "Ctrl-O", async () => { - const files = await open_files({ accept: ".bin, .dat, .qst", multiple: true }); - await this.parse_files(files); - }), - - gui_store.on_global_keydown(GuiTool.QuestEditor, "Ctrl-Shift-S", this.save_as_clicked), - - gui_store.on_global_keydown(GuiTool.QuestEditor, "Ctrl-Z", () => { - undo_manager.undo(); - }), - - gui_store.on_global_keydown(GuiTool.QuestEditor, "Ctrl-Shift-Z", () => { - undo_manager.redo(); - }), - - gui_store.on_global_keydown(GuiTool.QuestEditor, "Ctrl-Y", () => { - undo_manager.redo(); - }), - ); - } - - create_new_quest = async (episode: Episode): Promise => { - this.set_filename(""); - this.set_version(Version.BB); - await this.quest_editor_store.set_current_quest( - convert_quest_to_model( - this.area_store, - await this.quest_loader.load_default_quest(episode), - ), - ); - }; - - parse_files = async (files: File[]): Promise => { - try { - if (files.length === 0) return; - - let quest: Quest | undefined; - - const qst = files.find(f => f.name.toLowerCase().endsWith(".qst")); - - if (qst) { - const buffer = await read_file(qst); - const parse_result = parse_qst_to_quest( - new ArrayBufferCursor(buffer, Endianness.Little), - ); - this.set_result(parse_result); - - if (parse_result.success) { - quest = parse_result.value.quest; - this.set_version(parse_result.value.version); - this.set_filename(basename(qst.name)); - } - } else { - const bin = files.find(f => f.name.toLowerCase().endsWith(".bin")); - const dat = files.find(f => f.name.toLowerCase().endsWith(".dat")); - - if (bin && dat) { - const bin_buffer = await read_file(bin); - const dat_buffer = await read_file(dat); - const parse_result = parse_bin_dat_to_quest( - new ArrayBufferCursor(bin_buffer, Endianness.Little), - new ArrayBufferCursor(dat_buffer, Endianness.Little), - ); - this.set_result(parse_result); - - if (parse_result.success) { - quest = parse_result.value; - this.set_filename(basename(bin.name || dat.name)); - } - } else { - this.set_result( - failure( - problem( - Severity.Error, - "Please select a .qst file or one .bin and one .dat file.", - ), - ), - ); - } - } - - if (quest) { - await this.quest_editor_store.set_current_quest( - convert_quest_to_model(this.area_store, quest), - ); - } - } catch (e) { - logger.error("Couldn't read file.", e); - this.set_result(failure(problem(Severity.Error, e.message))); - } - }; - - set_area = ({ area }: AreaAndLabel): void => { - this.quest_editor_store.set_current_area(area); - }; - - save_as_clicked = (): void => { - if (this.quest_editor_store.current_quest.val) { - this._save_as_dialog_visible.val = true; - } - }; - - save_as = (): void => { - const quest = this.quest_editor_store.current_quest.val; - if (!quest) return; - - const format = this.version.val; - if (format === undefined) return; - - let filename = this.filename.val; - const buffer = write_quest_qst(convert_quest_from_model(quest), filename, format, true); - - if (!filename.endsWith(".qst")) { - filename += ".qst"; - } - - const a = document.createElement("a"); - a.href = URL.createObjectURL(new Blob([buffer], { type: "application/octet-stream" })); - a.download = filename; - document.body.appendChild(a); - a.click(); - URL.revokeObjectURL(a.href); - document.body.removeChild(a); - - this.dismiss_save_as_dialog(); - }; - - dismiss_save_as_dialog = (): void => { - this._save_as_dialog_visible.val = false; - }; - - set_filename = (filename: string): void => { - this._filename.val = filename; - }; - - set_version = (version: Version): void => { - // We only support GC and BB at the moment. - switch (version) { - case Version.DC: - case Version.GC: - this._version.val = Version.GC; - break; - case Version.PC: - case Version.BB: - this._version.val = Version.BB; - break; - } - }; - - dismiss_result_dialog = (): void => { - this._result_dialog_visible.val = false; - }; - - private set_result(result: Result): void { - this._result.val = result; - - if (result.problems.length) { - this._result_dialog_visible.val = true; - } - } -} diff --git a/src/quest_editor/controllers/QuestInfoController.test.ts b/src/quest_editor/controllers/QuestInfoController.test.ts deleted file mode 100644 index 51f924a0..00000000 --- a/src/quest_editor/controllers/QuestInfoController.test.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { - create_area_store, - create_quest_editor_store, -} from "../../../test/src/quest_editor/stores/store_creation"; -import { QuestInfoController } from "./QuestInfoController"; -import { load_default_quest_model, pw_test } from "../../../test/src/utils"; - -test( - "When a property's input value changes, this should be reflected in the current quest object and the undo stack.", - pw_test({}, async disposer => { - const area_store = create_area_store(disposer); - const store = create_quest_editor_store(disposer, area_store); - const ctrl = disposer.add(new QuestInfoController(store)); - - await store.set_current_quest(load_default_quest_model(area_store)); - - ctrl.set_id(3004); - expect(store.current_quest.val!.id.val).toBe(3004); - expect(store.undo.undo()).toBe(true); - expect(store.current_quest.val!.id.val).toBe(0); - - ctrl.set_name("Correct Horse Battery Staple"); - expect(store.current_quest.val!.name.val).toBe("Correct Horse Battery Staple"); - expect(store.undo.undo()).toBe(true); - expect(store.current_quest.val!.name.val).toBe("Untitled"); - - ctrl.set_short_description("This is a short description."); - expect(store.current_quest.val!.short_description.val).toBe("This is a short description."); - expect(store.undo.undo()).toBe(true); - expect(store.current_quest.val!.short_description.val).toBe( - "Created with phantasmal.world.", - ); - - ctrl.set_long_description("This is a somewhat longer description."); - expect(store.current_quest.val!.long_description.val).toBe( - "This is a somewhat longer description.", - ); - expect(store.undo.undo()).toBe(true); - expect(store.current_quest.val!.long_description.val).toBe( - "Created with phantasmal.world.", - ); - }), -); diff --git a/src/quest_editor/controllers/QuestInfoController.ts b/src/quest_editor/controllers/QuestInfoController.ts deleted file mode 100644 index 09d19034..00000000 --- a/src/quest_editor/controllers/QuestInfoController.ts +++ /dev/null @@ -1,74 +0,0 @@ -import { Property } from "../../core/observable/property/Property"; -import { EditIdAction } from "../actions/EditIdAction"; -import { EditNameAction } from "../actions/EditNameAction"; -import { EditShortDescriptionAction } from "../actions/EditShortDescriptionAction"; -import { EditLongDescriptionAction } from "../actions/EditLongDescriptionAction"; -import { QuestModel } from "../model/QuestModel"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { Controller } from "../../core/controllers/Controller"; - -export class QuestInfoController extends Controller { - readonly current_quest: Property; - readonly enabled: Property; - readonly unavailable: Property; - - constructor(private readonly store: QuestEditorStore) { - super(); - - this.current_quest = store.current_quest; - this.enabled = store.quest_runner.running.map(r => !r); - this.unavailable = this.current_quest.map(q => q == undefined); - } - - focused = (): void => { - this.store.undo.make_current(); - }; - - set_id = (id: number): void => { - const quest = this.current_quest.val; - - if (quest) { - this.store.undo.push(new EditIdAction(quest, quest.id.val, id)).redo(); - } - }; - - set_name = (name: string): void => { - const quest = this.current_quest.val; - - if (quest) { - this.store.undo.push(new EditNameAction(quest, quest.name.val, name)).redo(); - } - }; - - set_short_description = (short_description: string): void => { - const quest = this.current_quest.val; - - if (quest) { - this.store.undo - .push( - new EditShortDescriptionAction( - quest, - quest.short_description.val, - short_description, - ), - ) - .redo(); - } - }; - - set_long_description = (long_description: string): void => { - const quest = this.current_quest.val; - - if (quest) { - this.store.undo - .push( - new EditLongDescriptionAction( - quest, - quest.long_description.val, - long_description, - ), - ) - .redo(); - } - }; -} diff --git a/src/quest_editor/gui/AsmEditorToolBar.ts b/src/quest_editor/gui/AsmEditorToolBar.ts deleted file mode 100644 index ce4eecb9..00000000 --- a/src/quest_editor/gui/AsmEditorToolBar.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { ToolBar } from "../../core/gui/ToolBar"; -import { CheckBox } from "../../core/gui/CheckBox"; -import { AsmEditorStore } from "../stores/AsmEditorStore"; - -export class AsmEditorToolBar extends ToolBar { - constructor(asm_editor_store: AsmEditorStore) { - const inline_args_mode_checkbox = new CheckBox(true, { - label: "Inline args mode", - tooltip: asm_editor_store.has_issues.map(has_issues => { - let text = - "Transform arg_push* opcodes to be inline with the opcode the arguments are given to."; - - if (has_issues) { - text += "\nThis mode cannot be toggled because there are issues in the script."; - } - - return text; - }), - }); - - super(inline_args_mode_checkbox); - - this.disposables( - inline_args_mode_checkbox.checked.bind_to(asm_editor_store.inline_args_mode), - - inline_args_mode_checkbox.checked.observe(({ value }) => - asm_editor_store.set_inline_args_mode(value), - ), - - inline_args_mode_checkbox.enabled.bind_to(asm_editor_store.has_issues.map(b => !b)), - ); - - this.finalize_construction(AsmEditorToolBar); - } -} diff --git a/src/quest_editor/gui/AsmEditorView.css b/src/quest_editor/gui/AsmEditorView.css deleted file mode 100644 index 8a283020..00000000 --- a/src/quest_editor/gui/AsmEditorView.css +++ /dev/null @@ -1,30 +0,0 @@ -:root { - --red-circle-svg: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 4c.367 0 .721.048 1.063.145a3.943 3.943 0 0 1 1.762 1.031 3.944 3.944 0 0 1 1.03 1.762c.097.34.145.695.145 1.062 0 .367-.048.721-.145 1.063a3.94 3.94 0 0 1-1.03 1.765 4.017 4.017 0 0 1-1.762 1.031C8.72 11.953 8.367 12 8 12s-.721-.047-1.063-.14a4.056 4.056 0 0 1-1.765-1.032A4.055 4.055 0 0 1 4.14 9.062 3.992 3.992 0 0 1 4 8c0-.367.047-.721.14-1.063.097-.34.232-.658.407-.953A4.089 4.089 0 0 1 5.98 4.546a3.94 3.94 0 0 1 .957-.401A3.89 3.89 0 0 1 8 4z' fill='%23E51400'/%3E%3C/svg%3E") 50% no-repeat; -} - -.monaco-editor .margin-view-overlays > div:after { - cursor: pointer; - content: ""; - position: absolute; - left: 0; - /* width of parent - width of icon */ - right: 50px; - top: 0; - bottom: 0; - visibility: hidden; - opacity: 0.5; - background: var(--red-circle-svg); -} - -.monaco-editor .margin-view-overlays > div:hover:after { - visibility: visible; -} - -.quest_editor_AsmEditorView_breakpoint-enabled { - /* a red circle */ - background: var(--red-circle-svg); -} - -.quest_editor_AsmEditorView_execution-location { - background: hsla(80, 100%, 60%, 0.3); -} diff --git a/src/quest_editor/gui/AsmEditorView.ts b/src/quest_editor/gui/AsmEditorView.ts deleted file mode 100644 index 5694b0df..00000000 --- a/src/quest_editor/gui/AsmEditorView.ts +++ /dev/null @@ -1,237 +0,0 @@ -import { editor, KeyCode, KeyMod, Range } from "monaco-editor"; -import { AsmEditorToolBar } from "./AsmEditorToolBar"; -import { EditorHistory } from "./EditorHistory"; -import "./AsmEditorView.css"; -import { ListChangeType } from "../../core/observable/property/list/ListProperty"; -import { GuiStore } from "../../core/stores/GuiStore"; -import { AsmEditorStore } from "../stores/AsmEditorStore"; -import { QuestRunner } from "../QuestRunner"; -import { div } from "../../core/gui/dom"; -import { ResizableView } from "../../core/gui/ResizableView"; -import IStandaloneCodeEditor = editor.IStandaloneCodeEditor; - -editor.defineTheme("phantasmal-world", { - base: "vs-dark", - inherit: true, - rules: [ - { token: "", foreground: "e0e0e0", background: "#181818" }, - { token: "tag", foreground: "99bbff" }, - { token: "keyword", foreground: "d0a0ff", fontStyle: "bold" }, - { token: "predefined", foreground: "bbffbb" }, - { token: "number", foreground: "ffffaa" }, - { token: "number.hex", foreground: "ffffaa" }, - { token: "string", foreground: "88ffff" }, - { token: "string.escape", foreground: "8888ff" }, - ], - colors: { - "editor.background": "#181818", - "editor.lineHighlightBackground": "#202020", - }, -}); - -const DUMMY_MODEL = editor.createModel("", "psoasm"); - -export class AsmEditorView extends ResizableView { - private readonly tool_bar_view: AsmEditorToolBar; - private readonly editor: IStandaloneCodeEditor; - private readonly history: EditorHistory; - private breakpoint_decoration_ids: string[] = []; - private execloc_decoration_id: string | undefined; - private old_pause_location?: number; - - readonly element = div(); - - constructor( - gui_store: GuiStore, - quest_runner: QuestRunner, - private readonly asm_editor_store: AsmEditorStore, - ) { - super(); - - this.tool_bar_view = this.add(new AsmEditorToolBar(asm_editor_store)); - - this.element.append(this.tool_bar_view.element); - - this.editor = this.disposable( - editor.create(this.element, { - theme: "phantasmal-world", - scrollBeyondLastLine: false, - autoIndent: "full", - fontSize: 13, - wordWrap: "on", - wrappingIndent: "indent", - renderIndentGuides: false, - folding: false, - glyphMargin: gui_store.feature_active("vm"), - }), - ); - - this.history = this.disposable(new EditorHistory(this.editor)); - - const quick_command = this.editor.getAction("editor.action.quickCommand"); - - this.disposables( - this.editor.addAction({ - id: "editor.action.quickCommand", - label: "Command Palette", - keybindings: [KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KEY_P], - run: () => quick_command.run(), - }), - ); - - this.disposables( - asm_editor_store.did_undo.observe(({ value: source }) => { - this.editor.trigger(source, "undo", undefined); - }), - - asm_editor_store.did_redo.observe(({ value: source }) => { - this.editor.trigger(source, "redo", undefined); - }), - - asm_editor_store.model.observe( - ({ value: model }) => { - this.editor.updateOptions({ - readOnly: !this.enabled.val || !model, - }); - this.editor.setModel(model || DUMMY_MODEL); - this.history.reset(); - - this.breakpoint_decoration_ids = []; - this.execloc_decoration_id = ""; - - quest_runner.clear_breakpoints(); - }, - { call_now: true }, - ), - - asm_editor_store.breakpoints.observe_list(change => { - if (change.type === ListChangeType.ListChange) { - // remove - for (const breakpoint of change.removed) { - const cur_decos = this.editor.getLineDecorations(breakpoint.line_no); - // find decoration on line - if (cur_decos) { - for (const deco of cur_decos) { - const idx = this.breakpoint_decoration_ids.indexOf(deco.id); - - if (idx > -1) { - // remove decoration - this.editor.deltaDecorations([deco.id], []); - this.breakpoint_decoration_ids.splice(idx, 1); - break; - } - } - } - } - - // add - for (const breakpoint of change.inserted) { - const cur_decos = this.editor.getLineDecorations(breakpoint.line_no); - // don't allow duplicates - if ( - !cur_decos?.some(deco => - this.breakpoint_decoration_ids.includes(deco.id), - ) - ) { - // add new decoration, don't overwrite anything, save decoration id - this.breakpoint_decoration_ids.push( - this.editor.deltaDecorations( - [], - [ - { - range: new Range( - breakpoint.line_no, - 0, - breakpoint.line_no, - 0, - ), - options: { - glyphMarginClassName: - "quest_editor_AsmEditorView_breakpoint-enabled", - glyphMarginHoverMessage: { - value: "Breakpoint", - }, - }, - }, - ], - )[0], - ); - } - } - } - }), - - asm_editor_store.pause_location.observe(e => { - const old_line_num = this.old_pause_location; - const new_line_num = e.value; - this.old_pause_location = new_line_num; - - // remove old - if (old_line_num !== undefined && this.execloc_decoration_id !== undefined) { - const old_line_decos = this.editor.getLineDecorations(old_line_num); - - if (old_line_decos) { - this.editor.deltaDecorations([this.execloc_decoration_id], []); - } - } - - // add new - if (new_line_num !== undefined) { - this.execloc_decoration_id = this.editor.deltaDecorations( - [], - [ - { - range: new Range(new_line_num, 0, new_line_num, 0), - options: { - className: "quest_editor_AsmEditorView_execution-location", - isWholeLine: true, - }, - }, - ], - )[0]; - - this.editor.revealLineInCenterIfOutsideViewport(new_line_num); - } - }), - - this.editor.onDidFocusEditorWidget(() => asm_editor_store.undo.make_current()), - - this.editor.onMouseDown(e => { - switch (e.target.type) { - case editor.MouseTargetType.GUTTER_GLYPH_MARGIN: - { - const pos = e.target.position; - if (!pos) { - return; - } - quest_runner.toggle_breakpoint(pos.lineNumber); - } - break; - default: - break; - } - }), - - this.enabled.bind_to(quest_runner.running.map(r => !r)), - ); - - this.finalize_construction(AsmEditorView); - } - - focus(): void { - this.editor.focus(); - } - - resize(width: number, height: number): this { - const editor_height = Math.max(0, height - this.tool_bar_view.height); - this.editor.layout({ width, height: editor_height }); - return this; - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - - this.tool_bar_view.enabled.val = enabled; - this.editor.updateOptions({ readOnly: !enabled || !this.asm_editor_store.model.val }); - } -} diff --git a/src/quest_editor/gui/DebugView.css b/src/quest_editor/gui/DebugView.css deleted file mode 100644 index eccc05b8..00000000 --- a/src/quest_editor/gui/DebugView.css +++ /dev/null @@ -1,52 +0,0 @@ -.quest_editor_DebugView { - display: flex; - flex-direction: column; - outline: none; -} - -.quest_editor_DebugView_thread_select { - width: 200px; -} - -.quest_editor_DebugView_severity_select { - max-width: 90px; -} - -.quest_editor_DebugView_list_container { - flex: 1; - overflow: auto; - background-color: #181818; - user-select: text; -} - -.quest_editor_DebugView_message_list { - font-family: monospace; - margin: 2px 0; - cursor: text; -} - -.quest_editor_DebugView_message { - display: flex; - padding: 0 2px; - white-space: pre; -} - -.quest_editor_DebugView_message > * { - padding: 0 2px; -} - -.quest_editor_DebugView_message > .quest_editor_DebugView_message_timestamp { - color: var(--text-color-disabled); -} - -.quest_editor_DebugView_message > .quest_editor_DebugView_message_contents { - overflow-wrap: anywhere; -} - -.quest_editor_DebugView .quest_editor_DebugView_Error_message .quest_editor_DebugView_message_severity { - color: hsl(0, 80%, 50%); -} - -.quest_editor_DebugView .quest_editor_DebugView_Warning_message .quest_editor_DebugView_message_severity { - color: hsl(30, 80%, 50%); -} diff --git a/src/quest_editor/gui/DebugView.ts b/src/quest_editor/gui/DebugView.ts deleted file mode 100644 index bb5e91a1..00000000 --- a/src/quest_editor/gui/DebugView.ts +++ /dev/null @@ -1,167 +0,0 @@ -import { bind_children_to, div, Icon } from "../../core/gui/dom"; -import { ToolBar } from "../../core/gui/ToolBar"; -import "./DebugView.css"; -import { Select } from "../../core/gui/Select"; -import { LogEntry, time_to_string } from "../../core/logging"; -import { ResizableView } from "../../core/gui/ResizableView"; -import { Severities, Severity } from "../../core/Severity"; -import { Button } from "../../core/gui/Button"; -import { DebugController } from "../controllers/DebugController"; - -const AUTOSCROLL_TRESHOLD = 5; - -export class DebugView extends ResizableView { - readonly element: HTMLElement; - - // container is needed to get a scrollbar in the right place - private readonly list_container: HTMLElement; - private readonly list_element: HTMLElement; - - private readonly settings_bar: ToolBar; - - private should_scroll_to_bottom = true; - - constructor(ctrl: DebugController) { - super(); - - const debug_button = new Button({ - text: "Debug", - icon_left: Icon.Play, - tooltip: "Debug the current quest in a virtual machine (F5)", - }); - const resume_button = new Button({ - icon_left: Icon.SquareArrowRight, - tooltip: "Continue (F6)", - }); - const step_over_button = new Button({ - icon_left: Icon.LongArrowRight, - tooltip: "Step over (F10)", - }); - const step_in_button = new Button({ - icon_left: Icon.LevelDown, - tooltip: "Step into (F11)", - }); - const step_out_button = new Button({ - icon_left: Icon.LevelUp, - tooltip: "Step out (Shift-F11)", - }); - const stop_button = new Button({ - icon_left: Icon.Stop, - tooltip: "Stop execution (Shift-F5)", - }); - const thread_select = new Select({ - class: "quest_editor_DebugView_thread_select", - label: "Thread:", - items: ctrl.threads, - selected: ctrl.selected_thread_id, - to_label: id_and_label => id_and_label.label, - }); - const severity_select = new Select({ - class: "quest_editor_DebugView_severity_select", - label: "Log:", - items: Severities, - selected: ctrl.severity, - to_label: severity => Severity[severity], - }); - - this.settings_bar = this.add( - new ToolBar( - { class: "quest_editor_DebugView_settings" }, - debug_button, - resume_button, - step_over_button, - step_in_button, - step_out_button, - stop_button, - thread_select, - severity_select, - ), - ); - - this.list_element = div({ className: "quest_editor_DebugView_message_list" }); - - this.list_container = div( - { className: "quest_editor_DebugView_list_container" }, - this.list_element, - ); - - this.element = div( - { - className: "quest_editor_DebugView", - tabIndex: -1, - }, - this.settings_bar.element, - this.list_container, - ); - - this.list_container.addEventListener("scroll", this.scrolled); - - this.disposables( - bind_children_to(this.list_element, ctrl.log, this.create_message_element, { - after: this.scroll_to_bottom, - }), - - debug_button.onclick.observe(ctrl.debug), - debug_button.enabled.bind_to(ctrl.can_debug), - - resume_button.onclick.observe(ctrl.resume), - resume_button.enabled.bind_to(ctrl.can_step), - - step_over_button.onclick.observe(ctrl.step_over), - step_over_button.enabled.bind_to(ctrl.can_step), - - step_in_button.onclick.observe(ctrl.step_in), - step_in_button.enabled.bind_to(ctrl.can_step), - - step_out_button.onclick.observe(ctrl.step_out), - step_out_button.enabled.bind_to(ctrl.can_step), - - stop_button.onclick.observe(ctrl.stop), - stop_button.enabled.bind_to(ctrl.can_stop), - - thread_select.selected.observe(({ value }) => ctrl.select_thread(value!.id)), - thread_select.enabled.bind_to(ctrl.can_select_thread), - - severity_select.selected.observe( - ({ value }) => value != undefined && ctrl.set_severity(value), - ), - ); - - this.finalize_construction(DebugView); - } - - private scrolled = (): void => { - this.should_scroll_to_bottom = - this.list_container.scrollTop >= - this.list_container.scrollHeight - - this.list_container.offsetHeight - - AUTOSCROLL_TRESHOLD; - }; - - private scroll_to_bottom = (): void => { - if (this.should_scroll_to_bottom) { - this.list_container.scrollTo({ - top: this.list_container.scrollHeight, - left: 0, - behavior: "auto", - }); - } - }; - - private create_message_element = ({ time, severity, message }: LogEntry): HTMLElement => { - return div( - { - className: [ - "quest_editor_DebugView_message", - "quest_editor_DebugView_" + Severity[severity] + "_message", - ].join(" "), - }, - div({ className: "quest_editor_DebugView_message_timestamp" }, time_to_string(time)), - div( - { className: "quest_editor_DebugView_message_severity" }, - `[${Severity[severity]}]`, - ), - div({ className: "quest_editor_DebugView_message_contents" }, message), - ); - }; -} diff --git a/src/quest_editor/gui/EditorHistory.ts b/src/quest_editor/gui/EditorHistory.ts deleted file mode 100644 index 62e60be1..00000000 --- a/src/quest_editor/gui/EditorHistory.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { Disposable } from "../../core/observable/Disposable"; -import { editor, IPosition, KeyCode, KeyMod } from "monaco-editor"; -import { Disposer } from "../../core/observable/Disposer"; -import IStandaloneCodeEditor = editor.IStandaloneCodeEditor; -import ICursorPositionChangedEvent = editor.ICursorPositionChangedEvent; -import IEditorMouseEvent = editor.IEditorMouseEvent; -import ScrollType = editor.ScrollType; - -export class EditorHistory implements Disposable { - private readonly history: IPosition[] = []; - private history_index = -1; - private capture_history = true; - private readonly disposer = new Disposer(); - - constructor(private readonly editor: IStandaloneCodeEditor) { - this.disposer.add_all( - this.editor.onDidChangeCursorPosition(this.did_change_cursor_position), - - this.editor.addAction({ - id: "phantasmal.action.back", - label: "Back", - keybindings: [KeyMod.Alt | KeyCode.LeftArrow], - run: this.back, - }), - - this.editor.addAction({ - id: "phantasmal.action.forward", - label: "Forward", - keybindings: [KeyMod.Alt | KeyCode.RightArrow], - run: this.forward, - }), - - this.editor.onMouseUp(this.mouse_up), - ); - } - - dispose(): void { - this.disposer.dispose(); - } - - reset(): void { - this.history.splice(0, Infinity); - this.history_index = -1; - } - - private did_change_cursor_position = (e: ICursorPositionChangedEvent): void => { - if (!this.capture_history) return; - - this.history.splice(this.history_index + 1, Infinity); - - if ( - e.source === "api" || - this.history_index === -1 || - Math.abs(e.position.lineNumber - this.history[this.history_index].lineNumber) >= 10 - ) { - this.history.push(e.position); - this.history_index++; - } else { - this.history[this.history_index] = e.position; - } - }; - - private back = async (): Promise => { - if (this.history_index > 0) { - this.set_position(this.history[--this.history_index]); - } - }; - - private forward = async (): Promise => { - if (this.history_index + 1 < this.history.length) { - this.set_position(this.history[++this.history_index]); - } - }; - - private set_position = (position: IPosition): void => { - this.capture_history = false; - this.editor.setPosition(position); - this.editor.revealPositionInCenterIfOutsideViewport(position, ScrollType.Immediate); - this.capture_history = true; - }; - - private mouse_up = (e: IEditorMouseEvent): void => { - const button = e.event.browserEvent.button; - const buttons = e.event.browserEvent.buttons; - - if (button === 3) { - if (buttons === 0) { - e.event.preventDefault(); - this.back(); - } - - this.editor.focus(); - } else if (button === 4) { - if (buttons === 0) { - e.event.preventDefault(); - this.forward(); - } - - this.editor.focus(); - } - }; -} diff --git a/src/quest_editor/gui/EntityInfoView.css b/src/quest_editor/gui/EntityInfoView.css deleted file mode 100644 index 6f44b438..00000000 --- a/src/quest_editor/gui/EntityInfoView.css +++ /dev/null @@ -1,28 +0,0 @@ -.quest_editor_EntityInfoView { - outline: none; - box-sizing: border-box; - padding: 3px; - overflow: auto; -} - -.quest_editor_EntityInfoView table { - table-layout: fixed; - width: 100%; - margin: 0 auto; -} - -.quest_editor_EntityInfoView th { - text-align: left; -} - -.quest_editor_EntityInfoView th.quest_editor_EntityInfoView_coord { - padding-left: 10px; -} - -.quest_editor_EntityInfoView .core_NumberInput { - width: 100%; -} - -.quest_editor_EntityInfoView table.quest_editor_EntityInfoView_specific_props { - margin-top: -2px; -} diff --git a/src/quest_editor/gui/EntityInfoView.test.ts b/src/quest_editor/gui/EntityInfoView.test.ts deleted file mode 100644 index ae61a187..00000000 --- a/src/quest_editor/gui/EntityInfoView.test.ts +++ /dev/null @@ -1,61 +0,0 @@ -import { EntityInfoView } from "./EntityInfoView"; -import { EntityInfoController } from "../controllers/EntityInfoController"; -import { - create_area_store, - create_quest_editor_store, -} from "../../../test/src/quest_editor/stores/store_creation"; -import { undo_manager } from "../../core/undo/UndoManager"; -import { load_default_quest_model, pw_test } from "../../../test/src/utils"; - -test( - "Renders correctly without an entity selected.", - pw_test({}, disposer => { - const area_store = create_area_store(disposer); - const store = create_quest_editor_store(disposer, area_store); - const view = disposer.add( - new EntityInfoView(disposer.add(new EntityInfoController(store))), - ); - - expect(view.element).toMatchSnapshot('should render a "No entity selected." view'); - - store.set_current_quest(load_default_quest_model(area_store)); - - expect(view.element).toMatchSnapshot('should render a "No entity selected." view'); - }), -); - -test( - "Renders correctly with an entity selected.", - pw_test({}, disposer => { - const area_store = create_area_store(disposer); - const store = create_quest_editor_store(disposer, area_store); - const view = disposer.add( - new EntityInfoView(disposer.add(new EntityInfoController(store))), - ); - - const quest = load_default_quest_model(area_store); - store.set_current_quest(quest); - store.set_selected_entity(quest.npcs.get(0)); - - expect(view.element).toMatchSnapshot("should render a table of editable properties"); - }), -); - -test( - "When the view's element is focused the quest editor store's undo stack should become the current stack.", - pw_test({}, disposer => { - const store = create_quest_editor_store(disposer); - const view = disposer.add( - new EntityInfoView(disposer.add(new EntityInfoController(store))), - ); - - // Append view element to DOM to make it focusable. - document.body.append(view.element); - - undo_manager.make_noop_current(); - - view.element.focus(); - - expect(undo_manager.current.val).toBe(store.undo); - }), -); diff --git a/src/quest_editor/gui/EntityInfoView.ts b/src/quest_editor/gui/EntityInfoView.ts deleted file mode 100644 index 50d01e95..00000000 --- a/src/quest_editor/gui/EntityInfoView.ts +++ /dev/null @@ -1,187 +0,0 @@ -import { bind_attr, bind_children_to, div, table, td, th, tr } from "../../core/gui/dom"; -import { UnavailableView } from "./UnavailableView"; -import "./EntityInfoView.css"; -import { NumberInput } from "../../core/gui/NumberInput"; -import { deg_to_rad, rad_to_deg } from "../../core/math"; -import { EntityInfoController } from "../controllers/EntityInfoController"; -import { ResizableView } from "../../core/gui/ResizableView"; -import { QuestEntityPropModel } from "../model/QuestEntityPropModel"; -import { Disposable } from "../../core/observable/Disposable"; -import { Disposer } from "../../core/observable/Disposer"; -import { EntityPropType } from "../../core/data_formats/parsing/quest/properties"; - -export class EntityInfoView extends ResizableView { - readonly element = div({ className: "quest_editor_EntityInfoView", tabIndex: -1 }); - - private readonly no_entity_view = new UnavailableView("No entity selected."); - - private readonly standard_props_element = table(); - private readonly specific_props_element = table({ - className: "quest_editor_EntityInfoView_specific_props", - }); - - private readonly type_element: HTMLTableCellElement; - private readonly name_element: HTMLTableCellElement; - private readonly section_id_element: HTMLTableCellElement; - private readonly wave_element: HTMLTableCellElement; - private readonly wave_row_element: HTMLTableRowElement; - private readonly pos_x_element = this.add(new NumberInput(0, { round_to: 3 })); - private readonly pos_y_element = this.add(new NumberInput(0, { round_to: 3 })); - private readonly pos_z_element = this.add(new NumberInput(0, { round_to: 3 })); - private readonly rot_x_element = this.add(new NumberInput(0, { round_to: 3 })); - private readonly rot_y_element = this.add(new NumberInput(0, { round_to: 3 })); - private readonly rot_z_element = this.add(new NumberInput(0, { round_to: 3 })); - - constructor(private readonly ctrl: EntityInfoController) { - super(); - - const coord_class = "quest_editor_EntityInfoView_coord"; - - this.standard_props_element.append( - tr(th("Type:"), (this.type_element = td())), - tr(th("Name:"), (this.name_element = td())), - tr(th("Section:"), (this.section_id_element = td())), - (this.wave_row_element = tr(th("Wave:"), (this.wave_element = td()))), - tr(th({ colSpan: 2 }, "Position:")), - tr(th({ className: coord_class }, "X:"), td(this.pos_x_element.element)), - tr(th({ className: coord_class }, "Y:"), td(this.pos_y_element.element)), - tr(th({ className: coord_class }, "Z:"), td(this.pos_z_element.element)), - tr(th({ colSpan: 2 }, "Rotation:")), - tr(th({ className: coord_class }, "X:"), td(this.rot_x_element.element)), - tr(th({ className: coord_class }, "Y:"), td(this.rot_y_element.element)), - tr(th({ className: coord_class }, "Z:"), td(this.rot_z_element.element)), - ); - - bind_children_to(this.specific_props_element, ctrl.props, this.create_prop_row); - - this.element.append( - this.standard_props_element, - this.specific_props_element, - this.no_entity_view.element, - ); - - this.element.addEventListener("focus", ctrl.focused, true); - - this.disposables( - bind_attr(this.standard_props_element, "hidden", ctrl.unavailable), - this.no_entity_view.visible.bind_to(ctrl.unavailable), - - bind_attr(this.type_element, "textContent", ctrl.type), - bind_attr(this.name_element, "textContent", ctrl.name), - bind_attr(this.section_id_element, "textContent", ctrl.section_id), - bind_attr(this.wave_element, "textContent", ctrl.wave), - bind_attr(this.wave_row_element, "hidden", ctrl.wave_hidden), - - ctrl.position.observe( - ({ value: { x, y, z } }) => { - this.pos_x_element.value.val = x; - this.pos_y_element.value.val = y; - this.pos_z_element.value.val = z; - }, - { call_now: true }, - ), - - ctrl.rotation.observe( - ({ value: { x, y, z } }) => { - this.rot_x_element.value.val = rad_to_deg(x); - this.rot_y_element.value.val = rad_to_deg(y); - this.rot_z_element.value.val = rad_to_deg(z); - }, - { call_now: true }, - ), - - this.pos_x_element.value.observe(({ value }) => ctrl.set_pos_x(value)), - this.pos_y_element.value.observe(({ value }) => ctrl.set_pos_y(value)), - this.pos_z_element.value.observe(({ value }) => ctrl.set_pos_z(value)), - - this.rot_x_element.value.observe(({ value }) => ctrl.set_rot_x(value)), - this.rot_y_element.value.observe(({ value }) => ctrl.set_rot_y(value)), - this.rot_z_element.value.observe(({ value }) => ctrl.set_rot_z(value)), - - this.enabled.bind_to(ctrl.enabled), - ); - - this.finalize_construction(EntityInfoView); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - - this.pos_x_element.enabled.val = enabled; - this.pos_y_element.enabled.val = enabled; - this.pos_z_element.enabled.val = enabled; - - this.rot_x_element.enabled.val = enabled; - this.rot_y_element.enabled.val = enabled; - this.rot_z_element.enabled.val = enabled; - } - - private create_prop_row = (prop: QuestEntityPropModel): [HTMLTableRowElement, Disposable] => { - const disposer = new Disposer(); - - let min: number | undefined; - let max: number | undefined; - - switch (prop.type) { - case EntityPropType.U8: - min = 0; - max = 0xff; - break; - case EntityPropType.U16: - min = 0; - max = 0xffff; - break; - case EntityPropType.U32: - min = 0; - max = 0xffffffff; - break; - case EntityPropType.I8: - min = -0x80; - max = 0x7f; - break; - case EntityPropType.I16: - min = -0x8000; - max = 0x7fff; - break; - case EntityPropType.I32: - min = -0x80000000; - max = 0x7fffffff; - break; - case EntityPropType.Angle: - min = -360; - max = 360; - break; - } - - const round_to = - prop.type === EntityPropType.F32 || prop.type === EntityPropType.Angle ? 3 : 1; - - const value_input = disposer.add( - new NumberInput( - prop.type === EntityPropType.Angle ? rad_to_deg(prop.value.val) : prop.value.val, - { - min, - max, - round_to, - }, - ), - ); - - disposer.add_all( - value_input.value.bind_to( - prop.type === EntityPropType.Angle ? prop.value.map(rad_to_deg) : prop.value, - ), - - value_input.value.observe(({ value }) => - this.ctrl.set_prop_value( - prop, - prop.type === EntityPropType.Angle ? deg_to_rad(value) : value, - ), - ), - ); - - const element = tr(th(`${prop.name}:`), td(value_input.element)); - - return [element, disposer]; - }; -} diff --git a/src/quest_editor/gui/EntityListView.css b/src/quest_editor/gui/EntityListView.css deleted file mode 100644 index 416908eb..00000000 --- a/src/quest_editor/gui/EntityListView.css +++ /dev/null @@ -1,20 +0,0 @@ -.quest_editor_EntityListView { - outline: none; - overflow: auto; -} - -.quest_editor_EntityListView_entity_list { - display: grid; - grid-template-columns: repeat(auto-fill, 100px); - grid-column-gap: 6px; - grid-row-gap: 6px; - justify-content: center; - margin: 6px; -} - -.quest_editor_EntityListView_entity { - box-sizing: border-box; - display: flex; - flex-direction: column; - text-align: center; -} diff --git a/src/quest_editor/gui/EntityListView.ts b/src/quest_editor/gui/EntityListView.ts deleted file mode 100644 index d5a1d118..00000000 --- a/src/quest_editor/gui/EntityListView.ts +++ /dev/null @@ -1,82 +0,0 @@ -import { bind_children_to, div, img, span } from "../../core/gui/dom"; -import "./EntityListView.css"; -import { entity_data, EntityType } from "../../core/data_formats/parsing/quest/Quest"; -import { entity_dnd_source } from "./entity_dnd"; -import { WritableListProperty } from "../../core/observable/property/list/WritableListProperty"; -import { list_property } from "../../core/observable"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { EntityImageRenderer } from "../rendering/EntityImageRenderer"; -import { ResizableView } from "../../core/gui/ResizableView"; - -export abstract class EntityListView extends ResizableView { - readonly element: HTMLElement; - - protected readonly entities: WritableListProperty = list_property(); - - protected constructor( - quest_editor_store: QuestEditorStore, - private readonly entity_image_renderer: EntityImageRenderer, - class_name: string, - ) { - super(); - - const list_element = div({ className: "quest_editor_EntityListView_entity_list" }); - - this.element = div( - { className: `${class_name} quest_editor_EntityListView`, tabIndex: -1 }, - list_element, - ); - - this.disposables( - bind_children_to(list_element, this.entities, this.create_entity_element), - - entity_dnd_source(list_element, target => { - if (!this.enabled.val) return undefined; - - let element: HTMLElement | null = target; - - do { - const index = target.dataset.index; - - if (index != undefined) { - return [ - element.querySelector("img")!.cloneNode(true) as HTMLElement, - this.entities.get(parseInt(index, 10)), - ]; - } - - element = element.parentElement; - } while (element && element !== list_element); - - return undefined; - }), - - this.enabled.bind_to(quest_editor_store.quest_runner.running.map(r => !r)), - ); - } - - private create_entity_element = (entity: T, index: number): HTMLElement => { - const entity_element = div({ - className: "quest_editor_EntityListView_entity", - data: { index: index.toString() }, - }); - entity_element.draggable = true; - - const img_element = img({ width: 100, height: 100 }); - img_element.style.visibility = "hidden"; - // Workaround for Chrome bug: when dragging an image, calling setDragImage on a DragEvent - // has no effect. - img_element.style.pointerEvents = "none"; - entity_element.append(img_element); - - this.entity_image_renderer.render(entity).then(url => { - img_element.src = url; - img_element.style.visibility = "visible"; - }); - - const name_element = span(entity_data(entity).name); - entity_element.append(name_element); - - return entity_element; - }; -} diff --git a/src/quest_editor/gui/EventSubGraphView.css b/src/quest_editor/gui/EventSubGraphView.css deleted file mode 100644 index cd5d29e1..00000000 --- a/src/quest_editor/gui/EventSubGraphView.css +++ /dev/null @@ -1,18 +0,0 @@ -.quest_editor_EventSubGraphView { - position: relative; - display: flex; - flex-direction: column; - align-items: stretch; -} - -.quest_editor_EventSubGraphView_edge_container { - position: absolute; -} - -.quest_editor_EventSubGraphView_edge { - box-sizing: border-box; - position: absolute; - border-left: solid 2px var(--border-color); - border-top: solid 2px var(--border-color); - border-bottom: solid 2px var(--border-color); -} diff --git a/src/quest_editor/gui/EventSubGraphView.ts b/src/quest_editor/gui/EventSubGraphView.ts deleted file mode 100644 index 9b583e41..00000000 --- a/src/quest_editor/gui/EventSubGraphView.ts +++ /dev/null @@ -1,207 +0,0 @@ -import { bind_children_to, div } from "../../core/gui/dom"; -import { QuestEventDagModel, QuestEventDagModelChangeType } from "../model/QuestEventDagModel"; -import { QuestEventModel } from "../model/QuestEventModel"; -import { EventView } from "./EventView"; -import { EventsController } from "../controllers/EventsController"; -import { Disposable } from "../../core/observable/Disposable"; -import "./EventSubGraphView.css"; -import { Disposer } from "../../core/observable/Disposer"; -import { - ListChangeEvent, - ListChangeType, - ListProperty, -} from "../../core/observable/property/list/ListProperty"; -import { WritableProperty } from "../../core/observable/property/WritableProperty"; -import { LogManager } from "../../core/logging"; -import { View } from "../../core/gui/View"; - -const logger = LogManager.get("quest_editor/gui/EventSubGraphView"); - -const EDGE_HORIZONTAL_SPACING = 8; -const EDGE_VERTICAL_SPACING = 20; - -export class EventSubGraphView extends View { - /** - * Maps event IDs to GUI data. - */ - private readonly event_gui_data: Map< - QuestEventModel, - { event_view: EventView; position: number } - > = new Map(); - - private readonly event_container_element = div({ - className: "quest_editor_EventSubGraphView_event_container", - }); - - private readonly edge_container_element = div({ - className: "quest_editor_EventSubGraphView_edge_container", - }); - - readonly element = div( - { className: "quest_editor_EventSubGraphView" }, - this.edge_container_element, - this.event_container_element, - ); - - constructor( - private readonly ctrl: EventsController, - private readonly dag: QuestEventDagModel, - private readonly sub_graph: ListProperty, - private readonly max_edge_depth: WritableProperty, - ) { - super(); - - this.disposables( - max_edge_depth.observe( - ({ value }) => { - this.element.style.marginLeft = `${EDGE_HORIZONTAL_SPACING * value}px`; - }, - { call_now: true }, - ), - - bind_children_to(this.event_container_element, sub_graph, this.create_event_element, { - after: this.after_events_changed, - }), - - dag.observe(({ value: change }) => { - if ( - change.type === QuestEventDagModelChangeType.EdgeAdded || - change.type === QuestEventDagModelChangeType.EdgeRemoved - ) { - this.update_edges(); - } - }), - ); - - this.finalize_construction(EventSubGraphView); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - - for (const { event_view } of this.event_gui_data.values()) { - event_view.enabled.val = enabled; - } - } - - /** - * This method does measurements of the event elements. So it should be called after the event - * elements have been added to the DOM and have been laid out by the browser. - */ - update_edges = (): void => { - this.edge_container_element.innerHTML = ""; - - if (this.sub_graph.length.val === 0) return; - - // Each edge has a different depth (higher depth means further distance from event nodes). - // Keep track of the used depths here, to ensure edges never overlap. - const used_depths: boolean[][] = Array(this.sub_graph.length.val - 1); - - for (let i = 0; i < used_depths.length; i++) { - used_depths[i] = []; - } - - for (const event of this.sub_graph) { - const data = this.event_gui_data.get(event); - - if (!data) { - logger.warn(`No GUI data for event ${event.id}.`); - continue; - } - - const { event_view, position } = data; - const event_element = event_view.element; - - const y_offset = - event_element.offsetTop + event_element.offsetHeight - EDGE_VERTICAL_SPACING; - - for (const child of this.dag.get_children(event)) { - const child_data = this.event_gui_data.get(child); - - if (!child_data) { - logger.warn(`No GUI data for child event ${child.id}.`); - continue; - } - - const { event_view: child_event_view, position: child_position } = child_data; - const child_element = child_event_view.element; - const child_y_offset = child_element.offsetTop + EDGE_VERTICAL_SPACING; - - const top = Math.min(y_offset, child_y_offset); - const height = Math.max(y_offset, child_y_offset) - top; - - let depth = 1; - const downwards = child_position > position; - const low_pos = Math.min(position, child_position); - const high_pos = Math.max(position, child_position); - - outer: while (true) { - for ( - let i = downwards ? low_pos : Math.max(0, low_pos - 1); - i < high_pos; - i++ - ) { - if (used_depths[i][depth]) { - depth++; - continue outer; - } - } - - break; - } - - for (let i = low_pos; i < high_pos; i++) { - used_depths[i][depth] = true; - } - - this.max_edge_depth.val = Math.max(depth, this.max_edge_depth.val); - - const width = EDGE_HORIZONTAL_SPACING * depth; - - const edge_element = div({ className: "quest_editor_EventSubGraphView_edge" }); - - edge_element.style.left = `${4 - width}px`; - edge_element.style.top = `${top}px`; - edge_element.style.width = `${width}px`; - edge_element.style.height = `${height}px`; - - // Add the child and parent id for debugging purposes. - edge_element.dataset["parent"] = event.id.toString(); - edge_element.dataset["child"] = child.id.toString(); - - this.edge_container_element.append(edge_element); - } - } - }; - - private create_event_element = ( - event: QuestEventModel, - index: number, - ): [HTMLElement, Disposable] => { - const disposer = new Disposer(); - - const event_view = disposer.add(new EventView(this.ctrl, event)); - event_view.enabled.val = this.enabled.val; - - this.event_gui_data.set(event, { - event_view, - position: index, - }); - - disposer.add({ - dispose: () => this.event_gui_data.delete(event), - }); - - return [event_view.element, disposer]; - }; - - private after_events_changed = (change: ListChangeEvent): void => { - if (change.type === ListChangeType.ListChange) { - this.sub_graph.val.forEach((event, i) => { - this.event_gui_data.get(event)!.position = i; - }); - - this.update_edges(); - } - }; -} diff --git a/src/quest_editor/gui/EventView.css b/src/quest_editor/gui/EventView.css deleted file mode 100644 index 71bb51ad..00000000 --- a/src/quest_editor/gui/EventView.css +++ /dev/null @@ -1,34 +0,0 @@ -.quest_editor_EventView { - display: flex; - flex-direction: column; - align-items: center; - padding: 4px 8px; - border: var(--border); - margin: 4px; - background-color: hsl(0, 0%, 17%); - outline: none; -} - -.quest_editor_EventView:hover { - border-color: hsl(0, 0%, 30%); - background-color: hsl(0, 0%, 20%); - color: hsl(0, 0%, 85%); -} - -.quest_editor_EventView.selected { - border-color: hsl(0, 0%, 35%); - background-color: hsl(0, 0%, 25%); - color: hsl(0, 0%, 90%); -} - -.quest_editor_EventView > table { - min-width: 170px; -} - -.quest_editor_EventView th { - text-align: left; -} - -.quest_editor_EventView_actions { - margin-left: 4px; -} diff --git a/src/quest_editor/gui/EventView.ts b/src/quest_editor/gui/EventView.ts deleted file mode 100644 index dc217c13..00000000 --- a/src/quest_editor/gui/EventView.ts +++ /dev/null @@ -1,165 +0,0 @@ -import { - bind_attr, - bind_children_to, - disposable_listener, - div, - Icon, - table, - td, - th, - tr, -} from "../../core/gui/dom"; -import { NumberInput } from "../../core/gui/NumberInput"; -import { QuestEventModel } from "../model/QuestEventModel"; -import "./EventView.css"; -import { EventsController } from "../controllers/EventsController"; -import { - QuestEventActionModel, - QuestEventActionType, - QuestEventActionTypes, -} from "../model/QuestEventActionModel"; -import { Disposer } from "../../core/observable/Disposer"; -import { property } from "../../core/observable"; -import { DropDown } from "../../core/gui/DropDown"; -import { Button } from "../../core/gui/Button"; -import { View } from "../../core/gui/View"; - -export class EventView extends View { - private readonly inputs_enabled = property(true); - private readonly delay_input: NumberInput; - - readonly element: HTMLElement; - - constructor(private readonly ctrl: EventsController, private readonly event: QuestEventModel) { - super(); - - const wave_node = document.createTextNode(event.wave.id.val.toString()); - this.delay_input = this.add( - new NumberInput(event.delay.val, { min: 0, step: 1, enabled: this.inputs_enabled }), - ); - const action_table = table({ className: "quest_editor_EventView_actions" }); - const add_action_dropdown: DropDown = this.add( - new DropDown({ - text: "Add action", - items: QuestEventActionTypes, - enabled: this.inputs_enabled, - to_label(type: QuestEventActionType): string { - switch (type) { - case QuestEventActionType.SpawnNpcs: - return "Spawn NPCs"; - case QuestEventActionType.Unlock: - return "Unlock door"; - case QuestEventActionType.Lock: - return "Lock door"; - } - }, - }), - ); - - this.element = div( - { tabIndex: 0 }, - table( - tr(th("ID:"), td(event.id.toString())), - tr(th("Section:"), td(event.section_id.toString())), - tr(th("Wave:"), td(undefined, wave_node)), - tr(th("Delay:"), td(this.delay_input.element)), - tr(th({ colSpan: 2 }, "Actions:")), - tr(td({ colSpan: 2 }, action_table)), - tr(td({ colSpan: 2 }, add_action_dropdown.element)), - ), - ); - - this.disposables( - bind_attr( - this.element, - "className", - ctrl - .is_selected(event) - .map(selected => `quest_editor_EventView ${selected ? "selected" : ""}`), - ), - - event.wave.id.observe(({ value }) => (wave_node.data = value.toString())), - - disposable_listener(this.element, "focus", () => { - ctrl.set_selected_wave(event.wave); - }), - - disposable_listener(this.element, "click", e => { - e.stopPropagation(); - ctrl.set_selected_wave(event.wave); - }), - - disposable_listener(this.element, "keyup", evt => { - if (evt.key === "Delete") { - ctrl.remove_event(event); - } - }), - - this.delay_input.value.bind_to(event.delay), - this.delay_input.value.observe(e => ctrl.set_delay(event, e.value)), - - bind_children_to(action_table, event.actions, this.create_action_element), - - add_action_dropdown.chosen.observe(({ value }) => ctrl.add_action(event, value)), - ); - - this.finalize_construction(EventView); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - this.inputs_enabled.val = enabled; - } - - private create_action_element = ( - action: QuestEventActionModel, - ): [HTMLTableRowElement, Disposer] => { - const disposer = new Disposer(); - let label: string; - let node: HTMLElement; - - if (action.type === QuestEventActionType.SpawnNpcs) { - label = "Spawn:"; - node = div( - div( - disposer.add( - new NumberInput(action.section_id, { min: 0, step: 1, enabled: false }), - ).element, - ), - div( - disposer.add( - new NumberInput(action.appear_flag, { min: 0, step: 1, enabled: false }), - ).element, - ), - ); - } else { - label = action.type === QuestEventActionType.Unlock ? "Unlock:" : "Lock:"; - const input = disposer.add( - new NumberInput(action.door_id.val, { - min: 0, - step: 1, - enabled: this.inputs_enabled, - }), - ); - node = input.element; - - disposer.add_all( - input.value.bind_to(action.door_id), - input.value.observe(({ value }) => action.set_door_id(value)), - ); - } - - const remove_button = disposer.add( - new Button({ - icon_left: Icon.Remove, - enabled: this.inputs_enabled, - }), - ); - - disposer.add_all( - remove_button.onclick.observe(() => this.ctrl.remove_action(this.event, action)), - ); - - return [tr(th(label), td(node), td(remove_button.element)), disposer]; - }; -} diff --git a/src/quest_editor/gui/EventsView.css b/src/quest_editor/gui/EventsView.css deleted file mode 100644 index 9c719c30..00000000 --- a/src/quest_editor/gui/EventsView.css +++ /dev/null @@ -1,25 +0,0 @@ -.quest_editor_EventsView { - outline: none; - display: flex; - flex-direction: column; - align-items: stretch; -} - -.quest_editor_EventsView_container { - display: flex; - flex-direction: column; - align-items: stretch; - height: 100%; -} - -.quest_editor_EventsView_sub_graph_container { - flex: 1; - box-sizing: border-box; - overflow-y: auto; - display: flex; - flex-direction: row; - flex-wrap: wrap; - align-items: start; - justify-content: center; - padding: 4px; -} diff --git a/src/quest_editor/gui/EventsView.ts b/src/quest_editor/gui/EventsView.ts deleted file mode 100644 index 9cf33de7..00000000 --- a/src/quest_editor/gui/EventsView.ts +++ /dev/null @@ -1,147 +0,0 @@ -import "./EventsView.css"; -import { EventsController } from "../controllers/EventsController"; -import { UnavailableView } from "./UnavailableView"; -import { bind_attr, bind_children_to, disposable_listener, div } from "../../core/gui/dom"; -import { Button } from "../../core/gui/Button"; -import { ToolBar } from "../../core/gui/ToolBar"; -import { EventSubGraphView } from "./EventSubGraphView"; -import { property } from "../../core/observable"; -import { - ListChangeEvent, - ListChangeType, - ListProperty, -} from "../../core/observable/property/list/ListProperty"; -import { QuestEventModel } from "../model/QuestEventModel"; -import { ResizableView } from "../../core/gui/ResizableView"; - -export class EventsView extends ResizableView { - private readonly sub_graph_views: Map< - ListProperty, - EventSubGraphView - > = new Map(); - private readonly dag_container_element: HTMLElement; - private readonly container_element: HTMLElement; - private readonly add_event_button: Button; - private readonly unavailable_view = new UnavailableView("No quest loaded."); - /** - * The maximum amount of overlapping edges. - */ - private readonly max_edge_depth = property(0); - - readonly element: HTMLElement; - - constructor(private readonly ctrl: EventsController) { - super(); - - this.element = div( - { className: "quest_editor_EventsView", tabIndex: -1 }, - (this.container_element = div( - { className: "quest_editor_EventsView_container" }, - this.add(new ToolBar((this.add_event_button = new Button({ text: "Add event" })))) - .element, - (this.dag_container_element = div({ - className: "quest_editor_EventsView_sub_graph_container", - })), - )), - this.unavailable_view.element, - ); - - this.disposables( - bind_attr(this.container_element, "hidden", ctrl.unavailable), - this.unavailable_view.visible.bind_to(ctrl.unavailable), - - this.enabled.bind_to(ctrl.enabled), - - this.add_event_button.onclick.observe(ctrl.add_event), - - bind_children_to( - this.dag_container_element, - ctrl.event_sub_graphs, - this.create_sub_graph_element, - { - after: this.after_event_dags_changed, - }, - ), - - disposable_listener(this.element, "focus", () => { - ctrl.focused(); - }), - - disposable_listener(this.element, "click", () => { - ctrl.set_selected_wave(undefined); - }), - ); - - this.finalize_construction(EventsView); - } - - dispose(): void { - super.dispose(); - - for (const dag_view of this.sub_graph_views.values()) { - dag_view.dispose(); - } - - this.sub_graph_views.clear(); - } - - resize(width: number, height: number): this { - super.resize(width, height); - this.update_edges(); - return this; - } - - focus(): void { - super.focus(); - this.update_edges(); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - - for (const child of this.children) { - child.enabled.val = enabled; - } - - for (const dag_view of this.sub_graph_views.values()) { - if (dag_view.element.parentNode) { - dag_view.enabled.val = enabled; - } - } - } - - private create_sub_graph_element = (sub_graph: ListProperty): HTMLElement => { - let sub_graph_view = this.sub_graph_views.get(sub_graph); - - if (!sub_graph_view) { - sub_graph_view = new EventSubGraphView( - this.ctrl, - this.ctrl.event_dag.val!, - sub_graph, - this.max_edge_depth, - ); - sub_graph_view.enabled.val = this.enabled.val; - this.sub_graph_views.set(sub_graph, sub_graph_view); - } - - return sub_graph_view.element; - }; - - private update_edges = (): void => { - for (const dag_view of this.sub_graph_views.values()) { - if (dag_view.element.parentNode) { - dag_view.update_edges(); - } - } - }; - - private after_event_dags_changed = ( - change: ListChangeEvent>, - ): void => { - if (change.type === ListChangeType.ListChange) { - for (const dag of change.inserted) { - this.sub_graph_views.get(dag)?.update_edges(); - } - } - }; -} diff --git a/src/quest_editor/gui/NpcCountsView.css b/src/quest_editor/gui/NpcCountsView.css deleted file mode 100644 index 8b487f02..00000000 --- a/src/quest_editor/gui/NpcCountsView.css +++ /dev/null @@ -1,21 +0,0 @@ -.quest_editor_NpcCountsView { - box-sizing: border-box; - padding: 3px; - overflow: auto; -} - -.quest_editor_NpcCountsView table { - user-select: text; - width: 100%; - max-width: 300px; - margin: 0 auto; -} - -.quest_editor_NpcCountsView th { - cursor: text; - text-align: left; -} - -.quest_editor_NpcCountsView td { - cursor: text; -} diff --git a/src/quest_editor/gui/NpcCountsView.test.ts b/src/quest_editor/gui/NpcCountsView.test.ts deleted file mode 100644 index e58454d0..00000000 --- a/src/quest_editor/gui/NpcCountsView.test.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { NpcCountsView } from "./NpcCountsView"; -import { NpcCountsController } from "../controllers/NpcCountsController"; -import { - create_area_store, - create_quest_editor_store, -} from "../../../test/src/quest_editor/stores/store_creation"; -import { load_default_quest_model, pw_test } from "../../../test/src/utils"; - -test( - "Renders correctly without a current quest.", - pw_test({}, disposer => { - const store = create_quest_editor_store(disposer); - const view = disposer.add(new NpcCountsView(disposer.add(new NpcCountsController(store)))); - - expect(view.element).toMatchSnapshot('Should render a "No quest loaded." view.'); - }), -); - -test( - "Renders correctly with a current quest.", - pw_test({}, disposer => { - const area_store = create_area_store(disposer); - const store = create_quest_editor_store(disposer, area_store); - const view = disposer.add(new NpcCountsView(disposer.add(new NpcCountsController(store)))); - - store.set_current_quest(load_default_quest_model(area_store)); - - expect(view.element).toMatchSnapshot("Should render a table with NPC names and counts."); - }), -); diff --git a/src/quest_editor/gui/NpcCountsView.ts b/src/quest_editor/gui/NpcCountsView.ts deleted file mode 100644 index 0fb7976c..00000000 --- a/src/quest_editor/gui/NpcCountsView.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { bind_attr, div, table, td, th, tr } from "../../core/gui/dom"; -import "./NpcCountsView.css"; -import { UnavailableView } from "./UnavailableView"; -import { NameWithCount, NpcCountsController } from "../controllers/NpcCountsController"; -import { ResizableView } from "../../core/gui/ResizableView"; - -export class NpcCountsView extends ResizableView { - readonly element = div({ className: "quest_editor_NpcCountsView" }); - - private readonly table_element = table(); - - private readonly unavailable_view = this.add(new UnavailableView("No quest loaded.")); - - constructor(ctrl: NpcCountsController) { - super(); - - this.element.append(this.table_element, this.unavailable_view.element); - - this.disposables( - bind_attr(this.table_element, "hidden", ctrl.unavailable), - - this.unavailable_view.visible.bind_to(ctrl.unavailable), - - ctrl.npc_counts.observe(({ value }) => this.update_view(value), { call_now: true }), - ); - - this.finalize_construction(NpcCountsView); - } - - private update_view(npcs: readonly NameWithCount[]): void { - const frag = document.createDocumentFragment(); - - for (const { name, count } of npcs) { - frag.append(tr(th(name + ":"), td(String(count)))); - } - - this.table_element.innerHTML = ""; - this.table_element.append(frag); - } -} diff --git a/src/quest_editor/gui/NpcListView.ts b/src/quest_editor/gui/NpcListView.ts deleted file mode 100644 index 791720c9..00000000 --- a/src/quest_editor/gui/NpcListView.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { EntityListView } from "./EntityListView"; -import { npc_data, NPC_TYPES, NpcType } from "../../core/data_formats/parsing/quest/npc_types"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { EntityImageRenderer } from "../rendering/EntityImageRenderer"; - -export class NpcListView extends EntityListView { - constructor( - private readonly quest_editor_store: QuestEditorStore, - entity_image_renderer: EntityImageRenderer, - ) { - super(quest_editor_store, entity_image_renderer, "quest_editor_NpcListView"); - - this.disposables( - quest_editor_store.current_quest.observe(this.filter_npcs), - quest_editor_store.current_area.observe(this.filter_npcs), - ); - - this.filter_npcs(); - this.finalize_construction(NpcListView); - } - - private filter_npcs = (): void => { - const quest = this.quest_editor_store.current_quest.val; - const area = this.quest_editor_store.current_area.val; - - const episode = quest ? quest.episode : Episode.I; - const area_id = area ? area.id : 0; - - this.entities.val = NPC_TYPES.filter(npc => { - const data = npc_data(npc); - return ( - (data.episode == undefined || data.episode === episode) && - data.area_ids.includes(area_id) - ); - }); - }; -} diff --git a/src/quest_editor/gui/ObjectListView.ts b/src/quest_editor/gui/ObjectListView.ts deleted file mode 100644 index 73c851c0..00000000 --- a/src/quest_editor/gui/ObjectListView.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { EntityListView } from "./EntityListView"; -import { - object_data, - OBJECT_TYPES, - ObjectType, -} from "../../core/data_formats/parsing/quest/object_types"; -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { EntityImageRenderer } from "../rendering/EntityImageRenderer"; - -export class ObjectListView extends EntityListView { - constructor( - private readonly quest_editor_store: QuestEditorStore, - entity_image_renderer: EntityImageRenderer, - ) { - super(quest_editor_store, entity_image_renderer, "quest_editor_ObjectListView"); - - this.disposables( - quest_editor_store.current_quest.observe(this.filter_objects), - quest_editor_store.current_area.observe(this.filter_objects), - ); - - this.filter_objects(); - this.finalize_construction(ObjectListView); - } - - private filter_objects = (): void => { - const quest = this.quest_editor_store.current_quest.val; - const area = this.quest_editor_store.current_area.val; - - const episode = quest ? quest.episode : Episode.I; - const area_id = area ? area.id : 0; - - this.entities.val = OBJECT_TYPES.filter(object => { - const data = object_data(object); - - if (data.area_ids == undefined) return true; - - const area_ids = data.area_ids[episode]; - return area_ids && area_ids.includes(area_id); - }); - }; -} diff --git a/src/quest_editor/gui/QuestEditorRendererView.ts b/src/quest_editor/gui/QuestEditorRendererView.ts deleted file mode 100644 index 41bed2a4..00000000 --- a/src/quest_editor/gui/QuestEditorRendererView.ts +++ /dev/null @@ -1,59 +0,0 @@ -import { QuestRenderer } from "../rendering/QuestRenderer"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { QuestEditor3DModelManager } from "../rendering/QuestEditor3DModelManager"; -import { QuestRendererView } from "./QuestRendererView"; -import { QuestEntityControls } from "../rendering/QuestEntityControls"; -import { AreaAssetLoader } from "../loading/AreaAssetLoader"; -import { EntityAssetLoader } from "../loading/EntityAssetLoader"; -import { DisposableThreeRenderer } from "../../core/rendering/Renderer"; - -export class QuestEditorRendererView extends QuestRendererView { - private readonly entity_controls: QuestEntityControls; - - constructor( - quest_editor_store: QuestEditorStore, - area_asset_loader: AreaAssetLoader, - entity_asset_loader: EntityAssetLoader, - three_renderer: DisposableThreeRenderer, - ) { - super( - quest_editor_store, - "quest_editor_QuestEditorRendererView", - new QuestRenderer( - three_renderer, - renderer => - new QuestEditor3DModelManager( - quest_editor_store.current_quest, - quest_editor_store.current_area, - quest_editor_store.selected_wave, - renderer, - area_asset_loader, - entity_asset_loader, - ), - ), - ); - - this.element.addEventListener("focus", () => quest_editor_store.undo.make_current(), true); - - // Must be initialized before camera controls. - this.entity_controls = this.disposable( - new QuestEntityControls(quest_editor_store, this.renderer), - ); - - this.disposables( - quest_editor_store.selected_entity.observe( - ({ value }) => (this.renderer.selected_entity = value), - ), - - quest_editor_store.quest_runner.running.observe( - ({ value: running }) => (this.entity_controls.enabled = !running), - { call_now: true }, - ), - ); - - // Must be initialized after QuestEntityControls. - this.renderer.init_camera_controls(); - - this.finalize_construction(QuestEditorRendererView); - } -} diff --git a/src/quest_editor/gui/QuestEditorToolBarView.css b/src/quest_editor/gui/QuestEditorToolBarView.css deleted file mode 100644 index b7d87f90..00000000 --- a/src/quest_editor/gui/QuestEditorToolBarView.css +++ /dev/null @@ -1,11 +0,0 @@ -.quest_editor_QuestEditorToolBarView_save_as_dialog_content { - display: grid; - grid-template-columns: 100px max-content; - grid-column-gap: 4px; - grid-row-gap: 4px; - align-items: center; -} - -.quest_editor_QuestEditorToolBarView_save_as_dialog_content .core_Input { - margin: 1px; -} diff --git a/src/quest_editor/gui/QuestEditorToolBarView.test.ts b/src/quest_editor/gui/QuestEditorToolBarView.test.ts deleted file mode 100644 index 4727aec9..00000000 --- a/src/quest_editor/gui/QuestEditorToolBarView.test.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { QuestEditorToolBarController } from "../controllers/QuestEditorToolBarController"; -import { QuestEditorToolBarView } from "./QuestEditorToolBarView"; -import { GuiStore } from "../../core/stores/GuiStore"; -import { create_area_store } from "../../../test/src/quest_editor/stores/store_creation"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { LogStore } from "../stores/LogStore"; -import { QuestLoader } from "../loading/QuestLoader"; -import { StubHttpClient } from "../../core/HttpClient"; -import { pw_test } from "../../../test/src/utils"; - -test( - "Renders correctly.", - pw_test({}, disposer => { - const quest_loader = disposer.add(new QuestLoader(new StubHttpClient())); - const gui_store = disposer.add(new GuiStore()); - const area_store = create_area_store(disposer); - const log_store = disposer.add(new LogStore()); - const quest_editor_store = disposer.add( - new QuestEditorStore(gui_store, area_store, log_store), - ); - const tool_bar = disposer.add( - new QuestEditorToolBarView( - disposer.add( - new QuestEditorToolBarController( - quest_loader, - gui_store, - area_store, - quest_editor_store, - ), - ), - ), - ); - - expect(tool_bar.element).toMatchSnapshot(); - }), -); diff --git a/src/quest_editor/gui/QuestEditorToolBarView.ts b/src/quest_editor/gui/QuestEditorToolBarView.ts deleted file mode 100644 index f940faba..00000000 --- a/src/quest_editor/gui/QuestEditorToolBarView.ts +++ /dev/null @@ -1,177 +0,0 @@ -import { ToolBar } from "../../core/gui/ToolBar"; -import { FileButton } from "../../core/gui/FileButton"; -import { Button } from "../../core/gui/Button"; -import { undo_manager } from "../../core/undo/UndoManager"; -import { Select } from "../../core/gui/Select"; -import { div, Icon } from "../../core/gui/dom"; -import { DropDown } from "../../core/gui/DropDown"; -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { - AreaAndLabel, - QuestEditorToolBarController, -} from "../controllers/QuestEditorToolBarController"; -import { View } from "../../core/gui/View"; -import { Dialog } from "../../core/gui/Dialog"; -import { TextInput } from "../../core/gui/TextInput"; -import "./QuestEditorToolBarView.css"; -import { Version } from "../../core/data_formats/parsing/quest/Version"; -import { ResultDialog } from "../../core/gui/ResultDialog"; - -export class QuestEditorToolBarView extends View { - private readonly toolbar: ToolBar; - - get element(): HTMLElement { - return this.toolbar.element; - } - - get height(): number { - return this.toolbar.height; - } - - constructor(ctrl: QuestEditorToolBarController) { - super(); - - const new_quest_button = new DropDown({ - text: "New quest", - icon_left: Icon.NewFile, - items: [Episode.I], - to_label: episode => `Episode ${Episode[episode]}`, - }); - const open_file_button = new FileButton({ - icon_left: Icon.File, - text: "Open file...", - accept: ".bin, .dat, .qst", - multiple: true, - tooltip: "Open a quest file (Ctrl-O)", - }); - const save_as_button = new Button({ - text: "Save as...", - icon_left: Icon.Save, - tooltip: "Save this quest to new file (Ctrl-Shift-S)", - }); - const undo_button = new Button({ - text: "Undo", - icon_left: Icon.Undo, - tooltip: undo_manager.first_undo.map( - action => - (action ? `Undo "${action.description}"` : "Nothing to undo") + " (Ctrl-Z)", - ), - }); - const redo_button = new Button({ - text: "Redo", - icon_left: Icon.Redo, - tooltip: undo_manager.first_redo.map( - action => - (action ? `Redo "${action.description}"` : "Nothing to redo") + - " (Ctrl-Shift-Z)", - ), - }); - const area_select = new Select({ - items: ctrl.areas, - to_label: ({ label }) => label, - }); - const dialog = this.disposable( - new ResultDialog({ - visible: ctrl.result_dialog_visible, - result: ctrl.result, - problems_message: ctrl.result_problems_message, - error_message: ctrl.result_error_message, - }), - ); - - this.toolbar = this.disposable( - new ToolBar( - new_quest_button, - open_file_button, - save_as_button, - undo_button, - redo_button, - area_select, - ), - ); - - // "Save As" dialog. - const filename_input = this.disposable( - new TextInput(ctrl.filename.val, { label: "File name:" }), - ); - const version_select = this.disposable( - new Select({ - label: "Version:", - items: [Version.GC, Version.BB], - selected: ctrl.version, - to_label: version => { - switch (version) { - case Version.DC: - return "Dreamcast"; - case Version.GC: - return "GameCube"; - case Version.PC: - return "PC"; - case Version.BB: - return "BlueBurst"; - } - }, - }), - ); - const save_button = this.disposable(new Button({ text: "Save" })); - const cancel_button = this.disposable(new Button({ text: "Cancel" })); - - const save_as_dialog = this.disposable( - new Dialog({ - title: "Save As", - visible: ctrl.save_as_dialog_visible, - content: div( - { className: "quest_editor_QuestEditorToolBarView_save_as_dialog_content" }, - filename_input.label!.element, - filename_input.element, - version_select.label!.element, - version_select.element, - ), - footer: [save_button.element, cancel_button.element], - }), - ); - - save_as_dialog.element.addEventListener("keydown", evt => { - if (evt.key === "Enter") { - ctrl.save_as(); - } - }); - - this.disposables( - new_quest_button.chosen.observe(({ value: episode }) => ctrl.create_new_quest(episode)), - - open_file_button.files.observe(({ value: files }) => ctrl.parse_files(files)), - - save_as_button.onclick.observe(ctrl.save_as_clicked), - save_as_button.enabled.bind_to(ctrl.can_save), - - save_as_dialog.ondismiss.observe(ctrl.dismiss_save_as_dialog), - - filename_input.value.bind_to(ctrl.filename), - filename_input.value.observe(({ value }) => ctrl.set_filename(value)), - - version_select.selected.observe(({ value }) => { - if (value != undefined) { - ctrl.set_version(value); - } - }), - - save_button.onclick.observe(ctrl.save_as), - cancel_button.onclick.observe(ctrl.dismiss_save_as_dialog), - - undo_button.onclick.observe(() => undo_manager.undo()), - undo_button.enabled.bind_to(ctrl.can_undo), - - redo_button.onclick.observe(() => undo_manager.redo()), - redo_button.enabled.bind_to(ctrl.can_redo), - - area_select.selected.bind_to(ctrl.current_area), - area_select.selected.observe(({ value }) => ctrl.set_area(value!)), - area_select.enabled.bind_to(ctrl.can_select_area), - - dialog.ondismiss.observe(ctrl.dismiss_result_dialog), - ); - - this.finalize_construction(QuestEditorToolBarView); - } -} diff --git a/src/quest_editor/gui/QuestEditorView.ts b/src/quest_editor/gui/QuestEditorView.ts deleted file mode 100644 index 4441a9ba..00000000 --- a/src/quest_editor/gui/QuestEditorView.ts +++ /dev/null @@ -1,413 +0,0 @@ -import { QuestEditorToolBarView } from "./QuestEditorToolBarView"; -import GoldenLayout, { Container, ContentItem, ItemConfigType } from "golden-layout"; -import { QuestInfoView } from "./QuestInfoView"; -import "golden-layout/src/css/goldenlayout-base.css"; -import "../../core/gui/golden_layout_theme.css"; -import { NpcCountsView } from "./NpcCountsView"; -import { QuestEditorRendererView } from "./QuestEditorRendererView"; -import { AsmEditorView } from "./AsmEditorView"; -import { EntityInfoView } from "./EntityInfoView"; -import { GuiStore, GuiTool } from "../../core/stores/GuiStore"; -import { NpcListView } from "./NpcListView"; -import { ObjectListView } from "./ObjectListView"; -import { EventsView } from "./EventsView"; -import { RegistersView } from "./RegistersView"; -import { DebugView } from "./DebugView"; -import { QuestRunnerRendererView } from "./QuestRunnerRendererView"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { QuestEditorUiPersister } from "../persistence/QuestEditorUiPersister"; -import { LogManager } from "../../core/logging"; -import { ErrorWidget } from "../../core/gui/ErrorWidget"; -import { div } from "../../core/gui/dom"; -import { ResizableView } from "../../core/gui/ResizableView"; -import { Widget } from "../../core/gui/Widget"; -import { Resizable } from "../../core/gui/Resizable"; - -const logger = LogManager.get("quest_editor/gui/QuestEditorView"); - -const DEFAULT_LAYOUT_CONFIG = { - settings: { - showPopoutIcon: false, - showMaximiseIcon: true, - showCloseIcon: true, - }, - dimensions: { - headerHeight: 24, - }, - labels: { - close: "Close", - maximise: "Maximise", - minimise: "Minimise", - popout: "Open in new window", - }, -}; - -export class QuestEditorView extends ResizableView { - readonly element = div({ className: "quest_editor_QuestEditorView" }); - - /** - * Maps views to names and creation functions. - */ - private readonly view_map: Map< - new (...args: never) => Widget & Resizable, - { name: string; create(): Widget & Resizable } - >; - - private readonly layout_element = div({ className: "quest_editor_gl_container" }); - private readonly layout: Promise; - - private readonly sub_views = new Map(); - - constructor( - private readonly gui_store: GuiStore, - quest_editor_store: QuestEditorStore, - private readonly quest_editor_ui_persister: QuestEditorUiPersister, - private readonly tool_bar: QuestEditorToolBarView, - create_quest_info_view: () => QuestInfoView, - create_npc_counts_view: () => NpcCountsView, - create_editor_renderer_view: () => QuestEditorRendererView, - create_asm_editor_view: () => AsmEditorView, - create_entity_info_view: () => EntityInfoView, - create_npc_list_view: () => NpcListView, - create_object_list_view: () => ObjectListView, - create_events_view: () => EventsView, - create_quest_runner_renderer_view: () => QuestRunnerRendererView, - create_debug_view: () => DebugView, - create_registers_view: () => RegistersView, - ) { - super(); - - // Don't change the values of this map, as they are persisted in the user's browser. - this.view_map = new Map< - new (...args: never) => Widget & Resizable, - { name: string; create(): Widget & Resizable } - >([ - [ - QuestInfoView, - { - name: "quest_info", - create: create_quest_info_view, - }, - ], - [NpcCountsView, { name: "npc_counts", create: create_npc_counts_view }], - [ - QuestEditorRendererView, - { - name: "quest_renderer", - create: create_editor_renderer_view, - }, - ], - [ - AsmEditorView, - { - name: "asm_editor", - create: create_asm_editor_view, - }, - ], - [EntityInfoView, { name: "entity_info", create: create_entity_info_view }], - [ - NpcListView, - { - name: "npc_list_view", - create: create_npc_list_view, - }, - ], - [ - ObjectListView, - { - name: "object_list_view", - create: create_object_list_view, - }, - ], - [ - EventsView, - { - name: "events_view", - create: create_events_view, - }, - ], - ]); - - if (gui_store.feature_active("vm")) { - this.view_map.set(QuestRunnerRendererView, { - name: "quest_runner", - create: create_quest_runner_renderer_view, - }); - this.view_map.set(DebugView, { name: "log_view", create: create_debug_view }); - this.view_map.set(RegistersView, { - name: "registers_view", - create: create_registers_view, - }); - } - - this.element.append(this.tool_bar.element, this.layout_element); - - this.layout = this.init_golden_layout(); - - this.disposables( - gui_store.on_global_keydown( - GuiTool.QuestEditor, - "Ctrl-Alt-D", - () => (quest_editor_store.debug.val = !quest_editor_store.debug.val), - ), - - quest_editor_store.quest_runner.running.observe(async ({ value: running }) => { - const layout = await this.layout; - - if (quest_editor_store.quest_runner.running.val === running) { - // Should return at most 1 item, but we loop over the array just to be sure. - const runner_items = layout.root.getItemsById( - this.view_map.get(QuestRunnerRendererView)!.name, - ); - - if (running) { - if (runner_items.length === 0) { - const renderer_item = layout.root.getItemsById( - this.view_map.get(QuestEditorRendererView)!.name, - )[0]; - - renderer_item.parent.addChild({ - id: this.view_map.get(QuestRunnerRendererView)!.name, - title: "Debug 3D View", - type: "component", - componentName: this.view_map.get(QuestRunnerRendererView)!.name, - isClosable: false, - }); - } - } else { - for (const item of runner_items) { - item.remove(); - } - } - } - }), - ); - - this.finalize_construction(QuestEditorView); - } - - activate(): void { - super.activate(); - - for (const sub_view of this.sub_views.values()) { - sub_view.activate(); - } - } - - deactivate(): void { - for (const sub_view of this.sub_views.values()) { - sub_view.deactivate(); - } - - super.deactivate(); - } - - resize(width: number, height: number): this { - super.resize(width, height); - - const layout_height = Math.max(0, height - this.tool_bar.height); - this.layout_element.style.width = `${width}px`; - this.layout_element.style.height = `${layout_height}px`; - this.layout.then(layout => layout.updateSize(width, layout_height)); - - return this; - } - - dispose(): void { - super.dispose(); - this.layout.then(layout => layout.destroy()); - - for (const view of this.sub_views.values()) { - view.dispose(); - } - - this.sub_views.clear(); - } - - private async init_golden_layout(): Promise { - const default_layout_content = this.get_default_layout_content(); - - try { - const content = await this.quest_editor_ui_persister.load_layout_config( - default_layout_content, - ); - - if (content) { - const gl = this.attempt_gl_init({ - ...DEFAULT_LAYOUT_CONFIG, - content, - }); - - logger.info("Instantiated golden layout with persisted layout."); - - return gl; - } - } catch (e) { - logger.warn("Couldn't instantiate golden layout with persisted layout.", e); - } - - logger.info("Instantiating golden layout with default layout."); - - return this.attempt_gl_init({ - ...DEFAULT_LAYOUT_CONFIG, - content: default_layout_content, - }); - } - - private attempt_gl_init(config: GoldenLayout.Config): GoldenLayout { - const layout = new GoldenLayout(config, this.layout_element); - const self = this; // eslint-disable-line @typescript-eslint/no-this-alias - - try { - for (const { name, create } of this.view_map.values()) { - // registerComponent expects a regular function and not an arrow function. This - // function will be called with new. - layout.registerComponent(name, function (container: Container) { - let view: Widget & Resizable; - - try { - view = create(); - - if (self.active) { - view.activate(); - } - } catch (e) { - logger.error(`Couldn't instantiate "${name}".`, e); - - view = new ErrorWidget("Something went wrong while creating this window."); - } - - container.on("close", () => view.dispose()); - container.on("resize", () => - // Subtract 4 from height to work around bug in Golden Layout related to - // headerHeight. - view.resize(container.width, container.height - 4), - ); - - view.resize(container.width, container.height); - - self.sub_views.set(name, view); - container.getElement().append(view.element); - }); - } - - layout.on("stateChanged", () => { - this.quest_editor_ui_persister.persist_layout_config(layout.toConfig().content); - }); - - layout.on("stackCreated", (stack: ContentItem) => { - stack.on("activeContentItemChanged", (item: ContentItem) => { - if ("componentName" in item.config) { - const view = this.sub_views.get(item.config.componentName); - if (view) view.focus(); - } - }); - }); - - layout.init(); - - return layout; - } catch (e) { - layout.destroy(); - throw e; - } - } - - private get_default_layout_content(): ItemConfigType[] { - return [ - { - type: "row", - content: [ - { - type: "column", - width: 2, - content: [ - { - type: "stack", - content: [ - { - title: "Info", - type: "component", - componentName: this.view_map.get(QuestInfoView)!.name, - isClosable: false, - }, - { - title: "NPC Counts", - type: "component", - componentName: this.view_map.get(NpcCountsView)!.name, - isClosable: false, - }, - ], - }, - { - title: "Entity", - type: "component", - componentName: this.view_map.get(EntityInfoView)!.name, - isClosable: false, - }, - ], - }, - { - type: "stack", - width: 9, - content: [ - { - id: this.view_map.get(QuestEditorRendererView)!.name, - title: "3D View", - type: "component", - componentName: this.view_map.get(QuestEditorRendererView)!.name, - isClosable: false, - }, - { - title: "Script", - type: "component", - componentName: this.view_map.get(AsmEditorView)!.name, - isClosable: false, - }, - ...(this.gui_store.feature_active("vm") - ? [ - { - title: "Debug", - type: "component", - componentName: this.view_map.get(DebugView)!.name, - isClosable: false, - }, - { - title: "Registers", - type: "component", - componentName: this.view_map.get(RegistersView)!.name, - isClosable: false, - }, - ] - : []), - ], - }, - { - type: "stack", - width: 2, - content: [ - { - title: "NPCs", - type: "component", - componentName: this.view_map.get(NpcListView)!.name, - isClosable: false, - }, - { - title: "Objects", - type: "component", - componentName: this.view_map.get(ObjectListView)!.name, - isClosable: false, - }, - { - title: "Events", - type: "component", - componentName: this.view_map.get(EventsView)!.name, - isClosable: false, - }, - ], - }, - ], - }, - ]; - } -} diff --git a/src/quest_editor/gui/QuestInfoView.css b/src/quest_editor/gui/QuestInfoView.css deleted file mode 100644 index 01d331bb..00000000 --- a/src/quest_editor/gui/QuestInfoView.css +++ /dev/null @@ -1,26 +0,0 @@ -.quest_editor_QuestInfoView { - box-sizing: border-box; - padding: 3px; - overflow: auto; - outline: none; -} - -.quest_editor_QuestInfoView table { - width: 100%; -} - -.quest_editor_QuestInfoView th { - text-align: left; -} - -.quest_editor_QuestInfoView .core_TextInput { - width: 100%; -} - -.quest_editor_QuestInfoView .core_TextArea { - width: 100%; -} - -.quest_editor_QuestInfoView textarea { - width: 100%; -} diff --git a/src/quest_editor/gui/QuestInfoView.test.ts b/src/quest_editor/gui/QuestInfoView.test.ts deleted file mode 100644 index 20d4aaea..00000000 --- a/src/quest_editor/gui/QuestInfoView.test.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { QuestInfoController } from "../controllers/QuestInfoController"; -import { undo_manager } from "../../core/undo/UndoManager"; -import { QuestInfoView } from "./QuestInfoView"; -import { - create_area_store, - create_quest_editor_store, -} from "../../../test/src/quest_editor/stores/store_creation"; -import { load_default_quest_model, pw_test } from "../../../test/src/utils"; - -test( - "Renders correctly without a current quest.", - pw_test({}, disposer => { - const view = disposer.add( - new QuestInfoView( - disposer.add(new QuestInfoController(create_quest_editor_store(disposer))), - ), - ); - - expect(view.element).toMatchSnapshot('should render a "No quest loaded." view'); - }), -); - -test( - "Renders correctly with a current quest.", - pw_test({}, async disposer => { - const area_store = create_area_store(disposer); - const store = create_quest_editor_store(disposer); - const view = disposer.add(new QuestInfoView(disposer.add(new QuestInfoController(store)))); - - await store.set_current_quest(load_default_quest_model(area_store)); - - expect(view.element).toMatchSnapshot("should render property inputs"); - }), -); - -test( - "When the view's element is focused the quest editor store's undo stack should become the current stack.", - pw_test({}, disposer => { - const store = create_quest_editor_store(disposer); - const view = disposer.add(new QuestInfoView(disposer.add(new QuestInfoController(store)))); - - // Append view element to DOM to make it focusable. - document.body.append(view.element); - - undo_manager.make_noop_current(); - - view.element.focus(); - - expect(undo_manager.current.val).toBe(store.undo); - }), -); diff --git a/src/quest_editor/gui/QuestInfoView.ts b/src/quest_editor/gui/QuestInfoView.ts deleted file mode 100644 index b5f49907..00000000 --- a/src/quest_editor/gui/QuestInfoView.ts +++ /dev/null @@ -1,108 +0,0 @@ -import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { NumberInput } from "../../core/gui/NumberInput"; -import { Disposer } from "../../core/observable/Disposer"; -import { TextInput } from "../../core/gui/TextInput"; -import { TextArea } from "../../core/gui/TextArea"; -import "./QuestInfoView.css"; -import { UnavailableView } from "./UnavailableView"; -import { QuestInfoController } from "../controllers/QuestInfoController"; -import { bind_attr, div, table, td, th, tr } from "../../core/gui/dom"; -import { ResizableView } from "../../core/gui/ResizableView"; - -export class QuestInfoView extends ResizableView { - readonly element = div({ className: "quest_editor_QuestInfoView", tabIndex: -1 }); - - private readonly table_element = table(); - private readonly episode_element: HTMLElement; - private readonly id_input = this.add(new NumberInput(0, { min: 0, step: 1 })); - private readonly name_input = this.add( - new TextInput("", { - max_length: 32, - }), - ); - private readonly short_description_input = this.add( - new TextArea("", { - max_length: 128, - font_family: '"Courier New", monospace', - cols: 25, - rows: 5, - }), - ); - private readonly long_description_input = this.add( - new TextArea("", { - max_length: 288, - font_family: '"Courier New", monospace', - cols: 25, - rows: 10, - }), - ); - - private readonly unavailable_view = this.add(new UnavailableView("No quest loaded.")); - - private readonly quest_disposer = this.disposable(new Disposer()); - - constructor(ctrl: QuestInfoController) { - super(); - - const quest = ctrl.current_quest; - - this.table_element.append( - tr(th("Episode:"), (this.episode_element = td())), - tr(th("ID:"), td(this.id_input.element)), - tr(th("Name:"), td(this.name_input.element)), - tr(th({ colSpan: 2 }, "Short description:")), - tr(td({ colSpan: 2 }, this.short_description_input.element)), - tr(th({ colSpan: 2 }, "Long description:")), - tr(td({ colSpan: 2 }, this.long_description_input.element)), - ); - - this.element.append(this.table_element, this.unavailable_view.element); - - this.element.addEventListener("focus", ctrl.focused, true); - - this.disposables( - this.unavailable_view.visible.bind_to(ctrl.unavailable), - - bind_attr(this.table_element, "hidden", ctrl.unavailable), - - quest.observe(({ value: q }) => { - this.quest_disposer.dispose_all(); - - this.episode_element.textContent = q ? Episode[q.episode] : ""; - - if (q) { - this.quest_disposer.add_all( - this.id_input.value.bind_to(q.id), - this.id_input.value.observe(({ value }) => ctrl.set_id(value)), - - this.name_input.value.bind_to(q.name), - this.name_input.value.observe(({ value }) => ctrl.set_name(value)), - - this.short_description_input.value.bind_to(q.short_description), - this.short_description_input.value.observe(({ value }) => - ctrl.set_short_description(value), - ), - - this.long_description_input.value.bind_to(q.long_description), - this.long_description_input.value.observe(({ value }) => - ctrl.set_long_description(value), - ), - - this.enabled.bind_to(ctrl.enabled), - ); - } - }), - ); - - this.finalize_construction(QuestInfoView); - } - - protected set_enabled(enabled: boolean): void { - super.set_enabled(enabled); - - this.id_input.enabled.val = enabled; - this.name_input.enabled.val = enabled; - this.short_description_input.enabled.val = enabled; - this.long_description_input.enabled.val = enabled; - } -} diff --git a/src/quest_editor/gui/QuestRendererView.ts b/src/quest_editor/gui/QuestRendererView.ts deleted file mode 100644 index 20c9deb3..00000000 --- a/src/quest_editor/gui/QuestRendererView.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { RendererWidget } from "../../core/gui/RendererWidget"; -import { QuestRenderer } from "../rendering/QuestRenderer"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { div } from "../../core/gui/dom"; -import { ResizableView } from "../../core/gui/ResizableView"; - -export abstract class QuestRendererView extends ResizableView { - private readonly renderer_widget: RendererWidget; - - protected readonly renderer: QuestRenderer; - - readonly element: HTMLElement; - - protected constructor( - quest_editor_store: QuestEditorStore, - className: string, - renderer: QuestRenderer, - ) { - super(); - - this.element = div({ className, tabIndex: -1 }); - this.element.style.outline = "none"; - this.renderer = renderer; - this.renderer_widget = this.add(new RendererWidget(this.renderer)); - this.element.append(this.renderer_widget.element); - - this.disposables( - quest_editor_store.debug.observe(({ value }) => (this.renderer.debug = value)), - ); - } - - resize(width: number, height: number): this { - super.resize(width, height); - - this.renderer_widget.resize(width, height); - - return this; - } -} diff --git a/src/quest_editor/gui/QuestRunnerRendererView.ts b/src/quest_editor/gui/QuestRunnerRendererView.ts deleted file mode 100644 index 3ee158c8..00000000 --- a/src/quest_editor/gui/QuestRunnerRendererView.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { QuestRenderer } from "../rendering/QuestRenderer"; -import { QuestRunner3DModelManager } from "../rendering/QuestRunner3DModelManager"; -import { QuestRendererView } from "./QuestRendererView"; -import { QuestEditorStore } from "../stores/QuestEditorStore"; -import { AreaAssetLoader } from "../loading/AreaAssetLoader"; -import { EntityAssetLoader } from "../loading/EntityAssetLoader"; -import { DisposableThreeRenderer } from "../../core/rendering/Renderer"; - -export class QuestRunnerRendererView extends QuestRendererView { - constructor( - quest_editor_store: QuestEditorStore, - area_asset_loader: AreaAssetLoader, - entity_asset_loader: EntityAssetLoader, - three_renderer: DisposableThreeRenderer, - ) { - super( - quest_editor_store, - "quest_editor_QuestRunnerRendererView", - new QuestRenderer( - three_renderer, - renderer => - new QuestRunner3DModelManager( - quest_editor_store.quest_runner, - renderer, - area_asset_loader, - entity_asset_loader, - ), - ), - ); - - this.renderer.init_camera_controls(); - - this.finalize_construction(QuestRunnerRendererView); - } -} diff --git a/src/quest_editor/gui/RegistersView.css b/src/quest_editor/gui/RegistersView.css deleted file mode 100644 index a23dd57e..00000000 --- a/src/quest_editor/gui/RegistersView.css +++ /dev/null @@ -1,40 +0,0 @@ -.quest_editor_RegistersView { - display: flex; - flex-direction: column; -} - -.quest_editor_RegistersView_container { - overflow: auto; - flex: 1; -} - -.quest_editor_RegistersView_list { - display: grid; - grid-template-columns: repeat(auto-fill, 124px); - justify-content: center; - /* One pixel extra padding-top because .quest_editor_RegistersView_register has -1px margin-top. */ - padding: 7px 6px 6px 6px; -} - -.quest_editor_RegistersView_register { - display: flex; - align-items: baseline; - margin-top: -1px; -} - -.quest_editor_RegistersView_register > .core_Label { - box-sizing: border-box; - font-family: monospace; - width: 40px; - padding-right: 1px; - text-align: right; -} - -.quest_editor_RegistersView_register .quest_editor_RegistersView_value { - width: 84px; -} - -.quest_editor_RegistersView_register .quest_editor_RegistersView_value > .core_TextInput_inner { - text-align: right; - font-family: monospace; -} diff --git a/src/quest_editor/gui/RegistersView.ts b/src/quest_editor/gui/RegistersView.ts deleted file mode 100644 index 3cb31632..00000000 --- a/src/quest_editor/gui/RegistersView.ts +++ /dev/null @@ -1,175 +0,0 @@ -import { REGISTER_COUNT } from "../scripting/vm/VirtualMachine"; -import { TextInput } from "../../core/gui/TextInput"; -import { ToolBar } from "../../core/gui/ToolBar"; -import { CheckBox } from "../../core/gui/CheckBox"; -import { number_to_hex_string } from "../../core/util"; -import "./RegistersView.css"; -import { Select } from "../../core/gui/Select"; -import { QuestRunner } from "../QuestRunner"; -import { div } from "../../core/gui/dom"; -import { ResizableView } from "../../core/gui/ResizableView"; - -enum RegisterDisplayType { - Signed, - Unsigned, - Word, - Byte, - Float, -} - -type RegisterGetterFunction = (register: number) => number; - -export class RegistersView extends ResizableView { - private readonly type_select = this.add( - new Select({ - label: "Display type:", - tooltip: "Select which data type register values should be displayed as.", - items: [ - RegisterDisplayType.Signed, - RegisterDisplayType.Unsigned, - RegisterDisplayType.Word, - RegisterDisplayType.Byte, - RegisterDisplayType.Float, - ], - to_label: type => RegisterDisplayType[type], - }), - ); - private register_getter: RegisterGetterFunction = this.get_register_getter( - RegisterDisplayType.Signed, - ); - - private readonly hex_checkbox = this.add( - new CheckBox(false, { - label: "Hex", - tooltip: "Display register values in hexadecimal.", - }), - ); - - private readonly settings_bar = this.add(new ToolBar(this.type_select, this.hex_checkbox)); - - private readonly register_els: TextInput[]; - private readonly list_element = div({ className: "quest_editor_RegistersView_list" }); - private readonly container_element = div( - { className: "quest_editor_RegistersView_container" }, - this.list_element, - ); - - readonly element = div( - { className: "quest_editor_RegistersView" }, - this.settings_bar.element, - this.container_element, - ); - - constructor(private readonly quest_runner: QuestRunner) { - super(); - - this.type_select.selected.val = RegisterDisplayType.Signed; - - // create register elements - const register_els: TextInput[] = Array(REGISTER_COUNT); - for (let i = 0; i < REGISTER_COUNT; i++) { - const value_el = this.add( - new TextInput("", { - class: "quest_editor_RegistersView_value", - label: `r${i}:`, - readonly: true, - }), - ); - - const wrapper_el = div( - { className: "quest_editor_RegistersView_register" }, - value_el.label!.element, - value_el.element, - ); - - register_els[i] = value_el; - - this.list_element.appendChild(wrapper_el); - } - this.register_els = register_els; - - // predicate that indicates whether to display - // placeholder text or the actual register values - const should_use_placeholders = (): boolean => - !this.quest_runner.paused.val || !this.quest_runner.running.val; - - // set initial values - this.update(should_use_placeholders(), this.hex_checkbox.checked.val); - - this.disposables( - // check if values need to be updated - // when QuestRunner execution state changes - this.quest_runner.running.observe(() => - this.update(should_use_placeholders(), this.hex_checkbox.checked.val), - ), - this.quest_runner.paused.observe(() => - this.update(should_use_placeholders(), this.hex_checkbox.checked.val), - ), - this.quest_runner.pause_location.observe(() => - this.update(should_use_placeholders(), this.hex_checkbox.checked.val), - ), - - this.type_select.selected.observe(({ value }) => { - if (value != undefined) { - this.register_getter = this.get_register_getter(value); - this.update(should_use_placeholders(), this.hex_checkbox.checked.val); - } - }), - - this.hex_checkbox.checked.observe(change => - this.update(should_use_placeholders(), change.value), - ), - ); - - this.finalize_construction(RegistersView); - } - - private get_register_getter(type: RegisterDisplayType): RegisterGetterFunction { - let getter: RegisterGetterFunction; - - switch (type) { - case RegisterDisplayType.Signed: - getter = this.quest_runner.vm.get_register_signed; - break; - case RegisterDisplayType.Unsigned: - getter = this.quest_runner.vm.get_register_unsigned; - break; - case RegisterDisplayType.Word: - getter = this.quest_runner.vm.get_register_word; - break; - case RegisterDisplayType.Byte: - getter = this.quest_runner.vm.get_register_byte; - break; - case RegisterDisplayType.Float: - getter = this.quest_runner.vm.get_register_float; - break; - } - - return getter.bind(this.quest_runner.vm); - } - - private update(use_placeholders: boolean, use_hex: boolean): void { - if (use_placeholders) { - const placeholder_text = "??"; - for (let i = 0; i < REGISTER_COUNT; i++) { - const reg_el = this.register_els[i]; - - reg_el.value.set_val(placeholder_text, { silent: true }); - } - } else if (use_hex) { - for (let i = 0; i < REGISTER_COUNT; i++) { - const reg_el = this.register_els[i]; - const reg_val = this.quest_runner.vm.get_register_unsigned(i); - - reg_el.value.set_val(number_to_hex_string(reg_val), { silent: true }); - } - } else { - for (let i = 0; i < REGISTER_COUNT; i++) { - const reg_el = this.register_els[i]; - const reg_val = this.register_getter(i); - - reg_el.value.set_val(reg_val.toString(), { silent: true }); - } - } - } -} diff --git a/src/quest_editor/gui/UnavailableView.css b/src/quest_editor/gui/UnavailableView.css deleted file mode 100644 index 8c7e382e..00000000 --- a/src/quest_editor/gui/UnavailableView.css +++ /dev/null @@ -1,8 +0,0 @@ -.quest_editor_UnavailableView { - display: flex; - align-items: center; - justify-content: center; - width: 100%; - height: 100%; - text-align: center; -} diff --git a/src/quest_editor/gui/UnavailableView.ts b/src/quest_editor/gui/UnavailableView.ts deleted file mode 100644 index e229a9a0..00000000 --- a/src/quest_editor/gui/UnavailableView.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { Label } from "../../core/gui/Label"; -import "./UnavailableView.css"; -import { div } from "../../core/gui/dom"; -import { View } from "../../core/gui/View"; - -/** - * Used to show that a view exists but is unavailable at the moment. - */ -export class UnavailableView extends View { - readonly element = div({ className: "quest_editor_UnavailableView" }); - - private readonly label: Label; - - constructor(message: string) { - super(); - - this.label = this.disposable(new Label(message, { enabled: false })); - - this.element.append(this.label.element); - - this.finalize_construction(UnavailableView); - } -} diff --git a/src/quest_editor/gui/__snapshots__/EntityInfoView.test.ts.snap b/src/quest_editor/gui/__snapshots__/EntityInfoView.test.ts.snap deleted file mode 100644 index 72f7f6a5..00000000 --- a/src/quest_editor/gui/__snapshots__/EntityInfoView.test.ts.snap +++ /dev/null @@ -1,609 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Renders correctly with an entity selected.: should render a table of editable properties 1`] = ` -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Type: - - NPC -
- Name: - - Guild Lady -
- Section: - - 10 -
- Wave: - - None -
- Position: -
- X: - - - - -
- Y: - - - - -
- Z: - - - - -
- Rotation: -
- X: - - - - -
- Y: - - - - -
- Z: - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- Movement distance: - - - - -
- Hide register: - - - - -
- Character ID: - - - - -
- Script label: - - - - -
- Movement flag: - - - - -
- -
-`; - -exports[`Renders correctly without an entity selected.: should render a "No entity selected." view 1`] = ` -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -`; - -exports[`Renders correctly without an entity selected.: should render a "No entity selected." view 2`] = ` -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -`; diff --git a/src/quest_editor/gui/__snapshots__/NpcCountsView.test.ts.snap b/src/quest_editor/gui/__snapshots__/NpcCountsView.test.ts.snap deleted file mode 100644 index b9fc9c24..00000000 --- a/src/quest_editor/gui/__snapshots__/NpcCountsView.test.ts.snap +++ /dev/null @@ -1,143 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Renders correctly with a current quest.: Should render a table with NPC names and counts. 1`] = ` -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Female Fat: - - 1 -
- Female Macho: - - 2 -
- Female Tall: - - 1 -
- Male Dwarf: - - 1 -
- Male Fat: - - 1 -
- Male Macho: - - 1 -
- Male Old: - - 1 -
- Blue Soldier: - - 1 -
- Red Soldier: - - 1 -
- Tekker: - - 1 -
- Guild Lady: - - 2 -
- Scientist: - - 1 -
- Nurse: - - 2 -
- -
-`; - -exports[`Renders correctly without a current quest.: Should render a "No quest loaded." view. 1`] = ` -
- -
- -
- -`; diff --git a/src/quest_editor/gui/__snapshots__/QuestEditorToolBarView.test.ts.snap b/src/quest_editor/gui/__snapshots__/QuestEditorToolBarView.test.ts.snap deleted file mode 100644 index a785d108..00000000 --- a/src/quest_editor/gui/__snapshots__/QuestEditorToolBarView.test.ts.snap +++ /dev/null @@ -1,190 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Renders correctly. 1`] = ` -
-
- - -
- - - - -
- - -
-`; diff --git a/src/quest_editor/gui/__snapshots__/QuestInfoView.test.ts.snap b/src/quest_editor/gui/__snapshots__/QuestInfoView.test.ts.snap deleted file mode 100644 index 9bd37603..00000000 --- a/src/quest_editor/gui/__snapshots__/QuestInfoView.test.ts.snap +++ /dev/null @@ -1,218 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Renders correctly with a current quest.: should render property inputs 1`] = ` -
-
- - - - - - - - - - - - - - - - -
- Episode: - - I -
- ID: - - - - -
- Name: - - - - -
- Short description: -
-
-