@volter/blender-engine 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +724 -0
- package/README.md +48 -0
- package/browser/blender-emscripten-engine.mts +289 -0
- package/browser/blender-engine.mts +412 -0
- package/browser/blender-wali-engine.mts +362 -0
- package/browser/index.ts +7 -0
- package/browser/protocol.ts +202 -0
- package/browser/rna.ts +697 -0
- package/browser/runtime.ts +511 -0
- package/browser/session-frame.mts +169 -0
- package/browser/session.py +4166 -0
- package/browser/three/agx-base-srgb.lut +0 -0
- package/browser/three/agx-look-medium-high-contrast.lut +0 -0
- package/browser/three/agx-look-punchy.lut +0 -0
- package/browser/three/attach-presenter.ts +140 -0
- package/browser/three/blender-agx.ts +235 -0
- package/browser/three/blender-base64.ts +42 -0
- package/browser/three/blender-corner-normals.ts +432 -0
- package/browser/three/blender-display-lut.ts +145 -0
- package/browser/three/blender-filmic.ts +49 -0
- package/browser/three/blender-frame-columns.ts +100 -0
- package/browser/three/blender-gradient-texture.ts +57 -0
- package/browser/three/blender-runtime-armature.ts +528 -0
- package/browser/three/blender-runtime-frame.ts +39 -0
- package/browser/three/blender-runtime-geometry.ts +342 -0
- package/browser/three/blender-runtime-lighting.ts +829 -0
- package/browser/three/blender-runtime-shadows.ts +107 -0
- package/browser/three/blender-runtime-view.ts +1481 -0
- package/browser/three/blender-runtime-volume.ts +128 -0
- package/browser/three/blender-runtime-weights.ts +306 -0
- package/browser/three/blender-sky.ts +461 -0
- package/browser/three/blender-standard.ts +68 -0
- package/browser/three/blender-triangulate.ts +181 -0
- package/browser/three/filmic-srgb.lut +0 -0
- package/browser/three/presenter.ts +265 -0
- package/browser/three/release.ts +27 -0
- package/browser/three/sky-precompute-worker.ts +45 -0
- package/browser/three/sky-worker.ts +79 -0
- package/browser/three/world-field-sampler.ts +358 -0
- package/browser/three/world-math.ts +59 -0
- package/browser/vgai_three.py +554 -0
- package/browser/worker.ts +648 -0
- package/package.json +48 -0
- package/wasm/BUNDLE.json +65 -0
- package/wasm/DEPENDENCY-LICENSES.txt +4879 -0
- package/wasm/blender_browser.data.br +0 -0
- package/wasm/blender_browser.js +2 -0
- package/wasm/blender_browser.wasm.br +0 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var createBlenderModule=(()=>{var _scriptName=globalThis.document?.currentScript?.src;return async function(moduleArg={}){var Module=moduleArg;var ENVIRONMENT_IS_WEB=!!globalThis.window;var ENVIRONMENT_IS_WORKER=!!globalThis.WorkerGlobalScope;var ENVIRONMENT_IS_NODE=globalThis.process?.versions?.node&&globalThis.process?.type!="renderer";var ENVIRONMENT_IS_PTHREAD=ENVIRONMENT_IS_WORKER&&globalThis.name=="em-pthread";if(ENVIRONMENT_IS_NODE){var worker_threads=require("node:worker_threads");globalThis.Worker=worker_threads.Worker;ENVIRONMENT_IS_WORKER=!worker_threads.isMainThread;ENVIRONMENT_IS_PTHREAD=ENVIRONMENT_IS_WORKER&&worker_threads.workerData=="em-pthread"}if(!Module["expectedDataFileDownloads"])Module["expectedDataFileDownloads"]=0;Module["expectedDataFileDownloads"]++;(()=>{var isPthread=typeof ENVIRONMENT_IS_PTHREAD!="undefined"&&ENVIRONMENT_IS_PTHREAD;var isWasmWorker=typeof ENVIRONMENT_IS_WASM_WORKER!="undefined"&&ENVIRONMENT_IS_WASM_WORKER;if(isPthread||isWasmWorker)return;var isNode=globalThis.process&&globalThis.process.versions&&globalThis.process.versions.node&&globalThis.process.type!="renderer";async function loadPackage(metadata){var PACKAGE_PATH="";if(typeof window==="object"){PACKAGE_PATH=window["encodeURIComponent"](window.location.pathname.substring(0,window.location.pathname.lastIndexOf("/"))+"/")}else if(typeof process==="undefined"&&typeof location!=="undefined"){PACKAGE_PATH=encodeURIComponent(location.pathname.substring(0,location.pathname.lastIndexOf("/"))+"/")}var PACKAGE_NAME="build-editor/bin/blender_browser.data";var REMOTE_PACKAGE_BASE="blender_browser.data";var REMOTE_PACKAGE_NAME=Module["locateFile"]?Module["locateFile"](REMOTE_PACKAGE_BASE,""):REMOTE_PACKAGE_BASE;var REMOTE_PACKAGE_SIZE=metadata["remote_package_size"];async function fetchRemotePackage(packageName,packageSize){if(isNode){var contents=require("fs").readFileSync(packageName);return new Uint8Array(contents).buffer}if(!Module["dataFileDownloads"])Module["dataFileDownloads"]={};try{var response=await fetch(packageName)}catch(e){throw new Error(`Network Error: ${packageName}`,{e})}if(!response.ok){throw new Error(`${response.status}: ${response.url}`)}const chunks=[];const headers=response.headers;const total=Number(headers.get("Content-Length")||packageSize);let loaded=0;Module["setStatus"]&&Module["setStatus"]("Downloading data...");const reader=response.body.getReader();while(1){var{done,value}=await reader.read();if(done)break;chunks.push(value);loaded+=value.length;Module["dataFileDownloads"][packageName]={loaded,total};let totalLoaded=0;let totalSize=0;for(const download of Object.values(Module["dataFileDownloads"])){totalLoaded+=download.loaded;totalSize+=download.total}Module["setStatus"]&&Module["setStatus"](`Downloading data... (${totalLoaded}/${totalSize})`)}const packageData=new Uint8Array(chunks.map(c=>c.length).reduce((a,b)=>a+b,0));let offset=0;for(const chunk of chunks){packageData.set(chunk,offset);offset+=chunk.length}return packageData.buffer}var fetchPromise;var fetched=Module["getPreloadedPackage"]&&Module["getPreloadedPackage"](REMOTE_PACKAGE_NAME,REMOTE_PACKAGE_SIZE);if(!fetched){fetchPromise=fetchRemotePackage(REMOTE_PACKAGE_NAME,REMOTE_PACKAGE_SIZE)}async function runWithFS(Module){function assert(check,msg){if(!check)throw new Error(msg)}Module["FS_createPath"]("/","bw",true,true);Module["FS_createPath"]("/bw","datafiles",true,true);Module["FS_createPath"]("/bw/datafiles","colormanagement",true,true);Module["FS_createPath"]("/bw/datafiles/colormanagement","filmic",true,true);Module["FS_createPath"]("/bw/datafiles/colormanagement","icc",true,true);Module["FS_createPath"]("/bw/datafiles/colormanagement","luts",true,true);Module["FS_createPath"]("/bw/datafiles","fonts",true,true);Module["FS_createPath"]("/bw","python",true,true);Module["FS_createPath"]("/bw/python","lib",true,true);Module["FS_createPath"]("/bw/python/lib","python3.13",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","__phello__",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/__phello__","ham",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","_pyrepl",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","asyncio",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","collections",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","concurrent",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/concurrent","futures",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","ctypes",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/ctypes","macholib",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","curses",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","dbm",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","email",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/email","mime",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","encodings",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","html",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","http",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","importlib",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/importlib","metadata",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/importlib","resources",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","json",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","logging",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","multiprocessing",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/multiprocessing","dummy",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","pathlib",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","re",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","site-packages",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","attr",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","attrs-25.3.0.dist-info",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/attrs-25.3.0.dist-info","licenses",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","attrs",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","cattr",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/cattr","preconf",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","cattrs-25.1.1.dist-info",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/cattrs-25.1.1.dist-info","licenses",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","cattrs",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/cattrs","gen",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/cattrs","preconf",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/cattrs","strategies",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","certifi-2025.4.26.dist-info",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/certifi-2025.4.26.dist-info","licenses",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","certifi",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","charset_normalizer-3.4.1.dist-info",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","charset_normalizer",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/charset_normalizer","cli",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","idna-3.10.dist-info",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","idna",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","numpy",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","_build_utils",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_build_utils","tempita",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","_core",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core","code_generators",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core","src",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/src","common",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/src/common","pythoncapi-compat",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/src/common/pythoncapi-compat","docs",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/src/common/pythoncapi-compat","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/src","highway",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/src/highway","docs",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/src","npysort",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/src/npysort","x86-simd-sort",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/tests","examples",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/tests/examples","cython",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_core/tests/examples","limited_api",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","_pyinstaller",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/_pyinstaller","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","_typing",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","_utils",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","char",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","core",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","ctypeslib",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","distutils",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/distutils","command",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/distutils","fcompiler",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/distutils","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","doc",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","f2py",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/f2py","_backends",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/f2py","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","fft",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/fft","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","lib",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/lib","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","linalg",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/linalg","lapack_lite",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/linalg","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","ma",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/ma","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","matrixlib",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/matrixlib","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","polynomial",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/polynomial","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","random",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/random","_examples",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/random/_examples","cffi",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/random/_examples","numba",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/random","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/random/tests","data",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","rec",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","strings",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","testing",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/testing","_private",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/testing","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy","typing",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/typing","tests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/typing/tests","data",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data","pass",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","pyodide",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","requests-2.32.3.dist-info",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","requests",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","typing_extensions-4.14.1.dist-info",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/typing_extensions-4.14.1.dist-info","licenses",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","urllib3-2.4.0.dist-info",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/urllib3-2.4.0.dist-info","licenses",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages","urllib3",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/urllib3","contrib",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/urllib3/contrib","emscripten",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/urllib3","http2",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/site-packages/urllib3","util",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","sqlite3",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","sysconfig",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","tomllib",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","unittest",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","urllib",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","wsgiref",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","xml",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/xml","dom",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/xml","etree",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/xml","parsers",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/xml","sax",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","xmlrpc",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","zipfile",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13/zipfile","_path",true,true);Module["FS_createPath"]("/bw/python/lib/python3.13","zoneinfo",true,true);Module["FS_createPath"]("/bw","scripts",true,true);Module["FS_createPath"]("/bw/scripts","addons_core",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","bl_pkg",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/bl_pkg","cli",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/bl_pkg","example_extension",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/bl_pkg","tests",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/bl_pkg/tests","modules",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","cycles",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","hydra_storm",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","io_anim_bvh",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","io_curve_svg",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","io_mesh_uv_layout",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","io_scene_fbx",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","io_scene_gltf2",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2","blender",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender","com",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender","exp",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender/exp","animation",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation","fcurves",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation","sampled",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled","armature",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled","data",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled","object",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled","shapekeys",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender/exp","material",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material","extensions",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/blender","imp",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2","io",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/io","com",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/io","exp",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/io_scene_gltf2/io","imp",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","node_wrangler",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/node_wrangler","operators",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/node_wrangler","utils",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","pose_library",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","rigify",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify","feature_sets",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify","metarigs",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify/metarigs","Animals",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify/metarigs","Basic",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify","operators",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify","rigs",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify/rigs","basic",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify/rigs","experimental",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify/rigs","face",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify/rigs","faces",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify/rigs","limbs",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify/rigs","skin",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify/rigs/skin","transform",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify/rigs","spines",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/rigify","utils",true,true);Module["FS_createPath"]("/bw/scripts/addons_core","viewport_vr_preview",true,true);Module["FS_createPath"]("/bw/scripts/addons_core/viewport_vr_preview","configs",true,true);Module["FS_createPath"]("/bw/scripts","freestyle",true,true);Module["FS_createPath"]("/bw/scripts/freestyle","modules",true,true);Module["FS_createPath"]("/bw/scripts/freestyle/modules","freestyle",true,true);Module["FS_createPath"]("/bw/scripts/freestyle","styles",true,true);Module["FS_createPath"]("/bw/scripts","modules",true,true);Module["FS_createPath"]("/bw/scripts/modules","_bl_console_utils",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bl_console_utils","autocomplete",true,true);Module["FS_createPath"]("/bw/scripts/modules","_bl_i18n_utils",true,true);Module["FS_createPath"]("/bw/scripts/modules","_bl_previews_utils",true,true);Module["FS_createPath"]("/bw/scripts/modules","_bl_rna_utils",true,true);Module["FS_createPath"]("/bw/scripts/modules","_bl_text_utils",true,true);Module["FS_createPath"]("/bw/scripts/modules","_bl_ui_utils",true,true);Module["FS_createPath"]("/bw/scripts/modules","_bpy_internal",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bpy_internal","addons",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bpy_internal","assets",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bpy_internal/assets","remote_library",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bpy_internal","disk_file_hash_service",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bpy_internal","extensions",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bpy_internal","filesystem",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bpy_internal","grease_pencil",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bpy_internal","http",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bpy_internal","platform",true,true);Module["FS_createPath"]("/bw/scripts/modules/_bpy_internal","system_info",true,true);Module["FS_createPath"]("/bw/scripts/modules","bl_app_override",true,true);Module["FS_createPath"]("/bw/scripts/modules","bl_keymap_utils",true,true);Module["FS_createPath"]("/bw/scripts/modules","bpy",true,true);Module["FS_createPath"]("/bw/scripts/modules/bpy","utils",true,true);Module["FS_createPath"]("/bw/scripts/modules","bpy_extras",true,true);Module["FS_createPath"]("/bw/scripts/modules/bpy_extras","wm_utils",true,true);Module["FS_createPath"]("/bw/scripts/modules","gpu_extras",true,true);Module["FS_createPath"]("/bw/scripts","presets",true,true);Module["FS_createPath"]("/bw/scripts/presets","camera",true,true);Module["FS_createPath"]("/bw/scripts/presets","cloth",true,true);Module["FS_createPath"]("/bw/scripts/presets","color_management",true,true);Module["FS_createPath"]("/bw/scripts/presets/color_management","white_balance",true,true);Module["FS_createPath"]("/bw/scripts/presets","cycles",true,true);Module["FS_createPath"]("/bw/scripts/presets/cycles","integrator",true,true);Module["FS_createPath"]("/bw/scripts/presets/cycles","performance",true,true);Module["FS_createPath"]("/bw/scripts/presets/cycles","sampling",true,true);Module["FS_createPath"]("/bw/scripts/presets/cycles","viewport_sampling",true,true);Module["FS_createPath"]("/bw/scripts/presets","eevee",true,true);Module["FS_createPath"]("/bw/scripts/presets/eevee","raytracing",true,true);Module["FS_createPath"]("/bw/scripts/presets","ffmpeg",true,true);Module["FS_createPath"]("/bw/scripts/presets","fluid",true,true);Module["FS_createPath"]("/bw/scripts/presets","framerate",true,true);Module["FS_createPath"]("/bw/scripts/presets","gpencil_material",true,true);Module["FS_createPath"]("/bw/scripts/presets","hair_dynamics",true,true);Module["FS_createPath"]("/bw/scripts/presets","interface_theme",true,true);Module["FS_createPath"]("/bw/scripts/presets","keyconfig",true,true);Module["FS_createPath"]("/bw/scripts/presets/keyconfig","keymap_data",true,true);Module["FS_createPath"]("/bw/scripts/presets","pixel_density",true,true);Module["FS_createPath"]("/bw/scripts/presets","render",true,true);Module["FS_createPath"]("/bw/scripts/presets","safe_areas",true,true);Module["FS_createPath"]("/bw/scripts/presets","sequencer",true,true);Module["FS_createPath"]("/bw/scripts/presets/sequencer","text_style",true,true);Module["FS_createPath"]("/bw/scripts/presets","text_editor",true,true);Module["FS_createPath"]("/bw/scripts/presets","tracking_camera",true,true);Module["FS_createPath"]("/bw/scripts/presets","tracking_settings",true,true);Module["FS_createPath"]("/bw/scripts/presets","tracking_track_color",true,true);Module["FS_createPath"]("/bw/scripts","site",true,true);Module["FS_createPath"]("/bw/scripts","startup",true,true);Module["FS_createPath"]("/bw/scripts/startup","bl_app_templates_system",true,true);Module["FS_createPath"]("/bw/scripts/startup/bl_app_templates_system","2D_Animation",true,true);Module["FS_createPath"]("/bw/scripts/startup/bl_app_templates_system","Sculpting",true,true);Module["FS_createPath"]("/bw/scripts/startup/bl_app_templates_system","Storyboarding",true,true);Module["FS_createPath"]("/bw/scripts/startup/bl_app_templates_system","VFX",true,true);Module["FS_createPath"]("/bw/scripts/startup/bl_app_templates_system","Video_Editing",true,true);Module["FS_createPath"]("/bw/scripts/startup","bl_operators",true,true);Module["FS_createPath"]("/bw/scripts/startup/bl_operators","bmesh",true,true);Module["FS_createPath"]("/bw/scripts/startup/bl_operators","node_editor",true,true);Module["FS_createPath"]("/bw/scripts/startup","bl_ui",true,true);Module["FS_createPath"]("/bw/scripts","templates_osl",true,true);Module["FS_createPath"]("/bw/scripts","templates_py",true,true);Module["FS_createPath"]("/bw/scripts/templates_py","Gizmo",true,true);Module["FS_createPath"]("/bw/scripts/templates_py","Operator",true,true);Module["FS_createPath"]("/bw/scripts/templates_py","UI",true,true);Module["FS_createPath"]("/bw/scripts","templates_toml",true,true);async function processPackageData(arrayBuffer){assert(arrayBuffer,"Loading data file failed.");assert(arrayBuffer.constructor.name===ArrayBuffer.name,"bad input to processPackageData "+arrayBuffer.constructor.name);var byteArray=new Uint8Array(arrayBuffer);for(var file of metadata["files"]){var name=file["filename"];var data=byteArray.subarray(file["start"],file["end"]);Module["FS_createDataFile"](name,null,data,true,true,true)}Module["removeRunDependency"]("datafile_build-editor/bin/blender_browser.data")}Module["addRunDependency"]("datafile_build-editor/bin/blender_browser.data");if(!Module["preloadResults"])Module["preloadResults"]={};Module["preloadResults"][PACKAGE_NAME]={fromCache:false};if(!fetched){fetched=await fetchPromise}await processPackageData(fetched)}if(Module["FS_createPath"]){runWithFS(Module)}else{if(!Module["preRun"])Module["preRun"]=[];Module["preRun"].push(runWithFS)}}loadPackage({files:[{filename:"/bw/datafiles/colormanagement/config.ocio",start:0,end:67043},{filename:"/bw/datafiles/colormanagement/filmic/filmic_desat_33.cube",start:67043,end:1145292},{filename:"/bw/datafiles/colormanagement/filmic/filmic_to_0-35_1-30.spi1d",start:1145292,end:1239562},{filename:"/bw/datafiles/colormanagement/filmic/filmic_to_0-48_1-09.spi1d",start:1239562,end:1333832},{filename:"/bw/datafiles/colormanagement/filmic/filmic_to_0-60_1-04.spi1d",start:1333832,end:1428102},{filename:"/bw/datafiles/colormanagement/filmic/filmic_to_0-70_1-03.spi1d",start:1428102,end:1522372},{filename:"/bw/datafiles/colormanagement/filmic/filmic_to_0-85_1-011.spi1d",start:1522372,end:1616642},{filename:"/bw/datafiles/colormanagement/filmic/filmic_to_0.99_1-0075.spi1d",start:1616642,end:1710912},{filename:"/bw/datafiles/colormanagement/filmic/filmic_to_1.20_1-00.spi1d",start:1710912,end:1805182},{filename:"/bw/datafiles/colormanagement/icc/README.md",start:1805182,end:1805402},{filename:"/bw/datafiles/colormanagement/icc/g24_rec2020_display.icc",start:1805402,end:1805530},{filename:"/bw/datafiles/colormanagement/icc/g24_rec709_display.icc",start:1805530,end:1805658},{filename:"/bw/datafiles/colormanagement/icc/g26_xyzd65_display.icc",start:1805658,end:1805786},{filename:"/bw/datafiles/colormanagement/icc/srgb_p3d65_display.icc",start:1805786,end:1805914},{filename:"/bw/datafiles/colormanagement/luts/AgX_Base_P3.cube",start:1805914,end:4545987},{filename:"/bw/datafiles/colormanagement/luts/AgX_Base_Rec2020.cube",start:4545987,end:7355094},{filename:"/bw/datafiles/colormanagement/luts/AgX_Base_sRGB.cube",start:7355094,end:10071300},{filename:"/bw/datafiles/colormanagement/luts/AgX_False_Color.spi1d",start:10071300,end:10198340},{filename:"/bw/datafiles/colormanagement/luts/AgX_Rec2100-HLG_p3_lim.cube",start:10198340,end:13076814},{filename:"/bw/datafiles/colormanagement/luts/Guard_Rail_Shaper_EOTF.spi1d",start:13076814,end:13122580},{filename:"/bw/datafiles/colormanagement/luts/luminance_compensation_bt2020.cube",start:13122580,end:14642536},{filename:"/bw/datafiles/colormanagement/luts/pbrNeutral.cube",start:14642536,end:20137913},{filename:"/bw/datafiles/colormanagement/luts/xyz_E_to_D65.spimtx",start:20137913,end:20138028},{filename:"/bw/datafiles/fonts/DejaVuSansMono.woff2",start:20138028,end:20283220},{filename:"/bw/datafiles/fonts/Inter.woff2",start:20283220,end:20634352},{filename:"/bw/python/lib/python3.13/__future__.py",start:20634352,end:20639570},{filename:"/bw/python/lib/python3.13/__hello__.py",start:20639570,end:20639797},{filename:"/bw/python/lib/python3.13/__phello__/__init__.py",start:20639797,end:20639894},{filename:"/bw/python/lib/python3.13/__phello__/ham/__init__.py",start:20639894,end:20639894},{filename:"/bw/python/lib/python3.13/__phello__/ham/eggs.py",start:20639894,end:20639894},{filename:"/bw/python/lib/python3.13/__phello__/spam.py",start:20639894,end:20639991},{filename:"/bw/python/lib/python3.13/_aix_support.py",start:20639991,end:20644012},{filename:"/bw/python/lib/python3.13/_android_support.py",start:20644012,end:20651429},{filename:"/bw/python/lib/python3.13/_apple_support.py",start:20651429,end:20653685},{filename:"/bw/python/lib/python3.13/_collections_abc.py",start:20653685,end:20686295},{filename:"/bw/python/lib/python3.13/_colorize.py",start:20686295,end:20689363},{filename:"/bw/python/lib/python3.13/_compat_pickle.py",start:20689363,end:20698098},{filename:"/bw/python/lib/python3.13/_compression.py",start:20698098,end:20703779},{filename:"/bw/python/lib/python3.13/_ios_support.py",start:20703779,end:20706451},{filename:"/bw/python/lib/python3.13/_markupbase.py",start:20706451,end:20721104},{filename:"/bw/python/lib/python3.13/_multiprocessing.py",start:20721104,end:20724594},{filename:"/bw/python/lib/python3.13/_opcode_metadata.py",start:20724594,end:20733859},{filename:"/bw/python/lib/python3.13/_osx_support.py",start:20733859,end:20755882},{filename:"/bw/python/lib/python3.13/_py_abc.py",start:20755882,end:20762071},{filename:"/bw/python/lib/python3.13/_pydatetime.py",start:20762071,end:20854054},{filename:"/bw/python/lib/python3.13/_pydecimal.py",start:20854054,end:21081580},{filename:"/bw/python/lib/python3.13/_pyio.py",start:21081580,end:21175442},{filename:"/bw/python/lib/python3.13/_pylong.py",start:21175442,end:21187272},{filename:"/bw/python/lib/python3.13/_pyrepl/__init__.py",start:21187272,end:21188197},{filename:"/bw/python/lib/python3.13/_pyrepl/__main__.py",start:21188197,end:21188619},{filename:"/bw/python/lib/python3.13/_pyrepl/_minimal_curses.py",start:21188619,end:21190463},{filename:"/bw/python/lib/python3.13/_pyrepl/_threading_handler.py",start:21190463,end:21192633},{filename:"/bw/python/lib/python3.13/_pyrepl/base_eventqueue.py",start:21192633,end:21196473},{filename:"/bw/python/lib/python3.13/_pyrepl/commands.py",start:21196473,end:21208768},{filename:"/bw/python/lib/python3.13/_pyrepl/completing_reader.py",start:21208768,end:21218818},{filename:"/bw/python/lib/python3.13/_pyrepl/console.py",start:21218818,end:21225684},{filename:"/bw/python/lib/python3.13/_pyrepl/curses.py",start:21225684,end:21226925},{filename:"/bw/python/lib/python3.13/_pyrepl/fancy_termios.py",start:21226925,end:21229491},{filename:"/bw/python/lib/python3.13/_pyrepl/historical_reader.py",start:21229491,end:21242731},{filename:"/bw/python/lib/python3.13/_pyrepl/input.py",start:21242731,end:21246510},{filename:"/bw/python/lib/python3.13/_pyrepl/keymap.py",start:21246510,end:21252970},{filename:"/bw/python/lib/python3.13/_pyrepl/main.py",start:21252970,end:21254908},{filename:"/bw/python/lib/python3.13/_pyrepl/mypy.ini",start:21254908,end:21255778},{filename:"/bw/python/lib/python3.13/_pyrepl/pager.py",start:21255778,end:21261593},{filename:"/bw/python/lib/python3.13/_pyrepl/reader.py",start:21261593,end:21289305},{filename:"/bw/python/lib/python3.13/_pyrepl/readline.py",start:21289305,end:21309526},{filename:"/bw/python/lib/python3.13/_pyrepl/simple_interact.py",start:21309526,end:21315323},{filename:"/bw/python/lib/python3.13/_pyrepl/trace.py",start:21315323,end:21315756},{filename:"/bw/python/lib/python3.13/_pyrepl/types.py",start:21315756,end:21316110},{filename:"/bw/python/lib/python3.13/_pyrepl/unix_console.py",start:21316110,end:21342872},{filename:"/bw/python/lib/python3.13/_pyrepl/unix_eventqueue.py",start:21342872,end:21345396},{filename:"/bw/python/lib/python3.13/_pyrepl/utils.py",start:21345396,end:21347840},{filename:"/bw/python/lib/python3.13/_pyrepl/windows_console.py",start:21347840,end:21369537},{filename:"/bw/python/lib/python3.13/_pyrepl/windows_eventqueue.py",start:21369537,end:21370528},{filename:"/bw/python/lib/python3.13/_sitebuiltins.py",start:21370528,end:21373227},{filename:"/bw/python/lib/python3.13/_strptime.py",start:21373227,end:21407961},{filename:"/bw/python/lib/python3.13/_sysconfigdata__emscripten_wasm32-emscripten.py",start:21407961,end:21463452},{filename:"/bw/python/lib/python3.13/_threading_local.py",start:21463452,end:21467815},{filename:"/bw/python/lib/python3.13/_weakrefset.py",start:21467815,end:21473708},{filename:"/bw/python/lib/python3.13/abc.py",start:21473708,end:21480246},{filename:"/bw/python/lib/python3.13/antigravity.py",start:21480246,end:21480746},{filename:"/bw/python/lib/python3.13/argparse.py",start:21480746,end:21583672},{filename:"/bw/python/lib/python3.13/ast.py",start:21583672,end:21649011},{filename:"/bw/python/lib/python3.13/asyncio/__init__.py",start:21649011,end:21650231},{filename:"/bw/python/lib/python3.13/asyncio/__main__.py",start:21650231,end:21656512},{filename:"/bw/python/lib/python3.13/asyncio/base_events.py",start:21656512,end:21737780},{filename:"/bw/python/lib/python3.13/asyncio/base_futures.py",start:21737780,end:21739754},{filename:"/bw/python/lib/python3.13/asyncio/base_subprocess.py",start:21739754,end:21750083},{filename:"/bw/python/lib/python3.13/asyncio/base_tasks.py",start:21750083,end:21752755},{filename:"/bw/python/lib/python3.13/asyncio/constants.py",start:21752755,end:21754168},{filename:"/bw/python/lib/python3.13/asyncio/coroutines.py",start:21754168,end:21757510},{filename:"/bw/python/lib/python3.13/asyncio/events.py",start:21757510,end:21787296},{filename:"/bw/python/lib/python3.13/asyncio/exceptions.py",start:21787296,end:21789048},{filename:"/bw/python/lib/python3.13/asyncio/format_helpers.py",start:21789048,end:21791775},{filename:"/bw/python/lib/python3.13/asyncio/futures.py",start:21791775,end:21805964},{filename:"/bw/python/lib/python3.13/asyncio/locks.py",start:21805964,end:21826544},{filename:"/bw/python/lib/python3.13/asyncio/log.py",start:21826544,end:21826668},{filename:"/bw/python/lib/python3.13/asyncio/mixins.py",start:21826668,end:21827149},{filename:"/bw/python/lib/python3.13/asyncio/proactor_events.py",start:21827149,end:21860678},{filename:"/bw/python/lib/python3.13/asyncio/protocols.py",start:21860678,end:21867635},{filename:"/bw/python/lib/python3.13/asyncio/queues.py",start:21867635,end:21877772},{filename:"/bw/python/lib/python3.13/asyncio/runners.py",start:21877772,end:21885002},{filename:"/bw/python/lib/python3.13/asyncio/selector_events.py",start:21885002,end:21933625},{filename:"/bw/python/lib/python3.13/asyncio/sslproto.py",start:21933625,end:21965494},{filename:"/bw/python/lib/python3.13/asyncio/staggered.py",start:21965494,end:21972571},{filename:"/bw/python/lib/python3.13/asyncio/streams.py",start:21972571,end:22001052},{filename:"/bw/python/lib/python3.13/asyncio/subprocess.py",start:22001052,end:22008789},{filename:"/bw/python/lib/python3.13/asyncio/taskgroups.py",start:22008789,end:22018838},{filename:"/bw/python/lib/python3.13/asyncio/tasks.py",start:22018838,end:22058595},{filename:"/bw/python/lib/python3.13/asyncio/threads.py",start:22058595,end:22059385},{filename:"/bw/python/lib/python3.13/asyncio/timeouts.py",start:22059385,end:22065447},{filename:"/bw/python/lib/python3.13/asyncio/transports.py",start:22065447,end:22076255},{filename:"/bw/python/lib/python3.13/asyncio/trsock.py",start:22076255,end:22078730},{filename:"/bw/python/lib/python3.13/asyncio/unix_events.py",start:22078730,end:22133146},{filename:"/bw/python/lib/python3.13/asyncio/windows_events.py",start:22133146,end:22165776},{filename:"/bw/python/lib/python3.13/asyncio/windows_utils.py",start:22165776,end:22171218},{filename:"/bw/python/lib/python3.13/base64.py",start:22171218,end:22193263},{filename:"/bw/python/lib/python3.13/bdb.py",start:22193263,end:22229362},{filename:"/bw/python/lib/python3.13/bisect.py",start:22229362,end:22232785},{filename:"/bw/python/lib/python3.13/bz2.py",start:22232785,end:22244754},{filename:"/bw/python/lib/python3.13/cProfile.py",start:22244754,end:22251378},{filename:"/bw/python/lib/python3.13/calendar.py",start:22251378,end:22277455},{filename:"/bw/python/lib/python3.13/cmd.py",start:22277455,end:22292771},{filename:"/bw/python/lib/python3.13/code.py",start:22292771,end:22305941},{filename:"/bw/python/lib/python3.13/codecs.py",start:22305941,end:22342919},{filename:"/bw/python/lib/python3.13/codeop.py",start:22342919,end:22348747},{filename:"/bw/python/lib/python3.13/collections/__init__.py",start:22348747,end:22401381},{filename:"/bw/python/lib/python3.13/colorsys.py",start:22401381,end:22405443},{filename:"/bw/python/lib/python3.13/compileall.py",start:22405443,end:22426108},{filename:"/bw/python/lib/python3.13/concurrent/__init__.py",start:22426108,end:22426146},{filename:"/bw/python/lib/python3.13/concurrent/futures/__init__.py",start:22426146,end:22427729},{filename:"/bw/python/lib/python3.13/concurrent/futures/_base.py",start:22427729,end:22450574},{filename:"/bw/python/lib/python3.13/concurrent/futures/process.py",start:22450574,end:22486042},{filename:"/bw/python/lib/python3.13/concurrent/futures/thread.py",start:22486042,end:22495004},{filename:"/bw/python/lib/python3.13/configparser.py",start:22495004,end:22548835},{filename:"/bw/python/lib/python3.13/contextlib.py",start:22548835,end:22576636},{filename:"/bw/python/lib/python3.13/contextvars.py",start:22576636,end:22576765},{filename:"/bw/python/lib/python3.13/copy.py",start:22576765,end:22585740},{filename:"/bw/python/lib/python3.13/copyreg.py",start:22585740,end:22593354},{filename:"/bw/python/lib/python3.13/csv.py",start:22593354,end:22612532},{filename:"/bw/python/lib/python3.13/ctypes/__init__.py",start:22612532,end:22632037},{filename:"/bw/python/lib/python3.13/ctypes/_aix.py",start:22632037,end:22644542},{filename:"/bw/python/lib/python3.13/ctypes/_endian.py",start:22644542,end:22647099},{filename:"/bw/python/lib/python3.13/ctypes/macholib/README.ctypes",start:22647099,end:22647395},{filename:"/bw/python/lib/python3.13/ctypes/macholib/__init__.py",start:22647395,end:22647549},{filename:"/bw/python/lib/python3.13/ctypes/macholib/dyld.py",start:22647549,end:22652573},{filename:"/bw/python/lib/python3.13/ctypes/macholib/dylib.py",start:22652573,end:22653533},{filename:"/bw/python/lib/python3.13/ctypes/macholib/fetch_macholib",start:22653533,end:22653617},{filename:"/bw/python/lib/python3.13/ctypes/macholib/fetch_macholib.bat",start:22653617,end:22653692},{filename:"/bw/python/lib/python3.13/ctypes/macholib/framework.py",start:22653692,end:22654797},{filename:"/bw/python/lib/python3.13/ctypes/util.py",start:22654797,end:22669049},{filename:"/bw/python/lib/python3.13/ctypes/wintypes.py",start:22669049,end:22674678},{filename:"/bw/python/lib/python3.13/curses/__init__.py",start:22674678,end:22678047},{filename:"/bw/python/lib/python3.13/curses/ascii.py",start:22678047,end:22680590},{filename:"/bw/python/lib/python3.13/curses/has_key.py",start:22680590,end:22686224},{filename:"/bw/python/lib/python3.13/curses/panel.py",start:22686224,end:22686311},{filename:"/bw/python/lib/python3.13/curses/textpad.py",start:22686311,end:22694065},{filename:"/bw/python/lib/python3.13/dataclasses.py",start:22694065,end:22758610},{filename:"/bw/python/lib/python3.13/datetime.py",start:22758610,end:22758878},{filename:"/bw/python/lib/python3.13/dbm/__init__.py",start:22758878,end:22764902},{filename:"/bw/python/lib/python3.13/dbm/dumb.py",start:22764902,end:22776613},{filename:"/bw/python/lib/python3.13/dbm/gnu.py",start:22776613,end:22776685},{filename:"/bw/python/lib/python3.13/dbm/ndbm.py",start:22776685,end:22776755},{filename:"/bw/python/lib/python3.13/dbm/sqlite3.py",start:22776755,end:22781028},{filename:"/bw/python/lib/python3.13/decimal.py",start:22781028,end:22783826},{filename:"/bw/python/lib/python3.13/difflib.py",start:22783826,end:22867193},{filename:"/bw/python/lib/python3.13/dis.py",start:22867193,end:22908155},{filename:"/bw/python/lib/python3.13/doctest.py",start:22908155,end:23017569},{filename:"/bw/python/lib/python3.13/email/__init__.py",start:23017569,end:23019333},{filename:"/bw/python/lib/python3.13/email/_encoded_words.py",start:23019333,end:23027874},{filename:"/bw/python/lib/python3.13/email/_header_value_parser.py",start:23027874,end:23140647},{filename:"/bw/python/lib/python3.13/email/_parseaddr.py",start:23140647,end:23158772},{filename:"/bw/python/lib/python3.13/email/_policybase.py",start:23158772,end:23174321},{filename:"/bw/python/lib/python3.13/email/architecture.rst",start:23174321,end:23183882},{filename:"/bw/python/lib/python3.13/email/base64mime.py",start:23183882,end:23187433},{filename:"/bw/python/lib/python3.13/email/charset.py",start:23187433,end:23204496},{filename:"/bw/python/lib/python3.13/email/contentmanager.py",start:23204496,end:23215090},{filename:"/bw/python/lib/python3.13/email/encoders.py",start:23215090,end:23216868},{filename:"/bw/python/lib/python3.13/email/errors.py",start:23216868,end:23220682},{filename:"/bw/python/lib/python3.13/email/feedparser.py",start:23220682,end:23243551},{filename:"/bw/python/lib/python3.13/email/generator.py",start:23243551,end:23264968},{filename:"/bw/python/lib/python3.13/email/header.py",start:23264968,end:23289432},{filename:"/bw/python/lib/python3.13/email/headerregistry.py",start:23289432,end:23310676},{filename:"/bw/python/lib/python3.13/email/iterators.py",start:23310676,end:23312805},{filename:"/bw/python/lib/python3.13/email/message.py",start:23312805,end:23361247},{filename:"/bw/python/lib/python3.13/email/mime/__init__.py",start:23361247,end:23361247},{filename:"/bw/python/lib/python3.13/email/mime/application.py",start:23361247,end:23362568},{filename:"/bw/python/lib/python3.13/email/mime/audio.py",start:23362568,end:23365572},{filename:"/bw/python/lib/python3.13/email/mime/base.py",start:23365572,end:23366486},{filename:"/bw/python/lib/python3.13/email/mime/image.py",start:23366486,end:23370212},{filename:"/bw/python/lib/python3.13/email/mime/message.py",start:23370212,end:23371527},{filename:"/bw/python/lib/python3.13/email/mime/multipart.py",start:23371527,end:23373146},{filename:"/bw/python/lib/python3.13/email/mime/nonmultipart.py",start:23373146,end:23373835},{filename:"/bw/python/lib/python3.13/email/mime/text.py",start:23373835,end:23375229},{filename:"/bw/python/lib/python3.13/email/parser.py",start:23375229,end:23380204},{filename:"/bw/python/lib/python3.13/email/policy.py",start:23380204,end:23390818},{filename:"/bw/python/lib/python3.13/email/quoprimime.py",start:23390818,end:23400682},{filename:"/bw/python/lib/python3.13/email/utils.py",start:23400682,end:23417297},{filename:"/bw/python/lib/python3.13/encodings/__init__.py",start:23417297,end:23423317},{filename:"/bw/python/lib/python3.13/encodings/aliases.py",start:23423317,end:23439030},{filename:"/bw/python/lib/python3.13/encodings/ascii.py",start:23439030,end:23440278},{filename:"/bw/python/lib/python3.13/encodings/base64_codec.py",start:23440278,end:23441811},{filename:"/bw/python/lib/python3.13/encodings/big5.py",start:23441811,end:23442830},{filename:"/bw/python/lib/python3.13/encodings/big5hkscs.py",start:23442830,end:23443869},{filename:"/bw/python/lib/python3.13/encodings/bz2_codec.py",start:23443869,end:23446118},{filename:"/bw/python/lib/python3.13/encodings/charmap.py",start:23446118,end:23448202},{filename:"/bw/python/lib/python3.13/encodings/cp037.py",start:23448202,end:23461323},{filename:"/bw/python/lib/python3.13/encodings/cp1006.py",start:23461323,end:23474891},{filename:"/bw/python/lib/python3.13/encodings/cp1026.py",start:23474891,end:23488004},{filename:"/bw/python/lib/python3.13/encodings/cp1125.py",start:23488004,end:23522601},{filename:"/bw/python/lib/python3.13/encodings/cp1140.py",start:23522601,end:23535706},{filename:"/bw/python/lib/python3.13/encodings/cp1250.py",start:23535706,end:23549392},{filename:"/bw/python/lib/python3.13/encodings/cp1251.py",start:23549392,end:23562753},{filename:"/bw/python/lib/python3.13/encodings/cp1252.py",start:23562753,end:23576264},{filename:"/bw/python/lib/python3.13/encodings/cp1253.py",start:23576264,end:23589358},{filename:"/bw/python/lib/python3.13/encodings/cp1254.py",start:23589358,end:23602860},{filename:"/bw/python/lib/python3.13/encodings/cp1255.py",start:23602860,end:23615326},{filename:"/bw/python/lib/python3.13/encodings/cp1256.py",start:23615326,end:23628140},{filename:"/bw/python/lib/python3.13/encodings/cp1257.py",start:23628140,end:23641514},{filename:"/bw/python/lib/python3.13/encodings/cp1258.py",start:23641514,end:23654878},{filename:"/bw/python/lib/python3.13/encodings/cp273.py",start:23654878,end:23669010},{filename:"/bw/python/lib/python3.13/encodings/cp424.py",start:23669010,end:23681065},{filename:"/bw/python/lib/python3.13/encodings/cp437.py",start:23681065,end:23715629},{filename:"/bw/python/lib/python3.13/encodings/cp500.py",start:23715629,end:23728750},{filename:"/bw/python/lib/python3.13/encodings/cp720.py",start:23728750,end:23742436},{filename:"/bw/python/lib/python3.13/encodings/cp737.py",start:23742436,end:23777117},{filename:"/bw/python/lib/python3.13/encodings/cp775.py",start:23777117,end:23811593},{filename:"/bw/python/lib/python3.13/encodings/cp850.py",start:23811593,end:23845698},{filename:"/bw/python/lib/python3.13/encodings/cp852.py",start:23845698,end:23880700},{filename:"/bw/python/lib/python3.13/encodings/cp855.py",start:23880700,end:23914550},{filename:"/bw/python/lib/python3.13/encodings/cp856.py",start:23914550,end:23926973},{filename:"/bw/python/lib/python3.13/encodings/cp857.py",start:23926973,end:23960881},{filename:"/bw/python/lib/python3.13/encodings/cp858.py",start:23960881,end:23994896},{filename:"/bw/python/lib/python3.13/encodings/cp860.py",start:23994896,end:24029577},{filename:"/bw/python/lib/python3.13/encodings/cp861.py",start:24029577,end:24064210},{filename:"/bw/python/lib/python3.13/encodings/cp862.py",start:24064210,end:24097580},{filename:"/bw/python/lib/python3.13/encodings/cp863.py",start:24097580,end:24131832},{filename:"/bw/python/lib/python3.13/encodings/cp864.py",start:24131832,end:24165495},{filename:"/bw/python/lib/python3.13/encodings/cp865.py",start:24165495,end:24200113},{filename:"/bw/python/lib/python3.13/encodings/cp866.py",start:24200113,end:24234509},{filename:"/bw/python/lib/python3.13/encodings/cp869.py",start:24234509,end:24267474},{filename:"/bw/python/lib/python3.13/encodings/cp874.py",start:24267474,end:24280069},{filename:"/bw/python/lib/python3.13/encodings/cp875.py",start:24280069,end:24292923},{filename:"/bw/python/lib/python3.13/encodings/cp932.py",start:24292923,end:24293946},{filename:"/bw/python/lib/python3.13/encodings/cp949.py",start:24293946,end:24294969},{filename:"/bw/python/lib/python3.13/encodings/cp950.py",start:24294969,end:24295992},{filename:"/bw/python/lib/python3.13/encodings/euc_jis_2004.py",start:24295992,end:24297043},{filename:"/bw/python/lib/python3.13/encodings/euc_jisx0213.py",start:24297043,end:24298094},{filename:"/bw/python/lib/python3.13/encodings/euc_jp.py",start:24298094,end:24299121},{filename:"/bw/python/lib/python3.13/encodings/euc_kr.py",start:24299121,end:24300148},{filename:"/bw/python/lib/python3.13/encodings/gb18030.py",start:24300148,end:24301179},{filename:"/bw/python/lib/python3.13/encodings/gb2312.py",start:24301179,end:24302206},{filename:"/bw/python/lib/python3.13/encodings/gbk.py",start:24302206,end:24303221},{filename:"/bw/python/lib/python3.13/encodings/hex_codec.py",start:24303221,end:24304729},{filename:"/bw/python/lib/python3.13/encodings/hp_roman8.py",start:24304729,end:24318204},{filename:"/bw/python/lib/python3.13/encodings/hz.py",start:24318204,end:24319215},{filename:"/bw/python/lib/python3.13/encodings/idna.py",start:24319215,end:24332463},{filename:"/bw/python/lib/python3.13/encodings/iso2022_jp.py",start:24332463,end:24333516},{filename:"/bw/python/lib/python3.13/encodings/iso2022_jp_1.py",start:24333516,end:24334577},{filename:"/bw/python/lib/python3.13/encodings/iso2022_jp_2.py",start:24334577,end:24335638},{filename:"/bw/python/lib/python3.13/encodings/iso2022_jp_2004.py",start:24335638,end:24336711},{filename:"/bw/python/lib/python3.13/encodings/iso2022_jp_3.py",start:24336711,end:24337772},{filename:"/bw/python/lib/python3.13/encodings/iso2022_jp_ext.py",start:24337772,end:24338841},{filename:"/bw/python/lib/python3.13/encodings/iso2022_kr.py",start:24338841,end:24339894},{filename:"/bw/python/lib/python3.13/encodings/iso8859_1.py",start:24339894,end:24353070},{filename:"/bw/python/lib/python3.13/encodings/iso8859_10.py",start:24353070,end:24366659},{filename:"/bw/python/lib/python3.13/encodings/iso8859_11.py",start:24366659,end:24378994},{filename:"/bw/python/lib/python3.13/encodings/iso8859_13.py",start:24378994,end:24392265},{filename:"/bw/python/lib/python3.13/encodings/iso8859_14.py",start:24392265,end:24405917},{filename:"/bw/python/lib/python3.13/encodings/iso8859_15.py",start:24405917,end:24419129},{filename:"/bw/python/lib/python3.13/encodings/iso8859_16.py",start:24419129,end:24432686},{filename:"/bw/python/lib/python3.13/encodings/iso8859_2.py",start:24432686,end:24446090},{filename:"/bw/python/lib/python3.13/encodings/iso8859_3.py",start:24446090,end:24459179},{filename:"/bw/python/lib/python3.13/encodings/iso8859_4.py",start:24459179,end:24472555},{filename:"/bw/python/lib/python3.13/encodings/iso8859_5.py",start:24472555,end:24485570},{filename:"/bw/python/lib/python3.13/encodings/iso8859_6.py",start:24485570,end:24496403},{filename:"/bw/python/lib/python3.13/encodings/iso8859_7.py",start:24496403,end:24509247},{filename:"/bw/python/lib/python3.13/encodings/iso8859_8.py",start:24509247,end:24520283},{filename:"/bw/python/lib/python3.13/encodings/iso8859_9.py",start:24520283,end:24533439},{filename:"/bw/python/lib/python3.13/encodings/johab.py",start:24533439,end:24534462},{filename:"/bw/python/lib/python3.13/encodings/koi8_r.py",start:24534462,end:24548241},{filename:"/bw/python/lib/python3.13/encodings/koi8_t.py",start:24548241,end:24561434},{filename:"/bw/python/lib/python3.13/encodings/koi8_u.py",start:24561434,end:24575196},{filename:"/bw/python/lib/python3.13/encodings/kz1048.py",start:24575196,end:24588919},{filename:"/bw/python/lib/python3.13/encodings/latin_1.py",start:24588919,end:24590183},{filename:"/bw/python/lib/python3.13/encodings/mac_arabic.py",start:24590183,end:24626650},{filename:"/bw/python/lib/python3.13/encodings/mac_croatian.py",start:24626650,end:24640283},{filename:"/bw/python/lib/python3.13/encodings/mac_cyrillic.py",start:24640283,end:24653737},{filename:"/bw/python/lib/python3.13/encodings/mac_farsi.py",start:24653737,end:24668907},{filename:"/bw/python/lib/python3.13/encodings/mac_greek.py",start:24668907,end:24682628},{filename:"/bw/python/lib/python3.13/encodings/mac_iceland.py",start:24682628,end:24696126},{filename:"/bw/python/lib/python3.13/encodings/mac_latin2.py",start:24696126,end:24710244},{filename:"/bw/python/lib/python3.13/encodings/mac_roman.py",start:24710244,end:24723724},{filename:"/bw/python/lib/python3.13/encodings/mac_romanian.py",start:24723724,end:24737385},{filename:"/bw/python/lib/python3.13/encodings/mac_turkish.py",start:24737385,end:24750898},{filename:"/bw/python/lib/python3.13/encodings/mbcs.py",start:24750898,end:24752109},{filename:"/bw/python/lib/python3.13/encodings/oem.py",start:24752109,end:24753128},{filename:"/bw/python/lib/python3.13/encodings/palmos.py",start:24753128,end:24766680},{filename:"/bw/python/lib/python3.13/encodings/ptcp154.py",start:24766680,end:24780695},{filename:"/bw/python/lib/python3.13/encodings/punycode.py",start:24780695,end:24788320},{filename:"/bw/python/lib/python3.13/encodings/quopri_codec.py",start:24788320,end:24789845},{filename:"/bw/python/lib/python3.13/encodings/raw_unicode_escape.py",start:24789845,end:24791177},{filename:"/bw/python/lib/python3.13/encodings/rot_13.py",start:24791177,end:24793625},{filename:"/bw/python/lib/python3.13/encodings/shift_jis.py",start:24793625,end:24794664},{filename:"/bw/python/lib/python3.13/encodings/shift_jis_2004.py",start:24794664,end:24795723},{filename:"/bw/python/lib/python3.13/encodings/shift_jisx0213.py",start:24795723,end:24796782},{filename:"/bw/python/lib/python3.13/encodings/tis_620.py",start:24796782,end:24809082},{filename:"/bw/python/lib/python3.13/encodings/undefined.py",start:24809082,end:24810383},{filename:"/bw/python/lib/python3.13/encodings/unicode_escape.py",start:24810383,end:24811687},{filename:"/bw/python/lib/python3.13/encodings/utf_16.py",start:24811687,end:24816967},{filename:"/bw/python/lib/python3.13/encodings/utf_16_be.py",start:24816967,end:24818004},{filename:"/bw/python/lib/python3.13/encodings/utf_16_le.py",start:24818004,end:24819041},{filename:"/bw/python/lib/python3.13/encodings/utf_32.py",start:24819041,end:24824216},{filename:"/bw/python/lib/python3.13/encodings/utf_32_be.py",start:24824216,end:24825146},{filename:"/bw/python/lib/python3.13/encodings/utf_32_le.py",start:24825146,end:24826076},{filename:"/bw/python/lib/python3.13/encodings/utf_7.py",start:24826076,end:24827022},{filename:"/bw/python/lib/python3.13/encodings/utf_8.py",start:24827022,end:24828027},{filename:"/bw/python/lib/python3.13/encodings/utf_8_sig.py",start:24828027,end:24832160},{filename:"/bw/python/lib/python3.13/encodings/uu_codec.py",start:24832160,end:24835011},{filename:"/bw/python/lib/python3.13/encodings/zlib_codec.py",start:24835011,end:24837215},{filename:"/bw/python/lib/python3.13/enum.py",start:24837215,end:24922834},{filename:"/bw/python/lib/python3.13/filecmp.py",start:24922834,end:24933486},{filename:"/bw/python/lib/python3.13/fileinput.py",start:24933486,end:24949203},{filename:"/bw/python/lib/python3.13/fnmatch.py",start:24949203,end:24955383},{filename:"/bw/python/lib/python3.13/fractions.py",start:24955383,end:24995473},{filename:"/bw/python/lib/python3.13/ftplib.py",start:24995473,end:25030208},{filename:"/bw/python/lib/python3.13/functools.py",start:25030208,end:25069270},{filename:"/bw/python/lib/python3.13/genericpath.py",start:25069270,end:25075517},{filename:"/bw/python/lib/python3.13/getopt.py",start:25075517,end:25083005},{filename:"/bw/python/lib/python3.13/getpass.py",start:25083005,end:25089238},{filename:"/bw/python/lib/python3.13/gettext.py",start:25089238,end:25110772},{filename:"/bw/python/lib/python3.13/glob.py",start:25110772,end:25131693},{filename:"/bw/python/lib/python3.13/graphlib.py",start:25131693,end:25141341},{filename:"/bw/python/lib/python3.13/gzip.py",start:25141341,end:25165974},{filename:"/bw/python/lib/python3.13/hashlib.py",start:25165974,end:25175420},{filename:"/bw/python/lib/python3.13/heapq.py",start:25175420,end:25198444},{filename:"/bw/python/lib/python3.13/hmac.py",start:25198444,end:25206203},{filename:"/bw/python/lib/python3.13/html/__init__.py",start:25206203,end:25210978},{filename:"/bw/python/lib/python3.13/html/entities.py",start:25210978,end:25286490},{filename:"/bw/python/lib/python3.13/html/parser.py",start:25286490,end:25308224},{filename:"/bw/python/lib/python3.13/http/__init__.py",start:25308224,end:25316670},{filename:"/bw/python/lib/python3.13/http/client.py",start:25316670,end:25374713},{filename:"/bw/python/lib/python3.13/http/cookiejar.py",start:25374713,end:25452229},{filename:"/bw/python/lib/python3.13/http/cookies.py",start:25452229,end:25473797},{filename:"/bw/python/lib/python3.13/http/server.py",start:25473797,end:25523655},{filename:"/bw/python/lib/python3.13/imaplib.py",start:25523655,end:25577995},{filename:"/bw/python/lib/python3.13/importlib/__init__.py",start:25577995,end:25582762},{filename:"/bw/python/lib/python3.13/importlib/_abc.py",start:25582762,end:25584116},{filename:"/bw/python/lib/python3.13/importlib/_bootstrap.py",start:25584116,end:25641676},{filename:"/bw/python/lib/python3.13/importlib/_bootstrap_external.py",start:25641676,end:25714917},{filename:"/bw/python/lib/python3.13/importlib/abc.py",start:25714917,end:25722576},{filename:"/bw/python/lib/python3.13/importlib/machinery.py",start:25722576,end:25723510},{filename:"/bw/python/lib/python3.13/importlib/metadata/__init__.py",start:25723510,end:25757601},{filename:"/bw/python/lib/python3.13/importlib/metadata/_adapters.py",start:25757601,end:25760008},{filename:"/bw/python/lib/python3.13/importlib/metadata/_collections.py",start:25760008,end:25760751},{filename:"/bw/python/lib/python3.13/importlib/metadata/_functools.py",start:25760751,end:25763646},{filename:"/bw/python/lib/python3.13/importlib/metadata/_itertools.py",start:25763646,end:25765714},{filename:"/bw/python/lib/python3.13/importlib/metadata/_meta.py",start:25765714,end:25767515},{filename:"/bw/python/lib/python3.13/importlib/metadata/_text.py",start:25767515,end:25769681},{filename:"/bw/python/lib/python3.13/importlib/metadata/diagnose.py",start:25769681,end:25770060},{filename:"/bw/python/lib/python3.13/importlib/readers.py",start:25770060,end:25770387},{filename:"/bw/python/lib/python3.13/importlib/resources/__init__.py",start:25770387,end:25771090},{filename:"/bw/python/lib/python3.13/importlib/resources/_adapters.py",start:25771090,end:25775572},{filename:"/bw/python/lib/python3.13/importlib/resources/_common.py",start:25775572,end:25781188},{filename:"/bw/python/lib/python3.13/importlib/resources/_functional.py",start:25781188,end:25783839},{filename:"/bw/python/lib/python3.13/importlib/resources/_itertools.py",start:25783839,end:25785116},{filename:"/bw/python/lib/python3.13/importlib/resources/abc.py",start:25785116,end:25790319},{filename:"/bw/python/lib/python3.13/importlib/resources/readers.py",start:25790319,end:25796562},{filename:"/bw/python/lib/python3.13/importlib/resources/simple.py",start:25796562,end:25799152},{filename:"/bw/python/lib/python3.13/importlib/simple.py",start:25799152,end:25799506},{filename:"/bw/python/lib/python3.13/importlib/util.py",start:25799506,end:25810705},{filename:"/bw/python/lib/python3.13/inspect.py",start:25810705,end:25939643},{filename:"/bw/python/lib/python3.13/io.py",start:25939643,end:25943225},{filename:"/bw/python/lib/python3.13/ipaddress.py",start:25943225,end:26024874},{filename:"/bw/python/lib/python3.13/json/__init__.py",start:26024874,end:26038955},{filename:"/bw/python/lib/python3.13/json/decoder.py",start:26038955,end:26051828},{filename:"/bw/python/lib/python3.13/json/encoder.py",start:26051828,end:26068027},{filename:"/bw/python/lib/python3.13/json/scanner.py",start:26068027,end:26070461},{filename:"/bw/python/lib/python3.13/json/tool.py",start:26070461,end:26073831},{filename:"/bw/python/lib/python3.13/keyword.py",start:26073831,end:26074904},{filename:"/bw/python/lib/python3.13/linecache.py",start:26074904,end:26082392},{filename:"/bw/python/lib/python3.13/locale.py",start:26082392,end:26161425},{filename:"/bw/python/lib/python3.13/logging/__init__.py",start:26161425,end:26245258},{filename:"/bw/python/lib/python3.13/logging/config.py",start:26245258,end:26287736},{filename:"/bw/python/lib/python3.13/logging/handlers.py",start:26287736,end:26350260},{filename:"/bw/python/lib/python3.13/lzma.py",start:26350260,end:26363659},{filename:"/bw/python/lib/python3.13/mailbox.py",start:26363659,end:26445190},{filename:"/bw/python/lib/python3.13/mimetypes.py",start:26445190,end:26469041},{filename:"/bw/python/lib/python3.13/modulefinder.py",start:26469041,end:26492833},{filename:"/bw/python/lib/python3.13/multiprocessing/__init__.py",start:26492833,end:26493749},{filename:"/bw/python/lib/python3.13/multiprocessing/connection.py",start:26493749,end:26536723},{filename:"/bw/python/lib/python3.13/multiprocessing/context.py",start:26536723,end:26548795},{filename:"/bw/python/lib/python3.13/multiprocessing/dummy/__init__.py",start:26548795,end:26551856},{filename:"/bw/python/lib/python3.13/multiprocessing/dummy/connection.py",start:26551856,end:26553454},{filename:"/bw/python/lib/python3.13/multiprocessing/forkserver.py",start:26553454,end:26566808},{filename:"/bw/python/lib/python3.13/multiprocessing/heap.py",start:26566808,end:26578434},{filename:"/bw/python/lib/python3.13/multiprocessing/managers.py",start:26578434,end:26626636},{filename:"/bw/python/lib/python3.13/multiprocessing/pool.py",start:26626636,end:26659404},{filename:"/bw/python/lib/python3.13/multiprocessing/popen_fork.py",start:26659404,end:26661920},{filename:"/bw/python/lib/python3.13/multiprocessing/popen_forkserver.py",start:26661920,end:26664150},{filename:"/bw/python/lib/python3.13/multiprocessing/popen_spawn_posix.py",start:26664150,end:26666293},{filename:"/bw/python/lib/python3.13/multiprocessing/popen_spawn_win32.py",start:26666293,end:26670928},{filename:"/bw/python/lib/python3.13/multiprocessing/process.py",start:26670928,end:26682983},{filename:"/bw/python/lib/python3.13/multiprocessing/queues.py",start:26682983,end:26695651},{filename:"/bw/python/lib/python3.13/multiprocessing/reduction.py",start:26695651,end:26705163},{filename:"/bw/python/lib/python3.13/multiprocessing/resource_sharer.py",start:26705163,end:26710308},{filename:"/bw/python/lib/python3.13/multiprocessing/resource_tracker.py",start:26710308,end:26725555},{filename:"/bw/python/lib/python3.13/multiprocessing/shared_memory.py",start:26725555,end:26744466},{filename:"/bw/python/lib/python3.13/multiprocessing/sharedctypes.py",start:26744466,end:26750772},{filename:"/bw/python/lib/python3.13/multiprocessing/spawn.py",start:26750772,end:26760431},{filename:"/bw/python/lib/python3.13/multiprocessing/synchronize.py",start:26760431,end:26772703},{filename:"/bw/python/lib/python3.13/multiprocessing/util.py",start:26772703,end:26790171},{filename:"/bw/python/lib/python3.13/netrc.py",start:26790171,end:26797202},{filename:"/bw/python/lib/python3.13/ntpath.py",start:26797202,end:26828088},{filename:"/bw/python/lib/python3.13/nturl2path.py",start:26828088,end:26830462},{filename:"/bw/python/lib/python3.13/numbers.py",start:26830462,end:26842231},{filename:"/bw/python/lib/python3.13/opcode.py",start:26842231,end:26845056},{filename:"/bw/python/lib/python3.13/operator.py",start:26845056,end:26856036},{filename:"/bw/python/lib/python3.13/optparse.py",start:26856036,end:26916405},{filename:"/bw/python/lib/python3.13/os.py",start:26916405,end:26958032},{filename:"/bw/python/lib/python3.13/pathlib/__init__.py",start:26958032,end:26958328},{filename:"/bw/python/lib/python3.13/pathlib/_abc.py",start:26958328,end:26991893},{filename:"/bw/python/lib/python3.13/pathlib/_local.py",start:26991893,end:27023305},{filename:"/bw/python/lib/python3.13/pdb.py",start:27023305,end:27115827},{filename:"/bw/python/lib/python3.13/pickle.py",start:27115827,end:27182784},{filename:"/bw/python/lib/python3.13/pickletools.py",start:27182784,end:27276836},{filename:"/bw/python/lib/python3.13/pkgutil.py",start:27276836,end:27295117},{filename:"/bw/python/lib/python3.13/platform.py",start:27295117,end:27342462},{filename:"/bw/python/lib/python3.13/plistlib.py",start:27342462,end:27372486},{filename:"/bw/python/lib/python3.13/poplib.py",start:27372486,end:27387090},{filename:"/bw/python/lib/python3.13/posixpath.py",start:27387090,end:27405323},{filename:"/bw/python/lib/python3.13/pprint.py",start:27405323,end:27429481},{filename:"/bw/python/lib/python3.13/profile.py",start:27429481,end:27452621},{filename:"/bw/python/lib/python3.13/pstats.py",start:27452621,end:27481917},{filename:"/bw/python/lib/python3.13/pty.py",start:27481917,end:27488054},{filename:"/bw/python/lib/python3.13/py_compile.py",start:27488054,end:27495891},{filename:"/bw/python/lib/python3.13/pyclbr.py",start:27495891,end:27507287},{filename:"/bw/python/lib/python3.13/pydoc.py",start:27507287,end:27617775},{filename:"/bw/python/lib/python3.13/queue.py",start:27617775,end:27631230},{filename:"/bw/python/lib/python3.13/quopri.py",start:27631230,end:27638414},{filename:"/bw/python/lib/python3.13/random.py",start:27638414,end:27675420},{filename:"/bw/python/lib/python3.13/re/__init__.py",start:27675420,end:27693296},{filename:"/bw/python/lib/python3.13/re/_casefix.py",start:27693296,end:27698740},{filename:"/bw/python/lib/python3.13/re/_compiler.py",start:27698740,end:27725030},{filename:"/bw/python/lib/python3.13/re/_constants.py",start:27725030,end:27730969},{filename:"/bw/python/lib/python3.13/re/_parser.py",start:27730969,end:27772206},{filename:"/bw/python/lib/python3.13/reprlib.py",start:27772206,end:27780274},{filename:"/bw/python/lib/python3.13/rlcompleter.py",start:27780274,end:27788192},{filename:"/bw/python/lib/python3.13/runpy.py",start:27788192,end:27801077},{filename:"/bw/python/lib/python3.13/sched.py",start:27801077,end:27807428},{filename:"/bw/python/lib/python3.13/secrets.py",start:27807428,end:27809412},{filename:"/bw/python/lib/python3.13/selectors.py",start:27809412,end:27828869},{filename:"/bw/python/lib/python3.13/shelve.py",start:27828869,end:27837679},{filename:"/bw/python/lib/python3.13/shlex.py",start:27837679,end:27851032},{filename:"/bw/python/lib/python3.13/shutil.py",start:27851032,end:27908495},{filename:"/bw/python/lib/python3.13/signal.py",start:27908495,end:27910990},{filename:"/bw/python/lib/python3.13/site-packages/README.txt",start:27910990,end:27911109},{filename:"/bw/python/lib/python3.13/site-packages/attr/__init__.py",start:27911109,end:27913166},{filename:"/bw/python/lib/python3.13/site-packages/attr/__init__.pyi",start:27913166,end:27924447},{filename:"/bw/python/lib/python3.13/site-packages/attr/_cmp.py",start:27924447,end:27928564},{filename:"/bw/python/lib/python3.13/site-packages/attr/_cmp.pyi",start:27928564,end:27928932},{filename:"/bw/python/lib/python3.13/site-packages/attr/_compat.py",start:27928932,end:27931636},{filename:"/bw/python/lib/python3.13/site-packages/attr/_config.py",start:27931636,end:27932479},{filename:"/bw/python/lib/python3.13/site-packages/attr/_funcs.py",start:27932479,end:27948333},{filename:"/bw/python/lib/python3.13/site-packages/attr/_make.py",start:27948333,end:28044997},{filename:"/bw/python/lib/python3.13/site-packages/attr/_next_gen.py",start:28044997,end:28069392},{filename:"/bw/python/lib/python3.13/site-packages/attr/_typing_compat.pyi",start:28069392,end:28069861},{filename:"/bw/python/lib/python3.13/site-packages/attr/_version_info.py",start:28069861,end:28071982},{filename:"/bw/python/lib/python3.13/site-packages/attr/_version_info.pyi",start:28071982,end:28072191},{filename:"/bw/python/lib/python3.13/site-packages/attr/converters.py",start:28072191,end:28076052},{filename:"/bw/python/lib/python3.13/site-packages/attr/converters.pyi",start:28076052,end:28076695},{filename:"/bw/python/lib/python3.13/site-packages/attr/exceptions.py",start:28076695,end:28078672},{filename:"/bw/python/lib/python3.13/site-packages/attr/exceptions.pyi",start:28078672,end:28079211},{filename:"/bw/python/lib/python3.13/site-packages/attr/filters.py",start:28079211,end:28081006},{filename:"/bw/python/lib/python3.13/site-packages/attr/filters.pyi",start:28081006,end:28081214},{filename:"/bw/python/lib/python3.13/site-packages/attr/py.typed",start:28081214,end:28081214},{filename:"/bw/python/lib/python3.13/site-packages/attr/setters.py",start:28081214,end:28082831},{filename:"/bw/python/lib/python3.13/site-packages/attr/setters.pyi",start:28082831,end:28083415},{filename:"/bw/python/lib/python3.13/site-packages/attr/validators.py",start:28083415,end:28103461},{filename:"/bw/python/lib/python3.13/site-packages/attr/validators.pyi",start:28103461,end:28106064},{filename:"/bw/python/lib/python3.13/site-packages/attrs-25.3.0.dist-info/METADATA",start:28106064,end:28117057},{filename:"/bw/python/lib/python3.13/site-packages/attrs-25.3.0.dist-info/RECORD",start:28117057,end:28119627},{filename:"/bw/python/lib/python3.13/site-packages/attrs-25.3.0.dist-info/WHEEL",start:28119627,end:28119714},{filename:"/bw/python/lib/python3.13/site-packages/attrs-25.3.0.dist-info/licenses/LICENSE",start:28119714,end:28120823},{filename:"/bw/python/lib/python3.13/site-packages/attrs/__init__.py",start:28120823,end:28121930},{filename:"/bw/python/lib/python3.13/site-packages/attrs/__init__.pyi",start:28121930,end:28129861},{filename:"/bw/python/lib/python3.13/site-packages/attrs/converters.py",start:28129861,end:28129937},{filename:"/bw/python/lib/python3.13/site-packages/attrs/exceptions.py",start:28129937,end:28130013},{filename:"/bw/python/lib/python3.13/site-packages/attrs/filters.py",start:28130013,end:28130086},{filename:"/bw/python/lib/python3.13/site-packages/attrs/py.typed",start:28130086,end:28130086},{filename:"/bw/python/lib/python3.13/site-packages/attrs/setters.py",start:28130086,end:28130159},{filename:"/bw/python/lib/python3.13/site-packages/attrs/validators.py",start:28130159,end:28130235},{filename:"/bw/python/lib/python3.13/site-packages/cattr/__init__.py",start:28130235,end:28131141},{filename:"/bw/python/lib/python3.13/site-packages/cattr/converters.py",start:28131141,end:28131333},{filename:"/bw/python/lib/python3.13/site-packages/cattr/disambiguators.py",start:28131333,end:28131436},{filename:"/bw/python/lib/python3.13/site-packages/cattr/dispatch.py",start:28131436,end:28131561},{filename:"/bw/python/lib/python3.13/site-packages/cattr/errors.py",start:28131561,end:28131904},{filename:"/bw/python/lib/python3.13/site-packages/cattr/gen.py",start:28131904,end:28132501},{filename:"/bw/python/lib/python3.13/site-packages/cattr/preconf/__init__.py",start:28132501,end:28132579},{filename:"/bw/python/lib/python3.13/site-packages/cattr/preconf/bson.py",start:28132579,end:28132774},{filename:"/bw/python/lib/python3.13/site-packages/cattr/preconf/json.py",start:28132774,end:28132980},{filename:"/bw/python/lib/python3.13/site-packages/cattr/preconf/msgpack.py",start:28132980,end:28133187},{filename:"/bw/python/lib/python3.13/site-packages/cattr/preconf/orjson.py",start:28133187,end:28133390},{filename:"/bw/python/lib/python3.13/site-packages/cattr/preconf/pyyaml.py",start:28133390,end:28133593},{filename:"/bw/python/lib/python3.13/site-packages/cattr/preconf/tomlkit.py",start:28133593,end:28133800},{filename:"/bw/python/lib/python3.13/site-packages/cattr/preconf/ujson.py",start:28133800,end:28133999},{filename:"/bw/python/lib/python3.13/site-packages/cattr/py.typed",start:28133999,end:28133999},{filename:"/bw/python/lib/python3.13/site-packages/cattrs-25.1.1.dist-info/METADATA",start:28133999,end:28142387},{filename:"/bw/python/lib/python3.13/site-packages/cattrs-25.1.1.dist-info/RECORD",start:28142387,end:28146489},{filename:"/bw/python/lib/python3.13/site-packages/cattrs-25.1.1.dist-info/WHEEL",start:28146489,end:28146576},{filename:"/bw/python/lib/python3.13/site-packages/cattrs-25.1.1.dist-info/licenses/LICENSE",start:28146576,end:28147650},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/__init__.py",start:28147650,end:28149551},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/_compat.py",start:28149551,end:28161538},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/_generics.py",start:28161538,end:28162504},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/cols.py",start:28162504,end:28171352},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/converters.py",start:28171352,end:28225614},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/disambiguators.py",start:28225614,end:28232481},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/dispatch.py",start:28232481,end:28239261},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/errors.py",start:28239261,end:28243429},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/fns.py",start:28243429,end:28244055},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/gen/__init__.py",start:28244055,end:28282897},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/gen/_consts.py",start:28282897,end:28283408},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/gen/_generics.py",start:28283408,end:28286419},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/gen/_lc.py",start:28286419,end:28287301},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/gen/_shared.py",start:28287301,end:28289597},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/gen/typeddicts.py",start:28289597,end:28310851},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/literals.py",start:28310851,end:28311182},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/preconf/__init__.py",start:28311182,end:28312709},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/preconf/bson.py",start:28312709,end:28316910},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/preconf/cbor2.py",start:28316910,end:28318932},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/preconf/json.py",start:28318932,end:28321563},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/preconf/msgpack.py",start:28321563,end:28323888},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/preconf/msgspec.py",start:28323888,end:28331138},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/preconf/orjson.py",start:28331138,end:28335008},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/preconf/pyyaml.py",start:28335008,end:28337386},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/preconf/tomlkit.py",start:28337386,end:28340534},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/preconf/ujson.py",start:28340534,end:28342959},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/py.typed",start:28342959,end:28342959},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/strategies/__init__.py",start:28342959,end:28343298},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/strategies/_class_methods.py",start:28343298,end:28345889},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/strategies/_subclasses.py",start:28345889,end:28355254},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/strategies/_unions.py",start:28355254,end:28364609},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/typealiases.py",start:28364609,end:28366228},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/types.py",start:28366228,end:28366506},{filename:"/bw/python/lib/python3.13/site-packages/cattrs/v.py",start:28366506,end:28370632},{filename:"/bw/python/lib/python3.13/site-packages/certifi-2025.4.26.dist-info/METADATA",start:28370632,end:28373105},{filename:"/bw/python/lib/python3.13/site-packages/certifi-2025.4.26.dist-info/RECORD",start:28373105,end:28373886},{filename:"/bw/python/lib/python3.13/site-packages/certifi-2025.4.26.dist-info/WHEEL",start:28373886,end:28373977},{filename:"/bw/python/lib/python3.13/site-packages/certifi-2025.4.26.dist-info/licenses/LICENSE",start:28373977,end:28374966},{filename:"/bw/python/lib/python3.13/site-packages/certifi-2025.4.26.dist-info/top_level.txt",start:28374966,end:28374974},{filename:"/bw/python/lib/python3.13/site-packages/certifi/__init__.py",start:28374974,end:28375068},{filename:"/bw/python/lib/python3.13/site-packages/certifi/__main__.py",start:28375068,end:28375311},{filename:"/bw/python/lib/python3.13/site-packages/certifi/cacert.pem",start:28375311,end:28659082},{filename:"/bw/python/lib/python3.13/site-packages/certifi/core.py",start:28659082,end:28663508},{filename:"/bw/python/lib/python3.13/site-packages/certifi/py.typed",start:28663508,end:28663508},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer-3.4.1.dist-info/LICENSE",start:28663508,end:28664579},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer-3.4.1.dist-info/METADATA",start:28664579,end:28699892},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer-3.4.1.dist-info/RECORD",start:28699892,end:28701552},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer-3.4.1.dist-info/WHEEL",start:28701552,end:28701643},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer-3.4.1.dist-info/entry_points.txt",start:28701643,end:28701708},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer-3.4.1.dist-info/top_level.txt",start:28701708,end:28701727},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/__init__.py",start:28701727,end:28703317},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/__main__.py",start:28703317,end:28703426},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/api.py",start:28703426,end:28726043},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/cd.py",start:28726043,end:28738565},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/cli/__init__.py",start:28738565,end:28738701},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/cli/__main__.py",start:28738701,end:28749111},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/constant.py",start:28749111,end:28789588},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/legacy.py",start:28789588,end:28791916},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/md.py",start:28791916,end:28811952},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/models.py",start:28811952,end:28824346},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/py.typed",start:28824346,end:28824346},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/utils.py",start:28824346,end:28836348},{filename:"/bw/python/lib/python3.13/site-packages/charset_normalizer/version.py",start:28836348,end:28836463},{filename:"/bw/python/lib/python3.13/site-packages/idna-3.10.dist-info/LICENSE.md",start:28836463,end:28838004},{filename:"/bw/python/lib/python3.13/site-packages/idna-3.10.dist-info/METADATA",start:28838004,end:28848162},{filename:"/bw/python/lib/python3.13/site-packages/idna-3.10.dist-info/RECORD",start:28848162,end:28849092},{filename:"/bw/python/lib/python3.13/site-packages/idna-3.10.dist-info/WHEEL",start:28849092,end:28849173},{filename:"/bw/python/lib/python3.13/site-packages/idna/__init__.py",start:28849173,end:28850041},{filename:"/bw/python/lib/python3.13/site-packages/idna/codec.py",start:28850041,end:28853463},{filename:"/bw/python/lib/python3.13/site-packages/idna/compat.py",start:28853463,end:28853779},{filename:"/bw/python/lib/python3.13/site-packages/idna/core.py",start:28853779,end:28867018},{filename:"/bw/python/lib/python3.13/site-packages/idna/idnadata.py",start:28867018,end:28945324},{filename:"/bw/python/lib/python3.13/site-packages/idna/intranges.py",start:28945324,end:28947222},{filename:"/bw/python/lib/python3.13/site-packages/idna/package_data.py",start:28947222,end:28947243},{filename:"/bw/python/lib/python3.13/site-packages/idna/py.typed",start:28947243,end:28947243},{filename:"/bw/python/lib/python3.13/site-packages/idna/uts46data.py",start:28947243,end:29186532},{filename:"/bw/python/lib/python3.13/site-packages/js.py",start:29186532,end:29187023},{filename:"/bw/python/lib/python3.13/site-packages/numpy/__config__.py",start:29187023,end:29192160},{filename:"/bw/python/lib/python3.13/site-packages/numpy/__init__.py",start:29192160,end:29217386},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_array_api_info.py",start:29217386,end:29227740},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_build_utils/__init__.py",start:29227740,end:29228519},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_build_utils/gcc_build_bitness.py",start:29228519,end:29229034},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_build_utils/gitversion.py",start:29229034,end:29231732},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_build_utils/process_src_template.py",start:29231732,end:29233415},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_build_utils/tempita.py",start:29233415,end:29234850},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_build_utils/tempita/__init__.py",start:29234850,end:29235002},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_build_utils/tempita/_looper.py",start:29235002,end:29239002},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_build_utils/tempita/_tempita.py",start:29239002,end:29275994},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_configtool.py",start:29275994,end:29277001},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/__init__.py",start:29277001,end:29282543},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_add_newdocs.py",start:29282543,end:29491436},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_add_newdocs_scalars.py",start:29491436,end:29504036},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_asarray.py",start:29504036,end:29507947},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_dtype.py",start:29507947,end:29518494},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_dtype_ctypes.py",start:29518494,end:29522220},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_exceptions.py",start:29522220,end:29527379},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_internal.py",start:29527379,end:29556360},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_machar.py",start:29556360,end:29567929},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_methods.py",start:29567929,end:29577359},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_string_helpers.py",start:29577359,end:29580204},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_type_aliases.py",start:29580204,end:29583693},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/_ufunc_config.py",start:29583693,end:29598823},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/arrayprint.py",start:29598823,end:29664101},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/code_generators/__init__.py",start:29664101,end:29664101},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/code_generators/genapi.py",start:29664101,end:29683329},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/code_generators/generate_numpy_api.py",start:29683329,end:29693084},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/code_generators/generate_ufunc_api.py",start:29693084,end:29698541},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/code_generators/generate_umath.py",start:29698541,end:29752057},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/code_generators/generate_umath_doc.py",start:29752057,end:29753570},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/code_generators/numpy_api.py",start:29753570,end:29777242},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/code_generators/ufunc_docstrings.py",start:29777242,end:29919033},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/code_generators/verify_c_api_version.py",start:29919033,end:29921095},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/cversions.py",start:29921095,end:29921442},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/defchararray.py",start:29921442,end:29959449},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/einsumfunc.py",start:29959449,end:30012269},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/fromnumeric.py",start:30012269,end:30156151},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/function_base.py",start:30156151,end:30175834},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/getlimits.py",start:30175834,end:30201935},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/memmap.py",start:30201935,end:30214586},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/multiarray.py",start:30214586,end:30272741},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/numeric.py",start:30272741,end:30355063},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/numerictypes.py",start:30355063,end:30371030},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/overrides.py",start:30371030,end:30378271},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/printoptions.py",start:30378271,end:30379327},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/records.py",start:30379327,end:30416094},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/shape_base.py",start:30416094,end:30448832},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/common/pythoncapi-compat/docs/conf.py",start:30448832,end:30450715},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/common/pythoncapi-compat/runtests.py",start:30450715,end:30453626},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/common/pythoncapi-compat/tests/__init__.py",start:30453626,end:30453626},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/common/pythoncapi-compat/tests/setup.py",start:30453626,end:30456889},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/common/pythoncapi-compat/tests/test_pythoncapi_compat.py",start:30456889,end:30462114},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/common/pythoncapi-compat/tests/test_upgrade_pythoncapi.py",start:30462114,end:30490215},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/common/pythoncapi-compat/tests/utils.py",start:30490215,end:30491151},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/common/pythoncapi-compat/upgrade_pythoncapi.py",start:30491151,end:30516910},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/highway/docs/conf.py",start:30516910,end:30522050},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/highway/docs/mm-converter.py",start:30522050,end:30525917},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/src/npysort/x86-simd-sort/run-bench.py",start:30525917,end:30528596},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/strings.py",start:30528596,end:30579238},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/_locales.py",start:30579238,end:30581414},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/_natype.py",start:30581414,end:30587939},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/examples/cython/setup.py",start:30587939,end:30588798},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/examples/limited_api/setup.py",start:30588798,end:30589235},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test__exceptions.py",start:30589235,end:30592157},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_abc.py",start:30592157,end:30594378},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_api.py",start:30594378,end:30618587},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_argparse.py",start:30618587,end:30621457},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_array_api_info.py",start:30621457,end:30624520},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_array_coercion.py",start:30624520,end:30659417},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_array_interface.py",start:30659417,end:30667260},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_arraymethod.py",start:30667260,end:30670483},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_arrayobject.py",start:30670483,end:30673079},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_arrayprint.py",start:30673079,end:30723817},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_casting_floatingpoint_errors.py",start:30723817,end:30728893},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_casting_unittests.py",start:30728893,end:30763229},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_conversion_utils.py",start:30763229,end:30769591},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_cpu_dispatcher.py",start:30769591,end:30771161},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_cpu_features.py",start:30771161,end:30786864},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_custom_dtypes.py",start:30786864,end:30798630},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_cython.py",start:30798630,end:30808816},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_datetime.py",start:30808816,end:30931501},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_defchararray.py",start:30931501,end:30962130},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_deprecations.py",start:30962130,end:30979231},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_dlpack.py",start:30979231,end:30985061},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_dtype.py",start:30985061,end:31063858},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_einsum.py",start:31063858,end:31120135},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_errstate.py",start:31120135,end:31124762},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_extint128.py",start:31124762,end:31130387},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_function_base.py",start:31130387,end:31148038},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_getlimits.py",start:31148038,end:31155014},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_half.py",start:31155014,end:31179439},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_hashtable.py",start:31179439,end:31180586},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_indexerrors.py",start:31180586,end:31185312},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_indexing.py",start:31185312,end:31240733},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_item_selection.py",start:31240733,end:31247364},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_limited_api.py",start:31247364,end:31250827},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_longdouble.py",start:31250827,end:31263218},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_machar.py",start:31263218,end:31264285},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_mem_overlap.py",start:31264285,end:31293504},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_mem_policy.py",start:31293504,end:31310298},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_memmap.py",start:31310298,end:31318484},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_multiarray.py",start:31318484,end:31718874},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_multithreading.py",start:31718874,end:31727475},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_nditer.py",start:31727475,end:31864043},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_nep50_promotions.py",start:31864043,end:31874111},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_numeric.py",start:31874111,end:32033859},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_numerictypes.py",start:32033859,end:32058003},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_overrides.py",start:32058003,end:32085521},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_print.py",start:32085521,end:32092308},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_protocols.py",start:32092308,end:32093481},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_records.py",start:32093481,end:32114028},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_regression.py",start:32114028,end:32209593},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_scalar_ctors.py",start:32209593,end:32216317},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_scalar_methods.py",start:32216317,end:32225434},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_scalarbuffer.py",start:32225434,end:32231072},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_scalarinherit.py",start:32231072,end:32233659},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_scalarmath.py",start:32233659,end:32280242},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_scalarprint.py",start:32280242,end:32299947},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_shape_base.py",start:32299947,end:32331483},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_simd.py",start:32331483,end:32380306},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_simd_module.py",start:32380306,end:32384210},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_stringdtype.py",start:32384210,end:32441262},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_strings.py",start:32441262,end:32499768},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_ufunc.py",start:32499768,end:32636124},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_umath.py",start:32636124,end:32830280},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_umath_accuracy.py",start:32830280,end:32835758},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_umath_complex.py",start:32835758,end:32859385},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/tests/test_unicode.py",start:32859385,end:32872352},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_core/umath.py",start:32872352,end:32874482},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_distributor_init.py",start:32874482,end:32874903},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_expired_attrs_2_0.py",start:32874903,end:32878729},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_globals.py",start:32878729,end:32881820},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_pyinstaller/__init__.py",start:32881820,end:32881820},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_pyinstaller/hook-numpy.py",start:32881820,end:32883182},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_pyinstaller/tests/__init__.py",start:32883182,end:32883511},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_pyinstaller/tests/pyinstaller-smoke.py",start:32883511,end:32884654},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_pyinstaller/tests/test_pyinstaller.py",start:32884654,end:32885789},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_pytesttester.py",start:32885789,end:32892117},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/__init__.py",start:32892117,end:32899305},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_add_docstring.py",start:32899305,end:32903304},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_array_like.py",start:32903304,end:32907492},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_char_codes.py",start:32907492,end:32916256},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_dtype_like.py",start:32916256,end:32920018},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_extended_precision.py",start:32920018,end:32920452},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_nbit.py",start:32920452,end:32921084},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_nbit_base.py",start:32921084,end:32924142},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_nested_sequence.py",start:32924142,end:32926647},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_scalars.py",start:32926647,end:32927591},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_shape.py",start:32927591,end:32927866},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_typing/_ufunc.py",start:32927866,end:32928022},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_utils/__init__.py",start:32928022,end:32931499},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_utils/_convertions.py",start:32931499,end:32931828},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_utils/_inspect.py",start:32931828,end:32939264},{filename:"/bw/python/lib/python3.13/site-packages/numpy/_utils/_pep440.py",start:32939264,end:32953252},{filename:"/bw/python/lib/python3.13/site-packages/numpy/char/__init__.py",start:32953252,end:32953345},{filename:"/bw/python/lib/python3.13/site-packages/numpy/conftest.py",start:32953345,end:32961922},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/__init__.py",start:32961922,end:32963212},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/_dtype.py",start:32963212,end:32963535},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/_dtype_ctypes.py",start:32963535,end:32963886},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/_internal.py",start:32963886,end:32964835},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/_multiarray_umath.py",start:32964835,end:32966933},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/_utils.py",start:32966933,end:32967856},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/arrayprint.py",start:32967856,end:32968195},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/defchararray.py",start:32968195,end:32968542},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/einsumfunc.py",start:32968542,end:32968881},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/fromnumeric.py",start:32968881,end:32969224},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/function_base.py",start:32969224,end:32969575},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/getlimits.py",start:32969575,end:32969910},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/multiarray.py",start:32969910,end:32970703},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/numeric.py",start:32970703,end:32971063},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/numerictypes.py",start:32971063,end:32971410},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/overrides.py",start:32971410,end:32971745},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/records.py",start:32971745,end:32972072},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/shape_base.py",start:32972072,end:32972411},{filename:"/bw/python/lib/python3.13/site-packages/numpy/core/umath.py",start:32972411,end:32972730},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ctypeslib/__init__.py",start:32972730,end:32972923},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ctypeslib/_ctypeslib.py",start:32972923,end:32992002},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/__init__.py",start:32992002,end:32994076},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/_shell_utils.py",start:32994076,end:32996614},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/armccompiler.py",start:32996614,end:32997576},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/ccompiler.py",start:32997576,end:33026286},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/ccompiler_opt.py",start:33026286,end:33126681},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/__init__.py",start:33126681,end:33127713},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/autodist.py",start:33127713,end:33131431},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/bdist_rpm.py",start:33131431,end:33132140},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/build.py",start:33132140,end:33134753},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/build_clib.py",start:33134753,end:33154066},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/build_ext.py",start:33154066,end:33187045},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/build_py.py",start:33187045,end:33188189},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/build_scripts.py",start:33188189,end:33189854},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/build_src.py",start:33189854,end:33221028},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/config.py",start:33221028,end:33241698},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/config_compiler.py",start:33241698,end:33246069},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/develop.py",start:33246069,end:33246644},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/egg_info.py",start:33246644,end:33247565},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/install.py",start:33247565,end:33250638},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/install_clib.py",start:33250638,end:33252037},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/install_data.py",start:33252037,end:33252885},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/install_headers.py",start:33252885,end:33253805},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/command/sdist.py",start:33253805,end:33254538},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/conv_template.py",start:33254538,end:33264074},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/core.py",start:33264074,end:33272247},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/cpuinfo.py",start:33272247,end:33294886},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/exec_command.py",start:33294886,end:33305168},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/extension.py",start:33305168,end:33308628},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/__init__.py",start:33308628,end:33349253},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/absoft.py",start:33349253,end:33354821},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/arm.py",start:33354821,end:33356911},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/compaq.py",start:33356911,end:33360814},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/environment.py",start:33360814,end:33363894},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/fujitsu.py",start:33363894,end:33365227},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/g95.py",start:33365227,end:33366557},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/gnu.py",start:33366557,end:33387029},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/hpux.py",start:33387029,end:33388382},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/ibm.py",start:33388382,end:33391916},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/intel.py",start:33391916,end:33398486},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/lahey.py",start:33398486,end:33399813},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/mips.py",start:33399813,end:33401527},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/nag.py",start:33401527,end:33404304},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/none.py",start:33404304,end:33405062},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/nv.py",start:33405062,end:33406603},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/pathf95.py",start:33406603,end:33407664},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/pg.py",start:33407664,end:33411232},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/sun.py",start:33411232,end:33412809},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fcompiler/vast.py",start:33412809,end:33414476},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/from_template.py",start:33414476,end:33422389},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/fujitsuccompiler.py",start:33422389,end:33423223},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/intelccompiler.py",start:33423223,end:33427245},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/lib2def.py",start:33427245,end:33430875},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/line_endings.py",start:33430875,end:33432907},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/log.py",start:33432907,end:33435786},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/mingw32ccompiler.py",start:33435786,end:33458778},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/misc_util.py",start:33458778,end:33548017},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/msvc9compiler.py",start:33548017,end:33550209},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/msvccompiler.py",start:33550209,end:33552856},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/npy_pkg_config.py",start:33552856,end:33565874},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/numpy_distribution.py",start:33565874,end:33566508},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/pathccompiler.py",start:33566508,end:33567221},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/system_info.py",start:33567221,end:33681103},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/__init__.py",start:33681103,end:33681103},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_build_ext.py",start:33681103,end:33683882},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_ccompiler_opt.py",start:33683882,end:33712660},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_ccompiler_opt_conf.py",start:33712660,end:33719007},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_exec_command.py",start:33719007,end:33726402},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_fcompiler.py",start:33726402,end:33727679},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_fcompiler_gnu.py",start:33727679,end:33729815},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_fcompiler_intel.py",start:33729815,end:33730873},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_fcompiler_nagfor.py",start:33730873,end:33731975},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_from_template.py",start:33731975,end:33733078},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_log.py",start:33733078,end:33733946},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_mingw32ccompiler.py",start:33733946,end:33735854},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_misc_util.py",start:33735854,end:33739218},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_npy_pkg_config.py",start:33739218,end:33741775},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_shell_utils.py",start:33741775,end:33743889},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/test_system_info.py",start:33743889,end:33755272},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/tests/utilities.py",start:33755272,end:33757559},{filename:"/bw/python/lib/python3.13/site-packages/numpy/distutils/unixccompiler.py",start:33757559,end:33762985},{filename:"/bw/python/lib/python3.13/site-packages/numpy/doc/ufuncs.py",start:33762985,end:33768399},{filename:"/bw/python/lib/python3.13/site-packages/numpy/dtypes.py",start:33768399,end:33769711},{filename:"/bw/python/lib/python3.13/site-packages/numpy/exceptions.py",start:33769711,end:33777511},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/__init__.py",start:33777511,end:33779959},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/__main__.py",start:33779959,end:33780089},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/__version__.py",start:33780089,end:33780137},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/_backends/__init__.py",start:33780137,end:33780436},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/_backends/_backend.py",start:33780436,end:33781587},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/_backends/_distutils.py",start:33781587,end:33783972},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/_backends/_meson.py",start:33783972,end:33792079},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/_isocbind.py",start:33792079,end:33794439},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/_src_pyf.py",start:33794439,end:33802134},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/auxfuncs.py",start:33802134,end:33829054},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/capi_maps.py",start:33829054,end:33859133},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/cb_rules.py",start:33859133,end:33884184},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/cfuncs.py",start:33884184,end:33936844},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/common_rules.py",start:33936844,end:33941874},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/crackfortran.py",start:33941874,end:34088753},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/diagnose.py",start:34088753,end:34093828},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/f2py2e.py",start:34093828,end:34122591},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/f90mod_rules.py",start:34122591,end:34132401},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/func2subr.py",start:34132401,end:34142450},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/rules.py",start:34142450,end:34205541},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/symbolic.py",start:34205541,end:34258755},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/__init__.py",start:34258755,end:34259084},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_abstract_interface.py",start:34259084,end:34259895},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_array_from_pyobj.py",start:34259895,end:34283591},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_assumed_shape.py",start:34283591,end:34285058},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_block_docstring.py",start:34285058,end:34285642},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_callback.py",start:34285642,end:34292741},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_character.py",start:34292741,end:34314672},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_common.py",start:34314672,end:34315316},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_crackfortran.py",start:34315316,end:34331729},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_data.py",start:34331729,end:34334624},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_docs.py",start:34334624,end:34336479},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_f2cmap.py",start:34336479,end:34336866},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_f2py2e.py",start:34336866,end:34364700},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_isoc.py",start:34364700,end:34366134},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_kind.py",start:34366134,end:34367959},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_mixed.py",start:34367959,end:34368821},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_modules.py",start:34368821,end:34371122},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_parameter.py",start:34371122,end:34375756},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_pyf_src.py",start:34375756,end:34376890},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_quoted_character.py",start:34376890,end:34377367},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_regression.py",start:34377367,end:34383564},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_return_character.py",start:34383564,end:34385098},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_return_complex.py",start:34385098,end:34387538},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_return_integer.py",start:34387538,end:34389351},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_return_logical.py",start:34389351,end:34391399},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_return_real.py",start:34391399,end:34394672},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_routines.py",start:34394672,end:34395467},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_semicolon_split.py",start:34395467,end:34397094},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_size.py",start:34397094,end:34398249},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_string.py",start:34398249,end:34401187},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_symbolic.py",start:34401187,end:34419529},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/test_value_attrspec.py",start:34419529,end:34419859},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/tests/util.py",start:34419859,end:34431971},{filename:"/bw/python/lib/python3.13/site-packages/numpy/f2py/use_rules.py",start:34431971,end:34435347},{filename:"/bw/python/lib/python3.13/site-packages/numpy/fft/__init__.py",start:34435347,end:34443638},{filename:"/bw/python/lib/python3.13/site-packages/numpy/fft/_helper.py",start:34443638,end:34450425},{filename:"/bw/python/lib/python3.13/site-packages/numpy/fft/_pocketfft.py",start:34450425,end:34513023},{filename:"/bw/python/lib/python3.13/site-packages/numpy/fft/helper.py",start:34513023,end:34513634},{filename:"/bw/python/lib/python3.13/site-packages/numpy/fft/tests/__init__.py",start:34513634,end:34513634},{filename:"/bw/python/lib/python3.13/site-packages/numpy/fft/tests/test_helper.py",start:34513634,end:34519788},{filename:"/bw/python/lib/python3.13/site-packages/numpy/fft/tests/test_pocketfft.py",start:34519788,end:34544234},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/__init__.py",start:34544234,end:34547238},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_array_utils_impl.py",start:34547238,end:34548935},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_arraypad_impl.py",start:34548935,end:34581231},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_arraysetops_impl.py",start:34581231,end:34622506},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_arrayterator_impl.py",start:34622506,end:34629724},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_datasource.py",start:34629724,end:34652455},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_format_impl.py",start:34652455,end:34689320},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_function_base_impl.py",start:34689320,end:34885745},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_histograms_impl.py",start:34885745,end:34924177},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_index_tricks_impl.py",start:34924177,end:34956363},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_iotools.py",start:34956363,end:34987239},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_nanfunctions_impl.py",start:34987239,end:35059188},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_npyio_impl.py",start:35059188,end:35158465},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_polynomial_impl.py",start:35158465,end:35202599},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_scimath_impl.py",start:35202599,end:35218291},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_shape_base_impl.py",start:35218291,end:35257770},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_stride_tricks_impl.py",start:35257770,end:35275795},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_twodim_base_impl.py",start:35275795,end:35309720},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_type_check_impl.py",start:35309720,end:35328941},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_ufunclike_impl.py",start:35328941,end:35335250},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_user_array_impl.py",start:35335250,end:35342947},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_utils_impl.py",start:35342947,end:35366293},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/_version.py",start:35366293,end:35371144},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/array_utils.py",start:35371144,end:35371288},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/format.py",start:35371288,end:35371765},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/introspect.py",start:35371765,end:35374514},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/mixins.py",start:35374514,end:35381714},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/npyio.py",start:35381714,end:35381782},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/recfunctions.py",start:35381782,end:35441321},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/scimath.py",start:35441321,end:35441490},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/stride_tricks.py",start:35441490,end:35441578},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/__init__.py",start:35441578,end:35441578},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test__datasource.py",start:35441578,end:35452159},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test__iotools.py",start:35452159,end:35465924},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test__version.py",start:35465924,end:35467923},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_array_utils.py",start:35467923,end:35469041},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_arraypad.py",start:35469041,end:35525196},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_arraysetops.py",start:35525196,end:35565641},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_arrayterator.py",start:35565641,end:35566942},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_format.py",start:35566942,end:35608898},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_function_base.py",start:35608898,end:35780017},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_histograms.py",start:35780017,end:35813983},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_index_tricks.py",start:35813983,end:35834678},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_io.py",start:35834678,end:35945667},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_loadtxt.py",start:35945667,end:35986224},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_mixins.py",start:35986224,end:35993233},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_nanfunctions.py",start:35993233,end:36047331},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_packbits.py",start:36047331,end:36064874},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_polynomial.py",start:36064874,end:36077186},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_recfunctions.py",start:36077186,end:36121114},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_regression.py",start:36121114,end:36128830},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_shape_base.py",start:36128830,end:36156236},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_stride_tricks.py",start:36156236,end:36179266},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_twodim_base.py",start:36179266,end:36198191},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_type_check.py",start:36198191,end:36212987},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_ufunclike.py",start:36212987,end:36216002},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/tests/test_utils.py",start:36216002,end:36218376},{filename:"/bw/python/lib/python3.13/site-packages/numpy/lib/user_array.py",start:36218376,end:36218439},{filename:"/bw/python/lib/python3.13/site-packages/numpy/linalg/__init__.py",start:36218439,end:36220563},{filename:"/bw/python/lib/python3.13/site-packages/numpy/linalg/_linalg.py",start:36220563,end:36335669},{filename:"/bw/python/lib/python3.13/site-packages/numpy/linalg/lapack_lite/clapack_scrub.py",start:36335669,end:36344886},{filename:"/bw/python/lib/python3.13/site-packages/numpy/linalg/lapack_lite/fortran.py",start:36344886,end:36348361},{filename:"/bw/python/lib/python3.13/site-packages/numpy/linalg/lapack_lite/make_lite.py",start:36348361,end:36360472},{filename:"/bw/python/lib/python3.13/site-packages/numpy/linalg/linalg.py",start:36360472,end:36361057},{filename:"/bw/python/lib/python3.13/site-packages/numpy/linalg/tests/__init__.py",start:36361057,end:36361057},{filename:"/bw/python/lib/python3.13/site-packages/numpy/linalg/tests/test_deprecations.py",start:36361057,end:36361697},{filename:"/bw/python/lib/python3.13/site-packages/numpy/linalg/tests/test_linalg.py",start:36361697,end:36446695},{filename:"/bw/python/lib/python3.13/site-packages/numpy/linalg/tests/test_regression.py",start:36446695,end:36453399},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/__init__.py",start:36453399,end:36454805},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/core.py",start:36454805,end:36743686},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/extras.py",start:36743686,end:36814366},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/mrecords.py",start:36814366,end:36841439},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/tests/__init__.py",start:36841439,end:36841439},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/tests/test_arrayobject.py",start:36841439,end:36842538},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/tests/test_core.py",start:36842538,end:37062255},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/tests/test_deprecations.py",start:37062255,end:37064824},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/tests/test_extras.py",start:37064824,end:37143259},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/tests/test_mrecords.py",start:37143259,end:37163153},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/tests/test_old_ma.py",start:37163153,end:37196171},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/tests/test_regression.py",start:37196171,end:37199474},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/tests/test_subclassing.py",start:37199474,end:37216410},{filename:"/bw/python/lib/python3.13/site-packages/numpy/ma/testutils.py",start:37216410,end:37226645},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matlib.py",start:37226645,end:37237283},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matrixlib/__init__.py",start:37237283,end:37237526},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matrixlib/defmatrix.py",start:37237526,end:37268401},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matrixlib/tests/__init__.py",start:37268401,end:37268401},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matrixlib/tests/test_defmatrix.py",start:37268401,end:37283378},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matrixlib/tests/test_interaction.py",start:37283378,end:37295252},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matrixlib/tests/test_masked_matrix.py",start:37295252,end:37304039},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matrixlib/tests/test_matrix_linalg.py",start:37304039,end:37306188},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matrixlib/tests/test_multiarray.py",start:37306188,end:37306743},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matrixlib/tests/test_numeric.py",start:37306743,end:37307190},{filename:"/bw/python/lib/python3.13/site-packages/numpy/matrixlib/tests/test_regression.py",start:37307190,end:37308124},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/__init__.py",start:37308124,end:37314850},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/_polybase.py",start:37314850,end:37354208},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/chebyshev.py",start:37354208,end:37416530},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/hermite.py",start:37416530,end:37471133},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/hermite_e.py",start:37471133,end:37523438},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/laguerre.py",start:37523438,end:37575912},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/legendre.py",start:37575912,end:37627041},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/polynomial.py",start:37627041,end:37679237},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/polyutils.py",start:37679237,end:37701894},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/__init__.py",start:37701894,end:37701894},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/test_chebyshev.py",start:37701894,end:37722544},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/test_classes.py",start:37722544,end:37741096},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/test_hermite.py",start:37741096,end:37759783},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/test_hermite_e.py",start:37759783,end:37778809},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/test_laguerre.py",start:37778809,end:37796446},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/test_legendre.py",start:37796446,end:37815251},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/test_polynomial.py",start:37815251,end:37838162},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/test_polyutils.py",start:37838162,end:37841942},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/test_printing.py",start:37841942,end:37863345},{filename:"/bw/python/lib/python3.13/site-packages/numpy/polynomial/tests/test_symbol.py",start:37863345,end:37868720},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/__init__.py",start:37868720,end:37876200},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/_examples/cffi/extending.py",start:37876200,end:37877084},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/_examples/cffi/parse.py",start:37877084,end:37878834},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/_examples/numba/extending.py",start:37878834,end:37880793},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/_examples/numba/extending_distributions.py",start:37880793,end:37882829},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/_pickle.py",start:37882829,end:37885571},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/__init__.py",start:37885571,end:37885571},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/data/__init__.py",start:37885571,end:37885571},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/test_direct.py",start:37885571,end:37905490},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/test_extending.py",start:37905490,end:37910022},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/test_generator_mt19937.py",start:37910022,end:38028022},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/test_generator_mt19937_regressions.py",start:38028022,end:38036129},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/test_random.py",start:38036129,end:38106427},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/test_randomstate.py",start:38106427,end:38192176},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/test_randomstate_regression.py",start:38192176,end:38200186},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/test_regression.py",start:38200186,end:38205657},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/test_seed_sequence.py",start:38205657,end:38208967},{filename:"/bw/python/lib/python3.13/site-packages/numpy/random/tests/test_smoke.py",start:38208967,end:38237108},{filename:"/bw/python/lib/python3.13/site-packages/numpy/rec/__init__.py",start:38237108,end:38237191},{filename:"/bw/python/lib/python3.13/site-packages/numpy/strings/__init__.py",start:38237191,end:38237274},{filename:"/bw/python/lib/python3.13/site-packages/numpy/testing/__init__.py",start:38237274,end:38237855},{filename:"/bw/python/lib/python3.13/site-packages/numpy/testing/_private/__init__.py",start:38237855,end:38237855},{filename:"/bw/python/lib/python3.13/site-packages/numpy/testing/_private/extbuild.py",start:38237855,end:38245571},{filename:"/bw/python/lib/python3.13/site-packages/numpy/testing/_private/utils.py",start:38245571,end:38341278},{filename:"/bw/python/lib/python3.13/site-packages/numpy/testing/overrides.py",start:38341278,end:38343412},{filename:"/bw/python/lib/python3.13/site-packages/numpy/testing/print_coercion_tables.py",start:38343412,end:38349698},{filename:"/bw/python/lib/python3.13/site-packages/numpy/testing/tests/__init__.py",start:38349698,end:38349698},{filename:"/bw/python/lib/python3.13/site-packages/numpy/testing/tests/test_utils.py",start:38349698,end:38419273},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/__init__.py",start:38419273,end:38419273},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test__all__.py",start:38419273,end:38419495},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test_configtool.py",start:38419495,end:38421244},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test_ctypeslib.py",start:38421244,end:38433619},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test_lazyloading.py",start:38433619,end:38434779},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test_matlib.py",start:38434779,end:38436633},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test_numpy_config.py",start:38436633,end:38437868},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test_numpy_version.py",start:38437868,end:38439612},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test_public_api.py",start:38439612,end:38467463},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test_reloading.py",start:38467463,end:38469830},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test_scripts.py",start:38469830,end:38471495},{filename:"/bw/python/lib/python3.13/site-packages/numpy/tests/test_warnings.py",start:38471495,end:38473823},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/__init__.py",start:38473823,end:38479871},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/mypy_plugin.py",start:38479871,end:38486412},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/__init__.py",start:38486412,end:38486412},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/arithmetic.py",start:38486412,end:38494174},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/array_constructors.py",start:38494174,end:38496621},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/array_like.py",start:38496621,end:38497653},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/arrayprint.py",start:38497653,end:38498419},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/arrayterator.py",start:38498419,end:38498812},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/bitwise_ops.py",start:38498812,end:38499776},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/comparisons.py",start:38499776,end:38503074},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/dtype.py",start:38503074,end:38504144},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/einsumfunc.py",start:38504144,end:38505514},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/flatiter.py",start:38505514,end:38505717},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/fromnumeric.py",start:38505717,end:38509708},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/index_tricks.py",start:38509708,end:38511110},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/lib_user_array.py",start:38511110,end:38511700},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/lib_utils.py",start:38511700,end:38512017},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/lib_version.py",start:38512017,end:38512316},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/literal.py",start:38512316,end:38513824},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/ma.py",start:38513824,end:38517186},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/mod.py",start:38517186,end:38518762},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/modules.py",start:38518762,end:38519387},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/multiarray.py",start:38519387,end:38520718},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/ndarray_conversion.py",start:38520718,end:38522243},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/ndarray_misc.py",start:38522243,end:38525942},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/ndarray_shape_manipulation.py",start:38525942,end:38526582},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/nditer.py",start:38526582,end:38526645},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/numeric.py",start:38526645,end:38528267},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/numerictypes.py",start:38528267,end:38528598},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/random.py",start:38528598,end:38590422},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/recfunctions.py",start:38590422,end:38595425},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/scalars.py",start:38595425,end:38599149},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/shape.py",start:38599149,end:38599594},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/simple.py",start:38599594,end:38602345},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/simple_py3.py",start:38602345,end:38602441},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/ufunc_config.py",start:38602441,end:38603646},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/ufunclike.py",start:38603646,end:38604771},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/ufuncs.py",start:38604771,end:38605193},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/data/pass/warnings_and_errors.py",start:38605193,end:38605354},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/test_isfile.py",start:38605354,end:38606232},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/test_runtime.py",start:38606232,end:38609151},{filename:"/bw/python/lib/python3.13/site-packages/numpy/typing/tests/test_typing.py",start:38609151,end:38615440},{filename:"/bw/python/lib/python3.13/site-packages/numpy/version.py",start:38615440,end:38615733},{filename:"/bw/python/lib/python3.13/site-packages/pyodide/__init__.py",start:38615733,end:38615926},{filename:"/bw/python/lib/python3.13/site-packages/pyodide/ffi.py",start:38615926,end:38616431},{filename:"/bw/python/lib/python3.13/site-packages/requests-2.32.3.dist-info/LICENSE",start:38616431,end:38626573},{filename:"/bw/python/lib/python3.13/site-packages/requests-2.32.3.dist-info/METADATA",start:38626573,end:38631183},{filename:"/bw/python/lib/python3.13/site-packages/requests-2.32.3.dist-info/RECORD",start:38631183,end:38632958},{filename:"/bw/python/lib/python3.13/site-packages/requests-2.32.3.dist-info/WHEEL",start:38632958,end:38633050},{filename:"/bw/python/lib/python3.13/site-packages/requests-2.32.3.dist-info/top_level.txt",start:38633050,end:38633059},{filename:"/bw/python/lib/python3.13/site-packages/requests/__init__.py",start:38633059,end:38638131},{filename:"/bw/python/lib/python3.13/site-packages/requests/__version__.py",start:38638131,end:38638566},{filename:"/bw/python/lib/python3.13/site-packages/requests/_internal_utils.py",start:38638566,end:38640061},{filename:"/bw/python/lib/python3.13/site-packages/requests/adapters.py",start:38640061,end:38667512},{filename:"/bw/python/lib/python3.13/site-packages/requests/api.py",start:38667512,end:38673961},{filename:"/bw/python/lib/python3.13/site-packages/requests/auth.py",start:38673961,end:38684147},{filename:"/bw/python/lib/python3.13/site-packages/requests/certs.py",start:38684147,end:38684576},{filename:"/bw/python/lib/python3.13/site-packages/requests/compat.py",start:38684576,end:38686393},{filename:"/bw/python/lib/python3.13/site-packages/requests/cookies.py",start:38686393,end:38704983},{filename:"/bw/python/lib/python3.13/site-packages/requests/exceptions.py",start:38704983,end:38709243},{filename:"/bw/python/lib/python3.13/site-packages/requests/help.py",start:38709243,end:38713118},{filename:"/bw/python/lib/python3.13/site-packages/requests/hooks.py",start:38713118,end:38713851},{filename:"/bw/python/lib/python3.13/site-packages/requests/models.py",start:38713851,end:38749269},{filename:"/bw/python/lib/python3.13/site-packages/requests/packages.py",start:38749269,end:38750173},{filename:"/bw/python/lib/python3.13/site-packages/requests/sessions.py",start:38750173,end:38780668},{filename:"/bw/python/lib/python3.13/site-packages/requests/status_codes.py",start:38780668,end:38784990},{filename:"/bw/python/lib/python3.13/site-packages/requests/structures.py",start:38784990,end:38787902},{filename:"/bw/python/lib/python3.13/site-packages/requests/utils.py",start:38787902,end:38821521},{filename:"/bw/python/lib/python3.13/site-packages/typing_extensions-4.14.1.dist-info/METADATA",start:38821521,end:38824516},{filename:"/bw/python/lib/python3.13/site-packages/typing_extensions-4.14.1.dist-info/RECORD",start:38824516,end:38824943},{filename:"/bw/python/lib/python3.13/site-packages/typing_extensions-4.14.1.dist-info/WHEEL",start:38824943,end:38825025},{filename:"/bw/python/lib/python3.13/site-packages/typing_extensions-4.14.1.dist-info/licenses/LICENSE",start:38825025,end:38838961},{filename:"/bw/python/lib/python3.13/site-packages/typing_extensions.py",start:38838961,end:38996369},{filename:"/bw/python/lib/python3.13/site-packages/urllib3-2.4.0.dist-info/METADATA",start:38996369,end:39002830},{filename:"/bw/python/lib/python3.13/site-packages/urllib3-2.4.0.dist-info/RECORD",start:39002830,end:39006280},{filename:"/bw/python/lib/python3.13/site-packages/urllib3-2.4.0.dist-info/WHEEL",start:39006280,end:39006367},{filename:"/bw/python/lib/python3.13/site-packages/urllib3-2.4.0.dist-info/licenses/LICENSE.txt",start:39006367,end:39007460},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/__init__.py",start:39007460,end:39014439},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/_base_connection.py",start:39014439,end:39020007},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/_collections.py",start:39020007,end:39037302},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/_request_methods.py",start:39037302,end:39047233},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/_version.py",start:39047233,end:39047744},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/connection.py",start:39047744,end:39087619},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/connectionpool.py",start:39087619,end:39130990},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/contrib/__init__.py",start:39130990,end:39130990},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/contrib/emscripten/__init__.py",start:39130990,end:39131723},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/contrib/emscripten/connection.py",start:39131723,end:39140494},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/contrib/emscripten/emscripten_fetch_worker.js",start:39140494,end:39144149},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/contrib/emscripten/fetch.py",start:39144149,end:39167016},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/contrib/emscripten/request.py",start:39167016,end:39167582},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/contrib/emscripten/response.py",start:39167582,end:39177089},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/contrib/pyopenssl.py",start:39177089,end:39196809},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/contrib/socks.py",start:39196809,end:39204358},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/exceptions.py",start:39204358,end:39214296},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/fields.py",start:39214296,end:39225125},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/filepost.py",start:39225125,end:39227513},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/http2/__init__.py",start:39227513,end:39229254},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/http2/connection.py",start:39229254,end:39241948},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/http2/probe.py",start:39241948,end:39244962},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/poolmanager.py",start:39244962,end:39267875},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/py.typed",start:39267875,end:39267968},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/response.py",start:39267968,end:39313158},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/__init__.py",start:39313158,end:39314159},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/connection.py",start:39314159,end:39318603},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/proxy.py",start:39318603,end:39319751},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/request.py",start:39319751,end:39327969},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/response.py",start:39327969,end:39331343},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/retry.py",start:39331343,end:39349802},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/ssl_.py",start:39349802,end:39369588},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/ssl_match_hostname.py",start:39369588,end:39375433},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/ssltransport.py",start:39375433,end:39384280},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/timeout.py",start:39384280,end:39394626},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/url.py",start:39394626,end:39409831},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/util.py",start:39409831,end:39410977},{filename:"/bw/python/lib/python3.13/site-packages/urllib3/util/wait.py",start:39410977,end:39415400},{filename:"/bw/python/lib/python3.13/site.py",start:39415400,end:39440956},{filename:"/bw/python/lib/python3.13/smtplib.py",start:39440956,end:39484874},{filename:"/bw/python/lib/python3.13/socket.py",start:39484874,end:39522633},{filename:"/bw/python/lib/python3.13/socketserver.py",start:39522633,end:39550698},{filename:"/bw/python/lib/python3.13/sqlite3/__init__.py",start:39550698,end:39553199},{filename:"/bw/python/lib/python3.13/sqlite3/__main__.py",start:39553199,end:39557487},{filename:"/bw/python/lib/python3.13/sqlite3/dbapi2.py",start:39557487,end:39561118},{filename:"/bw/python/lib/python3.13/sqlite3/dump.py",start:39561118,end:39565358},{filename:"/bw/python/lib/python3.13/sre_compile.py",start:39565358,end:39565589},{filename:"/bw/python/lib/python3.13/sre_constants.py",start:39565589,end:39565821},{filename:"/bw/python/lib/python3.13/sre_parse.py",start:39565821,end:39566050},{filename:"/bw/python/lib/python3.13/ssl.py",start:39566050,end:39618756},{filename:"/bw/python/lib/python3.13/stat.py",start:39618756,end:39625064},{filename:"/bw/python/lib/python3.13/statistics.py",start:39625064,end:39687245},{filename:"/bw/python/lib/python3.13/string.py",start:39687245,end:39699031},{filename:"/bw/python/lib/python3.13/stringprep.py",start:39699031,end:39711948},{filename:"/bw/python/lib/python3.13/struct.py",start:39711948,end:39712205},{filename:"/bw/python/lib/python3.13/subprocess.py",start:39712205,end:39803032},{filename:"/bw/python/lib/python3.13/symtable.py",start:39803032,end:39817239},{filename:"/bw/python/lib/python3.13/sysconfig/__init__.py",start:39817239,end:39844683},{filename:"/bw/python/lib/python3.13/sysconfig/__main__.py",start:39844683,end:39853014},{filename:"/bw/python/lib/python3.13/tabnanny.py",start:39853014,end:39864546},{filename:"/bw/python/lib/python3.13/tarfile.py",start:39864546,end:39979832},{filename:"/bw/python/lib/python3.13/tempfile.py",start:39979832,end:40012372},{filename:"/bw/python/lib/python3.13/textwrap.py",start:40012372,end:40032330},{filename:"/bw/python/lib/python3.13/this.py",start:40032330,end:40033333},{filename:"/bw/python/lib/python3.13/threading.py",start:40033333,end:40088676},{filename:"/bw/python/lib/python3.13/timeit.py",start:40088676,end:40102140},{filename:"/bw/python/lib/python3.13/token.py",start:40102140,end:40104629},{filename:"/bw/python/lib/python3.13/tokenize.py",start:40104629,end:40126197},{filename:"/bw/python/lib/python3.13/tomllib/__init__.py",start:40126197,end:40126505},{filename:"/bw/python/lib/python3.13/tomllib/_parser.py",start:40126505,end:40149171},{filename:"/bw/python/lib/python3.13/tomllib/_re.py",start:40149171,end:40152129},{filename:"/bw/python/lib/python3.13/tomllib/_types.py",start:40152129,end:40152383},{filename:"/bw/python/lib/python3.13/tomllib/mypy.ini",start:40152383,end:40152834},{filename:"/bw/python/lib/python3.13/trace.py",start:40152834,end:40182548},{filename:"/bw/python/lib/python3.13/traceback.py",start:40182548,end:40248994},{filename:"/bw/python/lib/python3.13/tracemalloc.py",start:40248994,end:40267041},{filename:"/bw/python/lib/python3.13/tty.py",start:40267041,end:40269076},{filename:"/bw/python/lib/python3.13/types.py",start:40269076,end:40280400},{filename:"/bw/python/lib/python3.13/typing.py",start:40280400,end:40413621},{filename:"/bw/python/lib/python3.13/unittest/__init__.py",start:40413621,end:40416844},{filename:"/bw/python/lib/python3.13/unittest/__main__.py",start:40416844,end:40417316},{filename:"/bw/python/lib/python3.13/unittest/_log.py",start:40417316,end:40420062},{filename:"/bw/python/lib/python3.13/unittest/async_case.py",start:40420062,end:40425692},{filename:"/bw/python/lib/python3.13/unittest/case.py",start:40425692,end:40484055},{filename:"/bw/python/lib/python3.13/unittest/loader.py",start:40484055,end:40503396},{filename:"/bw/python/lib/python3.13/unittest/main.py",start:40503396,end:40515032},{filename:"/bw/python/lib/python3.13/unittest/mock.py",start:40515032,end:40626366},{filename:"/bw/python/lib/python3.13/unittest/result.py",start:40626366,end:40635496},{filename:"/bw/python/lib/python3.13/unittest/runner.py",start:40635496,end:40645864},{filename:"/bw/python/lib/python3.13/unittest/signals.py",start:40645864,end:40648267},{filename:"/bw/python/lib/python3.13/unittest/suite.py",start:40648267,end:40661779},{filename:"/bw/python/lib/python3.13/unittest/util.py",start:40661779,end:40666994},{filename:"/bw/python/lib/python3.13/urllib/__init__.py",start:40666994,end:40666994},{filename:"/bw/python/lib/python3.13/urllib/error.py",start:40666994,end:40669409},{filename:"/bw/python/lib/python3.13/urllib/parse.py",start:40669409,end:40715161},{filename:"/bw/python/lib/python3.13/urllib/request.py",start:40715161,end:40817834},{filename:"/bw/python/lib/python3.13/urllib/response.py",start:40817834,end:40820195},{filename:"/bw/python/lib/python3.13/urllib/robotparser.py",start:40820195,end:40829882},{filename:"/bw/python/lib/python3.13/uuid.py",start:40829882,end:40859340},{filename:"/bw/python/lib/python3.13/warnings.py",start:40859340,end:40886411},{filename:"/bw/python/lib/python3.13/wave.py",start:40886411,end:40909665},{filename:"/bw/python/lib/python3.13/weakref.py",start:40909665,end:40931178},{filename:"/bw/python/lib/python3.13/webbrowser.py",start:40931178,end:40955942},{filename:"/bw/python/lib/python3.13/wsgiref/__init__.py",start:40955942,end:40956599},{filename:"/bw/python/lib/python3.13/wsgiref/handlers.py",start:40956599,end:40978408},{filename:"/bw/python/lib/python3.13/wsgiref/headers.py",start:40978408,end:40985778},{filename:"/bw/python/lib/python3.13/wsgiref/simple_server.py",start:40985778,end:40990830},{filename:"/bw/python/lib/python3.13/wsgiref/types.py",start:40990830,end:40992547},{filename:"/bw/python/lib/python3.13/wsgiref/util.py",start:40992547,end:40998036},{filename:"/bw/python/lib/python3.13/wsgiref/validate.py",start:40998036,end:41013072},{filename:"/bw/python/lib/python3.13/xml/__init__.py",start:41013072,end:41013629},{filename:"/bw/python/lib/python3.13/xml/dom/NodeFilter.py",start:41013629,end:41014565},{filename:"/bw/python/lib/python3.13/xml/dom/__init__.py",start:41014565,end:41018584},{filename:"/bw/python/lib/python3.13/xml/dom/domreg.py",start:41018584,end:41022035},{filename:"/bw/python/lib/python3.13/xml/dom/expatbuilder.py",start:41022035,end:41057728},{filename:"/bw/python/lib/python3.13/xml/dom/minicompat.py",start:41057728,end:41061095},{filename:"/bw/python/lib/python3.13/xml/dom/minidom.py",start:41061095,end:41129551},{filename:"/bw/python/lib/python3.13/xml/dom/pulldom.py",start:41129551,end:41141188},{filename:"/bw/python/lib/python3.13/xml/dom/xmlbuilder.py",start:41141188,end:41153608},{filename:"/bw/python/lib/python3.13/xml/etree/ElementInclude.py",start:41153608,end:41160560},{filename:"/bw/python/lib/python3.13/xml/etree/ElementPath.py",start:41160560,end:41174557},{filename:"/bw/python/lib/python3.13/xml/etree/ElementTree.py",start:41174557,end:41249183},{filename:"/bw/python/lib/python3.13/xml/etree/__init__.py",start:41249183,end:41250788},{filename:"/bw/python/lib/python3.13/xml/etree/cElementTree.py",start:41250788,end:41250870},{filename:"/bw/python/lib/python3.13/xml/parsers/__init__.py",start:41250870,end:41251037},{filename:"/bw/python/lib/python3.13/xml/parsers/expat.py",start:41251037,end:41251285},{filename:"/bw/python/lib/python3.13/xml/sax/__init__.py",start:41251285,end:41254523},{filename:"/bw/python/lib/python3.13/xml/sax/_exceptions.py",start:41254523,end:41259222},{filename:"/bw/python/lib/python3.13/xml/sax/expatreader.py",start:41259222,end:41275256},{filename:"/bw/python/lib/python3.13/xml/sax/handler.py",start:41275256,end:41290873},{filename:"/bw/python/lib/python3.13/xml/sax/saxutils.py",start:41290873,end:41303128},{filename:"/bw/python/lib/python3.13/xml/sax/xmlreader.py",start:41303128,end:41315752},{filename:"/bw/python/lib/python3.13/xmlrpc/__init__.py",start:41315752,end:41315790},{filename:"/bw/python/lib/python3.13/xmlrpc/client.py",start:41315790,end:41364351},{filename:"/bw/python/lib/python3.13/xmlrpc/server.py",start:41364351,end:41401173},{filename:"/bw/python/lib/python3.13/zipapp.py",start:41401173,end:41409791},{filename:"/bw/python/lib/python3.13/zipfile/__init__.py",start:41409791,end:41499584},{filename:"/bw/python/lib/python3.13/zipfile/__main__.py",start:41499584,end:41499642},{filename:"/bw/python/lib/python3.13/zipfile/_path/__init__.py",start:41499642,end:41511598},{filename:"/bw/python/lib/python3.13/zipfile/_path/glob.py",start:41511598,end:41514912},{filename:"/bw/python/lib/python3.13/zipimport.py",start:41514912,end:41547802},{filename:"/bw/python/lib/python3.13/zoneinfo/__init__.py",start:41547802,end:41548719},{filename:"/bw/python/lib/python3.13/zoneinfo/_common.py",start:41548719,end:41554477},{filename:"/bw/python/lib/python3.13/zoneinfo/_tzpath.py",start:41554477,end:41560202},{filename:"/bw/python/lib/python3.13/zoneinfo/_zoneinfo.py",start:41560202,end:41585054},{filename:"/bw/scripts/addons_core/bl_pkg/Makefile",start:41585054,end:41590590},{filename:"/bw/scripts/addons_core/bl_pkg/__init__.py",start:41590590,end:41625654},{filename:"/bw/scripts/addons_core/bl_pkg/bl_extension_cli.py",start:41625654,end:41654844},{filename:"/bw/scripts/addons_core/bl_pkg/bl_extension_notify.py",start:41654844,end:41678336},{filename:"/bw/scripts/addons_core/bl_pkg/bl_extension_ops.py",start:41678336,end:41828876},{filename:"/bw/scripts/addons_core/bl_pkg/bl_extension_ui.py",start:41828876,end:41920297},{filename:"/bw/scripts/addons_core/bl_pkg/bl_extension_utils.py",start:41920297,end:42002124},{filename:"/bw/scripts/addons_core/bl_pkg/cli/blender_ext.py",start:42002124,end:42212748},{filename:"/bw/scripts/addons_core/bl_pkg/example_extension/AUTHORS",start:42212748,end:42212832},{filename:"/bw/scripts/addons_core/bl_pkg/example_extension/__init__.py",start:42212832,end:42213037},{filename:"/bw/scripts/addons_core/bl_pkg/example_extension/blender_manifest.toml",start:42213037,end:42213712},{filename:"/bw/scripts/addons_core/bl_pkg/extensions_map_from_legacy_addons.py",start:42213712,end:42220120},{filename:"/bw/scripts/addons_core/bl_pkg/readme.rst",start:42220120,end:42233016},{filename:"/bw/scripts/addons_core/bl_pkg/tests/modules/http_server_context.py",start:42233016,end:42236117},{filename:"/bw/scripts/addons_core/bl_pkg/tests/modules/python_wheel_generate.py",start:42236117,end:42239919},{filename:"/bw/scripts/addons_core/bl_pkg/tests/test_blender.py",start:42239919,end:42245576},{filename:"/bw/scripts/addons_core/bl_pkg/tests/test_cli.py",start:42245576,end:42275106},{filename:"/bw/scripts/addons_core/bl_pkg/tests/test_cli_blender.py",start:42275106,end:42329262},{filename:"/bw/scripts/addons_core/bl_pkg/tests/test_path_pattern_match.py",start:42329262,end:42337044},{filename:"/bw/scripts/addons_core/cycles/__init__.py",start:42337044,end:42342240},{filename:"/bw/scripts/addons_core/cycles/camera.py",start:42342240,end:42345075},{filename:"/bw/scripts/addons_core/cycles/engine.py",start:42345075,end:42354969},{filename:"/bw/scripts/addons_core/cycles/maketx.py",start:42354969,end:42357793},{filename:"/bw/scripts/addons_core/cycles/operators.py",start:42357793,end:42362892},{filename:"/bw/scripts/addons_core/cycles/osl.py",start:42362892,end:42375802},{filename:"/bw/scripts/addons_core/cycles/presets.py",start:42375802,end:42379434},{filename:"/bw/scripts/addons_core/cycles/properties.py",start:42379434,end:42454349},{filename:"/bw/scripts/addons_core/cycles/ui.py",start:42454349,end:42540552},{filename:"/bw/scripts/addons_core/cycles/version_update.py",start:42540552,end:42553501},{filename:"/bw/scripts/addons_core/hydra_storm/__init__.py",start:42553501,end:42554182},{filename:"/bw/scripts/addons_core/hydra_storm/engine.py",start:42554182,end:42555785},{filename:"/bw/scripts/addons_core/hydra_storm/properties.py",start:42555785,end:42557606},{filename:"/bw/scripts/addons_core/hydra_storm/ui.py",start:42557606,end:42565477},{filename:"/bw/scripts/addons_core/io_anim_bvh/__init__.py",start:42565477,end:42577291},{filename:"/bw/scripts/addons_core/io_anim_bvh/export_bvh.py",start:42577291,end:42587186},{filename:"/bw/scripts/addons_core/io_anim_bvh/import_bvh.py",start:42587186,end:42616523},{filename:"/bw/scripts/addons_core/io_curve_svg/__init__.py",start:42616523,end:42619510},{filename:"/bw/scripts/addons_core/io_curve_svg/import_svg.py",start:42619510,end:42671204},{filename:"/bw/scripts/addons_core/io_curve_svg/svg_colors.py",start:42671204,end:42677525},{filename:"/bw/scripts/addons_core/io_curve_svg/svg_util.py",start:42677525,end:42680485},{filename:"/bw/scripts/addons_core/io_curve_svg/svg_util_test.py",start:42680485,end:42686259},{filename:"/bw/scripts/addons_core/io_mesh_uv_layout/__init__.py",start:42686259,end:42696393},{filename:"/bw/scripts/addons_core/io_mesh_uv_layout/export_uv_eps.py",start:42696393,end:42698871},{filename:"/bw/scripts/addons_core/io_mesh_uv_layout/export_uv_png.py",start:42698871,end:42702796},{filename:"/bw/scripts/addons_core/io_mesh_uv_layout/export_uv_svg.py",start:42702796,end:42704527},{filename:"/bw/scripts/addons_core/io_scene_fbx/__init__.py",start:42704527,end:42732127},{filename:"/bw/scripts/addons_core/io_scene_fbx/data_types.py",start:42732127,end:42733791},{filename:"/bw/scripts/addons_core/io_scene_fbx/encode_bin.py",start:42733791,end:42748543},{filename:"/bw/scripts/addons_core/io_scene_fbx/export_fbx_bin.py",start:42748543,end:42937860},{filename:"/bw/scripts/addons_core/io_scene_fbx/fbx2json.py",start:42937860,end:42947547},{filename:"/bw/scripts/addons_core/io_scene_fbx/fbx_utils.py",start:42947547,end:43036561},{filename:"/bw/scripts/addons_core/io_scene_fbx/fbx_utils_threading.py",start:43036561,end:43048146},{filename:"/bw/scripts/addons_core/io_scene_fbx/import_fbx.py",start:43048146,end:43237059},{filename:"/bw/scripts/addons_core/io_scene_fbx/json2fbx.py",start:43237059,end:43240686},{filename:"/bw/scripts/addons_core/io_scene_fbx/parse_fbx.py",start:43240686,end:43251821},{filename:"/bw/scripts/addons_core/io_scene_gltf2/__init__.py",start:43251821,end:43338795},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/__init__.py",start:43338795,end:43338899},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/com/blender_default.py",start:43338899,end:43339210},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/com/conversion.py",start:43339210,end:43347144},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/com/data_path.py",start:43347144,end:43350418},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/com/extras.py",start:43350418,end:43353353},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/com/gltf2_blender_math.py",start:43353353,end:43360120},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/com/gltf2_blender_ui.py",start:43360120,end:43395009},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/com/gltf2_blender_utils.py",start:43395009,end:43399161},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/com/json_util.py",start:43399161,end:43399828},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/com/material_helpers.py",start:43399828,end:43401414},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/accessors.py",start:43401414,end:43410143},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/action.py",start:43410143,end:43467798},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/anim_utils.py",start:43467798,end:43482047},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/animations.py",start:43482047,end:43482824},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/drivers.py",start:43482824,end:43486125},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/animation.py",start:43486125,end:43487221},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/channel_target.py",start:43487221,end:43488936},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/channels.py",start:43488936,end:43506323},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/keyframes.py",start:43506323,end:43515361},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/sampler.py",start:43515361,end:43528177},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/keyframes.py",start:43528177,end:43532868},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/action_sampled.py",start:43532868,end:43535521},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/channel_target.py",start:43535521,end:43537216},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/channels.py",start:43537216,end:43546922},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/keyframes.py",start:43546922,end:43550265},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/sampler.py",start:43550265,end:43561508},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/channel_target.py",start:43561508,end:43563317},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/channels.py",start:43563317,end:43568620},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/keyframes.py",start:43568620,end:43576133},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/sampler.py",start:43576133,end:43581214},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/action_sampled.py",start:43581214,end:43583485},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/channel_target.py",start:43583485,end:43584976},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/channels.py",start:43584976,end:43590212},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/keyframes.py",start:43590212,end:43593151},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/sampler.py",start:43593151,end:43601271},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/sampling_cache.py",start:43601271,end:43643796},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/action_sampled.py",start:43643796,end:43645270},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/channel_target.py",start:43645270,end:43646379},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/channels.py",start:43646379,end:43648649},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/keyframes.py",start:43648649,end:43654270},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/sampler.py",start:43654270,end:43659332},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/scene_animation.py",start:43659332,end:43670800},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/animation/tracks.py",start:43670800,end:43707743},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/attribute_utils.py",start:43707743,end:43709824},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/cache.py",start:43709824,end:43717157},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/cameras.py",start:43717157,end:43722193},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/export.py",start:43722193,end:43748177},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/exporter.py",start:43748177,end:43776056},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/gather.py",start:43776056,end:43782885},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/joints.py",start:43782885,end:43786929},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/light_spots.py",start:43786929,end:43788387},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/lights.py",start:43788387,end:43798200},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/encode_image.py",start:43798200,end:43817362},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/anisotropy.py",start:43817362,end:43829748},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/clearcoat.py",start:43829748,end:43840210},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/dispersion.py",start:43840210,end:43841668},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/emission.py",start:43841668,end:43847104},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/ior.py",start:43847104,end:43848648},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/iridescence.py",start:43848648,end:43860505},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/sheen.py",start:43860505,end:43867802},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/specular.py",start:43867802,end:43875245},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/transmission.py",start:43875245,end:43878977},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/variants.py",start:43878977,end:43879493},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/volume.py",start:43879493,end:43885205},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/image.py",start:43885205,end:43906581},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/material_utils.py",start:43906581,end:43906975},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/material_viewport.py",start:43906975,end:43908039},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/materials.py",start:43908039,end:43944081},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/pbr_metallic_roughness.py",start:43944081,end:43955673},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/search_node_tree.py",start:43955673,end:44003658},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/texture.py",start:44003658,end:44013194},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/texture_info.py",start:44013194,end:44024381},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/material/unlit.py",start:44024381,end:44031872},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/nodes.py",start:44031872,end:44057137},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/obj_data.py",start:44057137,end:44063682},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/pointcloud.py",start:44063682,end:44067087},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/primitive_attributes.py",start:44067087,end:44077237},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/primitive_extract.py",start:44077237,end:44163922},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/primitives.py",start:44163922,end:44180327},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/sampler.py",start:44180327,end:44187251},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/skins.py",start:44187251,end:44192663},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/exp/tree.py",start:44192663,end:44242723},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/KHR_materials_anisotropy.py",start:44242723,end:44247589},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/KHR_materials_iridescence.py",start:44247589,end:44254005},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/KHR_materials_pbrSpecularGlossiness.py",start:44254005,end:44260349},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/KHR_materials_unlit.py",start:44260349,end:44262382},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/animation.py",start:44262382,end:44272836},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/animation_node.py",start:44272836,end:44279536},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/animation_pointer.py",start:44279536,end:44326453},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/animation_utils.py",start:44326453,end:44333252},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/animation_weight.py",start:44333252,end:44336869},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/blender_gltf.py",start:44336869,end:44372759},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/camera.py",start:44372759,end:44375894},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/draco_compression_extension.py",start:44375894,end:44381492},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/image.py",start:44381492,end:44384557},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/light.py",start:44384557,end:44390511},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/material.py",start:44390511,end:44395189},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/material_utils.py",start:44395189,end:44400556},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/mesh.py",start:44400556,end:44443864},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/node.py",start:44443864,end:44459094},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/pbrMetallicRoughness.py",start:44459094,end:44503838},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/scene.py",start:44503838,end:44509285},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/texture.py",start:44509285,end:44518883},{filename:"/bw/scripts/addons_core/io_scene_gltf2/blender/imp/vnode.py",start:44518883,end:44542957},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/__init__.py",start:44542957,end:44543081},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/com/constants.py",start:44543081,end:44547293},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/com/debug.py",start:44547293,end:44551076},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/com/gltf2_io.py",start:44551076,end:44606227},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/com/gltf2_io_extensions.py",start:44606227,end:44607495},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/com/library.py",start:44607495,end:44609121},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/com/lights_punctual.py",start:44609121,end:44612082},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/com/path.py",start:44612082,end:44612532},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/com/variants.py",start:44612532,end:44613660},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/exp/binary_data.py",start:44613660,end:44614944},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/exp/buffer.py",start:44614944,end:44620269},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/exp/draco.py",start:44620269,end:44626673},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/exp/export.py",start:44626673,end:44629958},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/exp/image_data.py",start:44629958,end:44631969},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/exp/meshopt.py",start:44631969,end:44640762},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/exp/user_extensions.py",start:44640762,end:44641973},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/imp/__init__.py",start:44641973,end:44642100},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/imp/gltf2_io_binary.py",start:44642100,end:44651081},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/imp/gltf2_io_binary_meshopt.py",start:44651081,end:44655783},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/imp/gltf2_io_gltf.py",start:44655783,end:44663540},{filename:"/bw/scripts/addons_core/io_scene_gltf2/io/imp/user_extensions.py",start:44663540,end:44664655},{filename:"/bw/scripts/addons_core/node_wrangler/README.md",start:44664655,end:44664702},{filename:"/bw/scripts/addons_core/node_wrangler/__init__.py",start:44664702,end:44666716},{filename:"/bw/scripts/addons_core/node_wrangler/interface.py",start:44666716,end:44683281},{filename:"/bw/scripts/addons_core/node_wrangler/operators/__init__.py",start:44683281,end:44685266},{filename:"/bw/scripts/addons_core/node_wrangler/operators/add_image_sequence.py",start:44685266,end:44690442},{filename:"/bw/scripts/addons_core/node_wrangler/operators/add_principled_setup.py",start:44690442,end:44703834},{filename:"/bw/scripts/addons_core/node_wrangler/operators/add_reroutes.py",start:44703834,end:44708083},{filename:"/bw/scripts/addons_core/node_wrangler/operators/add_texture_setup.py",start:44708083,end:44712043},{filename:"/bw/scripts/addons_core/node_wrangler/operators/align_selected.py",start:44712043,end:44716211},{filename:"/bw/scripts/addons_core/node_wrangler/operators/batch_change.py",start:44716211,end:44719853},{filename:"/bw/scripts/addons_core/node_wrangler/operators/center_selected.py",start:44719853,end:44721730},{filename:"/bw/scripts/addons_core/node_wrangler/operators/change_factor.py",start:44721730,end:44723212},{filename:"/bw/scripts/addons_core/node_wrangler/operators/copy_label.py",start:44723212,end:44725371},{filename:"/bw/scripts/addons_core/node_wrangler/operators/copy_settings.py",start:44725371,end:44729557},{filename:"/bw/scripts/addons_core/node_wrangler/operators/delete_unused.py",start:44729557,end:44734206},{filename:"/bw/scripts/addons_core/node_wrangler/operators/detach_outputs.py",start:44734206,end:44735395},{filename:"/bw/scripts/addons_core/node_wrangler/operators/labels_clear.py",start:44735395,end:44736486},{filename:"/bw/scripts/addons_core/node_wrangler/operators/labels_modify.py",start:44736486,end:44737897},{filename:"/bw/scripts/addons_core/node_wrangler/operators/lazy_connect.py",start:44737897,end:44745923},{filename:"/bw/scripts/addons_core/node_wrangler/operators/lazy_mix.py",start:44745923,end:44748990},{filename:"/bw/scripts/addons_core/node_wrangler/operators/link_active_to_selected.py",start:44748990,end:44753412},{filename:"/bw/scripts/addons_core/node_wrangler/operators/link_to_output.py",start:44753412,end:44756919},{filename:"/bw/scripts/addons_core/node_wrangler/operators/merge_selected.py",start:44756919,end:44778798},{filename:"/bw/scripts/addons_core/node_wrangler/operators/reload_images.py",start:44778798,end:44782370},{filename:"/bw/scripts/addons_core/node_wrangler/operators/reset_backdrop.py",start:44782370,end:44783243},{filename:"/bw/scripts/addons_core/node_wrangler/operators/reset_selected.py",start:44783243,end:44787738},{filename:"/bw/scripts/addons_core/node_wrangler/operators/save_viewer_image.py",start:44787738,end:44790402},{filename:"/bw/scripts/addons_core/node_wrangler/operators/select_hierarchy.py",start:44790402,end:44792186},{filename:"/bw/scripts/addons_core/node_wrangler/operators/swap_links.py",start:44792186,end:44797553},{filename:"/bw/scripts/addons_core/node_wrangler/preferences.py",start:44797553,end:44819004},{filename:"/bw/scripts/addons_core/node_wrangler/utils/constants.py",start:44819004,end:44824489},{filename:"/bw/scripts/addons_core/node_wrangler/utils/draw.py",start:44824489,end:44832653},{filename:"/bw/scripts/addons_core/node_wrangler/utils/nodes.py",start:44832653,end:44842473},{filename:"/bw/scripts/addons_core/node_wrangler/utils/paths.py",start:44842473,end:44847731},{filename:"/bw/scripts/addons_core/node_wrangler/utils/paths_test.py",start:44847731,end:44858367},{filename:"/bw/scripts/addons_core/pose_library/__init__.py",start:44858367,end:44859839},{filename:"/bw/scripts/addons_core/pose_library/asset_browser.py",start:44859839,end:44862773},{filename:"/bw/scripts/addons_core/pose_library/functions.py",start:44862773,end:44864304},{filename:"/bw/scripts/addons_core/pose_library/gui.py",start:44864304,end:44871585},{filename:"/bw/scripts/addons_core/pose_library/keymaps.py",start:44871585,end:44872395},{filename:"/bw/scripts/addons_core/pose_library/operators.py",start:44872395,end:44883195},{filename:"/bw/scripts/addons_core/pose_library/pose_creation.py",start:44883195,end:44898181},{filename:"/bw/scripts/addons_core/pose_library/pose_usage.py",start:44898181,end:44900364},{filename:"/bw/scripts/addons_core/rigify/__init__.py",start:44900364,end:44932427},{filename:"/bw/scripts/addons_core/rigify/base_generate.py",start:44932427,end:44951025},{filename:"/bw/scripts/addons_core/rigify/base_rig.py",start:44951025,end:44961943},{filename:"/bw/scripts/addons_core/rigify/feature_set_list.py",start:44961943,end:44973647},{filename:"/bw/scripts/addons_core/rigify/feature_sets/__init__.py",start:44973647,end:44974075},{filename:"/bw/scripts/addons_core/rigify/generate.py",start:44974075,end:45000647},{filename:"/bw/scripts/addons_core/rigify/metarig_menu.py",start:45000647,end:45008808},{filename:"/bw/scripts/addons_core/rigify/metarigs/Animals/__init__.py",start:45008808,end:45008808},{filename:"/bw/scripts/addons_core/rigify/metarigs/Animals/bird.py",start:45008808,end:45064720},{filename:"/bw/scripts/addons_core/rigify/metarigs/Animals/cat.py",start:45064720,end:45179355},{filename:"/bw/scripts/addons_core/rigify/metarigs/Animals/horse.py",start:45179355,end:45233575},{filename:"/bw/scripts/addons_core/rigify/metarigs/Animals/shark.py",start:45233575,end:45261595},{filename:"/bw/scripts/addons_core/rigify/metarigs/Animals/wolf.py",start:45261595,end:45385809},{filename:"/bw/scripts/addons_core/rigify/metarigs/Basic/basic_human.py",start:45385809,end:45410267},{filename:"/bw/scripts/addons_core/rigify/metarigs/Basic/basic_quadruped.py",start:45410267,end:45438479},{filename:"/bw/scripts/addons_core/rigify/metarigs/__init__.py",start:45438479,end:45438479},{filename:"/bw/scripts/addons_core/rigify/metarigs/human.py",start:45438479,end:45543200},{filename:"/bw/scripts/addons_core/rigify/operators/__init__.py",start:45543200,end:45543946},{filename:"/bw/scripts/addons_core/rigify/operators/action_layers.py",start:45543946,end:45568626},{filename:"/bw/scripts/addons_core/rigify/operators/copy_mirror_parameters.py",start:45568626,end:45580278},{filename:"/bw/scripts/addons_core/rigify/operators/generic_ui_list.py",start:45580278,end:45586123},{filename:"/bw/scripts/addons_core/rigify/operators/upgrade_face.py",start:45586123,end:45604186},{filename:"/bw/scripts/addons_core/rigify/rig_lists.py",start:45604186,end:45607840},{filename:"/bw/scripts/addons_core/rigify/rig_ui_template.py",start:45607840,end:45655875},{filename:"/bw/scripts/addons_core/rigify/rigs/__init__.py",start:45655875,end:45655875},{filename:"/bw/scripts/addons_core/rigify/rigs/basic/__init__.py",start:45655875,end:45655875},{filename:"/bw/scripts/addons_core/rigify/rigs/basic/copy_chain.py",start:45655875,end:45660809},{filename:"/bw/scripts/addons_core/rigify/rigs/basic/pivot.py",start:45660809,end:45668530},{filename:"/bw/scripts/addons_core/rigify/rigs/basic/raw_copy.py",start:45668530,end:45676580},{filename:"/bw/scripts/addons_core/rigify/rigs/basic/super_copy.py",start:45676580,end:45682607},{filename:"/bw/scripts/addons_core/rigify/rigs/chain_rigs.py",start:45682607,end:45695400},{filename:"/bw/scripts/addons_core/rigify/rigs/experimental/__init__.py",start:45695400,end:45695400},{filename:"/bw/scripts/addons_core/rigify/rigs/experimental/super_chain.py",start:45695400,end:45724913},{filename:"/bw/scripts/addons_core/rigify/rigs/face/basic_tongue.py",start:45724913,end:45730901},{filename:"/bw/scripts/addons_core/rigify/rigs/face/skin_eye.py",start:45730901,end:45761710},{filename:"/bw/scripts/addons_core/rigify/rigs/face/skin_jaw.py",start:45761710,end:45793900},{filename:"/bw/scripts/addons_core/rigify/rigs/faces/__init__.py",start:45793900,end:45793900},{filename:"/bw/scripts/addons_core/rigify/rigs/faces/super_face.py",start:45793900,end:45885350},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/__init__.py",start:45885350,end:45885350},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/arm.py",start:45885350,end:45892207},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/front_paw.py",start:45892207,end:45901788},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/leg.py",start:45901788,end:45929545},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/limb_rigs.py",start:45929545,end:45979453},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/limb_utils.py",start:45979453,end:45981511},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/paw.py",start:45981511,end:45993619},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/rear_paw.py",start:45993619,end:45999633},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/simple_tentacle.py",start:45999633,end:46004939},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/spline_tentacle.py",start:46004939,end:46065765},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/super_finger.py",start:46065765,end:46090805},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/super_limb.py",start:46090805,end:46091734},{filename:"/bw/scripts/addons_core/rigify/rigs/limbs/super_palm.py",start:46091734,end:46106599},{filename:"/bw/scripts/addons_core/rigify/rigs/skin/anchor.py",start:46106599,end:46110801},{filename:"/bw/scripts/addons_core/rigify/rigs/skin/basic_chain.py",start:46110801,end:46132922},{filename:"/bw/scripts/addons_core/rigify/rigs/skin/glue.py",start:46132922,end:46144196},{filename:"/bw/scripts/addons_core/rigify/rigs/skin/skin_nodes.py",start:46144196,end:46166043},{filename:"/bw/scripts/addons_core/rigify/rigs/skin/skin_parents.py",start:46166043,end:46184841},{filename:"/bw/scripts/addons_core/rigify/rigs/skin/skin_rigs.py",start:46184841,end:46193722},{filename:"/bw/scripts/addons_core/rigify/rigs/skin/stretchy_chain.py",start:46193722,end:46209818},{filename:"/bw/scripts/addons_core/rigify/rigs/skin/transform/basic.py",start:46209818,end:46214281},{filename:"/bw/scripts/addons_core/rigify/rigs/spines/__init__.py",start:46214281,end:46214281},{filename:"/bw/scripts/addons_core/rigify/rigs/spines/basic_spine.py",start:46214281,end:46227944},{filename:"/bw/scripts/addons_core/rigify/rigs/spines/basic_tail.py",start:46227944,end:46235786},{filename:"/bw/scripts/addons_core/rigify/rigs/spines/spine_rigs.py",start:46235786,end:46245840},{filename:"/bw/scripts/addons_core/rigify/rigs/spines/super_head.py",start:46245840,end:46260132},{filename:"/bw/scripts/addons_core/rigify/rigs/spines/super_spine.py",start:46260132,end:46264699},{filename:"/bw/scripts/addons_core/rigify/rigs/utils.py",start:46264699,end:46271030},{filename:"/bw/scripts/addons_core/rigify/rigs/widgets.py",start:46271030,end:46307505},{filename:"/bw/scripts/addons_core/rigify/rot_mode.py",start:46307505,end:46317589},{filename:"/bw/scripts/addons_core/rigify/ui.py",start:46317589,end:46383577},{filename:"/bw/scripts/addons_core/rigify/utils/__init__.py",start:46383577,end:46385520},{filename:"/bw/scripts/addons_core/rigify/utils/action_layers.py",start:46385520,end:46401502},{filename:"/bw/scripts/addons_core/rigify/utils/animation.py",start:46401502,end:46439161},{filename:"/bw/scripts/addons_core/rigify/utils/bones.py",start:46439161,end:46464353},{filename:"/bw/scripts/addons_core/rigify/utils/collections.py",start:46464353,end:46467430},{filename:"/bw/scripts/addons_core/rigify/utils/components.py",start:46467430,end:46470996},{filename:"/bw/scripts/addons_core/rigify/utils/errors.py",start:46470996,end:46471671},{filename:"/bw/scripts/addons_core/rigify/utils/layers.py",start:46471671,end:46484208},{filename:"/bw/scripts/addons_core/rigify/utils/mechanism.py",start:46484208,end:46507895},{filename:"/bw/scripts/addons_core/rigify/utils/metaclass.py",start:46507895,end:46515042},{filename:"/bw/scripts/addons_core/rigify/utils/misc.py",start:46515042,end:46531320},{filename:"/bw/scripts/addons_core/rigify/utils/naming.py",start:46531320,end:46541217},{filename:"/bw/scripts/addons_core/rigify/utils/node_merger.py",start:46541217,end:46552669},{filename:"/bw/scripts/addons_core/rigify/utils/objects.py",start:46552669,end:46559922},{filename:"/bw/scripts/addons_core/rigify/utils/rig.py",start:46559922,end:46587358},{filename:"/bw/scripts/addons_core/rigify/utils/switch_parent.py",start:46587358,end:46608518},{filename:"/bw/scripts/addons_core/rigify/utils/widgets.py",start:46608518,end:46625766},{filename:"/bw/scripts/addons_core/rigify/utils/widgets_basic.py",start:46625766,end:46644384},{filename:"/bw/scripts/addons_core/rigify/utils/widgets_special.py",start:46644384,end:46664010},{filename:"/bw/scripts/addons_core/viewport_vr_preview/__init__.py",start:46664010,end:46665521},{filename:"/bw/scripts/addons_core/viewport_vr_preview/action_map.py",start:46665521,end:46671595},{filename:"/bw/scripts/addons_core/viewport_vr_preview/action_map_io.py",start:46671595,end:46684004},{filename:"/bw/scripts/addons_core/viewport_vr_preview/configs/default.py",start:46684004,end:46812129},{filename:"/bw/scripts/addons_core/viewport_vr_preview/defaults.py",start:46812129,end:46917881},{filename:"/bw/scripts/addons_core/viewport_vr_preview/gui.py",start:46917881,end:46931579},{filename:"/bw/scripts/addons_core/viewport_vr_preview/operators.py",start:46931579,end:46971894},{filename:"/bw/scripts/addons_core/viewport_vr_preview/preferences.py",start:46971894,end:46973699},{filename:"/bw/scripts/addons_core/viewport_vr_preview/properties.py",start:46973699,end:46982948},{filename:"/bw/scripts/addons_core/viewport_vr_preview/versioning.py",start:46982948,end:46984196},{filename:"/bw/scripts/freestyle/modules/freestyle/__init__.py",start:46984196,end:46984645},{filename:"/bw/scripts/freestyle/modules/freestyle/chainingiterators.py",start:46984645,end:47009612},{filename:"/bw/scripts/freestyle/modules/freestyle/functions.py",start:47009612,end:47019057},{filename:"/bw/scripts/freestyle/modules/freestyle/predicates.py",start:47019057,end:47039535},{filename:"/bw/scripts/freestyle/modules/freestyle/shaders.py",start:47039535,end:47084685},{filename:"/bw/scripts/freestyle/modules/freestyle/types.py",start:47084685,end:47088100},{filename:"/bw/scripts/freestyle/modules/freestyle/utils.py",start:47088100,end:47108346},{filename:"/bw/scripts/freestyle/modules/parameter_editor.py",start:47108346,end:47170378},{filename:"/bw/scripts/freestyle/styles/anisotropic_diffusion.py",start:47170378,end:47171456},{filename:"/bw/scripts/freestyle/styles/apriori_and_causal_density.py",start:47171456,end:47172550},{filename:"/bw/scripts/freestyle/styles/apriori_density.py",start:47172550,end:47173553},{filename:"/bw/scripts/freestyle/styles/backbone_stretcher.py",start:47173553,end:47174336},{filename:"/bw/scripts/freestyle/styles/blueprint_circles.py",start:47174336,end:47175454},{filename:"/bw/scripts/freestyle/styles/blueprint_ellipses.py",start:47175454,end:47176574},{filename:"/bw/scripts/freestyle/styles/blueprint_squares.py",start:47176574,end:47177727},{filename:"/bw/scripts/freestyle/styles/cartoon.py",start:47177727,end:47178652},{filename:"/bw/scripts/freestyle/styles/contour.py",start:47178652,end:47179624},{filename:"/bw/scripts/freestyle/styles/curvature2d.py",start:47179624,end:47180469},{filename:"/bw/scripts/freestyle/styles/external_contour.py",start:47180469,end:47181355},{filename:"/bw/scripts/freestyle/styles/external_contour_sketchy.py",start:47181355,end:47182525},{filename:"/bw/scripts/freestyle/styles/external_contour_smooth.py",start:47182525,end:47183547},{filename:"/bw/scripts/freestyle/styles/haloing.py",start:47183547,end:47184822},{filename:"/bw/scripts/freestyle/styles/ignore_small_occlusions.py",start:47184822,end:47185708},{filename:"/bw/scripts/freestyle/styles/invisible_lines.py",start:47185708,end:47186576},{filename:"/bw/scripts/freestyle/styles/japanese_bigbrush.py",start:47186576,end:47188343},{filename:"/bw/scripts/freestyle/styles/long_anisotropically_dense.py",start:47188343,end:47190720},{filename:"/bw/scripts/freestyle/styles/multiple_parameterization.py",start:47190720,end:47192171},{filename:"/bw/scripts/freestyle/styles/nature.py",start:47192171,end:47193238},{filename:"/bw/scripts/freestyle/styles/near_lines.py",start:47193238,end:47194153},{filename:"/bw/scripts/freestyle/styles/occluded_by_specific_object.py",start:47194153,end:47195169},{filename:"/bw/scripts/freestyle/styles/polygonalize.py",start:47195169,end:47196049},{filename:"/bw/scripts/freestyle/styles/qi0.py",start:47196049,end:47196938},{filename:"/bw/scripts/freestyle/styles/qi0_not_external_contour.py",start:47196938,end:47198065},{filename:"/bw/scripts/freestyle/styles/qi1.py",start:47198065,end:47199022},{filename:"/bw/scripts/freestyle/styles/qi2.py",start:47199022,end:47199982},{filename:"/bw/scripts/freestyle/styles/sequentialsplit_sketchy.py",start:47199982,end:47201164},{filename:"/bw/scripts/freestyle/styles/sketchy_multiple_parameterization.py",start:47201164,end:47202329},{filename:"/bw/scripts/freestyle/styles/sketchy_topology_broken.py",start:47202329,end:47203579},{filename:"/bw/scripts/freestyle/styles/sketchy_topology_preserved.py",start:47203579,end:47204656},{filename:"/bw/scripts/freestyle/styles/split_at_highest_2d_curvatures.py",start:47204656,end:47205753},{filename:"/bw/scripts/freestyle/styles/split_at_tvertices.py",start:47205753,end:47206778},{filename:"/bw/scripts/freestyle/styles/suggestive.py",start:47206778,end:47207740},{filename:"/bw/scripts/freestyle/styles/thickness_fof_depth_discontinuity.py",start:47207740,end:47208686},{filename:"/bw/scripts/freestyle/styles/tipremover.py",start:47208686,end:47209541},{filename:"/bw/scripts/freestyle/styles/tvertex_remover.py",start:47209541,end:47210415},{filename:"/bw/scripts/freestyle/styles/uniformpruning_zsort.py",start:47210415,end:47211358},{filename:"/bw/scripts/modules/_animsys_refactor.py",start:47211358,end:47220565},{filename:"/bw/scripts/modules/_bl_console_utils/__init__.py",start:47220565,end:47220726},{filename:"/bw/scripts/modules/_bl_console_utils/autocomplete/__init__.py",start:47220726,end:47220912},{filename:"/bw/scripts/modules/_bl_console_utils/autocomplete/complete_calltip.py",start:47220912,end:47225670},{filename:"/bw/scripts/modules/_bl_console_utils/autocomplete/complete_import.py",start:47225670,end:47231167},{filename:"/bw/scripts/modules/_bl_console_utils/autocomplete/complete_namespace.py",start:47231167,end:47237022},{filename:"/bw/scripts/modules/_bl_console_utils/autocomplete/intellisense.py",start:47237022,end:47241628},{filename:"/bw/scripts/modules/_bl_i18n_utils/__init__.py",start:47241628,end:47241771},{filename:"/bw/scripts/modules/_bl_i18n_utils/bl_extract_messages.py",start:47241771,end:47300974},{filename:"/bw/scripts/modules/_bl_i18n_utils/merge_po.py",start:47300974,end:47306456},{filename:"/bw/scripts/modules/_bl_i18n_utils/settings.py",start:47306456,end:47334990},{filename:"/bw/scripts/modules/_bl_i18n_utils/settings_user.py",start:47334990,end:47335116},{filename:"/bw/scripts/modules/_bl_i18n_utils/utils.py",start:47335116,end:47408125},{filename:"/bw/scripts/modules/_bl_i18n_utils/utils_cli.py",start:47408125,end:47413444},{filename:"/bw/scripts/modules/_bl_i18n_utils/utils_languages_menu.py",start:47413444,end:47416015},{filename:"/bw/scripts/modules/_bl_i18n_utils/utils_rtl.py",start:47416015,end:47424009},{filename:"/bw/scripts/modules/_bl_i18n_utils/utils_spell_check.py",start:47424009,end:47446368},{filename:"/bw/scripts/modules/_bl_previews_utils/bl_previews_render.py",start:47446368,end:47468354},{filename:"/bw/scripts/modules/_bl_rna_utils/__init__.py",start:47468354,end:47468354},{filename:"/bw/scripts/modules/_bl_rna_utils/data_path.py",start:47468354,end:47470590},{filename:"/bw/scripts/modules/_bl_text_utils/__init__.py",start:47470590,end:47470590},{filename:"/bw/scripts/modules/_bl_text_utils/external_editor.py",start:47470590,end:47472271},{filename:"/bw/scripts/modules/_bl_ui_utils/__init__.py",start:47472271,end:47472271},{filename:"/bw/scripts/modules/_bl_ui_utils/layout.py",start:47472271,end:47472820},{filename:"/bw/scripts/modules/_blendfile_header.py",start:47472820,end:47479774},{filename:"/bw/scripts/modules/_bpy_internal/__init__.py",start:47479774,end:47479872},{filename:"/bw/scripts/modules/_bpy_internal/addons/__init__.py",start:47479872,end:47479965},{filename:"/bw/scripts/modules/_bpy_internal/addons/cli.py",start:47479965,end:47481133},{filename:"/bw/scripts/modules/_bpy_internal/assets/__init__.py",start:47481133,end:47481226},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/__init__.py",start:47481226,end:47481944},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/asset_downloader.py",start:47481944,end:47507559},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/blender_asset_library_openapi.py",start:47507559,end:47515862},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/blender_asset_library_openapi.yaml",start:47515862,end:47530418},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/cli.py",start:47530418,end:47532520},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/cli_listing_downloader.py",start:47532520,end:47534994},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/cli_listing_generator.py",start:47534994,end:47544375},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/cli_listing_generator_asset_finder.py",start:47544375,end:47553876},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/cli_listing_generator_pagination.py",start:47553876,end:47555781},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/hashing.py",start:47555781,end:47557959},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/http_metadata.py",start:47557959,end:47561564},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/json_parsing.py",start:47561564,end:47563851},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/listing_asset_catalogs.py",start:47563851,end:47569229},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/listing_common.py",start:47569229,end:47570424},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/listing_downloader.py",start:47570424,end:47613640},{filename:"/bw/scripts/modules/_bpy_internal/assets/remote_library/sync_mutex.py",start:47613640,end:47617784},{filename:"/bw/scripts/modules/_bpy_internal/disk_file_hash_service/__init__.py",start:47617784,end:47622837},{filename:"/bw/scripts/modules/_bpy_internal/disk_file_hash_service/backend_sqlite.py",start:47622837,end:47633356},{filename:"/bw/scripts/modules/_bpy_internal/disk_file_hash_service/hash_service.py",start:47633356,end:47640041},{filename:"/bw/scripts/modules/_bpy_internal/disk_file_hash_service/types.py",start:47640041,end:47641670},{filename:"/bw/scripts/modules/_bpy_internal/extensions/__init__.py",start:47641670,end:47641763},{filename:"/bw/scripts/modules/_bpy_internal/extensions/junction_module.py",start:47641763,end:47648210},{filename:"/bw/scripts/modules/_bpy_internal/extensions/permissions.py",start:47648210,end:47648634},{filename:"/bw/scripts/modules/_bpy_internal/extensions/stale_file_manager.py",start:47648634,end:47663903},{filename:"/bw/scripts/modules/_bpy_internal/extensions/tags.py",start:47663903,end:47665035},{filename:"/bw/scripts/modules/_bpy_internal/extensions/wheel_manager.py",start:47665035,end:47689594},{filename:"/bw/scripts/modules/_bpy_internal/filesystem/__init__.py",start:47689594,end:47689594},{filename:"/bw/scripts/modules/_bpy_internal/filesystem/locking.py",start:47689594,end:47694413},{filename:"/bw/scripts/modules/_bpy_internal/grease_pencil/__init__.py",start:47694413,end:47694506},{filename:"/bw/scripts/modules/_bpy_internal/grease_pencil/stroke.py",start:47694506,end:47710262},{filename:"/bw/scripts/modules/_bpy_internal/http/__init__.py",start:47710262,end:47710355},{filename:"/bw/scripts/modules/_bpy_internal/http/downloader.py",start:47710355,end:47773791},{filename:"/bw/scripts/modules/_bpy_internal/platform/__init__.py",start:47773791,end:47773884},{filename:"/bw/scripts/modules/_bpy_internal/platform/freedesktop.py",start:47773884,end:47793954},{filename:"/bw/scripts/modules/_bpy_internal/system_info/text_generate_runtime.py",start:47793954,end:47803301},{filename:"/bw/scripts/modules/_bpy_internal/system_info/url_prefill_runtime.py",start:47803301,end:47805017},{filename:"/bw/scripts/modules/_bpy_internal/system_info/url_prefill_startup.py",start:47805017,end:47808611},{filename:"/bw/scripts/modules/_bpy_restrict_state.py",start:47808611,end:47809607},{filename:"/bw/scripts/modules/_bpy_types.py",start:47809607,end:47864670},{filename:"/bw/scripts/modules/_console_python.py",start:47864670,end:47875492},{filename:"/bw/scripts/modules/_console_shell.py",start:47875492,end:47876851},{filename:"/bw/scripts/modules/_graphviz_export.py",start:47876851,end:47883222},{filename:"/bw/scripts/modules/_keyingsets_utils.py",start:47883222,end:47894234},{filename:"/bw/scripts/modules/_rna_info.py",start:47894234,end:47932709},{filename:"/bw/scripts/modules/_rna_manual_reference.py",start:47932709,end:48518932},{filename:"/bw/scripts/modules/_rna_xml.py",start:48518932,end:48534998},{filename:"/bw/scripts/modules/addon_utils.py",start:48534998,end:48612500},{filename:"/bw/scripts/modules/bl_app_override/__init__.py",start:48612500,end:48619805},{filename:"/bw/scripts/modules/bl_app_override/helpers.py",start:48619805,end:48623897},{filename:"/bw/scripts/modules/bl_app_template_utils.py",start:48623897,end:48629067},{filename:"/bw/scripts/modules/bl_keymap_utils/__init__.py",start:48629067,end:48629241},{filename:"/bw/scripts/modules/bl_keymap_utils/io.py",start:48629241,end:48640131},{filename:"/bw/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py",start:48640131,end:48655161},{filename:"/bw/scripts/modules/bl_keymap_utils/keymap_hierarchy.py",start:48655161,end:48664825},{filename:"/bw/scripts/modules/bl_keymap_utils/platform_helpers.py",start:48664825,end:48666843},{filename:"/bw/scripts/modules/bl_keymap_utils/versioning.py",start:48666843,end:48683488},{filename:"/bw/scripts/modules/blend_render_info.py",start:48683488,end:48687319},{filename:"/bw/scripts/modules/bpy/__init__.py",start:48687319,end:48689017},{filename:"/bw/scripts/modules/bpy/ops.py",start:48689017,end:48690810},{filename:"/bw/scripts/modules/bpy/path.py",start:48690810,end:48705321},{filename:"/bw/scripts/modules/bpy/utils/__init__.py",start:48705321,end:48752777},{filename:"/bw/scripts/modules/bpy/utils/previews.py",start:48752777,end:48756363},{filename:"/bw/scripts/modules/bpy/utils/toolsystem.py",start:48756363,end:48756631},{filename:"/bw/scripts/modules/bpy_extras/__init__.py",start:48756631,end:48756992},{filename:"/bw/scripts/modules/bpy_extras/anim_utils.py",start:48756992,end:48799015},{filename:"/bw/scripts/modules/bpy_extras/asset_utils.py",start:48799015,end:48801620},{filename:"/bw/scripts/modules/bpy_extras/bmesh_utils.py",start:48801620,end:48803259},{filename:"/bw/scripts/modules/bpy_extras/id_map_utils.py",start:48803259,end:48804990},{filename:"/bw/scripts/modules/bpy_extras/image_utils.py",start:48804990,end:48811546},{filename:"/bw/scripts/modules/bpy_extras/io_utils.py",start:48811546,end:48837743},{filename:"/bw/scripts/modules/bpy_extras/keyconfig_utils.py",start:48837743,end:48843212},{filename:"/bw/scripts/modules/bpy_extras/mesh_utils.py",start:48843212,end:48858625},{filename:"/bw/scripts/modules/bpy_extras/node_shader_utils.py",start:48858625,end:48889023},{filename:"/bw/scripts/modules/bpy_extras/node_utils.py",start:48889023,end:48892362},{filename:"/bw/scripts/modules/bpy_extras/object_utils.py",start:48892362,end:48902919},{filename:"/bw/scripts/modules/bpy_extras/view3d_utils.py",start:48902919,end:48909180},{filename:"/bw/scripts/modules/bpy_extras/wm_utils/progress_report.py",start:48909180,end:48914695},{filename:"/bw/scripts/modules/gpu_extras/__init__.py",start:48914695,end:48914836},{filename:"/bw/scripts/modules/gpu_extras/batch.py",start:48914836,end:48917707},{filename:"/bw/scripts/modules/gpu_extras/presets.py",start:48917707,end:48921537},{filename:"/bw/scripts/modules/nodeitems_utils.py",start:48921537,end:48926691},{filename:"/bw/scripts/modules/rna_keymap_ui.py",start:48926691,end:48947409},{filename:"/bw/scripts/modules/rna_prop_ui.py",start:48947409,end:48956039},{filename:"/bw/scripts/presets/camera/1_inch.py",start:48956039,end:48956174},{filename:"/bw/scripts/presets/camera/1_slash_1.8_inch.py",start:48956174,end:48956309},{filename:"/bw/scripts/presets/camera/1_slash_2.3_inch.py",start:48956309,end:48956444},{filename:"/bw/scripts/presets/camera/1_slash_2.5_inch.py",start:48956444,end:48956579},{filename:"/bw/scripts/presets/camera/1_slash_2.7_inch.py",start:48956579,end:48956714},{filename:"/bw/scripts/presets/camera/1_slash_3.2_inch.py",start:48956714,end:48956849},{filename:"/bw/scripts/presets/camera/2_slash_3_inch.py",start:48956849,end:48956982},{filename:"/bw/scripts/presets/camera/APS-C.py",start:48956982,end:48957117},{filename:"/bw/scripts/presets/camera/APS-C_(Canon).py",start:48957117,end:48957254},{filename:"/bw/scripts/presets/camera/APS-H_(Canon).py",start:48957254,end:48957391},{filename:"/bw/scripts/presets/camera/Analog_16mm.py",start:48957391,end:48957527},{filename:"/bw/scripts/presets/camera/Analog_35mm.py",start:48957527,end:48957658},{filename:"/bw/scripts/presets/camera/Analog_65mm.py",start:48957658,end:48957795},{filename:"/bw/scripts/presets/camera/Analog_IMAX.py",start:48957795,end:48957932},{filename:"/bw/scripts/presets/camera/Analog_Super_16.py",start:48957932,end:48958068},{filename:"/bw/scripts/presets/camera/Analog_Super_35.py",start:48958068,end:48958205},{filename:"/bw/scripts/presets/camera/Arri_Alexa_65.py",start:48958205,end:48958342},{filename:"/bw/scripts/presets/camera/Arri_Alexa_LF.py",start:48958342,end:48958479},{filename:"/bw/scripts/presets/camera/Arri_Alexa_Mini_&_SXT.py",start:48958479,end:48958616},{filename:"/bw/scripts/presets/camera/Blackmagic_Pocket_&_Studio.py",start:48958616,end:48958752},{filename:"/bw/scripts/presets/camera/Blackmagic_Pocket_4K.py",start:48958752,end:48958889},{filename:"/bw/scripts/presets/camera/Blackmagic_Pocket_6k.py",start:48958889,end:48959026},{filename:"/bw/scripts/presets/camera/Blackmagic_URSA_4.6K.py",start:48959026,end:48959163},{filename:"/bw/scripts/presets/camera/Foveon_(Sigma).py",start:48959163,end:48959300},{filename:"/bw/scripts/presets/camera/Fullframe.py",start:48959300,end:48959431},{filename:"/bw/scripts/presets/camera/MFT.py",start:48959431,end:48959566},{filename:"/bw/scripts/presets/camera/Medium-format_(Hasselblad).py",start:48959566,end:48959697},{filename:"/bw/scripts/presets/camera/RED_Dragon_5K.py",start:48959697,end:48959833},{filename:"/bw/scripts/presets/camera/RED_Dragon_6K.py",start:48959833,end:48959970},{filename:"/bw/scripts/presets/camera/RED_Helium_8K.py",start:48959970,end:48960107},{filename:"/bw/scripts/presets/camera/RED_Monstro_8K.py",start:48960107,end:48960244},{filename:"/bw/scripts/presets/cloth/Cotton.py",start:48960244,end:48961533},{filename:"/bw/scripts/presets/cloth/Denim.py",start:48961533,end:48962815},{filename:"/bw/scripts/presets/cloth/Leather.py",start:48962815,end:48964101},{filename:"/bw/scripts/presets/cloth/Rubber.py",start:48964101,end:48965382},{filename:"/bw/scripts/presets/cloth/Silk.py",start:48965382,end:48966663},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_A.py",start:48966663,end:48966809},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_B.py",start:48966809,end:48966956},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_C.py",start:48966956,end:48967103},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_D50.py",start:48967103,end:48967249},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_D55.py",start:48967249,end:48967396},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_D65.py",start:48967396,end:48967542},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_D75.py",start:48967542,end:48967688},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_D93.py",start:48967688,end:48967834},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_E.py",start:48967834,end:48967982},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F1.py",start:48967982,end:48968129},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F10.py",start:48968129,end:48968276},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F11.py",start:48968276,end:48968422},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F12.py",start:48968422,end:48968568},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F2.py",start:48968568,end:48968714},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F3.py",start:48968714,end:48968860},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F4.py",start:48968860,end:48969007},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F5.py",start:48969007,end:48969154},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F6.py",start:48969154,end:48969301},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F7.py",start:48969301,end:48969448},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F8.py",start:48969448,end:48969594},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_F9.py",start:48969594,end:48969740},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_LED-B1.py",start:48969740,end:48969887},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_LED-B2.py",start:48969887,end:48970034},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_LED-B3.py",start:48970034,end:48970181},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_LED-B4.py",start:48970181,end:48970327},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_LED-B5.py",start:48970327,end:48970473},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_LED-BH1.py",start:48970473,end:48970620},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_LED-RGB1.py",start:48970620,end:48970767},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_LED-V1.py",start:48970767,end:48970914},{filename:"/bw/scripts/presets/color_management/white_balance/Illuminant_LED-V2.py",start:48970914,end:48971060},{filename:"/bw/scripts/presets/cycles/integrator/Default.py",start:48971060,end:48971423},{filename:"/bw/scripts/presets/cycles/integrator/Direct_Light.py",start:48971423,end:48971786},{filename:"/bw/scripts/presets/cycles/integrator/Fast_Global_Illumination.py",start:48971786,end:48972148},{filename:"/bw/scripts/presets/cycles/integrator/Full_Global_Illumination.py",start:48972148,end:48972515},{filename:"/bw/scripts/presets/cycles/integrator/Limited_Global_Illumination.py",start:48972515,end:48972878},{filename:"/bw/scripts/presets/cycles/performance/Default.py",start:48972878,end:48973188},{filename:"/bw/scripts/presets/cycles/performance/Faster_Render.py",start:48973188,end:48973496},{filename:"/bw/scripts/presets/cycles/performance/Lower_Memory.py",start:48973496,end:48973804},{filename:"/bw/scripts/presets/cycles/sampling/Final.py",start:48973804,end:48974154},{filename:"/bw/scripts/presets/cycles/sampling/Preview.py",start:48974154,end:48974503},{filename:"/bw/scripts/presets/cycles/viewport_sampling/Final.py",start:48974503,end:48974893},{filename:"/bw/scripts/presets/cycles/viewport_sampling/Preview.py",start:48974893,end:48975260},{filename:"/bw/scripts/presets/eevee/raytracing/Default.py",start:48975260,end:48975920},{filename:"/bw/scripts/presets/ffmpeg/DVD_(note_colon__this_changes_render_resolution).py",start:48975920,end:48976805},{filename:"/bw/scripts/presets/ffmpeg/H264_in_MP4.py",start:48976805,end:48977433},{filename:"/bw/scripts/presets/ffmpeg/H264_in_Matroska.py",start:48977433,end:48978002},{filename:"/bw/scripts/presets/ffmpeg/H264_in_Matroska_for_scrubbing.py",start:48978002,end:48978479},{filename:"/bw/scripts/presets/ffmpeg/Ogg_Theora.py",start:48978479,end:48979107},{filename:"/bw/scripts/presets/ffmpeg/WebM_(VP9+Opus).py",start:48979107,end:48979345},{filename:"/bw/scripts/presets/ffmpeg/Xvid.py",start:48979345,end:48979972},{filename:"/bw/scripts/presets/fluid/Honey.py",start:48979972,end:48980095},{filename:"/bw/scripts/presets/fluid/Oil.py",start:48980095,end:48980218},{filename:"/bw/scripts/presets/fluid/Water.py",start:48980218,end:48980341},{filename:"/bw/scripts/presets/framerate/12.py",start:48980341,end:48980424},{filename:"/bw/scripts/presets/framerate/120.py",start:48980424,end:48980508},{filename:"/bw/scripts/presets/framerate/23.98.py",start:48980508,end:48980595},{filename:"/bw/scripts/presets/framerate/24.py",start:48980595,end:48980678},{filename:"/bw/scripts/presets/framerate/240.py",start:48980678,end:48980762},{filename:"/bw/scripts/presets/framerate/25.py",start:48980762,end:48980845},{filename:"/bw/scripts/presets/framerate/29.97.py",start:48980845,end:48980932},{filename:"/bw/scripts/presets/framerate/30.py",start:48980932,end:48981015},{filename:"/bw/scripts/presets/framerate/50.py",start:48981015,end:48981098},{filename:"/bw/scripts/presets/framerate/59.94.py",start:48981098,end:48981185},{filename:"/bw/scripts/presets/framerate/6.py",start:48981185,end:48981267},{filename:"/bw/scripts/presets/framerate/60.py",start:48981267,end:48981350},{filename:"/bw/scripts/presets/framerate/8.py",start:48981350,end:48981432},{filename:"/bw/scripts/presets/framerate/Custom.py",start:48981432,end:48981443},{filename:"/bw/scripts/presets/gpencil_material/Fill_Only.py",start:48981443,end:48982114},{filename:"/bw/scripts/presets/gpencil_material/Stroke_Only.py",start:48982114,end:48982785},{filename:"/bw/scripts/presets/gpencil_material/Stroke_and_Fill.py",start:48982785,end:48983456},{filename:"/bw/scripts/presets/hair_dynamics/Default.py",start:48983456,end:48984018},{filename:"/bw/scripts/presets/interface_theme/Blender_Dark.xml",start:48984018,end:48984083},{filename:"/bw/scripts/presets/interface_theme/Blender_Light.xml",start:48984083,end:49018173},{filename:"/bw/scripts/presets/keyconfig/Blender.py",start:49018173,end:49031387},{filename:"/bw/scripts/presets/keyconfig/Blender_27x.py",start:49031387,end:49034392},{filename:"/bw/scripts/presets/keyconfig/Industry_Compatible.py",start:49034392,end:49035515},{filename:"/bw/scripts/presets/keyconfig/keymap_data/blender_default.py",start:49035515,end:49481164},{filename:"/bw/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py",start:49481164,end:49693783},{filename:"/bw/scripts/presets/pixel_density/Custom.py",start:49693783,end:49693794},{filename:"/bw/scripts/presets/pixel_density/Pixels_slash_Centimeter.py",start:49693794,end:49693846},{filename:"/bw/scripts/presets/pixel_density/Pixels_slash_Inch.py",start:49693846,end:49693900},{filename:"/bw/scripts/presets/pixel_density/Pixels_slash_Meter.py",start:49693900,end:49693951},{filename:"/bw/scripts/presets/render/4K_DCI_2160p.py",start:49693951,end:49694265},{filename:"/bw/scripts/presets/render/4K_UHDTV_2160p.py",start:49694265,end:49694579},{filename:"/bw/scripts/presets/render/4K_UW_1600p.py",start:49694579,end:49694893},{filename:"/bw/scripts/presets/render/DVCPRO_HD_1080p.py",start:49694893,end:49695207},{filename:"/bw/scripts/presets/render/DVCPRO_HD_720p.py",start:49695207,end:49695519},{filename:"/bw/scripts/presets/render/HDTV_1080p.py",start:49695519,end:49695833},{filename:"/bw/scripts/presets/render/HDTV_720p.py",start:49695833,end:49696146},{filename:"/bw/scripts/presets/render/HDV_1080p.py",start:49696146,end:49696464},{filename:"/bw/scripts/presets/render/HDV_NTSC_1080p.py",start:49696464,end:49696782},{filename:"/bw/scripts/presets/render/HDV_PAL_1080p.py",start:49696782,end:49697096},{filename:"/bw/scripts/presets/render/TV_NTSC_16_colon_9.py",start:49697096,end:49697414},{filename:"/bw/scripts/presets/render/TV_NTSC_4_colon_3.py",start:49697414,end:49697732},{filename:"/bw/scripts/presets/render/TV_PAL_16_colon_9.py",start:49697732,end:49698046},{filename:"/bw/scripts/presets/render/TV_PAL_4_colon_3.py",start:49698046,end:49698360},{filename:"/bw/scripts/presets/safe_areas/14_colon_9_in_16_colon_9.py",start:49698360,end:49698558},{filename:"/bw/scripts/presets/safe_areas/16_colon_9.py",start:49698558,end:49698753},{filename:"/bw/scripts/presets/safe_areas/4_colon_3_in_16_colon_9.py",start:49698753,end:49698953},{filename:"/bw/scripts/presets/sequencer/text_style/Corner_Title.py",start:49698953,end:49699494},{filename:"/bw/scripts/presets/sequencer/text_style/Main_Title.py",start:49699494,end:49700038},{filename:"/bw/scripts/presets/sequencer/text_style/Subtitle.py",start:49700038,end:49700583},{filename:"/bw/scripts/presets/text_editor/Internal.py",start:49700583,end:49700701},{filename:"/bw/scripts/presets/text_editor/Visual_Studio_Code.py",start:49700701,end:49700974},{filename:"/bw/scripts/presets/tracking_camera/1_inch.py",start:49700974,end:49701118},{filename:"/bw/scripts/presets/tracking_camera/1_slash_1.8_inch.py",start:49701118,end:49701262},{filename:"/bw/scripts/presets/tracking_camera/1_slash_2.3_inch.py",start:49701262,end:49701406},{filename:"/bw/scripts/presets/tracking_camera/1_slash_2.5_inch.py",start:49701406,end:49701550},{filename:"/bw/scripts/presets/tracking_camera/1_slash_2.7_inch.py",start:49701550,end:49701694},{filename:"/bw/scripts/presets/tracking_camera/1_slash_3.2_inch.py",start:49701694,end:49701838},{filename:"/bw/scripts/presets/tracking_camera/2_slash_3_inch.py",start:49701838,end:49701981},{filename:"/bw/scripts/presets/tracking_camera/APS-C.py",start:49701981,end:49702125},{filename:"/bw/scripts/presets/tracking_camera/APS-C_(Canon).py",start:49702125,end:49702270},{filename:"/bw/scripts/presets/tracking_camera/APS-H_(Canon).py",start:49702270,end:49702415},{filename:"/bw/scripts/presets/tracking_camera/Analog_16mm.py",start:49702415,end:49702560},{filename:"/bw/scripts/presets/tracking_camera/Analog_35mm.py",start:49702560,end:49702702},{filename:"/bw/scripts/presets/tracking_camera/Analog_65mm.py",start:49702702,end:49702847},{filename:"/bw/scripts/presets/tracking_camera/Analog_IMAX.py",start:49702847,end:49702992},{filename:"/bw/scripts/presets/tracking_camera/Analog_Super_16.py",start:49702992,end:49703137},{filename:"/bw/scripts/presets/tracking_camera/Analog_Super_35.py",start:49703137,end:49703282},{filename:"/bw/scripts/presets/tracking_camera/Arri_Alexa_65.py",start:49703282,end:49703427},{filename:"/bw/scripts/presets/tracking_camera/Arri_Alexa_LF.py",start:49703427,end:49703572},{filename:"/bw/scripts/presets/tracking_camera/Arri_Alexa_Mini_&_SXT.py",start:49703572,end:49703717},{filename:"/bw/scripts/presets/tracking_camera/Blackmagic_Pocket_&_Studio.py",start:49703717,end:49703862},{filename:"/bw/scripts/presets/tracking_camera/Blackmagic_Pocket_4K.py",start:49703862,end:49704007},{filename:"/bw/scripts/presets/tracking_camera/Blackmagic_Pocket_6k.py",start:49704007,end:49704152},{filename:"/bw/scripts/presets/tracking_camera/Blackmagic_URSA_4.6K.py",start:49704152,end:49704297},{filename:"/bw/scripts/presets/tracking_camera/Foveon_(Sigma).py",start:49704297,end:49704442},{filename:"/bw/scripts/presets/tracking_camera/Fullframe.py",start:49704442,end:49704584},{filename:"/bw/scripts/presets/tracking_camera/MFT.py",start:49704584,end:49704728},{filename:"/bw/scripts/presets/tracking_camera/Medium-format_(Hasselblad).py",start:49704728,end:49704870},{filename:"/bw/scripts/presets/tracking_camera/RED_Dragon_5K.py",start:49704870,end:49705015},{filename:"/bw/scripts/presets/tracking_camera/RED_Dragon_6K.py",start:49705015,end:49705160},{filename:"/bw/scripts/presets/tracking_camera/RED_Helium_8K.py",start:49705160,end:49705305},{filename:"/bw/scripts/presets/tracking_camera/RED_Monstro_8K.py",start:49705305,end:49705450},{filename:"/bw/scripts/presets/tracking_settings/Blurry_Footage.py",start:49705450,end:49706037},{filename:"/bw/scripts/presets/tracking_settings/Default.py",start:49706037,end:49706623},{filename:"/bw/scripts/presets/tracking_settings/Fast_Motion.py",start:49706623,end:49707213},{filename:"/bw/scripts/presets/tracking_settings/Planar.py",start:49707213,end:49707808},{filename:"/bw/scripts/presets/tracking_track_color/Default.py",start:49707808,end:49707939},{filename:"/bw/scripts/presets/tracking_track_color/Far_Plane.py",start:49707939,end:49708069},{filename:"/bw/scripts/presets/tracking_track_color/Near_Plane.py",start:49708069,end:49708199},{filename:"/bw/scripts/presets/tracking_track_color/Object.py",start:49708199,end:49708329},{filename:"/bw/scripts/site/sitecustomize.py",start:49708329,end:49710857},{filename:"/bw/scripts/startup/bl_app_templates_system/2D_Animation/__init__.py",start:49710857,end:49712481},{filename:"/bw/scripts/startup/bl_app_templates_system/2D_Animation/startup.blend",start:49712481,end:49712612},{filename:"/bw/scripts/startup/bl_app_templates_system/Sculpting/__init__.py",start:49712612,end:49713486},{filename:"/bw/scripts/startup/bl_app_templates_system/Sculpting/startup.blend",start:49713486,end:49713616},{filename:"/bw/scripts/startup/bl_app_templates_system/Storyboarding/__init__.py",start:49713616,end:49715069},{filename:"/bw/scripts/startup/bl_app_templates_system/Storyboarding/startup.blend",start:49715069,end:49715200},{filename:"/bw/scripts/startup/bl_app_templates_system/VFX/startup.blend",start:49715200,end:49715330},{filename:"/bw/scripts/startup/bl_app_templates_system/Video_Editing/__init__.py",start:49715330,end:49716757},{filename:"/bw/scripts/startup/bl_app_templates_system/Video_Editing/startup.blend",start:49716757,end:49716887},{filename:"/bw/scripts/startup/bl_operators/__init__.py",start:49716887,end:49718780},{filename:"/bw/scripts/startup/bl_operators/add_mesh_torus.py",start:49718780,end:49726145},{filename:"/bw/scripts/startup/bl_operators/anim.py",start:49726145,end:49760257},{filename:"/bw/scripts/startup/bl_operators/assets.py",start:49760257,end:49766247},{filename:"/bw/scripts/startup/bl_operators/bmesh/find_adjacent.py",start:49766247,end:49777073},{filename:"/bw/scripts/startup/bl_operators/bone_selection_sets.py",start:49777073,end:49790959},{filename:"/bw/scripts/startup/bl_operators/clip.py",start:49790959,end:49823874},{filename:"/bw/scripts/startup/bl_operators/connect_to_output.py",start:49823874,end:49839751},{filename:"/bw/scripts/startup/bl_operators/console.py",start:49839751,end:49843913},{filename:"/bw/scripts/startup/bl_operators/constraint.py",start:49843913,end:49847437},{filename:"/bw/scripts/startup/bl_operators/copy_global_transform.py",start:49847437,end:49877217},{filename:"/bw/scripts/startup/bl_operators/file.py",start:49877217,end:49887325},{filename:"/bw/scripts/startup/bl_operators/freestyle.py",start:49887325,end:49896076},{filename:"/bw/scripts/startup/bl_operators/geometry_nodes.py",start:49896076,end:49909952},{filename:"/bw/scripts/startup/bl_operators/grease_pencil.py",start:49909952,end:49911754},{filename:"/bw/scripts/startup/bl_operators/image.py",start:49911754,end:49921725},{filename:"/bw/scripts/startup/bl_operators/image_as_planes.py",start:49921725,end:49963715},{filename:"/bw/scripts/startup/bl_operators/mesh.py",start:49963715,end:49965251},{filename:"/bw/scripts/startup/bl_operators/node.py",start:49965251,end:50021219},{filename:"/bw/scripts/startup/bl_operators/node_editor/node_functions.py",start:50021219,end:50024203},{filename:"/bw/scripts/startup/bl_operators/object.py",start:50024203,end:50060037},{filename:"/bw/scripts/startup/bl_operators/object_align.py",start:50060037,end:50071547},{filename:"/bw/scripts/startup/bl_operators/object_quick_effects.py",start:50071547,end:50094779},{filename:"/bw/scripts/startup/bl_operators/object_randomize_transform.py",start:50094779,end:50099859},{filename:"/bw/scripts/startup/bl_operators/presets.py",start:50099859,end:50135989},{filename:"/bw/scripts/startup/bl_operators/render.py",start:50135989,end:50136526},{filename:"/bw/scripts/startup/bl_operators/rigidbody.py",start:50136526,end:50147504},{filename:"/bw/scripts/startup/bl_operators/screen_play_rendered_anim.py",start:50147504,end:50158096},{filename:"/bw/scripts/startup/bl_operators/sequencer.py",start:50158096,end:50173507},{filename:"/bw/scripts/startup/bl_operators/spreadsheet.py",start:50173507,end:50174569},{filename:"/bw/scripts/startup/bl_operators/userpref.py",start:50174569,end:50216456},{filename:"/bw/scripts/startup/bl_operators/uvcalc_follow_active.py",start:50216456,end:50226381},{filename:"/bw/scripts/startup/bl_operators/uvcalc_lightmap.py",start:50226381,end:50249344},{filename:"/bw/scripts/startup/bl_operators/uvcalc_transform.py",start:50249344,end:50265904},{filename:"/bw/scripts/startup/bl_operators/vertexpaint_dirt.py",start:50265904,end:50271775},{filename:"/bw/scripts/startup/bl_operators/view3d.py",start:50271775,end:50282187},{filename:"/bw/scripts/startup/bl_operators/wm.py",start:50282187,end:50416332},{filename:"/bw/scripts/startup/bl_operators/world.py",start:50416332,end:50421918},{filename:"/bw/scripts/startup/bl_ui/__init__.py",start:50421918,end:50432077},{filename:"/bw/scripts/startup/bl_ui/anim.py",start:50432077,end:50433687},{filename:"/bw/scripts/startup/bl_ui/asset_shelf.py",start:50433687,end:50435333},{filename:"/bw/scripts/startup/bl_ui/generic_ui_list.py",start:50435333,end:50442849},{filename:"/bw/scripts/startup/bl_ui/node_add_menu.py",start:50442849,end:50463110},{filename:"/bw/scripts/startup/bl_ui/node_add_menu_compositor.py",start:50463110,end:50486379},{filename:"/bw/scripts/startup/bl_ui/node_add_menu_geometry.py",start:50486379,end:50538117},{filename:"/bw/scripts/startup/bl_ui/node_add_menu_shader.py",start:50538117,end:50558855},{filename:"/bw/scripts/startup/bl_ui/node_add_menu_texture.py",start:50558855,end:50564672},{filename:"/bw/scripts/startup/bl_ui/properties_animviz.py",start:50564672,end:50568950},{filename:"/bw/scripts/startup/bl_ui/properties_collection.py",start:50568950,end:50573933},{filename:"/bw/scripts/startup/bl_ui/properties_constraint.py",start:50573933,end:50633076},{filename:"/bw/scripts/startup/bl_ui/properties_data_armature.py",start:50633076,end:50647423},{filename:"/bw/scripts/startup/bl_ui/properties_data_bone.py",start:50647423,end:50668988},{filename:"/bw/scripts/startup/bl_ui/properties_data_camera.py",start:50668988,end:50688682},{filename:"/bw/scripts/startup/bl_ui/properties_data_curve.py",start:50688682,end:50702366},{filename:"/bw/scripts/startup/bl_ui/properties_data_curves.py",start:50702366,end:50708604},{filename:"/bw/scripts/startup/bl_ui/properties_data_empty.py",start:50708604,end:50711369},{filename:"/bw/scripts/startup/bl_ui/properties_data_grease_pencil.py",start:50711369,end:50729626},{filename:"/bw/scripts/startup/bl_ui/properties_data_lattice.py",start:50729626,end:50732379},{filename:"/bw/scripts/startup/bl_ui/properties_data_light.py",start:50732379,end:50741874},{filename:"/bw/scripts/startup/bl_ui/properties_data_lightprobe.py",start:50741874,end:50754470},{filename:"/bw/scripts/startup/bl_ui/properties_data_mesh.py",start:50754470,end:50779347},{filename:"/bw/scripts/startup/bl_ui/properties_data_metaball.py",start:50779347,end:50782972},{filename:"/bw/scripts/startup/bl_ui/properties_data_modifier.py",start:50782972,end:50796901},{filename:"/bw/scripts/startup/bl_ui/properties_data_pointcloud.py",start:50796901,end:50802104},{filename:"/bw/scripts/startup/bl_ui/properties_data_shaderfx.py",start:50802104,end:50802809},{filename:"/bw/scripts/startup/bl_ui/properties_data_speaker.py",start:50802809,end:50806795},{filename:"/bw/scripts/startup/bl_ui/properties_data_volume.py",start:50806795,end:50813215},{filename:"/bw/scripts/startup/bl_ui/properties_freestyle.py",start:50813215,end:50860474},{filename:"/bw/scripts/startup/bl_ui/properties_grease_pencil_common.py",start:50860474,end:50884817},{filename:"/bw/scripts/startup/bl_ui/properties_mask_common.py",start:50884817,end:50899582},{filename:"/bw/scripts/startup/bl_ui/properties_material.py",start:50899582,end:50913467},{filename:"/bw/scripts/startup/bl_ui/properties_material_gpencil.py",start:50913467,end:50924531},{filename:"/bw/scripts/startup/bl_ui/properties_object.py",start:50924531,end:50946547},{filename:"/bw/scripts/startup/bl_ui/properties_output.py",start:50946547,end:50970375},{filename:"/bw/scripts/startup/bl_ui/properties_paint_common.py",start:50970375,end:51044518},{filename:"/bw/scripts/startup/bl_ui/properties_particle.py",start:51044518,end:51116553},{filename:"/bw/scripts/startup/bl_ui/properties_physics_cloth.py",start:51116553,end:51132270},{filename:"/bw/scripts/startup/bl_ui/properties_physics_common.py",start:51132270,end:51143893},{filename:"/bw/scripts/startup/bl_ui/properties_physics_dynamicpaint.py",start:51143893,end:51174284},{filename:"/bw/scripts/startup/bl_ui/properties_physics_field.py",start:51174284,end:51187999},{filename:"/bw/scripts/startup/bl_ui/properties_physics_fluid.py",start:51187999,end:51244322},{filename:"/bw/scripts/startup/bl_ui/properties_physics_geometry_nodes.py",start:51244322,end:51246220},{filename:"/bw/scripts/startup/bl_ui/properties_physics_rigidbody.py",start:51246220,end:51256699},{filename:"/bw/scripts/startup/bl_ui/properties_physics_rigidbody_constraint.py",start:51256699,end:51273633},{filename:"/bw/scripts/startup/bl_ui/properties_physics_softbody.py",start:51273633,end:51286891},{filename:"/bw/scripts/startup/bl_ui/properties_render.py",start:51286891,end:51323924},{filename:"/bw/scripts/startup/bl_ui/properties_scene.py",start:51323924,end:51338718},{filename:"/bw/scripts/startup/bl_ui/properties_strip.py",start:51338718,end:51376328},{filename:"/bw/scripts/startup/bl_ui/properties_strip_modifier.py",start:51376328,end:51377238},{filename:"/bw/scripts/startup/bl_ui/properties_texture.py",start:51377238,end:51406068},{filename:"/bw/scripts/startup/bl_ui/properties_view_layer.py",start:51406068,end:51417721},{filename:"/bw/scripts/startup/bl_ui/properties_workspace.py",start:51417721,end:51424607},{filename:"/bw/scripts/startup/bl_ui/properties_world.py",start:51424607,end:51432395},{filename:"/bw/scripts/startup/bl_ui/space_clip.py",start:51432395,end:51497250},{filename:"/bw/scripts/startup/bl_ui/space_console.py",start:51497250,end:51501881},{filename:"/bw/scripts/startup/bl_ui/space_dopesheet.py",start:51501881,end:51539456},{filename:"/bw/scripts/startup/bl_ui/space_filebrowser.py",start:51539456,end:51573144},{filename:"/bw/scripts/startup/bl_ui/space_graph.py",start:51573144,end:51594468},{filename:"/bw/scripts/startup/bl_ui/space_image.py",start:51594468,end:51651913},{filename:"/bw/scripts/startup/bl_ui/space_info.py",start:51651913,end:51655139},{filename:"/bw/scripts/startup/bl_ui/space_nla.py",start:51655139,end:51668254},{filename:"/bw/scripts/startup/bl_ui/space_node.py",start:51668254,end:51711745},{filename:"/bw/scripts/startup/bl_ui/space_outliner.py",start:51711745,end:51731821},{filename:"/bw/scripts/startup/bl_ui/space_properties.py",start:51731821,end:51738936},{filename:"/bw/scripts/startup/bl_ui/space_sequencer.py",start:51738936,end:51812984},{filename:"/bw/scripts/startup/bl_ui/space_spreadsheet.py",start:51812984,end:51815342},{filename:"/bw/scripts/startup/bl_ui/space_statusbar.py",start:51815342,end:51816163},{filename:"/bw/scripts/startup/bl_ui/space_text.py",start:51816163,end:51829751},{filename:"/bw/scripts/startup/bl_ui/space_time.py",start:51829751,end:51842836},{filename:"/bw/scripts/startup/bl_ui/space_toolsystem_common.py",start:51842836,end:51888407},{filename:"/bw/scripts/startup/bl_ui/space_toolsystem_toolbar.py",start:51888407,end:52024119},{filename:"/bw/scripts/startup/bl_ui/space_topbar.py",start:52024119,end:52053312},{filename:"/bw/scripts/startup/bl_ui/space_userpref.py",start:52053312,end:52161950},{filename:"/bw/scripts/startup/bl_ui/space_view3d.py",start:52161950,end:52490041},{filename:"/bw/scripts/startup/bl_ui/space_view3d_sidebar.py",start:52490041,end:52497412},{filename:"/bw/scripts/startup/bl_ui/space_view3d_toolbar.py",start:52497412,end:52580847},{filename:"/bw/scripts/startup/bl_ui/utils.py",start:52580847,end:52581779},{filename:"/bw/scripts/startup/keyingsets_builtins.py",start:52581779,end:52605321},{filename:"/bw/scripts/startup/nodeitems_builtins.py",start:52605321,end:52606671},{filename:"/bw/scripts/templates_osl/advanced_camera.osl",start:52606671,end:52609189},{filename:"/bw/scripts/templates_osl/basic_camera.osl",start:52609189,end:52609779},{filename:"/bw/scripts/templates_osl/basic_shader.osl",start:52609779,end:52610027},{filename:"/bw/scripts/templates_osl/cubemap_camera.osl",start:52610027,end:52611178},{filename:"/bw/scripts/templates_osl/empty_shader.osl",start:52611178,end:52611199},{filename:"/bw/scripts/templates_osl/gabor_noise.osl",start:52611199,end:52611644},{filename:"/bw/scripts/templates_osl/lyapunov_texture.osl",start:52611644,end:52615534},{filename:"/bw/scripts/templates_osl/noise.osl",start:52615534,end:52616056},{filename:"/bw/scripts/templates_osl/ramp_closure.osl",start:52616056,end:52616585},{filename:"/bw/scripts/templates_py/Gizmo/custom_geometry.py",start:52616585,end:52622448},{filename:"/bw/scripts/templates_py/Gizmo/operator.py",start:52622448,end:52628812},{filename:"/bw/scripts/templates_py/Gizmo/operator_target.py",start:52628812,end:52630157},{filename:"/bw/scripts/templates_py/Gizmo/simple_2d.py",start:52630157,end:52631815},{filename:"/bw/scripts/templates_py/Gizmo/simple_3d.py",start:52631815,end:52633081},{filename:"/bw/scripts/templates_py/Operator/file_export.py",start:52633081,end:52635403},{filename:"/bw/scripts/templates_py/Operator/file_import.py",start:52635403,end:52637743},{filename:"/bw/scripts/templates_py/Operator/mesh_add.py",start:52637743,end:52640353},{filename:"/bw/scripts/templates_py/Operator/mesh_uv.py",start:52640353,end:52641686},{filename:"/bw/scripts/templates_py/Operator/modal.py",start:52641686,end:52643388},{filename:"/bw/scripts/templates_py/Operator/modal_draw.py",start:52643388,end:52646101},{filename:"/bw/scripts/templates_py/Operator/modal_timer.py",start:52646101,end:52647927},{filename:"/bw/scripts/templates_py/Operator/modal_view3d.py",start:52647927,end:52650246},{filename:"/bw/scripts/templates_py/Operator/modal_view3d_raycast.py",start:52650246,end:52654282},{filename:"/bw/scripts/templates_py/Operator/node.py",start:52654282,end:52656022},{filename:"/bw/scripts/templates_py/Operator/simple.py",start:52656022,end:52656986},{filename:"/bw/scripts/templates_py/UI/asset_shelf.py",start:52656986,end:52657678},{filename:"/bw/scripts/templates_py/UI/list.py",start:52657678,end:52659645},{filename:"/bw/scripts/templates_py/UI/list_generic.py",start:52659645,end:52660680},{filename:"/bw/scripts/templates_py/UI/list_simple.py",start:52660680,end:52663828},{filename:"/bw/scripts/templates_py/UI/menu.py",start:52663828,end:52665041},{filename:"/bw/scripts/templates_py/UI/menu_simple.py",start:52665041,end:52665612},{filename:"/bw/scripts/templates_py/UI/panel.py",start:52665612,end:52667453},{filename:"/bw/scripts/templates_py/UI/panel_simple.py",start:52667453,end:52668290},{filename:"/bw/scripts/templates_py/UI/pie_menu.py",start:52668290,end:52669059},{filename:"/bw/scripts/templates_py/UI/previews_custom_icon.py",start:52669059,end:52671413},{filename:"/bw/scripts/templates_py/UI/previews_dynamic_enum.py",start:52671413,end:52675619},{filename:"/bw/scripts/templates_py/UI/tool_simple.py",start:52675619,end:52678473},{filename:"/bw/scripts/templates_py/addon_add_object.py",start:52678473,end:52680761},{filename:"/bw/scripts/templates_py/background_job.py",start:52680761,end:52684705},{filename:"/bw/scripts/templates_py/batch_export.py",start:52684705,end:52685623},{filename:"/bw/scripts/templates_py/bmesh_simple.py",start:52685623,end:52686063},{filename:"/bw/scripts/templates_py/bmesh_simple_editmode.py",start:52686063,end:52686503},{filename:"/bw/scripts/templates_py/builtin_keyingset.py",start:52686503,end:52687507},{filename:"/bw/scripts/templates_py/custom_nodes.py",start:52687507,end:52693248},{filename:"/bw/scripts/templates_py/driver_functions.py",start:52693248,end:52694141},{filename:"/bw/scripts/templates_py/external_script_stub.py",start:52694141,end:52694580},{filename:"/bw/scripts/templates_py/image_processing.py",start:52694580,end:52695669},{filename:"/bw/scripts/templates_toml/blender_manifest.toml",start:52695669,end:52698568}],remote_package_size:52698568})})();var programArgs=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};if(typeof __filename!="undefined"){_scriptName=__filename}else if(ENVIRONMENT_IS_WORKER){_scriptName=self.location.href}var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var readAsync,readBinary;if(ENVIRONMENT_IS_NODE){var fs=require("node:fs");scriptDirectory=__dirname+"/";readBinary=filename=>{filename=isFileURI(filename)?new URL(filename):filename;var ret=fs.readFileSync(filename);return ret};readAsync=async(filename,binary=true)=>{filename=isFileURI(filename)?new URL(filename):filename;var ret=fs.readFileSync(filename,binary?undefined:"utf8");return ret};if(process.argv.length>1){thisProgram=process.argv[1].replace(/\\/g,"/")}programArgs=process.argv.slice(2);quit_=(status,toThrow)=>{process.exitCode=status;throw toThrow}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){try{scriptDirectory=new URL(".",_scriptName).href}catch{}if(!ENVIRONMENT_IS_NODE){if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=async url=>{var response=await fetch(url,{credentials:"same-origin"});if(response.ok){return response.arrayBuffer()}throw new Error(response.status+" : "+response.url)}}}else{}var defaultPrint=console.log.bind(console);var defaultPrintErr=console.error.bind(console);if(ENVIRONMENT_IS_NODE){var utils=require("node:util");var stringify=a=>typeof a=="object"?utils.inspect(a):a;defaultPrint=(...args)=>fs.writeSync(1,args.map(stringify).join(" ")+"\n");defaultPrintErr=(...args)=>fs.writeSync(2,args.map(stringify).join(" ")+"\n")}var out=defaultPrint;var err=defaultPrintErr;var wasmBinary;var wasmModule;var ABORT=false;var EXITSTATUS;var isFileURI=filename=>filename.startsWith("file://");class EmscriptenEH{}class EmscriptenSjLj extends EmscriptenEH{}class CppException extends EmscriptenEH{constructor(excPtr){super();this.excPtr=excPtr}}function growMemViews(){if(wasmMemory.buffer!=HEAP8.buffer){updateMemoryViews()}}if(ENVIRONMENT_IS_NODE&&ENVIRONMENT_IS_PTHREAD){globalThis.self=globalThis;var parentPort=worker_threads.parentPort;if(!globalThis.postMessage){parentPort.on("message",msg=>globalThis.onmessage?.({data:msg}));globalThis.postMessage=msg=>parentPort.postMessage(msg)}process.on("uncaughtException",err=>{postMessage({cmd:8,error:err});process.exit(1)})}var startWorker;if(ENVIRONMENT_IS_PTHREAD){var initializedJS=false;self.onunhandledrejection=e=>{throw e.reason||e};function handleMessage(e){try{var msgData=e.data;var cmd=msgData.cmd;if(cmd==1){let messageQueue=[];self.onmessage=e=>messageQueue.push(e);startWorker=()=>{postMessage({cmd:3});for(let msg of messageQueue){handleMessage(msg)}self.onmessage=handleMessage};for(const handler of msgData.handlers){if(!Module[handler]||Module[handler].proxy){Module[handler]=(...args)=>{postMessage({cmd:9,handler,args})};if(handler=="print")out=Module[handler];if(handler=="printErr")err=Module[handler]}}wasmMemory=msgData.wasmMemory;updateMemoryViews();wasmModule=msgData.wasmModule;createWasm();run();startWorker()}else if(cmd==2){establishStackSpace(msgData.pthread_ptr);__emscripten_thread_init(msgData.pthread_ptr,0,0,1,0,0);PThread.threadInitTLS();__emscripten_thread_mailbox_await(msgData.pthread_ptr);if(!initializedJS){initializedJS=true}try{invokeEntryPoint(msgData.start_routine,msgData.arg)}catch(ex){if(ex!="unwind"){throw ex}}}else if(cmd==4){if(initializedJS){checkMailbox()}}else if(cmd){err(`worker: received unknown command ${cmd}`);err(msgData)}}catch(ex){if(runtimeInitialized)__emscripten_thread_crashed();throw ex}}self.onmessage=handleMessage}var runtimeInitialized=false;var runtimeExited=false;function getMemoryBuffer(){return wasmMemory.buffer}function updateMemoryViews(){if(HEAP8?.buffer?.growable)return;var b=getMemoryBuffer();HEAP8=new Int8Array(b);HEAP16=new Int16Array(b);Module["HEAPU8"]=HEAPU8=new Uint8Array(b);HEAPU16=new Uint16Array(b);HEAP32=new Int32Array(b);HEAPU32=new Uint32Array(b);HEAPF64=new Float64Array(b);HEAP64=new BigInt64Array(b)}function initMemory(){if(ENVIRONMENT_IS_PTHREAD){return}{var INITIAL_MEMORY=536870912;wasmMemory=new WebAssembly.Memory({initial:INITIAL_MEMORY/65536,maximum:65536,shared:true})}updateMemoryViews()}function preRun(){var preRun=Module["preRun"];if(preRun){if(typeof preRun=="function")preRun=[preRun];onPreRuns.push(...preRun)}callRuntimeCallbacks(onPreRuns)}function initRuntime(){runtimeInitialized=true;if(ENVIRONMENT_IS_PTHREAD)return;wasmExports["__wasm_call_ctors"]()}function exitRuntime(){___funcs_on_exit();clearTimers();PThread.terminateRuntime();runtimeExited=true}function postRun(){var postRun=Module["postRun"];if(postRun){if(typeof postRun=="function")postRun=[postRun];onPostRuns.push(...postRun)}callRuntimeCallbacks(onPostRuns)}function abort(what){Module["onAbort"]?.(what);what=`Aborted(${what})`;err(what);ABORT=true;what+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(what);throw e}var wasmBinaryFile;function findWasmBinary(){return locateFile("blender_browser.wasm")}function getBinarySync(file){if(readBinary){return readBinary(file)}throw"both async and sync fetching of the wasm failed"}async function getWasmBinary(binaryFile){if(!wasmBinary){try{var response=await readAsync(binaryFile);return new Uint8Array(response)}catch{}}return getBinarySync(binaryFile)}async function instantiateArrayBuffer(binaryFile,imports){try{var binary=await getWasmBinary(binaryFile);var instance=await WebAssembly.instantiate(binary,imports);return instance}catch(reason){err(`failed to asynchronously prepare wasm: ${reason}`);abort(reason)}}async function instantiateAsync(binary,binaryFile,imports){if(!binary&&!ENVIRONMENT_IS_NODE){try{var response=fetch(binaryFile,{credentials:"same-origin"});var instantiationResult=await WebAssembly.instantiateStreaming(response,imports);return instantiationResult}catch(reason){err(`wasm streaming compile failed: ${reason}`);err("falling back to ArrayBuffer instantiation")}}return instantiateArrayBuffer(binaryFile,imports)}function getWasmImports(){assignWasmImports();var imports={env:wasmImports,wasi_snapshot_preview1:wasmImports};return imports}async function createWasm(){function receiveInstance(instance,module){wasmExports=instance.exports;wasmExports=applySignatureConversions(wasmExports);registerTLSInit(wasmExports["_emscripten_tls_init"]);assignWasmExports(wasmExports);wasmModule=module;return wasmExports}function receiveInstantiationResult(result){return receiveInstance(result["instance"],result["module"])}var info=getWasmImports();var instantiateWasm=Module["instantiateWasm"];if(instantiateWasm){return new Promise(resolve=>{instantiateWasm(info,(inst,mod)=>resolve(receiveInstance(inst,mod)))})}if(ENVIRONMENT_IS_PTHREAD){var instance=new WebAssembly.Instance(wasmModule,getWasmImports());return receiveInstance(instance,wasmModule)}wasmBinaryFile??=findWasmBinary();var result=await instantiateAsync(wasmBinary,wasmBinaryFile,info);var exports=receiveInstantiationResult(result);return exports}class ExitStatus{name="ExitStatus";constructor(status){this.message=`Program terminated with exit(${status})`;this.status=status}}var HEAP8;var terminateWorker=worker=>{worker.terminate();worker.onmessage=e=>{}};var cleanupThread=pthread_ptr=>{var worker=PThread.pthreads[pthread_ptr];PThread.returnWorkerToPool(worker)};var callRuntimeCallbacks=callbacks=>{while(callbacks.length>0){callbacks.shift()(Module)}};var onPreRuns=[];var addOnPreRun=cb=>onPreRuns.push(cb);var dependenciesPromise=null;var resolveRunDependencies=async()=>dependenciesPromise;var runDependencies=0;var dependenciesPromiseResolve=null;var removeRunDependency=id=>{runDependencies--;Module["monitorRunDependencies"]?.(runDependencies);if(!runDependencies){dependenciesPromiseResolve()}};var addRunDependency=id=>{if(!runDependencies){dependenciesPromise=new Promise(resolve=>dependenciesPromiseResolve=resolve)}runDependencies++;Module["monitorRunDependencies"]?.(runDependencies)};var spawnThread=threadParams=>{var worker=PThread.getNewWorker();if(!worker){return 6}PThread.pthreads[threadParams.pthread_ptr]=worker;worker.pthread_ptr=threadParams.pthread_ptr;var msg={cmd:2,start_routine:threadParams.startRoutine,arg:threadParams.arg,pthread_ptr:threadParams.pthread_ptr};worker.postMessage(msg,threadParams.transferList);return 0};var runtimeKeepaliveCounter=0;var keepRuntimeAlive=()=>noExitRuntime||runtimeKeepaliveCounter>0;var stackSave=()=>_emscripten_stack_get_current();var stackRestore=val=>__emscripten_stack_restore(val);var stackAlloc=sz=>__emscripten_stack_alloc(sz);var HEAPF64;var HEAP64;var proxyToMainThread=(funcIndex,emAsmAddr,proxyMode,...callArgs)=>{var bufSize=8*callArgs.length*2;var sp=stackSave();var args=stackAlloc(bufSize);var b=args>>>3;for(var arg of callArgs){if(typeof arg=="bigint"){(growMemViews(),HEAP64)[b++>>>0]=1n;(growMemViews(),HEAP64)[b++>>>0]=arg}else{(growMemViews(),HEAP64)[b++>>>0]=0n;(growMemViews(),HEAPF64)[b++>>>0]=arg}}var rtn=__emscripten_run_js_on_main_thread(funcIndex,emAsmAddr,bufSize,args,proxyMode);stackRestore(sp);return rtn};function _proc_exit(code){if(ENVIRONMENT_IS_PTHREAD)return proxyToMainThread(0,0,1,code);EXITSTATUS=code;if(!keepRuntimeAlive()){PThread.terminateAllThreads();Module["onExit"]?.(code);ABORT=true}quit_(code,new ExitStatus(code))}var runtimeKeepalivePop=()=>{runtimeKeepaliveCounter-=1};function exitOnMainThread(returnCode){if(ENVIRONMENT_IS_PTHREAD)return proxyToMainThread(1,0,0,returnCode);runtimeKeepalivePop();_exit(returnCode)}var exitJS=(status,implicit)=>{EXITSTATUS=status;if(ENVIRONMENT_IS_PTHREAD){exitOnMainThread(status);throw"unwind"}if(!keepRuntimeAlive()){exitRuntime()}_proc_exit(status)};var _exit=exitJS;var waitAsyncPolyfilled=!Atomics.waitAsync||globalThis.navigator?.userAgent&&Number((navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./)||[])[2])<91;var HEAP32;var PThread={unusedWorkers:[],tlsInitFunctions:[],pthreads:{},init(){if(!ENVIRONMENT_IS_PTHREAD){PThread.initMainThread()}},initMainThread(){var pthreadPoolSize=12;while(pthreadPoolSize--){PThread.allocateUnusedWorker()}addOnPreRun(async()=>{var pthreadPoolReady=PThread.loadWasmModuleToAllWorkers();addRunDependency("loading-workers");await pthreadPoolReady;removeRunDependency("loading-workers")})},terminateAllThreads:()=>{for(var worker of Object.values(PThread.pthreads)){terminateWorker(worker)}for(var worker of PThread.unusedWorkers){terminateWorker(worker)}PThread.unusedWorkers=[];PThread.pthreads={}},terminateRuntime:()=>{PThread.terminateAllThreads();var pthread_ptr=_pthread_self();___set_thread_state(0,0,0,1);if(!waitAsyncPolyfilled){Atomics.notify((growMemViews(),HEAP32),pthread_ptr>>>2)}},returnWorkerToPool:worker=>{var pthread_ptr=worker.pthread_ptr;delete PThread.pthreads[pthread_ptr];PThread.unusedWorkers.push(worker);worker.pthread_ptr=0;if(ENVIRONMENT_IS_NODE){worker.unref()}__emscripten_thread_free_data(pthread_ptr)},threadInitTLS(){PThread.tlsInitFunctions.forEach(f=>f())},loadWasmModuleToWorker:worker=>new Promise(onFinishedLoading=>{worker.onmessage=e=>{var d=e.data;var cmd=d.cmd;if(d.targetThread&&d.targetThread!=_pthread_self()){var targetWorker=PThread.pthreads[d.targetThread];targetWorker?.postMessage(d);return}if(d==="setimmediate"||d==="_si"){worker.postMessage(d);return}switch(cmd){case 4:checkMailbox();break;case 5:spawnThread(d);break;case 6:callUserCallback(()=>cleanupThread(d.thread));break;case 3:if(ENVIRONMENT_IS_NODE&&!worker.strongref){worker.unref()}onFinishedLoading(worker);break;case 8:worker.onerror(d.error);break;case 9:Module[d.handler](...d.args);break;default:if(cmd)err(`worker sent an unknown command ${cmd}`)}};worker.onerror=e=>{var message="worker sent an error!";err(`${message} ${e.filename}:${e.lineno}: ${e.message}`);throw e};if(ENVIRONMENT_IS_NODE){worker.on("message",data=>worker.onmessage({data}));worker.on("error",e=>worker.onerror(e))}var handlers=[];var knownHandlers=["onExit","onAbort","print","printErr"];for(var handler of knownHandlers){if(Module.propertyIsEnumerable(handler)){handlers.push(handler)}}worker.postMessage({cmd:1,handlers,wasmMemory,wasmModule})}),async loadWasmModuleToAllWorkers(){if(ENVIRONMENT_IS_PTHREAD){return}let pthreadPoolReady=Promise.all(PThread.unusedWorkers.map(PThread.loadWasmModuleToWorker));return pthreadPoolReady},allocateUnusedWorker(){var worker;var pthreadMainJs=_scriptName;if(Module["mainScriptUrlOrBlob"]){pthreadMainJs=Module["mainScriptUrlOrBlob"];if(typeof pthreadMainJs!="string"){pthreadMainJs=URL.createObjectURL(pthreadMainJs)}}worker=new Worker(pthreadMainJs,{workerData:"em-pthread",trackUnmanagedFds:false,name:"em-pthread"});PThread.unusedWorkers.push(worker);return worker},getNewWorker(){if(PThread.unusedWorkers.length==0){var newWorker=PThread.allocateUnusedWorker();PThread.loadWasmModuleToWorker(newWorker)}return PThread.unusedWorkers.pop()}};var onPostRuns=[];var HEAPU32;function establishStackSpace(pthread_ptr){var stackHigh=(growMemViews(),HEAPU32)[pthread_ptr+48>>>2>>>0];var stackSize=(growMemViews(),HEAPU32)[pthread_ptr+52>>>2>>>0];var stackLow=stackHigh-stackSize;_emscripten_stack_set_limits(stackHigh,stackLow);stackRestore(stackHigh)}var wasmTableMirror=[];var getWasmTableEntry=funcPtr=>{var func=wasmTableMirror[funcPtr];if(!func){wasmTableMirror[funcPtr]=func=wasmTable.get(funcPtr)}return func};var invokeEntryPoint=(ptr,arg)=>{runtimeKeepaliveCounter=0;noExitRuntime=0;var result=getWasmTableEntry(ptr)(arg);function finish(result){if(keepRuntimeAlive()){EXITSTATUS=result;return}__emscripten_thread_exit(result)}finish(result)};var noExitRuntime=false;var registerTLSInit=tlsInitFunc=>PThread.tlsInitFunctions.push(tlsInitFunc);var runtimeKeepalivePush=()=>{runtimeKeepaliveCounter+=1};var wasmMemory;var INT53_MAX=9007199254740992;var INT53_MIN=-9007199254740992;var bigintToI53Checked=num=>num<INT53_MIN||num>INT53_MAX?NaN:Number(num);function ___call_sighandler(fp,sig){fp>>>=0;return getWasmTableEntry(fp)(sig)}var exceptionCaught=[];var uncaughtExceptionCount=0;function ___cxa_begin_catch(ptr){ptr>>>=0;var info=new ExceptionInfo(ptr);if(!info.get_caught()){info.set_caught(true);uncaughtExceptionCount--}info.set_rethrown(false);exceptionCaught.push(info);return ___cxa_get_exception_ptr(ptr)}function ___cxa_current_primary_exception(){if(!exceptionCaught.length){return 0}var info=exceptionCaught[exceptionCaught.length-1];___cxa_increment_exception_refcount(info.excPtr);return info.excPtr}var exceptionLast=null;var ___cxa_end_catch=()=>{_setThrew(0,0);var info=exceptionCaught.pop();___cxa_decrement_exception_refcount(info.excPtr);exceptionLast=null};class ExceptionInfo{constructor(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24}set_type(type){(growMemViews(),HEAPU32)[this.ptr+4>>>2>>>0]=type}get_type(){return(growMemViews(),HEAPU32)[this.ptr+4>>>2>>>0]}set_destructor(destructor){(growMemViews(),HEAPU32)[this.ptr+8>>>2>>>0]=destructor}get_destructor(){return(growMemViews(),HEAPU32)[this.ptr+8>>>2>>>0]}set_caught(caught){caught=caught?1:0;(growMemViews(),HEAP8)[this.ptr+12>>>0]=caught}get_caught(){return(growMemViews(),HEAP8)[this.ptr+12>>>0]!=0}set_rethrown(rethrown){rethrown=rethrown?1:0;(growMemViews(),HEAP8)[this.ptr+13>>>0]=rethrown}get_rethrown(){return(growMemViews(),HEAP8)[this.ptr+13>>>0]!=0}init(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor)}set_adjusted_ptr(adjustedPtr){(growMemViews(),HEAPU32)[this.ptr+16>>>2>>>0]=adjustedPtr}get_adjusted_ptr(){return(growMemViews(),HEAPU32)[this.ptr+16>>>2>>>0]}}var setTempRet0=val=>__emscripten_tempret_set(val);var findMatchingCatch=args=>{var thrown=exceptionLast?.excPtr;if(!thrown){setTempRet0(0);return 0}var info=new ExceptionInfo(thrown);info.set_adjusted_ptr(thrown);var thrownType=info.get_type();if(!thrownType){setTempRet0(0);return thrown}for(var caughtType of args){if(caughtType===0||caughtType===thrownType){break}var adjusted_ptr_addr=info.ptr+16;if(___cxa_can_catch(caughtType,thrownType,adjusted_ptr_addr)){setTempRet0(caughtType);return thrown}}setTempRet0(thrownType);return thrown};function ___cxa_find_matching_catch_2(){return findMatchingCatch([])}function ___cxa_find_matching_catch_3(arg0){arg0>>>=0;return findMatchingCatch([arg0])}function ___cxa_find_matching_catch_4(arg0,arg1){arg0>>>=0;arg1>>>=0;return findMatchingCatch([arg0,arg1])}var ___cxa_rethrow=()=>{if(!exceptionCaught.length){abort("no exception to throw")}var info=exceptionCaught.at(-1);var ptr=info.excPtr;info.set_rethrown(true);info.set_caught(false);uncaughtExceptionCount++;___cxa_increment_exception_refcount(ptr);exceptionLast=new CppException(ptr);throw exceptionLast};function ___cxa_rethrow_primary_exception(ptr){ptr>>>=0;if(!ptr)return;var info=new ExceptionInfo(ptr);info.set_rethrown(true);info.set_caught(false);uncaughtExceptionCount++;___cxa_increment_exception_refcount(ptr);exceptionLast=new CppException(ptr);throw exceptionLast}function ___cxa_throw(ptr,type,destructor){ptr>>>=0;type>>>=0;destructor>>>=0;var info=new ExceptionInfo(ptr);info.init(type,destructor);___cxa_increment_exception_refcount(ptr);exceptionLast=new CppException(ptr);uncaughtExceptionCount++;throw exceptionLast}var ___cxa_uncaught_exceptions=()=>uncaughtExceptionCount;function pthreadCreateProxied(pthread_ptr,attr,startRoutine,arg){if(ENVIRONMENT_IS_PTHREAD)return proxyToMainThread(2,0,1,pthread_ptr,attr,startRoutine,arg);return ___pthread_create_js(pthread_ptr,attr,startRoutine,arg)}var _emscripten_has_threading_support=()=>!!globalThis.SharedArrayBuffer;function ___pthread_create_js(pthread_ptr,attr,startRoutine,arg){pthread_ptr>>>=0;attr>>>=0;startRoutine>>>=0;arg>>>=0;if(!_emscripten_has_threading_support()){return 6}var transferList=[];var error=0;if(ENVIRONMENT_IS_PTHREAD&&(transferList.length===0||error)){return pthreadCreateProxied(pthread_ptr,attr,startRoutine,arg)}if(error)return error;var threadParams={startRoutine,pthread_ptr,arg,transferList};if(ENVIRONMENT_IS_PTHREAD){threadParams.cmd=5;postMessage(threadParams,transferList);return 0}return spawnThread(threadParams)}function ___resumeException(ptr){ptr>>>=0;if(!exceptionLast){exceptionLast=new CppException(ptr)}throw exceptionLast}var __abort_js=()=>abort("");function __emscripten_init_main_thread_js(tb){tb>>>=0;var can_block=!ENVIRONMENT_IS_WEB;try{Atomics.wait((growMemViews(),HEAP32),0,0,0);can_block=true}catch(e){}__emscripten_thread_init(tb,!ENVIRONMENT_IS_WORKER,1,can_block,8388608,false);PThread.threadInitTLS()}var UTF8Decoder=globalThis.TextDecoder&&new TextDecoder;var findStringEnd=(heapOrArray,idx,maxBytesToRead,ignoreNul)=>{var maxIdx=idx+maxBytesToRead;if(ignoreNul)return maxIdx;while(heapOrArray[idx]&&!(idx>=maxIdx))++idx;return idx};var UTF8ArrayToString=(heapOrArray,idx=0,maxBytesToRead,ignoreNul)=>{idx>>>=0;var endPtr=findStringEnd(heapOrArray,idx,maxBytesToRead,ignoreNul);if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.buffer instanceof ArrayBuffer?heapOrArray.subarray(idx,endPtr):heapOrArray.slice(idx,endPtr))}var str="";while(idx<endPtr){var u0=heapOrArray[idx++];if(!(u0&128)){str+=String.fromCharCode(u0);continue}var u1=heapOrArray[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}var u2=heapOrArray[idx++]&63;if((u0&240)==224){u0=(u0&15)<<12|u1<<6|u2}else{u0=(u0&7)<<18|u1<<12|u2<<6|heapOrArray[idx++]&63}if(u0<65536){str+=String.fromCharCode(u0)}else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}return str};var HEAPU8;var UTF8ToString=(ptr,maxBytesToRead,ignoreNul)=>{ptr>>>=0;return ptr?UTF8ArrayToString((growMemViews(),HEAPU8),ptr,maxBytesToRead,ignoreNul):""};var inetPton4=str=>{var b=str.split(".");for(var i=0;i<4;i++){var tmp=Number(b[i]);if(isNaN(tmp))return null;b[i]=tmp}return(b[0]|b[1]<<8|b[2]<<16|b[3]<<24)>>>0};var inetPton6=str=>{var words;var w,offset,z;var valid6regx=/^((?=.*::)(?!.*::.+::)(::)?([\dA-F]{1,4}:(:|\b)|){5}|([\dA-F]{1,4}:){6})((([\dA-F]{1,4}((?!\3)::|:\b|$))|(?!\2\3)){2}|(((2[0-4]|1\d|[1-9])?\d|25[0-5])\.?\b){4})$/i;var parts=[];if(!valid6regx.test(str)){return null}if(str==="::"){return[0,0,0,0,0,0,0,0]}if(str.startsWith("::")){str=str.replace("::","Z:")}else{str=str.replace("::",":Z:")}if(str.indexOf(".")>0){str=str.replace(new RegExp("[.]","g"),":");words=str.split(":");words[words.length-4]=Number(words[words.length-4])+Number(words[words.length-3])*256;words[words.length-3]=Number(words[words.length-2])+Number(words[words.length-1])*256;words=words.slice(0,words.length-2)}else{words=str.split(":")}offset=0;z=0;for(w=0;w<words.length;w++){if(typeof words[w]=="string"){if(words[w]==="Z"){for(z=0;z<8-words.length+1;z++){parts[w+z]=0}offset=z-1}else{parts[w+offset]=_htons(parseInt(words[w],16))}}else{parts[w+offset]=words[w]}}return[parts[1]<<16|parts[0],parts[3]<<16|parts[2],parts[5]<<16|parts[4],parts[7]<<16|parts[6]]};var DNS={address_map:{id:1,addrs:{},names:{}},lookup_name(name){var res=inetPton4(name);if(res!==null){return name}res=inetPton6(name);if(res!==null){return name}var addr;if(DNS.address_map.addrs[name]){addr=DNS.address_map.addrs[name]}else{var id=DNS.address_map.id++;addr="172.29."+(id&255)+"."+(id&65280);DNS.address_map.names[addr]=name;DNS.address_map.addrs[name]=addr}return addr},lookup_addr(addr){if(DNS.address_map.names[addr]){return DNS.address_map.names[addr]}return null}};function __emscripten_lookup_name(name){name>>>=0;var nameString=UTF8ToString(name);return inetPton4(DNS.lookup_name(nameString))}var handleException=e=>{if(e instanceof ExitStatus||e=="unwind"){return EXITSTATUS}quit_(1,e)};var maybeExit=()=>{if(runtimeExited){return}if(!keepRuntimeAlive()){try{if(ENVIRONMENT_IS_PTHREAD){if(_pthread_self())__emscripten_thread_exit(EXITSTATUS);return}_exit(EXITSTATUS)}catch(e){handleException(e)}}};var callUserCallback=func=>{if(runtimeExited||ABORT){return}try{return func()}catch(e){handleException(e)}finally{maybeExit()}};function __emscripten_thread_mailbox_await(pthread_ptr){pthread_ptr>>>=0;if(!waitAsyncPolyfilled){var wait=Atomics.waitAsync((growMemViews(),HEAP32),pthread_ptr>>>2,pthread_ptr);wait.value.then(checkMailbox);var waitingAsync=pthread_ptr+112;Atomics.store((growMemViews(),HEAP32),waitingAsync>>>2,1)}}var checkMailbox=()=>{var pthread_ptr=_pthread_self();if(!pthread_ptr)return;callUserCallback(()=>{__emscripten_thread_mailbox_await(pthread_ptr);__emscripten_check_mailbox()})};function __emscripten_notify_mailbox_postmessage(targetThread,currThreadId){targetThread>>>=0;currThreadId>>>=0;if(targetThread==currThreadId){setTimeout(checkMailbox)}else if(ENVIRONMENT_IS_PTHREAD){postMessage({targetThread,cmd:4})}else{var worker=PThread.pthreads[targetThread];if(!worker){return}worker.postMessage({cmd:4})}}var proxiedJSCallArgs=[];function __emscripten_receive_on_main_thread_js(funcIndex,emAsmAddr,callingThread,bufSize,args,ctx,ctxArgs){emAsmAddr>>>=0;callingThread>>>=0;args>>>=0;ctx>>>=0;ctxArgs>>>=0;proxiedJSCallArgs.length=0;var b=args>>>3;var end=args+bufSize>>>3;while(b<end){var arg;if((growMemViews(),HEAP64)[b++>>>0]){arg=(growMemViews(),HEAP64)[b++>>>0]}else{arg=(growMemViews(),HEAPF64)[b++>>>0]}proxiedJSCallArgs.push(arg)}var func=proxiedFunctionTable[funcIndex];PThread.currentProxiedOperationCallerThread=callingThread;var rtn=func(...proxiedJSCallArgs);PThread.currentProxiedOperationCallerThread=0;if(ctx){rtn.then(rtn=>__emscripten_run_js_on_main_thread_done(ctx,ctxArgs,rtn));return}return rtn}var __emscripten_runtime_keepalive_clear=()=>{noExitRuntime=false;runtimeKeepaliveCounter=0};function __emscripten_system(command){command>>>=0;if(ENVIRONMENT_IS_NODE){if(!command)return 1;var cmdstr=UTF8ToString(command);if(!cmdstr.length)return 0;var cp=require("node:child_process");var ret=cp.spawnSync(cmdstr,[],{shell:true,stdio:"inherit"});var _W_EXITCODE=(ret,sig)=>ret<<8|sig;if(ret.status===null){var signalToNumber=sig=>{switch(sig){case"SIGHUP":return 1;case"SIGQUIT":return 3;case"SIGFPE":return 8;case"SIGKILL":return 9;case"SIGALRM":return 14;case"SIGTERM":return 15;default:return 2}};return _W_EXITCODE(0,signalToNumber(ret.signal))}return _W_EXITCODE(ret.status,0)}if(!command)return 0;return-52}function __emscripten_thread_cleanup(thread){thread>>>=0;if(!ENVIRONMENT_IS_PTHREAD)cleanupThread(thread);else postMessage({cmd:6,thread})}function __emscripten_thread_set_strongref(thread){thread>>>=0;if(ENVIRONMENT_IS_NODE){var worker=PThread.pthreads[thread];worker.ref();worker.strongref=1}}var __emscripten_throw_longjmp=()=>{throw new EmscriptenSjLj};function __gmtime_js(time,tmPtr){time=bigintToI53Checked(time);tmPtr>>>=0;var date=new Date(time*1e3);if(isNaN(date.getTime())){return 1}(growMemViews(),HEAP32)[tmPtr>>>2>>>0]=date.getUTCSeconds();(growMemViews(),HEAP32)[tmPtr+4>>>2>>>0]=date.getUTCMinutes();(growMemViews(),HEAP32)[tmPtr+8>>>2>>>0]=date.getUTCHours();(growMemViews(),HEAP32)[tmPtr+12>>>2>>>0]=date.getUTCDate();(growMemViews(),HEAP32)[tmPtr+16>>>2>>>0]=date.getUTCMonth();(growMemViews(),HEAP32)[tmPtr+20>>>2>>>0]=date.getUTCFullYear()-1900;(growMemViews(),HEAP32)[tmPtr+24>>>2>>>0]=date.getUTCDay();var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;(growMemViews(),HEAP32)[tmPtr+28>>>2>>>0]=yday;return 0}var isLeapYear=year=>year%4===0&&(year%100!==0||year%400===0);var MONTH_DAYS_LEAP_CUMULATIVE=[0,31,60,91,121,152,182,213,244,274,305,335];var MONTH_DAYS_REGULAR_CUMULATIVE=[0,31,59,90,120,151,181,212,243,273,304,334];var ydayFromDate=date=>{var leap=isLeapYear(date.getFullYear());var monthDaysCumulative=leap?MONTH_DAYS_LEAP_CUMULATIVE:MONTH_DAYS_REGULAR_CUMULATIVE;var yday=monthDaysCumulative[date.getMonth()]+date.getDate()-1;return yday};function __localtime_js(time,tmPtr){time=bigintToI53Checked(time);tmPtr>>>=0;var date=new Date(time*1e3);if(isNaN(date.getTime())){return 1}(growMemViews(),HEAP32)[tmPtr>>>2>>>0]=date.getSeconds();(growMemViews(),HEAP32)[tmPtr+4>>>2>>>0]=date.getMinutes();(growMemViews(),HEAP32)[tmPtr+8>>>2>>>0]=date.getHours();(growMemViews(),HEAP32)[tmPtr+12>>>2>>>0]=date.getDate();(growMemViews(),HEAP32)[tmPtr+16>>>2>>>0]=date.getMonth();(growMemViews(),HEAP32)[tmPtr+20>>>2>>>0]=date.getFullYear()-1900;(growMemViews(),HEAP32)[tmPtr+24>>>2>>>0]=date.getDay();var yday=ydayFromDate(date)|0;(growMemViews(),HEAP32)[tmPtr+28>>>2>>>0]=yday;(growMemViews(),HEAP32)[tmPtr+36>>>2>>>0]=-(date.getTimezoneOffset()*60);var start=new Date(date.getFullYear(),0,1);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;(growMemViews(),HEAP32)[tmPtr+32>>>2>>>0]=dst;return 0}var __mktime_js=function(tmPtr){tmPtr>>>=0;var ret=(()=>{var date=new Date((growMemViews(),HEAP32)[tmPtr+20>>>2>>>0]+1900,(growMemViews(),HEAP32)[tmPtr+16>>>2>>>0],(growMemViews(),HEAP32)[tmPtr+12>>>2>>>0],(growMemViews(),HEAP32)[tmPtr+8>>>2>>>0],(growMemViews(),HEAP32)[tmPtr+4>>>2>>>0],(growMemViews(),HEAP32)[tmPtr>>>2>>>0],0);if(isNaN(date.getTime())){return-1}var dst=(growMemViews(),HEAP32)[tmPtr+32>>>2>>>0];var guessedOffset=date.getTimezoneOffset();var start=new Date(date.getFullYear(),0,1);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dstOffset=Math.min(winterOffset,summerOffset);if(dst<0){dst=Number(summerOffset!=winterOffset&&dstOffset==guessedOffset)}else if(dst>0!=(dstOffset==guessedOffset)){var nonDstOffset=Math.max(winterOffset,summerOffset);var trueOffset=dst>0?dstOffset:nonDstOffset;date.setTime(date.getTime()+(trueOffset-guessedOffset)*6e4);if(isNaN(date.getTime())){return-1}}(growMemViews(),HEAP32)[tmPtr+32>>>2>>>0]=dst;(growMemViews(),HEAP32)[tmPtr+24>>>2>>>0]=date.getDay();var yday=ydayFromDate(date)|0;(growMemViews(),HEAP32)[tmPtr+28>>>2>>>0]=yday;(growMemViews(),HEAP32)[tmPtr>>>2>>>0]=date.getSeconds();(growMemViews(),HEAP32)[tmPtr+4>>>2>>>0]=date.getMinutes();(growMemViews(),HEAP32)[tmPtr+8>>>2>>>0]=date.getHours();(growMemViews(),HEAP32)[tmPtr+12>>>2>>>0]=date.getDate();(growMemViews(),HEAP32)[tmPtr+16>>>2>>>0]=date.getMonth();(growMemViews(),HEAP32)[tmPtr+20>>>2>>>0]=date.getYear();return date.getTime()/1e3})();return BigInt(ret)};var timers={};var clearTimers=()=>{for(var t of Object.values(timers)){clearTimeout(t.id)}};var _emscripten_get_now=()=>performance.timeOrigin+performance.now();function __setitimer_js(which,timeout_ms){if(ENVIRONMENT_IS_PTHREAD)return proxyToMainThread(3,0,1,which,timeout_ms);if(timers[which]){clearTimeout(timers[which].id);delete timers[which]}if(!timeout_ms)return 0;var id=setTimeout(()=>{delete timers[which];callUserCallback(()=>__emscripten_timeout(which,_emscripten_get_now()))},timeout_ms);timers[which]={id,timeout_ms};return 0}var stringToUTF8Array=(str,heap,outIdx,maxBytesToWrite)=>{outIdx>>>=0;if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i<str.length;++i){var u=str.codePointAt(i);if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++>>>0]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++>>>0]=192|u>>6;heap[outIdx++>>>0]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++>>>0]=224|u>>12;heap[outIdx++>>>0]=128|u>>6&63;heap[outIdx++>>>0]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++>>>0]=240|u>>18;heap[outIdx++>>>0]=128|u>>12&63;heap[outIdx++>>>0]=128|u>>6&63;heap[outIdx++>>>0]=128|u&63;i++}}heap[outIdx>>>0]=0;return outIdx-startIdx};var stringToUTF8=(str,outPtr,maxBytesToWrite)=>stringToUTF8Array(str,(growMemViews(),HEAPU8),outPtr,maxBytesToWrite);var __tzset_js=function(timezone,daylight,std_name,dst_name){timezone>>>=0;daylight>>>=0;std_name>>>=0;dst_name>>>=0;var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);(growMemViews(),HEAPU32)[timezone>>>2>>>0]=stdTimezoneOffset*60;(growMemViews(),HEAP32)[daylight>>>2>>>0]=Number(winterOffset!=summerOffset);var extractZone=timezoneOffset=>{var sign=timezoneOffset>=0?"-":"+";var absOffset=Math.abs(timezoneOffset);var hours=String(Math.floor(absOffset/60)).padStart(2,"0");var minutes=String(absOffset%60).padStart(2,"0");return`UTC${sign}${hours}${minutes}`};var winterName=extractZone(winterOffset);var summerName=extractZone(summerOffset);if(summerOffset<winterOffset){stringToUTF8(winterName,std_name,17);stringToUTF8(summerName,dst_name,17)}else{stringToUTF8(winterName,dst_name,17);stringToUTF8(summerName,std_name,17)}};function __wasmfs_copy_preloaded_file_data(index,buffer){buffer>>>=0;return(growMemViews(),HEAPU8).set(wasmFSPreloadedFiles[index].fileData,buffer>>>0)}var wasmFSPreloadedDirs=[];var __wasmfs_get_num_preloaded_dirs=()=>wasmFSPreloadedDirs.length;var wasmFSPreloadedFiles=[];var wasmFSPreloadingFlushed=false;var __wasmfs_get_num_preloaded_files=()=>{wasmFSPreloadingFlushed=true;return wasmFSPreloadedFiles.length};function __wasmfs_get_preloaded_child_path(index,childNameBuffer){childNameBuffer>>>=0;var s=wasmFSPreloadedDirs[index].childName;var len=lengthBytesUTF8(s)+1;stringToUTF8(s,childNameBuffer,len)}var __wasmfs_get_preloaded_file_mode=index=>wasmFSPreloadedFiles[index].mode;function __wasmfs_get_preloaded_file_size(index){return wasmFSPreloadedFiles[index].fileData.length}function __wasmfs_get_preloaded_parent_path(index,parentPathBuffer){parentPathBuffer>>>=0;var s=wasmFSPreloadedDirs[index].parentPath;var len=lengthBytesUTF8(s)+1;stringToUTF8(s,parentPathBuffer,len)}var lengthBytesUTF8=str=>{var len=0;for(var i=0;i<str.length;++i){var c=str.charCodeAt(i);if(c<=127){len++}else if(c<=2047){len+=2}else if(c>=55296&&c<=57343){len+=4;++i}else{len+=3}}return len};function __wasmfs_get_preloaded_path_name(index,fileNameBuffer){fileNameBuffer>>>=0;var s=wasmFSPreloadedFiles[index].pathName;var len=lengthBytesUTF8(s)+1;stringToUTF8(s,fileNameBuffer,len)}function __wasmfs_jsimpl_alloc_file(backend,file){backend>>>=0;file>>>=0;return wasmFS$backends[backend].allocFile(file)}function __wasmfs_jsimpl_free_file(backend,file){backend>>>=0;file>>>=0;return wasmFS$backends[backend].freeFile(file)}function __wasmfs_jsimpl_get_size(backend,file){backend>>>=0;file>>>=0;return wasmFS$backends[backend].getSize(file)}function __wasmfs_jsimpl_read(backend,file,buffer,length,offset){backend>>>=0;file>>>=0;buffer>>>=0;length>>>=0;offset=bigintToI53Checked(offset);if(!wasmFS$backends[backend].read){return-28}return wasmFS$backends[backend].read(file,buffer,length,offset)}function __wasmfs_jsimpl_set_size(backend,file,size){backend>>>=0;file>>>=0;size=bigintToI53Checked(size);return wasmFS$backends[backend].setSize(file,size)}function __wasmfs_jsimpl_write(backend,file,buffer,length,offset){backend>>>=0;file>>>=0;buffer>>>=0;length>>>=0;offset=bigintToI53Checked(offset);if(!wasmFS$backends[backend].write){return-28}return wasmFS$backends[backend].write(file,buffer,length,offset)}var FS_stdin_getChar_buffer=[];var intArrayFromString=(stringy,dontAddNull,length)=>{var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array};var FS_stdin_getChar=()=>{if(!FS_stdin_getChar_buffer.length){var result=null;if(ENVIRONMENT_IS_NODE){var BUFSIZE=256;var buf=Buffer.alloc(BUFSIZE);var bytesRead=0;var fd=process.stdin.fd;try{bytesRead=fs.readSync(fd,buf,0,BUFSIZE)}catch(e){if(e.toString().includes("EOF"))bytesRead=0;else throw e}if(bytesRead>0){result=buf.slice(0,bytesRead).toString("utf-8")}}else if(globalThis.window?.prompt){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else{}if(!result){return null}FS_stdin_getChar_buffer=intArrayFromString(result,true)}return FS_stdin_getChar_buffer.shift()};var __wasmfs_stdin_get_char=()=>{var c=FS_stdin_getChar();if(typeof c==="number"){return c}return-1};var _emscripten_get_now_res=()=>{if(ENVIRONMENT_IS_NODE){return 1}return 1e3};var nowIsMonotonic=1;var checkWasiClock=clock_id=>clock_id>=0&&clock_id<=3;function _clock_res_get(clk_id,pres){pres>>>=0;if(!checkWasiClock(clk_id)){return 28}var nsec;if(clk_id===0){nsec=1e3*1e3}else if(nowIsMonotonic){nsec=_emscripten_get_now_res()}else{return 52}(growMemViews(),HEAP64)[pres>>>3>>>0]=BigInt(nsec);return 0}var _emscripten_date_now=()=>Date.now();function _clock_time_get(clk_id,ignored_precision,ptime){ignored_precision=bigintToI53Checked(ignored_precision);ptime>>>=0;if(!checkWasiClock(clk_id)){return 28}var now;if(clk_id===0){now=_emscripten_date_now()}else if(nowIsMonotonic){now=_emscripten_get_now()}else{return 52}var nsec=Math.round(now*1e3*1e3);(growMemViews(),HEAP64)[ptime>>>3>>>0]=BigInt(nsec);return 0}var _emscripten_check_blocking_allowed=()=>{};function _emscripten_err(str){str>>>=0;return err(UTF8ToString(str))}var _emscripten_exit_with_live_runtime=()=>{runtimeKeepalivePush();throw"unwind"};var getHeapMax=()=>4294901760;function _emscripten_get_heap_max(){return getHeapMax()}var _emscripten_num_logical_cores=()=>ENVIRONMENT_IS_NODE?require("node:os").cpus().length:navigator["hardwareConcurrency"];function _emscripten_out(str){str>>>=0;return out(UTF8ToString(str))}var alignMemory=(size,alignment)=>Math.ceil(size/alignment)*alignment;var growMemory=size=>{var oldHeapSize=wasmMemory.buffer.byteLength;var pages=(size-oldHeapSize+65535)/65536|0;try{wasmMemory.grow(pages);updateMemoryViews();return 1}catch(e){}};function _emscripten_resize_heap(requestedSize){requestedSize>>>=0;var oldSize=(growMemViews(),HEAPU8).length;if(requestedSize<=oldSize){return false}var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignMemory(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=growMemory(newSize);if(replacement){return true}}return false}var _emscripten_runtime_keepalive_check=keepRuntimeAlive;var ENV={};var getExecutableName=()=>thisProgram;var getEnvStrings=()=>{if(!getEnvStrings.strings){var lang=(globalThis.navigator?.language??"C").replace("-","_")+".UTF-8";var env={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:lang,_:getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(`${x}=${env[x]}`)}getEnvStrings.strings=strings}return getEnvStrings.strings};function _environ_get(__environ,environ_buf){if(ENVIRONMENT_IS_PTHREAD)return proxyToMainThread(4,0,1,__environ,environ_buf);__environ>>>=0;environ_buf>>>=0;var bufSize=0;var envp=0;for(var string of getEnvStrings()){var ptr=environ_buf+bufSize;(growMemViews(),HEAPU32)[__environ+envp>>>2>>>0]=ptr;bufSize+=stringToUTF8(string,ptr,Infinity)+1;envp+=4}return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){if(ENVIRONMENT_IS_PTHREAD)return proxyToMainThread(5,0,1,penviron_count,penviron_buf_size);penviron_count>>>=0;penviron_buf_size>>>=0;var strings=getEnvStrings();(growMemViews(),HEAPU32)[penviron_count>>>2>>>0]=strings.length;var bufSize=0;for(var string of strings){bufSize+=lengthBytesUTF8(string)+1}(growMemViews(),HEAPU32)[penviron_buf_size>>>2>>>0]=bufSize;return 0}var inetNtop4=addr=>(addr&255)+"."+(addr>>8&255)+"."+(addr>>16&255)+"."+(addr>>24&255);var inetNtop6=ints=>{var str="";var word=0;var longest=0;var lastzero=0;var zstart=0;var len=0;var i=0;var parts=[ints[0]&65535,ints[0]>>16,ints[1]&65535,ints[1]>>16,ints[2]&65535,ints[2]>>16,ints[3]&65535,ints[3]>>16];var hasipv4=true;var v4part="";for(i=0;i<5;i++){if(parts[i]!==0){hasipv4=false;break}}if(hasipv4){v4part=inetNtop4(parts[6]|parts[7]<<16);if(parts[5]===-1){str="::ffff:";str+=v4part;return str}if(parts[5]===0){str="::";if(v4part==="0.0.0.0")v4part="";if(v4part==="0.0.0.1")v4part="1";str+=v4part;return str}}for(word=0;word<8;word++){if(parts[word]===0){if(word-lastzero>1){len=0}lastzero=word;len++}if(len>longest){longest=len;zstart=word-longest+1}}for(word=0;word<8;word++){if(longest>1){if(parts[word]===0&&word>=zstart&&word<zstart+longest){if(word===zstart){str+=":";if(zstart===0)str+=":"}continue}}str+=Number(_ntohs(parts[word]&65535)).toString(16);str+=word<7?":":""}return str};var zeroMemory=(ptr,size)=>(growMemViews(),HEAPU8).fill(0,ptr,ptr+size);var HEAP16;var writeSockaddr=(sa,family,addr,port,addrlen)=>{switch(family){case 2:addr=inetPton4(addr);zeroMemory(sa,16);if(addrlen){(growMemViews(),HEAP32)[addrlen>>>2>>>0]=16}(growMemViews(),HEAP16)[sa>>>1>>>0]=family;(growMemViews(),HEAP32)[sa+4>>>2>>>0]=addr;(growMemViews(),HEAP16)[sa+2>>>1>>>0]=_htons(port);break;case 10:addr=inetPton6(addr);zeroMemory(sa,28);if(addrlen){(growMemViews(),HEAP32)[addrlen>>>2>>>0]=28}(growMemViews(),HEAP32)[sa>>>2>>>0]=family;(growMemViews(),HEAP32)[sa+8>>>2>>>0]=addr[0];(growMemViews(),HEAP32)[sa+12>>>2>>>0]=addr[1];(growMemViews(),HEAP32)[sa+16>>>2>>>0]=addr[2];(growMemViews(),HEAP32)[sa+20>>>2>>>0]=addr[3];(growMemViews(),HEAP16)[sa+2>>>1>>>0]=_htons(port);break;default:return 5}return 0};function _getaddrinfo(node,service,hint,out){if(ENVIRONMENT_IS_PTHREAD)return proxyToMainThread(6,0,1,node,service,hint,out);node>>>=0;service>>>=0;hint>>>=0;out>>>=0;var addr=0;var port=0;var flags=0;var family=0;var type=0;var proto=0;var ai;function allocaddrinfo(family,type,proto,canon,addr,port){var sa,salen,ai;var errno;salen=family===10?28:16;addr=family===10?inetNtop6(addr):inetNtop4(addr);sa=_malloc(salen);errno=writeSockaddr(sa,family,addr,port);ai=_malloc(32);(growMemViews(),HEAP32)[ai+4>>>2>>>0]=family;(growMemViews(),HEAP32)[ai+8>>>2>>>0]=type;(growMemViews(),HEAP32)[ai+12>>>2>>>0]=proto;(growMemViews(),HEAPU32)[ai+24>>>2>>>0]=canon;(growMemViews(),HEAPU32)[ai+20>>>2>>>0]=sa;if(family===10){(growMemViews(),HEAP32)[ai+16>>>2>>>0]=28}else{(growMemViews(),HEAP32)[ai+16>>>2>>>0]=16}(growMemViews(),HEAP32)[ai+28>>>2>>>0]=0;return ai}if(hint){flags=(growMemViews(),HEAP32)[hint>>>2>>>0];family=(growMemViews(),HEAP32)[hint+4>>>2>>>0];type=(growMemViews(),HEAP32)[hint+8>>>2>>>0];proto=(growMemViews(),HEAP32)[hint+12>>>2>>>0]}if(type&&!proto){proto=type===2?17:6}if(!type&&proto){type=proto===17?2:1}if(proto===0){proto=6}if(type===0){type=1}if(!node&&!service){return-2}if(flags&~(1|2|4|1024|8|16|32)){return-1}if(hint!==0&&(growMemViews(),HEAP32)[hint>>>2>>>0]&2&&!node){return-1}if(flags&32){return-2}if(type!==0&&type!==1&&type!==2){return-7}if(family!==0&&family!==2&&family!==10){return-6}if(service){service=UTF8ToString(service);port=parseInt(service,10);if(isNaN(port)){if(flags&1024){return-2}return-8}}if(!node){if(family===0){family=2}if((flags&1)===0){if(family===2){addr=_htonl(2130706433)}else{addr=[0,0,0,_htonl(1)]}}ai=allocaddrinfo(family,type,proto,null,addr,port);(growMemViews(),HEAPU32)[out>>>2>>>0]=ai;return 0}node=UTF8ToString(node);addr=inetPton4(node);if(addr!==null){if(family===0||family===2){family=2}else if(family===10&&flags&8){addr=[0,0,_htonl(65535),addr];family=10}else{return-2}}else{addr=inetPton6(node);if(addr!==null){if(family===0||family===10){family=10}else{return-2}}}if(addr!=null){ai=allocaddrinfo(family,type,proto,node,addr,port);(growMemViews(),HEAPU32)[out>>>2>>>0]=ai;return 0}if(flags&4){return-2}node=DNS.lookup_name(node);addr=inetPton4(node);if(family===0){family=2}else if(family===10){addr=[0,0,_htonl(65535),addr]}ai=allocaddrinfo(family,type,proto,null,addr,port);(growMemViews(),HEAPU32)[out>>>2>>>0]=ai;return 0}var HEAPU16;var readSockaddr=(sa,salen)=>{var family=(growMemViews(),HEAP16)[sa>>>1>>>0];var port=_ntohs((growMemViews(),HEAPU16)[sa+2>>>1>>>0]);var addr;switch(family){case 2:if(salen!==16){return{errno:28}}addr=(growMemViews(),HEAP32)[sa+4>>>2>>>0];addr=inetNtop4(addr);break;case 10:if(salen!==28){return{errno:28}}addr=[(growMemViews(),HEAP32)[sa+8>>>2>>>0],(growMemViews(),HEAP32)[sa+12>>>2>>>0],(growMemViews(),HEAP32)[sa+16>>>2>>>0],(growMemViews(),HEAP32)[sa+20>>>2>>>0]];addr=inetNtop6(addr);break;default:return{errno:5}}return{family,addr,port}};function _getnameinfo(sa,salen,node,nodelen,serv,servlen,flags){sa>>>=0;node>>>=0;serv>>>=0;var info=readSockaddr(sa,salen);if(info.errno){return-6}var port=info.port;var addr=info.addr;var overflowed=false;if(node&&nodelen){var lookup;if(flags&1||!(lookup=DNS.lookup_addr(addr))){if(flags&8){return-2}}else{addr=lookup}var numBytesWrittenExclNull=stringToUTF8(addr,node,nodelen);if(numBytesWrittenExclNull+1>=nodelen){overflowed=true}}if(serv&&servlen){port=""+port;var numBytesWrittenExclNull=stringToUTF8(port,serv,servlen);if(numBytesWrittenExclNull+1>=servlen){overflowed=true}}if(overflowed){return-12}return 0}var Protocols={list:[],map:{}};var stringToAscii=(str,buffer)=>{for(var i=0;i<str.length;++i){(growMemViews(),HEAP8)[buffer++>>>0]=str.charCodeAt(i)}(growMemViews(),HEAP8)[buffer>>>0]=0};var _setprotoent=stayopen=>{function allocprotoent(name,proto,aliases){var nameBuf=_malloc(name.length+1);stringToAscii(name,nameBuf);var j=0;var length=aliases.length;var aliasListBuf=_malloc((length+1)*4);for(var i=0;i<length;i++,j+=4){var alias=aliases[i];var aliasBuf=_malloc(alias.length+1);stringToAscii(alias,aliasBuf);(growMemViews(),HEAPU32)[aliasListBuf+j>>>2>>>0]=aliasBuf}(growMemViews(),HEAPU32)[aliasListBuf+j>>>2>>>0]=0;var pe=_malloc(12);(growMemViews(),HEAPU32)[pe>>>2>>>0]=nameBuf;(growMemViews(),HEAPU32)[pe+4>>>2>>>0]=aliasListBuf;(growMemViews(),HEAP32)[pe+8>>>2>>>0]=proto;return pe}var list=Protocols.list;var map=Protocols.map;if(list.length===0){var entry=allocprotoent("tcp",6,["TCP"]);list.push(entry);map["tcp"]=map["6"]=entry;entry=allocprotoent("udp",17,["UDP"]);list.push(entry);map["udp"]=map["17"]=entry}_setprotoent.index=0};function _getprotobyname(name){name>>>=0;name=UTF8ToString(name);_setprotoent(true);var result=Protocols.map[name];return result}function _llvm_eh_typeid_for(type){type>>>=0;return type}var initRandomFill=()=>{if(ENVIRONMENT_IS_NODE){var nodeCrypto=require("node:crypto");return view=>(nodeCrypto.randomFillSync(view),0)}return view=>(view.set(crypto.getRandomValues(new Uint8Array(view.byteLength))),0)};var randomFill=view=>(randomFill=initRandomFill())(view);function _random_get(buffer,size){buffer>>>=0;size>>>=0;return randomFill((growMemViews(),HEAPU8).subarray(buffer>>>0,buffer+size>>>0))}var stringToUTF8OnStack=str=>{var size=lengthBytesUTF8(str)+1;var ret=stackAlloc(size);stringToUTF8(str,ret,size);return ret};var PATH={isAbs:path=>path.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(parts,allowAboveRoot)=>{var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.slice(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.slice(0,-1)}return root+dir},basename:path=>path&&path.match(/([^\/]+|\/)\/*$/)[1],join:(...paths)=>PATH.normalize(paths.join("/")),join2:(l,r)=>PATH.normalize(l+"/"+r)};var withStackSave=f=>{var stack=stackSave();var ret=f();stackRestore(stack);return ret};var readI53FromI64=ptr=>(growMemViews(),HEAPU32)[ptr>>>2>>>0]+(growMemViews(),HEAP32)[ptr+4>>>2>>>0]*4294967296;var readI53FromU64=ptr=>(growMemViews(),HEAPU32)[ptr>>>2>>>0]+(growMemViews(),HEAPU32)[ptr+4>>>2>>>0]*4294967296;var FS_mknod=(path,mode,dev)=>FS.handleError(withStackSave(()=>{var pathBuffer=stringToUTF8OnStack(path);return __wasmfs_mknod(pathBuffer,mode,dev)}));var FS_create=(path,mode=438)=>{mode&=4095;mode|=32768;return FS_mknod(path,mode,0)};var FS_fileDataToTypedArray=data=>{if(typeof data=="string"){data=intArrayFromString(data,true)}if(!data.subarray){data=new Uint8Array(data)}return data};var FS_writeFile=(path,data)=>{var sp=stackSave();var pathBuffer=stringToUTF8OnStack(path);data=FS_fileDataToTypedArray(data);var len=data.length;var dataBuffer=_malloc(len);(growMemViews(),HEAPU8).set(data,dataBuffer>>>0);var ret=__wasmfs_write_file(pathBuffer,dataBuffer,len);_free(dataBuffer);stackRestore(sp);return ret};var FS_createDataFile=(parent,name,fileData,canRead,canWrite,canOwn)=>{var pathName=name?parent+"/"+name:parent;var mode=FS_getMode(canRead,canWrite);if(!wasmFSPreloadingFlushed){wasmFSPreloadedFiles.push({pathName,fileData,mode})}else{FS_create(pathName,mode);FS_writeFile(pathName,fileData)}};var asyncLoad=async url=>{var arrayBuffer=await readAsync(url);return new Uint8Array(arrayBuffer)};var PATH_FS={resolve:(...args)=>{var resolvedPath="",resolvedAbsolute=false;for(var i=args.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?args[i]:FS.cwd();if(typeof path!="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=PATH.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(from,to)=>{from=PATH_FS.resolve(from).slice(1);to=PATH_FS.resolve(to).slice(1);function trim(arr){var start=0;for(;start<arr.length;start++){if(arr[start]!=="")break}var end=arr.length-1;for(;end>=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i<length;i++){if(fromParts[i]!==toParts[i]){samePartsLength=i;break}}var outputParts=[];for(var i=samePartsLength;i<fromParts.length;i++){outputParts.push("..")}outputParts=outputParts.concat(toParts.slice(samePartsLength));return outputParts.join("/")}};var getUniqueRunDependency=id=>id;var preloadPlugins=[];var FS_handledByPreloadPlugin=async(byteArray,fullname)=>{if(typeof Browser!="undefined")Browser.init();for(var plugin of preloadPlugins){if(plugin["canHandle"](fullname)){return plugin["handle"](byteArray,fullname)}}return byteArray};var FS_preloadFile=async(parent,name,url,canRead,canWrite,dontCreateFile,canOwn,preFinish)=>{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency(`cp ${fullname}`);addRunDependency(dep);try{var byteArray=url;if(typeof url=="string"){byteArray=await asyncLoad(url)}byteArray=await FS_handledByPreloadPlugin(byteArray,fullname);preFinish?.();if(!dontCreateFile){FS_createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}}finally{removeRunDependency(dep)}};var FS_createPreloadedFile=(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish)=>{FS_preloadFile(parent,name,url,canRead,canWrite,dontCreateFile,canOwn,preFinish).then(onload).catch(onerror)};var FS_getMode=(canRead,canWrite)=>{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode};var FS_modeStringToFlags=str=>{if(typeof str!="string")return str;var flagModes={r:0,"r+":2,w:512|64|1,"w+":512|64|2,a:1024|64|1,"a+":1024|64|2};var flags=flagModes[str];if(typeof flags=="undefined"){throw new Error(`Unknown file open mode: ${str}`)}return flags};var FS_mkdir=(path,mode=511)=>FS.handleError(withStackSave(()=>{var buffer=stringToUTF8OnStack(path);return __wasmfs_mkdir(buffer,mode)}));var FS_mkdirTree=(path,mode)=>{var dirs=path.split("/");var d="";for(var dir of dirs){if(!dir)continue;if(d||PATH.isAbs(path))d+="/";d+=dir;try{FS_mkdir(d,mode)}catch(e){if(e.errno!=20)throw e}}};var FS_unlink=path=>withStackSave(()=>{var buffer=stringToUTF8OnStack(path);return __wasmfs_unlink(buffer)});var wasmFS$backends={};var wasmFSDevices={};var wasmFSDeviceStreams={};var FS={ErrnoError:class extends Error{name="ErrnoError";message="FS error";constructor(code){super();this.errno=code}},handleError(returnValue){if(returnValue<0){throw new FS.ErrnoError(-returnValue)}return returnValue},createDataFile(parent,name,fileData,canRead,canWrite,canOwn){FS_createDataFile(parent,name,fileData,canRead,canWrite,canOwn)},createPath(parent,path,canRead,canWrite){var parts=path.split("/").reverse();while(parts.length){var part=parts.pop();if(!part)continue;var current=PATH.join2(parent,part);if(!wasmFSPreloadingFlushed){wasmFSPreloadedDirs.push({parentPath:parent,childName:part})}else{try{FS.mkdir(current)}catch(e){if(e.errno!=20)throw e}}parent=current}return current},createPreloadedFile(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish){return FS_createPreloadedFile(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish)},async preloadFile(parent,name,url,canRead,canWrite,dontCreateFile,canOwn,preFinish){return FS_preloadFile(parent,name,url,canRead,canWrite,dontCreateFile,canOwn,preFinish)},readFile(path,opts={}){opts.encoding=opts.encoding||"binary";if(opts.encoding!=="utf8"&&opts.encoding!=="binary"){throw new Error(`Invalid encoding type "${opts.encoding}"`)}var buf,length;withStackSave(()=>{var bufPtr=stackAlloc(4);var sizePtr=stackAlloc(4);FS.handleError(-__wasmfs_read_file(stringToUTF8OnStack(path),bufPtr,sizePtr));buf=(growMemViews(),HEAPU32)[bufPtr>>>2>>>0];length=readI53FromI64(sizePtr)});return opts.encoding==="utf8"?UTF8ToString(buf,length):(growMemViews(),HEAPU8).slice(buf,buf+length)},cwd:()=>UTF8ToString(__wasmfs_get_cwd()),analyzePath(path){var exists=!!FS.findObject(path);return{exists,object:{contents:exists?FS.readFile(path):null}}},mkdir:(path,mode)=>FS_mkdir(path,mode),mkdirTree:(path,mode)=>FS_mkdirTree(path,mode),rmdir:path=>FS.handleError(withStackSave(()=>__wasmfs_rmdir(stringToUTF8OnStack(path)))),open:(path,flags,mode=438)=>withStackSave(()=>{flags=FS_modeStringToFlags(flags);var buffer=stringToUTF8OnStack(path);var fd=FS.handleError(__wasmfs_open(buffer,flags,mode));return{fd}}),create:(path,mode)=>FS_create(path,mode),close:stream=>FS.handleError(-__wasmfs_close(stream.fd)),unlink:path=>FS_unlink(path),chdir:path=>withStackSave(()=>__wasmfs_chdir(stringToUTF8OnStack(path))),read(stream,buffer,offset,length,position){var seeking=typeof position!="undefined";var dataBuffer=_malloc(length);var bytesRead;if(seeking){bytesRead=__wasmfs_pread(stream.fd,dataBuffer,length,BigInt(position))}else{bytesRead=__wasmfs_read(stream.fd,dataBuffer,length)}if(bytesRead>0){buffer.set((growMemViews(),HEAPU8).subarray(dataBuffer>>>0,dataBuffer+bytesRead>>>0),offset)}_free(dataBuffer);return FS.handleError(bytesRead)},write(stream,buffer,offset,length,position,canOwn){var seeking=typeof position!="undefined";var dataBuffer=_malloc(length);for(var i=0;i<length;i++){(growMemViews(),HEAP8)[dataBuffer+i>>>0]=buffer[offset+i]}var bytesRead;if(seeking){bytesRead=__wasmfs_pwrite(stream.fd,dataBuffer,length,BigInt(position))}else{bytesRead=__wasmfs_write(stream.fd,dataBuffer,length)}_free(dataBuffer);return FS.handleError(bytesRead)},writeFile:(path,data)=>FS_writeFile(path,data),mmap:(stream,length,offset,prot,flags)=>{var buf=FS.handleError(__wasmfs_mmap(length,prot,flags,stream.fd,BigInt(offset)));return{ptr:buf,allocated:true}},msync:(stream,bufferPtr,offset,length,mmapFlags)=>FS.handleError(__wasmfs_msync(bufferPtr,length,mmapFlags)),munmap:(addr,length)=>FS.handleError(__wasmfs_munmap(addr,length)),symlink:(target,linkpath)=>withStackSave(()=>__wasmfs_symlink(stringToUTF8OnStack(target),stringToUTF8OnStack(linkpath))),readlink(path){return withStackSave(()=>{var bufPtr=stackAlloc(4);FS.handleError(__wasmfs_readlink(stringToUTF8OnStack(path),bufPtr));var readBuffer=(growMemViews(),HEAPU32)[bufPtr>>>2>>>0];return UTF8ToString(readBuffer)})},statBufToObject(statBuf){return{dev:(growMemViews(),HEAPU32)[statBuf>>>2>>>0],mode:(growMemViews(),HEAPU32)[statBuf+4>>>2>>>0],nlink:(growMemViews(),HEAPU32)[statBuf+8>>>2>>>0],uid:(growMemViews(),HEAPU32)[statBuf+12>>>2>>>0],gid:(growMemViews(),HEAPU32)[statBuf+16>>>2>>>0],rdev:(growMemViews(),HEAPU32)[statBuf+20>>>2>>>0],size:readI53FromI64(statBuf+24),blksize:(growMemViews(),HEAP32)[statBuf+32>>>2>>>0],blocks:(growMemViews(),HEAP32)[statBuf+36>>>2>>>0],atime:readI53FromI64(statBuf+40),mtime:readI53FromI64(statBuf+56),ctime:readI53FromI64(statBuf+72),ino:readI53FromU64(statBuf+88)}},stat(path){return withStackSave(()=>{var statBuf=stackAlloc(96);FS.handleError(__wasmfs_stat(stringToUTF8OnStack(path),statBuf));return FS.statBufToObject(statBuf)})},lstat(path){return withStackSave(()=>{var statBuf=stackAlloc(96);FS.handleError(__wasmfs_lstat(stringToUTF8OnStack(path),statBuf));return FS.statBufToObject(statBuf)})},chmod(path,mode){return FS.handleError(withStackSave(()=>{var buffer=stringToUTF8OnStack(path);return __wasmfs_chmod(buffer,mode)}))},lchmod(path,mode){return FS.handleError(withStackSave(()=>{var buffer=stringToUTF8OnStack(path);return __wasmfs_lchmod(buffer,mode)}))},fchmod(fd,mode){return FS.handleError(__wasmfs_fchmod(fd,mode))},utime:(path,atime,mtime)=>FS.handleError(withStackSave(()=>__wasmfs_utime(stringToUTF8OnStack(path),atime,mtime))),truncate(path,len){return FS.handleError(withStackSave(()=>__wasmfs_truncate(stringToUTF8OnStack(path),BigInt(len))))},ftruncate(fd,len){return FS.handleError(__wasmfs_ftruncate(fd,BigInt(len)))},findObject(path){var result=withStackSave(()=>__wasmfs_identify(stringToUTF8OnStack(path)));if(result==44){return null}return{isFolder:result==31,isDevice:false}},readdir:path=>withStackSave(()=>{var pathBuffer=stringToUTF8OnStack(path);var entries=[];var state=__wasmfs_readdir_start(pathBuffer);if(!state){throw new Error("No such directory")}var entry;while(entry=__wasmfs_readdir_get(state)){entries.push(UTF8ToString(entry))}__wasmfs_readdir_finish(state);return entries}),mount:(type,opts,mountpoint)=>{var backendPointer=type.createBackend(opts);return FS.handleError(withStackSave(()=>__wasmfs_mount(stringToUTF8OnStack(mountpoint),backendPointer)))},unmount:mountpoint=>FS.handleError(withStackSave(()=>_wasmfs_unmount(stringToUTF8OnStack(mountpoint)))),mknod:(path,mode,dev)=>FS_mknod(path,mode,dev),makedev:(ma,mi)=>ma<<8|mi,registerDevice(dev,ops){var backendPointer=_wasmfs_create_jsimpl_backend();var definedOps={userRead:ops.read,userWrite:ops.write,allocFile:file=>{wasmFSDeviceStreams[file]={}},freeFile:file=>{wasmFSDeviceStreams[file]=undefined},getSize:file=>{},setSize:(file,size)=>0,read:(file,buffer,length,offset)=>{var bufferArray=(growMemViews(),HEAP8).subarray(buffer>>>0,buffer+length>>>0);try{var bytesRead=definedOps.userRead(wasmFSDeviceStreams[file],bufferArray,0,length,offset)}catch(e){return-e.errno}(growMemViews(),HEAP8).set(bufferArray,buffer>>>0);return bytesRead},write:(file,buffer,length,offset)=>{var bufferArray=(growMemViews(),HEAP8).subarray(buffer>>>0,buffer+length>>>0);try{var bytesWritten=definedOps.userWrite(wasmFSDeviceStreams[file],bufferArray,0,length,offset)}catch(e){return-e.errno}(growMemViews(),HEAP8).set(bufferArray,buffer>>>0);return bytesWritten}};wasmFS$backends[backendPointer]=definedOps;wasmFSDevices[dev]=backendPointer},createDevice(parent,name,input,output){if(typeof parent!="string"){throw new Error("Only string paths are accepted")}var path=PATH.join2(parent,name);var mode=FS_getMode(!!input,!!output);FS.createDevice.major??=64;var dev=FS.makedev(FS.createDevice.major++,0);FS.registerDevice(dev,{read(stream,buffer,offset,length,pos){var bytesRead=0;for(var i=0;i<length;i++){var result;try{result=input()}catch(e){throw new FS.ErrnoError(29)}if(result===undefined&&bytesRead===0){throw new FS.ErrnoError(6)}if(result===null||result===undefined)break;bytesRead++;buffer[offset+i]=result}return bytesRead},write(stream,buffer,offset,length,pos){for(var i=0;i<length;i++){try{output(buffer[offset+i])}catch(e){throw new FS.ErrnoError(29)}}return i}});return FS.mkdev(path,mode,dev)},mkdev(path,mode,dev){if(typeof dev==="undefined"){dev=mode;mode=438}var deviceBackend=wasmFSDevices[dev];if(!deviceBackend){throw new Error("Invalid device ID.")}return FS.handleError(withStackSave(()=>_wasmfs_create_file(stringToUTF8OnStack(path),mode,deviceBackend)))},rename(oldPath,newPath){return FS.handleError(withStackSave(()=>{var oldPathBuffer=stringToUTF8OnStack(oldPath);var newPathBuffer=stringToUTF8OnStack(newPath);return __wasmfs_rename(oldPathBuffer,newPathBuffer)}))},llseek(stream,offset,whence){return FS.handleError(__wasmfs_llseek(stream.fd,BigInt(offset),whence))}};var FS_createPath=FS.createPath;PThread.init();{initMemory();if(Module["noExitRuntime"])noExitRuntime=Module["noExitRuntime"];if(Module["print"])out=Module["print"];if(Module["printErr"])err=Module["printErr"];if(Module["arguments"])programArgs=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];var preInit=Module["preInit"];if(preInit){if(typeof preInit=="function")Module["preInit"]=preInit=[preInit];while(preInit.length>0){preInit.shift()()}}}Module["callMain"]=callMain;Module["ENV"]=ENV;Module["addRunDependency"]=addRunDependency;Module["removeRunDependency"]=removeRunDependency;Module["FS_preloadFile"]=FS_preloadFile;Module["FS_unlink"]=FS_unlink;Module["FS_createPath"]=FS_createPath;Module["FS"]=FS;Module["FS_createDataFile"]=FS_createDataFile;var proxiedFunctionTable=[_proc_exit,exitOnMainThread,pthreadCreateProxied,__setitimer_js,_environ_get,_environ_sizes_get,_getaddrinfo];function _Py_emscripten_runtime(){var info;if(typeof navigator=="object"){info=navigator.userAgent}else if(typeof process=="object"){info="Node.js ".concat(process.version)}else{info="UNKNOWN"}var len=lengthBytesUTF8(info)+1;var res=_malloc(len);if(res)stringToUTF8(info,res,len);return res}function _Py_CheckEmscriptenSignals_Helper(){if(!Module.Py_EmscriptenSignalBuffer){return 0}try{let result=Module.Py_EmscriptenSignalBuffer[0];Module.Py_EmscriptenSignalBuffer[0]=0;return result}catch(e){return 0}}function _PyEM_detect_type_reflection(){if(!("Function"in WebAssembly)){return false}if(WebAssembly.Function.type){Module.PyEM_CountArgs=func=>WebAssembly.Function.type(wasmTable.get(func)).parameters.length}else{Module.PyEM_CountArgs=func=>wasmTable.get(func).type().parameters.length}return true}function _PyEM_TrampolineCall_JavaScript(func,arg1,arg2,arg3){return wasmTable.get(func)(arg1,arg2,arg3)}function _PyEM_CountFuncParams(func){let n=_PyEM_CountFuncParams.cache.get(func);if(n!==undefined){return n}n=Module.PyEM_CountArgs(func);_PyEM_CountFuncParams.cache.set(func,n);return n}_PyEM_CountFuncParams.cache=new Map;var _main,_fflush,_malloc,_free,_blender_web_exec,_blender_web_last_status,_blender_web_session_alive,_pthread_self,_blender_web_export_frame,_blender_web_export_buffer,_blender_web_export_buffer_size,_blender_web_export_session_reset,_ntohs,_htons,_htonl,__emscripten_tls_init,_emscripten_builtin_memalign,__emscripten_proxy_main,___funcs_on_exit,__emscripten_thread_init,___set_thread_state,__emscripten_thread_crashed,__emscripten_run_js_on_main_thread_done,__emscripten_run_js_on_main_thread,__emscripten_thread_free_data,__emscripten_thread_exit,__emscripten_timeout,__emscripten_check_mailbox,_setThrew,__emscripten_tempret_set,_emscripten_stack_set_limits,__emscripten_stack_restore,__emscripten_stack_alloc,_emscripten_stack_get_current,___cxa_decrement_exception_refcount,___cxa_increment_exception_refcount,___cxa_can_catch,___cxa_get_exception_ptr,__wasmfs_read_file,__wasmfs_write_file,__wasmfs_mkdir,__wasmfs_rmdir,__wasmfs_open,__wasmfs_mknod,__wasmfs_unlink,__wasmfs_chdir,__wasmfs_symlink,__wasmfs_readlink,__wasmfs_write,__wasmfs_pwrite,__wasmfs_chmod,__wasmfs_fchmod,__wasmfs_lchmod,__wasmfs_llseek,__wasmfs_rename,__wasmfs_read,__wasmfs_pread,__wasmfs_truncate,__wasmfs_ftruncate,__wasmfs_close,__wasmfs_mmap,__wasmfs_msync,__wasmfs_munmap,__wasmfs_utime,__wasmfs_stat,__wasmfs_lstat,__wasmfs_mount,__wasmfs_identify,__wasmfs_readdir_start,__wasmfs_readdir_get,__wasmfs_readdir_finish,__wasmfs_get_cwd,_wasmfs_create_jsimpl_backend,_wasmfs_create_memory_backend,_wasmfs_create_file,_wasmfs_unmount,__indirect_function_table,_Py_EMSCRIPTEN_SIGNAL_HANDLING,wasmTable;function assignWasmExports(wasmExports){_main=Module["_main"]=wasmExports["__main_argc_argv"];_fflush=wasmExports["fflush"];_malloc=Module["_malloc"]=wasmExports["malloc"];_free=Module["_free"]=wasmExports["free"];_blender_web_exec=Module["_blender_web_exec"]=wasmExports["blender_web_exec"];_blender_web_last_status=Module["_blender_web_last_status"]=wasmExports["blender_web_last_status"];_blender_web_session_alive=Module["_blender_web_session_alive"]=wasmExports["blender_web_session_alive"];_pthread_self=wasmExports["pthread_self"];_blender_web_export_frame=Module["_blender_web_export_frame"]=wasmExports["blender_web_export_frame"];_blender_web_export_buffer=Module["_blender_web_export_buffer"]=wasmExports["blender_web_export_buffer"];_blender_web_export_buffer_size=Module["_blender_web_export_buffer_size"]=wasmExports["blender_web_export_buffer_size"];_blender_web_export_session_reset=Module["_blender_web_export_session_reset"]=wasmExports["blender_web_export_session_reset"];_ntohs=wasmExports["ntohs"];_htons=wasmExports["htons"];_htonl=wasmExports["htonl"];__emscripten_tls_init=wasmExports["_emscripten_tls_init"];_emscripten_builtin_memalign=wasmExports["emscripten_builtin_memalign"];__emscripten_proxy_main=Module["__emscripten_proxy_main"]=wasmExports["_emscripten_proxy_main"];___funcs_on_exit=wasmExports["__funcs_on_exit"];__emscripten_thread_init=wasmExports["_emscripten_thread_init"];___set_thread_state=wasmExports["__set_thread_state"];__emscripten_thread_crashed=wasmExports["_emscripten_thread_crashed"];__emscripten_run_js_on_main_thread_done=wasmExports["_emscripten_run_js_on_main_thread_done"];__emscripten_run_js_on_main_thread=wasmExports["_emscripten_run_js_on_main_thread"];__emscripten_thread_free_data=wasmExports["_emscripten_thread_free_data"];__emscripten_thread_exit=wasmExports["_emscripten_thread_exit"];__emscripten_timeout=wasmExports["_emscripten_timeout"];__emscripten_check_mailbox=wasmExports["_emscripten_check_mailbox"];_setThrew=wasmExports["setThrew"];__emscripten_tempret_set=wasmExports["_emscripten_tempret_set"];_emscripten_stack_set_limits=wasmExports["emscripten_stack_set_limits"];__emscripten_stack_restore=wasmExports["_emscripten_stack_restore"];__emscripten_stack_alloc=wasmExports["_emscripten_stack_alloc"];_emscripten_stack_get_current=wasmExports["emscripten_stack_get_current"];___cxa_decrement_exception_refcount=wasmExports["__cxa_decrement_exception_refcount"];___cxa_increment_exception_refcount=wasmExports["__cxa_increment_exception_refcount"];___cxa_can_catch=wasmExports["__cxa_can_catch"];___cxa_get_exception_ptr=wasmExports["__cxa_get_exception_ptr"];__wasmfs_read_file=wasmExports["_wasmfs_read_file"];__wasmfs_write_file=wasmExports["_wasmfs_write_file"];__wasmfs_mkdir=wasmExports["_wasmfs_mkdir"];__wasmfs_rmdir=wasmExports["_wasmfs_rmdir"];__wasmfs_open=wasmExports["_wasmfs_open"];__wasmfs_mknod=wasmExports["_wasmfs_mknod"];__wasmfs_unlink=wasmExports["_wasmfs_unlink"];__wasmfs_chdir=wasmExports["_wasmfs_chdir"];__wasmfs_symlink=wasmExports["_wasmfs_symlink"];__wasmfs_readlink=wasmExports["_wasmfs_readlink"];__wasmfs_write=wasmExports["_wasmfs_write"];__wasmfs_pwrite=wasmExports["_wasmfs_pwrite"];__wasmfs_chmod=wasmExports["_wasmfs_chmod"];__wasmfs_fchmod=wasmExports["_wasmfs_fchmod"];__wasmfs_lchmod=wasmExports["_wasmfs_lchmod"];__wasmfs_llseek=wasmExports["_wasmfs_llseek"];__wasmfs_rename=wasmExports["_wasmfs_rename"];__wasmfs_read=wasmExports["_wasmfs_read"];__wasmfs_pread=wasmExports["_wasmfs_pread"];__wasmfs_truncate=wasmExports["_wasmfs_truncate"];__wasmfs_ftruncate=wasmExports["_wasmfs_ftruncate"];__wasmfs_close=wasmExports["_wasmfs_close"];__wasmfs_mmap=wasmExports["_wasmfs_mmap"];__wasmfs_msync=wasmExports["_wasmfs_msync"];__wasmfs_munmap=wasmExports["_wasmfs_munmap"];__wasmfs_utime=wasmExports["_wasmfs_utime"];__wasmfs_stat=wasmExports["_wasmfs_stat"];__wasmfs_lstat=wasmExports["_wasmfs_lstat"];__wasmfs_mount=wasmExports["_wasmfs_mount"];__wasmfs_identify=wasmExports["_wasmfs_identify"];__wasmfs_readdir_start=wasmExports["_wasmfs_readdir_start"];__wasmfs_readdir_get=wasmExports["_wasmfs_readdir_get"];__wasmfs_readdir_finish=wasmExports["_wasmfs_readdir_finish"];__wasmfs_get_cwd=wasmExports["_wasmfs_get_cwd"];_wasmfs_create_jsimpl_backend=wasmExports["wasmfs_create_jsimpl_backend"];_wasmfs_create_memory_backend=wasmExports["wasmfs_create_memory_backend"];_wasmfs_create_file=wasmExports["wasmfs_create_file"];_wasmfs_unmount=wasmExports["wasmfs_unmount"];__indirect_function_table=wasmTable=wasmExports["__indirect_function_table"];_Py_EMSCRIPTEN_SIGNAL_HANDLING=Module["_Py_EMSCRIPTEN_SIGNAL_HANDLING"]=wasmExports["Py_EMSCRIPTEN_SIGNAL_HANDLING"].value>>>0}var wasmImports;function assignWasmImports(){wasmImports={_PyEM_CountFuncParams,_PyEM_TrampolineCall_JavaScript,_PyEM_detect_type_reflection,_Py_CheckEmscriptenSignals_Helper,_Py_emscripten_runtime,__call_sighandler:___call_sighandler,__cxa_begin_catch:___cxa_begin_catch,__cxa_current_primary_exception:___cxa_current_primary_exception,__cxa_end_catch:___cxa_end_catch,__cxa_find_matching_catch_2:___cxa_find_matching_catch_2,__cxa_find_matching_catch_3:___cxa_find_matching_catch_3,__cxa_find_matching_catch_4:___cxa_find_matching_catch_4,__cxa_rethrow:___cxa_rethrow,__cxa_rethrow_primary_exception:___cxa_rethrow_primary_exception,__cxa_throw:___cxa_throw,__cxa_uncaught_exceptions:___cxa_uncaught_exceptions,__pthread_create_js:___pthread_create_js,__resumeException:___resumeException,_abort_js:__abort_js,_emscripten_init_main_thread_js:__emscripten_init_main_thread_js,_emscripten_lookup_name:__emscripten_lookup_name,_emscripten_notify_mailbox_postmessage:__emscripten_notify_mailbox_postmessage,_emscripten_receive_on_main_thread_js:__emscripten_receive_on_main_thread_js,_emscripten_runtime_keepalive_clear:__emscripten_runtime_keepalive_clear,_emscripten_system:__emscripten_system,_emscripten_thread_cleanup:__emscripten_thread_cleanup,_emscripten_thread_mailbox_await:__emscripten_thread_mailbox_await,_emscripten_thread_set_strongref:__emscripten_thread_set_strongref,_emscripten_throw_longjmp:__emscripten_throw_longjmp,_gmtime_js:__gmtime_js,_localtime_js:__localtime_js,_mktime_js:__mktime_js,_setitimer_js:__setitimer_js,_tzset_js:__tzset_js,_wasmfs_copy_preloaded_file_data:__wasmfs_copy_preloaded_file_data,_wasmfs_get_num_preloaded_dirs:__wasmfs_get_num_preloaded_dirs,_wasmfs_get_num_preloaded_files:__wasmfs_get_num_preloaded_files,_wasmfs_get_preloaded_child_path:__wasmfs_get_preloaded_child_path,_wasmfs_get_preloaded_file_mode:__wasmfs_get_preloaded_file_mode,_wasmfs_get_preloaded_file_size:__wasmfs_get_preloaded_file_size,_wasmfs_get_preloaded_parent_path:__wasmfs_get_preloaded_parent_path,_wasmfs_get_preloaded_path_name:__wasmfs_get_preloaded_path_name,_wasmfs_jsimpl_alloc_file:__wasmfs_jsimpl_alloc_file,_wasmfs_jsimpl_free_file:__wasmfs_jsimpl_free_file,_wasmfs_jsimpl_get_size:__wasmfs_jsimpl_get_size,_wasmfs_jsimpl_read:__wasmfs_jsimpl_read,_wasmfs_jsimpl_set_size:__wasmfs_jsimpl_set_size,_wasmfs_jsimpl_write:__wasmfs_jsimpl_write,_wasmfs_stdin_get_char:__wasmfs_stdin_get_char,clock_res_get:_clock_res_get,clock_time_get:_clock_time_get,emscripten_check_blocking_allowed:_emscripten_check_blocking_allowed,emscripten_date_now:_emscripten_date_now,emscripten_err:_emscripten_err,emscripten_exit_with_live_runtime:_emscripten_exit_with_live_runtime,emscripten_get_heap_max:_emscripten_get_heap_max,emscripten_get_now:_emscripten_get_now,emscripten_num_logical_cores:_emscripten_num_logical_cores,emscripten_out:_emscripten_out,emscripten_resize_heap:_emscripten_resize_heap,emscripten_runtime_keepalive_check:_emscripten_runtime_keepalive_check,environ_get:_environ_get,environ_sizes_get:_environ_sizes_get,exit:_exit,getaddrinfo:_getaddrinfo,getnameinfo:_getnameinfo,getprotobyname:_getprotobyname,invoke_d,invoke_dd,invoke_ddd,invoke_di,invoke_dii,invoke_diii,invoke_f,invoke_ff,invoke_fff,invoke_fffff,invoke_ffi,invoke_ffii,invoke_ffijiiii,invoke_fi,invoke_fid,invoke_fidf,invoke_fif,invoke_fiff,invoke_fifff,invoke_fiffff,invoke_fifffii,invoke_fiffii,invoke_fiffiii,invoke_fifi,invoke_fifii,invoke_fii,invoke_fiif,invoke_fiiff,invoke_fiiffiii,invoke_fiifi,invoke_fiifii,invoke_fiii,invoke_fiiiff,invoke_fiiifff,invoke_fiiiffi,invoke_fiiifiii,invoke_fiiifiiiii,invoke_fiiii,invoke_fiiiif,invoke_fiiiii,invoke_fiiiiii,invoke_fiiiiiii,invoke_fij,invoke_fijii,invoke_fijjf,invoke_fijjj,invoke_i,invoke_id,invoke_idiiii,invoke_if,invoke_ifff,invoke_ifffiiiii,invoke_iffi,invoke_ififiiffffffii,invoke_ifiii,invoke_ii,invoke_iid,invoke_iidddd,invoke_iiddddddd,invoke_iiddi,invoke_iidi,invoke_iidiiii,invoke_iidiiiii,invoke_iif,invoke_iiff,invoke_iiffffffffi,invoke_iiffi,invoke_iiffii,invoke_iifi,invoke_iifii,invoke_iifiifii,invoke_iifiiiii,invoke_iii,invoke_iiid,invoke_iiidi,invoke_iiidii,invoke_iiidiiiii,invoke_iiif,invoke_iiiff,invoke_iiifff,invoke_iiifffff,invoke_iiifffii,invoke_iiiffi,invoke_iiifii,invoke_iiifiiffii,invoke_iiifiii,invoke_iiifiiiiiii,invoke_iiii,invoke_iiiid,invoke_iiiidd,invoke_iiiiddi,invoke_iiiidi,invoke_iiiif,invoke_iiiiff,invoke_iiiifi,invoke_iiiififii,invoke_iiiifii,invoke_iiiifiii,invoke_iiiifiiifiiiii,invoke_iiiifiiiiiiii,invoke_iiiii,invoke_iiiiid,invoke_iiiiif,invoke_iiiiiffff,invoke_iiiiiffii,invoke_iiiiiffiifii,invoke_iiiiiffiii,invoke_iiiiifi,invoke_iiiiifiii,invoke_iiiiifiiii,invoke_iiiiifiiiiiii,invoke_iiiiii,invoke_iiiiiiffi,invoke_iiiiiifi,invoke_iiiiiifiifi,invoke_iiiiiii,invoke_iiiiiiif,invoke_iiiiiiifffi,invoke_iiiiiiifi,invoke_iiiiiiifii,invoke_iiiiiiii,invoke_iiiiiiiidii,invoke_iiiiiiiifi,invoke_iiiiiiiii,invoke_iiiiiiiiidii,invoke_iiiiiiiiiffi,invoke_iiiiiiiiifi,invoke_iiiiiiiiifiiiiii,invoke_iiiiiiiiii,invoke_iiiiiiiiiif,invoke_iiiiiiiiiii,invoke_iiiiiiiiiiiffi,invoke_iiiiiiiiiiii,invoke_iiiiiiiiiiiif,invoke_iiiiiiiiiiiifffiiifiii,invoke_iiiiiiiiiiiiffi,invoke_iiiiiiiiiiiii,invoke_iiiiiiiiiiiiii,invoke_iiiiiiiiiiiiiii,invoke_iiiiiiiiiiiiiiii,invoke_iiiiiiiiiiiiiiiiiii,invoke_iiiiiiiiiiiiiiiijjjii,invoke_iiiiiiiiiiiiiiijjjii,invoke_iiiiiiiiiiiiiijjj,invoke_iiiiiiiiiiiiijj,invoke_iiiiiiiiiiiijjj,invoke_iiiiiiiiiiijj,invoke_iiiiiiiiiijjj,invoke_iiiiiiiiiijjjiiiii,invoke_iiiiiiiiijiji,invoke_iiiiiiiiji,invoke_iiiiiiiijjjii,invoke_iiiiiiij,invoke_iiiiiiijj,invoke_iiiiiiijjj,invoke_iiiiiiijjjiijjj,invoke_iiiiiiijjjiijjji,invoke_iiiiiij,invoke_iiiiiijiii,invoke_iiiiiijji,invoke_iiiiiijjj,invoke_iiiiiijjjjijjj,invoke_iiiiij,invoke_iiiiijii,invoke_iiiiijiii,invoke_iiiiijjj,invoke_iiiiijjji,invoke_iiiij,invoke_iiiiji,invoke_iiiijiii,invoke_iiiijiiii,invoke_iiiijjj,invoke_iiiijjjii,invoke_iiiijjjiiiii,invoke_iiiijjjjjji,invoke_iiij,invoke_iiiji,invoke_iiijii,invoke_iiijiii,invoke_iij,invoke_iiji,invoke_iijii,invoke_iijiiffii,invoke_iijiii,invoke_iijijii,invoke_iijijiiiiiii,invoke_iijj,invoke_iijji,invoke_iijjiii,invoke_ij,invoke_ijii,invoke_ijiiii,invoke_ijjiiii,invoke_j,invoke_ji,invoke_jifii,invoke_jii,invoke_jiii,invoke_jiiii,invoke_jiij,invoke_jiijj,invoke_jij,invoke_jiji,invoke_jjj,invoke_v,invoke_vdii,invoke_vf,invoke_vff,invoke_vfff,invoke_vffff,invoke_vffffffi,invoke_vffffiii,invoke_vfffii,invoke_vfffiii,invoke_vfffiiii,invoke_vffi,invoke_vffiffi,invoke_vfii,invoke_vfiii,invoke_vfiiifiiiii,invoke_vi,invoke_vid,invoke_vidd,invoke_viddd,invoke_viddddi,invoke_vidddi,invoke_vidi,invoke_vididddd,invoke_vidiii,invoke_vif,invoke_vifdi,invoke_viff,invoke_vifff,invoke_viffff,invoke_viffffff,invoke_viffffffffiiii,invoke_viffffi,invoke_viffffii,invoke_vifffi,invoke_viffi,invoke_viffii,invoke_viffiii,invoke_viffiiiiiffi,invoke_vifi,invoke_vififiif,invoke_vifii,invoke_vifiii,invoke_vifiiifiiiiiiiiiiiiifiiii,invoke_vifiiii,invoke_vifiiiii,invoke_vifiiiiii,invoke_vii,invoke_viid,invoke_viiddd,invoke_viidddd,invoke_viidi,invoke_viif,invoke_viiff,invoke_viifff,invoke_viiffff,invoke_viifffi,invoke_viiffi,invoke_viiffifi,invoke_viiffii,invoke_viiffiiii,invoke_viiffiiiii,invoke_viiffiiiiii,invoke_viiffiiiiiifi,invoke_viifi,invoke_viififf,invoke_viifii,invoke_viifiiffiiiiiii,invoke_viifiii,invoke_viifiiii,invoke_viifiiiiii,invoke_viii,invoke_viiid,invoke_viiif,invoke_viiiff,invoke_viiiffff,invoke_viiiffffif,invoke_viiifffi,invoke_viiiffi,invoke_viiiffii,invoke_viiiffiiii,invoke_viiifi,invoke_viiifif,invoke_viiififf,invoke_viiififii,invoke_viiifii,invoke_viiifiiiii,invoke_viiifiiiiiiiiii,invoke_viiifiiijiiii,invoke_viiifij,invoke_viiii,invoke_viiiif,invoke_viiiiff,invoke_viiiifff,invoke_viiiifffff,invoke_viiiifffiii,invoke_viiiiffii,invoke_viiiiffiiii,invoke_viiiifi,invoke_viiiififi,invoke_viiiifii,invoke_viiiifiiii,invoke_viiiii,invoke_viiiiif,invoke_viiiiiffffi,invoke_viiiiifffiii,invoke_viiiiiffi,invoke_viiiiifi,invoke_viiiiififffiii,invoke_viiiiifii,invoke_viiiiifiii,invoke_viiiiifiiiii,invoke_viiiiii,invoke_viiiiiid,invoke_viiiiiif,invoke_viiiiiifffiiifii,invoke_viiiiiiffii,invoke_viiiiiifi,invoke_viiiiiifif,invoke_viiiiiifii,invoke_viiiiiifiii,invoke_viiiiiifiiiiiiiiii,invoke_viiiiiii,invoke_viiiiiiidiiii,invoke_viiiiiiif,invoke_viiiiiiifi,invoke_viiiiiiifiiii,invoke_viiiiiiifijiii,invoke_viiiiiiii,invoke_viiiiiiiif,invoke_viiiiiiiiffii,invoke_viiiiiiiifi,invoke_viiiiiiiii,invoke_viiiiiiiiif,invoke_viiiiiiiiifi,invoke_viiiiiiiiifii,invoke_viiiiiiiiii,invoke_viiiiiiiiiidii,invoke_viiiiiiiiiif,invoke_viiiiiiiiiififii,invoke_viiiiiiiiiii,invoke_viiiiiiiiiiiff,invoke_viiiiiiiiiiii,invoke_viiiiiiiiiiiii,invoke_viiiiiiiiiiiiii,invoke_viiiiiiiiiiiiiii,invoke_viiiiiiiiiiiiiiii,invoke_viiiiiiiiiiiiiiiii,invoke_viiiiiiiiiiiiiiiiiiiii,invoke_viiiiiiiiiiiiiij,invoke_viiiiiiiiiiijij,invoke_viiiiiiiiiijj,invoke_viiiiiiiiij,invoke_viiiiiiiijijiiii,invoke_viiiiiiij,invoke_viiiiiiiji,invoke_viiiiiiijiii,invoke_viiiiiij,invoke_viiiiiiji,invoke_viiiiiijij,invoke_viiiiiijjij,invoke_viiiiij,invoke_viiiiiji,invoke_viiiiijif,invoke_viiiiijiij,invoke_viiiiijij,invoke_viiiiijiji,invoke_viiiiijjj,invoke_viiiiijjjfiiiiiii,invoke_viiiij,invoke_viiiiji,invoke_viiiijii,invoke_viiiijiiiii,invoke_viiiijij,invoke_viiiijjij,invoke_viiij,invoke_viiiji,invoke_viiijii,invoke_viiijiii,invoke_viiijiiii,invoke_viiijiiiii,invoke_viiijiiiiii,invoke_viiijij,invoke_viiijj,invoke_viiijji,invoke_viij,invoke_viijfi,invoke_viijfii,invoke_viiji,invoke_viijii,invoke_viijiii,invoke_viijiiii,invoke_viijiiiiii,invoke_viijiji,invoke_viijijii,invoke_viijj,invoke_viijji,invoke_viijjij,invoke_viijjjjj,invoke_vij,invoke_vijf,invoke_viji,invoke_vijif,invoke_vijifi,invoke_vijii,invoke_vijiif,invoke_vijiii,invoke_vijiiii,invoke_vijiiiii,invoke_vijiiiiifffiiii,invoke_vijiiiiii,invoke_vijiiijiii,invoke_vijiijii,invoke_vijijfii,invoke_vijj,invoke_vijjjfiii,invoke_vj,invoke_vji,invoke_vjiiiii,invoke_vjjii,invoke_vjjjii,invoke_vjjjjii,invoke_vjjjjjjii,llvm_eh_typeid_for:_llvm_eh_typeid_for,memory:wasmMemory,proc_exit:_proc_exit,random_get:_random_get}}function invoke_iiii(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ii(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_i(index){var sp=stackSave();try{return getWasmTableEntry(index)()}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viii(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vi(index,a1){var sp=stackSave();try{getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_v(index){var sp=stackSave();try{getWasmTableEntry(index)()}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vij(index,a1,a2){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iii(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijii(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vii(index,a1,a2){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiij(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiji(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiii(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiji(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viji(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiif(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ij(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiifiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiifiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiffiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiifiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiffiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiffiiiiiifi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiffiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiifiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viij(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiji(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijj(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijj(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iij(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiij(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viifiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijif(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iijji(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fij(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiif(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiii(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iifi(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fi(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fif(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viif(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiifii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiifiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fii(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiifi(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ji(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function invoke_iiiiiiiiji(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiijii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiji(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_d(index){var sp=stackSave();try{return getWasmTableEntry(index)()}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiijiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiji(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiij(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fifff(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiji(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiifi(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiiijij(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijiiijiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiifi(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiiiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_j(index){var sp=stackSave();try{return getWasmTableEntry(index)()}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function invoke_viiij(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiifii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiij(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiifi(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vid(index,a1,a2){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiij(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiji(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiif(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijji(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vidi(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vifi(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiif(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiff(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiff(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iif(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiffi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiffiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iijj(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vif(index,a1,a2){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iifiiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiifif(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijiji(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ijiiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiij(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiidii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiid(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_jiji(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function invoke_jiii(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function invoke_iiijii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiijiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijfi(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iijijiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiif(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiijiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iifii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiif(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiij(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_jii(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function invoke_iiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiijiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiji(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiijij(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiijijiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiij(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiijiij(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiij(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiijij(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiijiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiijij(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiji(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijiijii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiid(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiifff(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiijji(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viffff(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiif(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiifi(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vifiiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiffii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vifiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viifi(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiifii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_di(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viffii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viff(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vifff(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vffff(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiid(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vj(index,a1){var sp=stackSave();try{getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viffiiiiiffi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iid(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fifi(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiijii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiif(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vf(index,a1){var sp=stackSave();try{getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijiiiiifffiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viffffff(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiff(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vjiiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijfii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viifii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiddddddd(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiidd(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiddi(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiddi(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viid(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iidddd(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viifff(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ff(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiddd(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vidd(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viidi(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_diii(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viddddi(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiidi(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viddd(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viidddd(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iidiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iidi(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viffi(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiffff(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_dii(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vifii(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iidiiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_id(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vididddd(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiif(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiiiiiij(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vifiiifiiiiiiiiiiiiifiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19,a20,a21,a22,a23,a24){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19,a20,a21,a22,a23,a24)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiif(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiifij(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiifiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiifijiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiifffi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vfiiifiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiififffiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiifii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viifffi(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiffffi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiifiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiffi(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiff(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiijij(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_jiij(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function invoke_fiifi(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiijii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijf(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiijif(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiif(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vidddi(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiijjjii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiijjj(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiififii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiidii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vfffiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiffff(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiffff(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiifiifi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiifiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiffi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iijijii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiijiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiffii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijiiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiij(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiffi(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_if(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiffii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiiffi(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iijiiffii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fid(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vifdi(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiifiiffii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiifffiiifii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viifiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijijfii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiijiji(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiifffff(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiifii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiijiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fidf(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiffii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vifiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iijii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiff(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iffi(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiffi(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijifi(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viifiiffiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiifi(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vififiif(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiifi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiifi(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiifi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijijii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiijiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiifffiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiifffiiifiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19,a20,a21){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19,a20,a21)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiifff(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiff(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiifii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ifff(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vfffiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiif(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiifiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiffiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fijjf(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vff(index,a1,a2){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vifffi(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viifiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiifiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiififi(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiifi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiijiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ffi(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fff(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fffff(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiffiifii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vfiii(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiifffii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiifiiijiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiif(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiifiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiiff(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiiif(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vfii(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vffi(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiff(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiiiff(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiif(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiidiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiijiji(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vfff(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiififf(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vfffii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiiffi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vifiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiif(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_f(index){var sp=stackSave();try{return getWasmTableEntry(index)()}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiffiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vffiffi(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vffffffi(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiifiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viffffii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viffiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viffffi(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viffffffffiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijjij(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiffii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ififiiffffffii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiffffffffi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vji(index,a1,a2){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiifiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiffi(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ifffiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiffi(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ifiii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ijii(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fifffii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vffffiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiifif(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiffii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_jij(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function invoke_ffijiiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiifi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiifiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiifiiifiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fijjj(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_jifii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function invoke_viiiifii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiffff(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiff(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiffffif(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiffifi(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiffii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiffiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiifi(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiifiii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ffii(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiifii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiifi(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vidiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiifffi(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiifff(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiid(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiidiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiidii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiidi(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_dd(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ddd(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiijji(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijjjfiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiijjjjjji(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiiiijjj(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viijjjjj(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiijiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiifffff(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiijjjii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiijjj(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiffi(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiiifiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiifiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iifiifii(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiifffiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiffii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiffiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19,a20,a21){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19,a20,a21)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fifii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiijj(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiifiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iijiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iijjiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vjjii(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_ijjiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vdii(index,a1,a2,a3){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_idiiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vjjjjjjii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiijjj(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vijiif(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fijii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vjjjii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiijjjiijjji(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiijjj(index,a1,a2,a3,a4,a5,a6,a7){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_fiifii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viififf(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiijjj(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiiiiijjjii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiijjji(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiijjjiijjj(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiijiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiijj(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiijjj(index,a1,a2,a3,a4,a5,a6,a7,a8,a9){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiijjjjijjj(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiijj(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiijjjfiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiijjj(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiiiiiijjjii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19,a20){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19,a20)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiiiiiififii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_jjj(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function invoke_viiiiiiiiiijj(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiiiiijj(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiidii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_vjjjjii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiiiiiiijjjiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiijjjiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_jiijj(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function invoke_viiiijjij(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiiiiijjij(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_viiififii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_iiiiid(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0)}}function invoke_jiiii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(!(e instanceof EmscriptenEH))throw e;_setThrew(1,0);return 0n}}function applySignatureConversions(wasmExports){wasmExports=Object.assign({},wasmExports);var makeWrapper_pp=f=>a0=>f(a0)>>>0;var makeWrapper_p=f=>()=>f()>>>0;var makeWrapper_ppp=f=>(a0,a1)=>f(a0,a1)>>>0;var makeWrapper_pp____=f=>(a0,a1,a2,a3,a4)=>f(a0,a1,a2,a3,a4)>>>0;wasmExports["malloc"]=makeWrapper_pp(wasmExports["malloc"]);wasmExports["pthread_self"]=makeWrapper_p(wasmExports["pthread_self"]);wasmExports["_emscripten_tls_init"]=makeWrapper_p(wasmExports["_emscripten_tls_init"]);wasmExports["emscripten_builtin_memalign"]=makeWrapper_ppp(wasmExports["emscripten_builtin_memalign"]);wasmExports["_emscripten_stack_alloc"]=makeWrapper_pp(wasmExports["_emscripten_stack_alloc"]);wasmExports["emscripten_stack_get_current"]=makeWrapper_p(wasmExports["emscripten_stack_get_current"]);wasmExports["__cxa_get_exception_ptr"]=makeWrapper_pp(wasmExports["__cxa_get_exception_ptr"]);wasmExports["_wasmfs_mmap"]=makeWrapper_pp____(wasmExports["_wasmfs_mmap"]);wasmExports["_wasmfs_readdir_start"]=makeWrapper_pp(wasmExports["_wasmfs_readdir_start"]);wasmExports["_wasmfs_readdir_get"]=makeWrapper_pp(wasmExports["_wasmfs_readdir_get"]);wasmExports["_wasmfs_get_cwd"]=makeWrapper_p(wasmExports["_wasmfs_get_cwd"]);wasmExports["wasmfs_create_jsimpl_backend"]=makeWrapper_p(wasmExports["wasmfs_create_jsimpl_backend"]);wasmExports["wasmfs_create_memory_backend"]=makeWrapper_p(wasmExports["wasmfs_create_memory_backend"]);return wasmExports}function callMain(args=[]){var entryFunction=__emscripten_proxy_main;runtimeKeepalivePush();args.unshift(thisProgram);var argc=args.length;var argv=stackAlloc((argc+1)*4);var argv_ptr=argv;for(var arg of args){(growMemViews(),HEAPU32)[argv_ptr>>>2>>>0]=stringToUTF8OnStack(arg);argv_ptr+=4}(growMemViews(),HEAPU32)[argv_ptr>>>2>>>0]=0;try{var ret=entryFunction(argc,argv);exitJS(ret,true);return ret}catch(e){return handleException(e)}}async function run(args=programArgs){if(ENVIRONMENT_IS_PTHREAD){initRuntime();return}preRun();if(runDependencies){await resolveRunDependencies()}var setStatus=Module["setStatus"];if(setStatus){setStatus("Running...");await new Promise(resolve=>setTimeout(resolve,1));setTimeout(setStatus,1,"")}if(ABORT)return;initRuntime();Module["onRuntimeInitialized"]?.();var noInitialRun=Module["noInitialRun"]||false;if(!noInitialRun)callMain(args);postRun()}var wasmExports;if(!ENVIRONMENT_IS_PTHREAD){wasmExports=await createWasm();await run()}Module["releasePreloadedFileData"]=()=>{let bytes=0;for(const preloaded of wasmFSPreloadedFiles)bytes+=preloaded.fileData.length;const files=wasmFSPreloadedFiles.length;wasmFSPreloadedFiles.length=0;wasmFSPreloadedDirs.length=0;if(Array.isArray(Module["preRun"]))Module["preRun"].length=0;return{files,bytes}};
|
|
2
|
+
;return Module}})();if(typeof exports==="object"&&typeof module==="object"){module.exports=createBlenderModule;module.exports.default=createBlenderModule}else if(typeof define==="function"&&define["amd"])define([],()=>createBlenderModule);var isPthread=globalThis.name=="em-pthread";var isNode=globalThis.process?.versions?.node&&globalThis.process?.type!="renderer";if(isNode)isPthread=require("node:worker_threads").workerData==="em-pthread";isPthread&&createBlenderModule();
|