From c2b96d98b6474806546c217283f42adef06e0a9f Mon Sep 17 00:00:00 2001 From: superp00t Date: Sun, 8 Sep 2024 21:04:31 -0400 Subject: [PATCH] refactor(profile): profiles are now stored in profile/ subdirectory --- Makefile | 6 +- README.md | 14 +- .../3.3.5a-windows/ida/import_data_types.idc | 67 + profile/3.3.5a-windows/ida/import_symbols.idc | 7787 ++++ .../include/common/datarecycler.h | 39 + .../3.3.5a-windows/include/common/handle.h | 13 + .../3.3.5a-windows/include/common/instance.h | 43 + .../3.3.5a-windows/include/common/status.h | 36 + profile/3.3.5a-windows/include/cursor/types.h | 69 + profile/3.3.5a-windows/include/d3d9/caps.h | 125 + profile/3.3.5a-windows/include/d3d9/device.h | 60 + .../3.3.5a-windows/include/event/context.h | 66 + .../3.3.5a-windows/include/event/handler.h | 20 + .../3.3.5a-windows/include/event/id_table.h | 15 + .../3.3.5a-windows/include/event/keydown.h | 16 + .../3.3.5a-windows/include/event/message.h | 23 + profile/3.3.5a-windows/include/event/timer.h | 32 + profile/3.3.5a-windows/include/event/types.h | 277 + .../include/framescript/event_object.h | 35 + .../include/framescript/object.h | 15 + profile/3.3.5a-windows/include/gx/batch.h | 17 + profile/3.3.5a-windows/include/gx/buffer.h | 136 + profile/3.3.5a-windows/include/gx/caps.h | 61 + profile/3.3.5a-windows/include/gx/d3d9.h | 46 + profile/3.3.5a-windows/include/gx/device.h | 254 + profile/3.3.5a-windows/include/gx/format.h | 50 + .../3.3.5a-windows/include/gx/matrix_stack.h | 22 + profile/3.3.5a-windows/include/gx/shader.h | 30 + profile/3.3.5a-windows/include/gx/state_bom.h | 21 + profile/3.3.5a-windows/include/gx/texture.h | 50 + profile/3.3.5a-windows/include/gx/types.h | 397 + profile/3.3.5a-windows/include/main.h | 68 + profile/3.3.5a-windows/include/storm/array.h | 52 + .../include/storm/array/pointer_to_void.h | 10 + .../include/storm/array/uint32_t.h | 10 + .../include/storm/array/uint8_t.h | 10 + profile/3.3.5a-windows/include/storm/file.h | 9 + profile/3.3.5a-windows/include/storm/hash.h | 48 + profile/3.3.5a-windows/include/storm/list.h | 33 + profile/3.3.5a-windows/include/storm/queue.h | 31 + .../storm/queue/timer_priority_uint32_t.h | 10 + profile/3.3.5a-windows/include/storm/thread.h | 17 + .../3.3.5a-windows/include/system/detect.h | 23 + profile/3.3.5a-windows/include/system/types.h | 40 + profile/3.3.5a-windows/include/tempest/box.h | 21 + .../3.3.5a-windows/include/tempest/matrix.h | 55 + .../3.3.5a-windows/include/tempest/plane.h | 13 + .../include/tempest/quaternion.h | 13 + .../3.3.5a-windows/include/tempest/range.h | 19 + profile/3.3.5a-windows/include/tempest/rect.h | 23 + .../3.3.5a-windows/include/tempest/sphere.h | 13 + .../3.3.5a-windows/include/tempest/vector.h | 43 + profile/3.3.5a-windows/include/texture/blp.h | 70 + profile/3.3.5a-windows/include/texture/tga.h | 66 + .../3.3.5a-windows/include/ui/simpleframe.h | 9 + profile/3.3.5a-windows/symbol/camera/func.sym | 5 + profile/3.3.5a-windows/symbol/client/func.sym | 9 + .../3.3.5a-windows/symbol/console/func.sym | 42 + .../3.3.5a-windows/symbol/console/label.sym | 35 + .../3.3.5a-windows/symbol/coordinate/func.sym | 9 + profile/3.3.5a-windows/symbol/cursor/func.sym | 4 + .../3.3.5a-windows/symbol/cursor/label.sym | 10 + .../symbol/dataallocator/func.sym | 2 + .../symbol/datarecycler/func.sym | 3 + .../3.3.5a-windows/symbol/datastore/func.sym | 26 + profile/3.3.5a-windows/symbol/event/func.sym | 50 + profile/3.3.5a-windows/symbol/event/label.sym | 3 + profile/3.3.5a-windows/symbol/file/func.sym | 12 + .../symbol/framescript/func.sym | 2 + profile/3.3.5a-windows/symbol/gameui/func.sym | 1 + .../3.3.5a-windows/symbol/gluemgr/func.sym | 18 + .../3.3.5a-windows/symbol/gluemgr/label.sym | 1 + profile/3.3.5a-windows/symbol/gx/func.sym | 22 + .../3.3.5a-windows/symbol/gxdevice/func.sym | 57 + .../3.3.5a-windows/symbol/gxdevice/label.sym | 5 + .../symbol/gxdeviced3d/func.sym | 57 + .../symbol/gxdeviced3d/label.sym | 2 + .../symbol/gxdeviced3d9ex/func.sym | 1 + .../symbol/gxdeviced3d9ex/label.sym | 1 + .../symbol/gxdeviceopengl/func.sym | 1 + .../symbol/gxdeviceopengl/label.sym | 1 + profile/3.3.5a-windows/symbol/gxprim/func.sym | 4 + .../3.3.5a-windows/symbol/gxshader/func.sym | 1 + .../3.3.5a-windows/symbol/gxtexture/func.sym | 1 + profile/3.3.5a-windows/symbol/gxu/func.sym | 22 + profile/3.3.5a-windows/symbol/handle/func.sym | 3 + profile/3.3.5a-windows/symbol/lock/func.sym | 2 + profile/3.3.5a-windows/symbol/lua/func.sym | 22 + profile/3.3.5a-windows/symbol/main.sym | 2707 ++ .../3.3.5a-windows/symbol/nullsub/func.sym | 158 + profile/3.3.5a-windows/symbol/os/func.sym | 29 + .../3.3.5a-windows/symbol/rcstring/func.sym | 1 + profile/3.3.5a-windows/symbol/script/func.sym | 1972 + profile/3.3.5a-windows/symbol/storm/func.sym | 37 + .../3.3.5a-windows/symbol/tempest/func.sym | 23 + .../3.3.5a-windows/symbol/textblock/func.sym | 5 + .../3.3.5a-windows/symbol/texture/func.sym | 45 + .../3.3.5a-windows/symbol/texture/label.sym | 3 + profile/3.3.5a-windows/x32dbg/game.dd32 | 37416 ++++++++++++++++ profile/3.3.5a-windows/x32dbg/types.json | 5282 +++ 100 files changed, 58650 insertions(+), 10 deletions(-) create mode 100644 profile/3.3.5a-windows/ida/import_data_types.idc create mode 100644 profile/3.3.5a-windows/ida/import_symbols.idc create mode 100644 profile/3.3.5a-windows/include/common/datarecycler.h create mode 100644 profile/3.3.5a-windows/include/common/handle.h create mode 100644 profile/3.3.5a-windows/include/common/instance.h create mode 100644 profile/3.3.5a-windows/include/common/status.h create mode 100644 profile/3.3.5a-windows/include/cursor/types.h create mode 100644 profile/3.3.5a-windows/include/d3d9/caps.h create mode 100644 profile/3.3.5a-windows/include/d3d9/device.h create mode 100644 profile/3.3.5a-windows/include/event/context.h create mode 100644 profile/3.3.5a-windows/include/event/handler.h create mode 100644 profile/3.3.5a-windows/include/event/id_table.h create mode 100644 profile/3.3.5a-windows/include/event/keydown.h create mode 100644 profile/3.3.5a-windows/include/event/message.h create mode 100644 profile/3.3.5a-windows/include/event/timer.h create mode 100644 profile/3.3.5a-windows/include/event/types.h create mode 100644 profile/3.3.5a-windows/include/framescript/event_object.h create mode 100644 profile/3.3.5a-windows/include/framescript/object.h create mode 100644 profile/3.3.5a-windows/include/gx/batch.h create mode 100644 profile/3.3.5a-windows/include/gx/buffer.h create mode 100644 profile/3.3.5a-windows/include/gx/caps.h create mode 100644 profile/3.3.5a-windows/include/gx/d3d9.h create mode 100644 profile/3.3.5a-windows/include/gx/device.h create mode 100644 profile/3.3.5a-windows/include/gx/format.h create mode 100644 profile/3.3.5a-windows/include/gx/matrix_stack.h create mode 100644 profile/3.3.5a-windows/include/gx/shader.h create mode 100644 profile/3.3.5a-windows/include/gx/state_bom.h create mode 100644 profile/3.3.5a-windows/include/gx/texture.h create mode 100644 profile/3.3.5a-windows/include/gx/types.h create mode 100644 profile/3.3.5a-windows/include/main.h create mode 100644 profile/3.3.5a-windows/include/storm/array.h create mode 100644 profile/3.3.5a-windows/include/storm/array/pointer_to_void.h create mode 100644 profile/3.3.5a-windows/include/storm/array/uint32_t.h create mode 100644 profile/3.3.5a-windows/include/storm/array/uint8_t.h create mode 100644 profile/3.3.5a-windows/include/storm/file.h create mode 100644 profile/3.3.5a-windows/include/storm/hash.h create mode 100644 profile/3.3.5a-windows/include/storm/list.h create mode 100644 profile/3.3.5a-windows/include/storm/queue.h create mode 100644 profile/3.3.5a-windows/include/storm/queue/timer_priority_uint32_t.h create mode 100644 profile/3.3.5a-windows/include/storm/thread.h create mode 100644 profile/3.3.5a-windows/include/system/detect.h create mode 100644 profile/3.3.5a-windows/include/system/types.h create mode 100644 profile/3.3.5a-windows/include/tempest/box.h create mode 100644 profile/3.3.5a-windows/include/tempest/matrix.h create mode 100644 profile/3.3.5a-windows/include/tempest/plane.h create mode 100644 profile/3.3.5a-windows/include/tempest/quaternion.h create mode 100644 profile/3.3.5a-windows/include/tempest/range.h create mode 100644 profile/3.3.5a-windows/include/tempest/rect.h create mode 100644 profile/3.3.5a-windows/include/tempest/sphere.h create mode 100644 profile/3.3.5a-windows/include/tempest/vector.h create mode 100644 profile/3.3.5a-windows/include/texture/blp.h create mode 100644 profile/3.3.5a-windows/include/texture/tga.h create mode 100644 profile/3.3.5a-windows/include/ui/simpleframe.h create mode 100644 profile/3.3.5a-windows/symbol/camera/func.sym create mode 100644 profile/3.3.5a-windows/symbol/client/func.sym create mode 100644 profile/3.3.5a-windows/symbol/console/func.sym create mode 100644 profile/3.3.5a-windows/symbol/console/label.sym create mode 100644 profile/3.3.5a-windows/symbol/coordinate/func.sym create mode 100644 profile/3.3.5a-windows/symbol/cursor/func.sym create mode 100644 profile/3.3.5a-windows/symbol/cursor/label.sym create mode 100644 profile/3.3.5a-windows/symbol/dataallocator/func.sym create mode 100644 profile/3.3.5a-windows/symbol/datarecycler/func.sym create mode 100644 profile/3.3.5a-windows/symbol/datastore/func.sym create mode 100644 profile/3.3.5a-windows/symbol/event/func.sym create mode 100644 profile/3.3.5a-windows/symbol/event/label.sym create mode 100644 profile/3.3.5a-windows/symbol/file/func.sym create mode 100644 profile/3.3.5a-windows/symbol/framescript/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gameui/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gluemgr/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gluemgr/label.sym create mode 100644 profile/3.3.5a-windows/symbol/gx/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gxdevice/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gxdevice/label.sym create mode 100644 profile/3.3.5a-windows/symbol/gxdeviced3d/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gxdeviced3d/label.sym create mode 100644 profile/3.3.5a-windows/symbol/gxdeviced3d9ex/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gxdeviced3d9ex/label.sym create mode 100644 profile/3.3.5a-windows/symbol/gxdeviceopengl/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gxdeviceopengl/label.sym create mode 100644 profile/3.3.5a-windows/symbol/gxprim/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gxshader/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gxtexture/func.sym create mode 100644 profile/3.3.5a-windows/symbol/gxu/func.sym create mode 100644 profile/3.3.5a-windows/symbol/handle/func.sym create mode 100644 profile/3.3.5a-windows/symbol/lock/func.sym create mode 100644 profile/3.3.5a-windows/symbol/lua/func.sym create mode 100644 profile/3.3.5a-windows/symbol/main.sym create mode 100644 profile/3.3.5a-windows/symbol/nullsub/func.sym create mode 100644 profile/3.3.5a-windows/symbol/os/func.sym create mode 100644 profile/3.3.5a-windows/symbol/rcstring/func.sym create mode 100644 profile/3.3.5a-windows/symbol/script/func.sym create mode 100644 profile/3.3.5a-windows/symbol/storm/func.sym create mode 100644 profile/3.3.5a-windows/symbol/tempest/func.sym create mode 100644 profile/3.3.5a-windows/symbol/textblock/func.sym create mode 100644 profile/3.3.5a-windows/symbol/texture/func.sym create mode 100644 profile/3.3.5a-windows/symbol/texture/label.sym create mode 100644 profile/3.3.5a-windows/x32dbg/game.dd32 create mode 100644 profile/3.3.5a-windows/x32dbg/types.json diff --git a/Makefile b/Makefile index caf588c..59fc122 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ all: generate compile-symbols: - ./script/compile-symbols 3.3.5a + ./script/compile-symbols profile/3.3.5a-windows ida-gen: - ./bin/binana ida-gen --game 3.3.5a + ./bin/binana ida-gen --game profile/3.3.5a-windows x64dbg-gen: - ./bin/binana x64dbg-gen --game 3.3.5a --base-address=00400000 --module-name=wow.exe + ./bin/binana x64dbg-gen --game profile/3.3.5a-windows --base-address=00400000 --module-name=wow.exe generate: compile-symbols x64dbg-gen ida-gen diff --git a/README.md b/README.md index 61f8f99..43d8ecf 100644 --- a/README.md +++ b/README.md @@ -96,8 +96,8 @@ To import the main header file into your Ghidra project, 1. go to `File` 🡒 `Parse C Source...`. 2. Select `clib.prf` as your parse configuration, and clear all source files and input paths. - 3. Add the header `/include/main.h` to the `Source files to parse` combo box. - 4. Add the path to `/include` to the `Include paths` combo box. + 3. Add the header `profile//include/main.h` to the `Source files to parse` combo box. + 4. Add the path to `profile//include` to the `Include paths` combo box. 5. Add `-DGHIDRA` to a new line in `Parse Options`. 6. press `Parse to Program`. @@ -110,7 +110,7 @@ To import the symbol file into your Ghidra project, 1. go to `Window` 🡒 `Script Manager` 2. In the table view, lookup `ImportSymbolsScript.py` 3. Run the script - 4. Enter the path to `/symbol/main.sym` + 4. Enter the path to `profile//symbol/main.sym` # IDA @@ -121,14 +121,14 @@ To import the main header file into your IDA database, 1. Go to `Options` 🡒 `Compiler` 2. Add `IDA` to the semicolon-separated `Predefined macros` list. 3. Go to `File` 🡒 `Load file` 🡒 `Parse C Header file` - 4. Enter the path to `/include/main.h` + 4. Enter the path to `profile//include/main.h` ## Importing symbols To use the IDC script, 1. Go to `File` 🡒 `Script file...` - 2. Navigate to `/ida/import_symbols.idc` + 2. Navigate to `profile//ida/import_symbols.idc` 3. Wait for everything to be reanalyzed # x64dbg @@ -142,12 +142,12 @@ To load the database information into x64dbg: 1. Open x96dbg.exe or x32dbg.exe directly 2. Load your game binary 3. Go to `File` 🡒 `Database` 🡒 `Import database` - 4. Navigate to `/x32dbg/game.dd32`. + 4. Navigate to `profile//x32dbg/game.dd32`. ## Importing types To load the type information JSON file: 1. Open the binary in x32dbg.exe - 2. in the console, type: `LoadTypes \\x32dbg\types.json` + 2. in the console, type: `LoadTypes \profile\\x32dbg\types.json` diff --git a/profile/3.3.5a-windows/ida/import_data_types.idc b/profile/3.3.5a-windows/ida/import_data_types.idc new file mode 100644 index 0000000..45f66b2 --- /dev/null +++ b/profile/3.3.5a-windows/ida/import_data_types.idc @@ -0,0 +1,67 @@ +#include + +static import_data_types() { + apply_type(0x004804F0, "void __cdecl func(EvtContext* context, EVENTID id, void* handler, void* param, float priority)"); + apply_type(0x004806A0, "int32_t __cdecl func(EvtContext* context, EVENTID id, void *data, size_t bytes)"); + apply_type(0x004B5510, "int32_t __stdcall func(uint32_t width, uint32_t height)"); + apply_type(0x004B7220, "MipBits* __stdcall func(PIXEL_FORMAT format, uint32_t width, uint32_t height)"); + apply_type(0x004B7300, "void func(MipBits* image)"); + apply_type(0x004B78A0, "int32_t __usercall func@(char* ext@, char* filename, int32_t a3, MipBits** mipBits, uint32_t* width, uint32_t* height, PIXEL_FORMAT* texFormat, int32_t* isOpaque@, uint32_t* alphaBits, PIXEL_FORMAT* dataFormat)"); + apply_type(0x004B8070, "int32_t __usercall func@(char* ext@, char* filename@, int32_t a3, MipBits** mipBits, uint32_t* width, uint32_t* height, uint32_t* isOpaque, uint32_t* alphaBits, PIXEL_FORMAT* dataFormat)"); + apply_type(0x004B81D0, "MipBits* func(const char* filename, uint32_t* width, uint32_t* height, PIXEL_FORMAT* dataFormat, int32_t* isOpaque, CStatus* status, uint32_t* alphaBits, int32_t a8)"); + apply_type(0x006160B0, "int32_t __usercall func@(uint32_t** image@, MipBits* mipImages@, uint32_t width@, uint32_t height)"); + apply_type(0x00616800, "void __stdcall func(CURSORMODE mode)"); + apply_type(0x006A5A30, "void __thiscall func(CGxDeviceD3d* this)"); + apply_type(0x006AA3B0, "int32_t __thiscall func(CTgaFile* this)"); + apply_type(0x006AA3E0, "uint32_t __thiscall func(CTgaFile* this)"); + apply_type(0x006AA420, "void __thiscall func(CTgaFile* this, uint8_t* pAlphaData, uint8_t* pNoAlphaData, uint8_t* alpha)"); + apply_type(0x006AA630, "int32_t __thiscall func(CTgaFile* this, uint8_t* pRLEData, uint8_t* pData)"); + apply_type(0x006AA700, "void __thiscall func(CTgaFile* this, int32_t set)"); + apply_type(0x006AA840, "TGA32Pixel* __thiscall func(CTgaFile* this)"); + apply_type(0x006AA870, "int32_t __thiscall func(CTgaFile* this)"); + apply_type(0x006AAF40, "int32_t __thiscall func(CTgaFile* this)"); + apply_type(0x006AAFB0, "int32_t __thiscall func(CTgaFile* this, char* filename, int32_t a3)"); + apply_type(0x006AB390, "int32_t __thiscall func(CTgaFile* this, void* pImg)"); + apply_type(0x006AB4B0, "int32_t __thiscall func(CTgaFile* this, int32_t flags)"); + apply_type(0x006AB620, "uint32_t __cdecl func(uint32_t level, uint32_t width, uint32_t height, uint32_t fourCC)"); + apply_type(0x006AB700, "uint32_t __stdcall func(uint32_t width, uint32_t height)"); + apply_type(0x006AB760, "MipBits* __stdcall func(uint32_t fourCC, uint32_t width, uint32_t height, char* filename, int32_t linenumber)"); + apply_type(0x006AB810, "void __stdcall func(uint32_t fourCC, uint32_t width, uint32_t height, MipBits* bits)"); + apply_type(0x006AB860, "void _stdcall func(C4Pixel* dest, uint32_t destWidth, uint32_t destHeight, C4Pixel* source, uint32_t sourceWidth, uint32_t sourceHeight)"); + apply_type(0x006AE8B0, "void __thiscall func(CBLPFile* this)"); + apply_type(0x006AE900, "int32_t __thiscall func(CBLPFile* this, void* fileBits)"); + apply_type(0x006AE990, "void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t colorSize)"); + apply_type(0x006AE9E0, "void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t colorSize)"); + apply_type(0x006AEBA0, "void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)"); + apply_type(0x006AEE70, "void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)"); + apply_type(0x006AF140, "void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)"); + apply_type(0x006AF340, "void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)"); + apply_type(0x006AF6A0, "uint32_t __thiscall func(CBLPFile* this, uint32_t mipLevel)"); + apply_type(0x006AF730, "int32_t __thiscall func(CBLPFile *this, PIXEL_FORMAT format, uint32_t mipLevel, uint32_t* size, uint32_t* stride)"); + apply_type(0x006AF810, "int32_t __thiscall func(CBLPFile* this, PIXEL_FORMAT format, uint32_t mipLevel, uint8_t* data, void* tempBuffer)"); + apply_type(0x006AFCE0, "int32_t __thiscall func(CBLPFile* this, char* fileName, PIXEL_FORMAT format, uint32_t mipLevel, unsigned char* data, uint32_t* stride)"); + apply_type(0x006AFF10, "int32_t __thiscall func(CBLPFile* this, char* filename)"); + apply_type(0x006AFFD0, "int32_t __thiscall func(CBLPFile* this, char* fileName, PIXEL_FORMAT format, MipBits** images, uint32_t mipLevel, int32_t a6)"); + apply_type(0x0076E540, "void* __stdcall func(uint32_t bytes, char* filename, int32_t linenumber, uint32_t flags)"); + apply_type(0x0076E5A0, "int32_t __stdcall func(void* ptr, char* filename, int32_t linenumber, uint32_t flags)"); + apply_type(0x0076E5E0, "void* __stdcall func(void* ptr, uint32_t bytes, char* filename, int32_t linenumber, uint32_t flags)"); + apply_type(0x0076F070, "int32_t __stdcall func(char* dest, size_t maxchars, char* format, ...)"); + apply_type(0x00774620, "SCritSect* __thiscall func(SCritSect* this)"); + apply_type(0x00774630, "void __thiscall func(SCritSect *this)"); + apply_type(0x00774640, "void __thiscall func(SCritSect *this)"); + apply_type(0x00774650, "void __thiscall func(SCritSect *this)"); + apply_type(0x00819EA0, "void __stdcall func(int32_t function, FrameScript_Object* object, int32_t args, char* args_fmt, FrameScript_EventObject* eventObject)"); + apply_type(0x00A2DDC0, "CGxDevice__vtable"); + apply_type(0x00AD2808, "char*[53]"); + apply_type(0x00AD90B0, "uint8_t[16]"); + apply_type(0x00AD90C0, "uint8_t[2]"); + apply_type(0x00B417C8, "uint32_t"); + apply_type(0x00B417D0, "int32_t"); + apply_type(0x00B41850, "CDataRecycler"); + apply_type(0x00B6A9DC, "MipBits*"); + apply_type(0x00C25CD0, "int8_t"); + apply_type(0x00C25DE8, "uint32_t[1024]"); + apply_type(0x00C26DE8, "CURSORMODE"); + apply_type(0x00C26DF0, "uint32_t[53][1024]"); + apply_type(0x00C5DF88, "CGxDevice*"); +} diff --git a/profile/3.3.5a-windows/ida/import_symbols.idc b/profile/3.3.5a-windows/ida/import_symbols.idc new file mode 100644 index 0000000..2422309 --- /dev/null +++ b/profile/3.3.5a-windows/ida/import_symbols.idc @@ -0,0 +1,7787 @@ +#include + +#include "import_data_types.idc" +static main() { + // Make names + set_name(0x00401070, "CDataStore__FetchWrite"); + set_name(0x004010D0, "CDataStore__IsRead"); + set_name(0x004010E0, "CDataStore__Reset"); + set_name(0x00401130, "CDataStore__Finalize"); + set_name(0x00402B20, "SetPaths"); + set_name(0x004033B0, "ClientKillTimer"); + set_name(0x004038A0, "CDataStore__destructor"); + set_name(0x004067F0, "InitializeGlobal"); + set_name(0x00406B70, "DestroyGlobal"); + set_name(0x00406C70, "CommonMain"); + set_name(0x00407F40, "C44Matrix__C44Matrix"); + set_name(0x00407F80, "C44Matrix__operator_assign_C44Matrix"); + set_name(0x00408030, "GxXformSetProjection"); + set_name(0x00408070, "GxXformViewport"); + set_name(0x00408110, "GxXformProjNativeTranspose"); + set_name(0x00408210, "GxShaderConstantsSet"); + set_name(0x00408240, "GxRsSet_CGxShader"); + set_name(0x00408BF0, "GxRsSet_int32_t"); + set_name(0x00409670, "CGxDevice__RsPush"); + set_name(0x0040BAA5, "purecall"); + set_name(0x0040D3B5, "nullsub_1"); + set_name(0x004217C0, "SFile__FileIsLocal"); + set_name(0x004218C0, "SFile__GetFileSize"); + set_name(0x00421AF0, "SFile__SetDataPath"); + set_name(0x00421BB0, "SFile__SetFilePointer"); + set_name(0x00421CA0, "SFile__Unload"); + set_name(0x00422130, "SFile__IsStreamingMode"); + set_name(0x00422530, "SFile__Read"); + set_name(0x00422910, "SFile__Close"); + set_name(0x00424B10, "SFile__FileExistsEx"); + set_name(0x00424B50, "SFile__OpenEx"); + set_name(0x00424E80, "SFile__Load"); + set_name(0x00424F80, "SFile__Open"); + set_name(0x00461B00, "OsCloseFile"); + set_name(0x00461B50, "OsReadFile"); + set_name(0x00461BD0, "OsGetFileSize"); + set_name(0x00461DB0, "OsSetCurrentDirectory"); + set_name(0x00461FA0, "OsCreateFile"); + set_name(0x0047ADD0, "nullsub_2"); + set_name(0x0047ADE0, "CDataStore__GetBufferParams"); + set_name(0x0047AE10, "CDataStore__DetachBuffer"); + set_name(0x0047AE50, "CDataStore__InternalDestroy"); + set_name(0x0047AEA0, "CDataStore__InternalFetchWrite"); + set_name(0x0047AF40, "CDataStore__Set"); + set_name(0x0047AFE0, "CDataStore__Put_uint8_t"); + set_name(0x0047B040, "CDataStore__Put_uint16_t"); + set_name(0x0047B0A0, "CDataStore__Put_uint32_t"); + set_name(0x0047B100, "CDataStore__Put_uint64_t"); + set_name(0x0047B1C0, "CDataStore__PutArray"); + set_name(0x0047B280, "CDataStore__PutData"); + set_name(0x0047B290, "CDataStore__FetchRead"); + set_name(0x0047B300, "CDataStore__PutString"); + set_name(0x0047B340, "CDataStore__Get_uint8_t"); + set_name(0x0047B380, "CDataStore__Get_uint16_t"); + set_name(0x0047B3C0, "CDataStore__Get_uint32_t"); + set_name(0x0047B400, "CDataStore__Get_uint64_t"); + set_name(0x0047B440, "CDataStore__Get_float"); + set_name(0x0047B480, "CDataStore__GetString"); + set_name(0x0047B560, "CDataStore__GetArray"); + set_name(0x0047B6B0, "CDataStore__GetDataInSitu"); + set_name(0x0047B720, "CmdLineProcess"); + set_name(0x0047B760, "j_nullsub_3"); + set_name(0x0047BF30, "HandleClose"); + set_name(0x0047BF50, "HandleCreate"); + set_name(0x0047BF70, "HandleDuplicate"); + set_name(0x0047BF90, "CoordinateSetAspectRatio"); + set_name(0x0047BFD0, "CoordinateGetAspectRatio"); + set_name(0x0047BFE0, "CoordinateGetAspectCompensation"); + set_name(0x0047BFF0, "NDCToDDC"); + set_name(0x0047C020, "DDCToNDC"); + set_name(0x0047C050, "DDCToNDCWidth"); + set_name(0x0047C060, "DDCToNDCHeight"); + set_name(0x0047C070, "NDCToDDCWidth"); + set_name(0x0047C080, "NDCToDDCHeight"); + set_name(0x0047CBF0, "PropSelectContext"); + set_name(0x0047CC20, "PropGet"); + set_name(0x0047CC50, "PropSet"); + set_name(0x0047CF80, "RCString__Copy"); + set_name(0x0047CFF0, "EventInitialize"); + set_name(0x0047D030, "EventDestroy"); + set_name(0x0047D080, "EventCreateContextEx"); + set_name(0x0047D090, "EventSetConfirmCloseCallback"); + set_name(0x0047D0E0, "CSRWLock__Enter"); + set_name(0x0047D1D0, "EventIsButtonDown"); + set_name(0x0047D230, "EventIsKeyDown"); + set_name(0x0047D290, "EventPostCloseEx"); + set_name(0x0047D310, "EventQueuePost"); + set_name(0x0047D3C0, "EventRegisterEx"); + set_name(0x0047D450, "EventUnregisterEx"); + set_name(0x0047D530, "EventSetTimer"); + set_name(0x0047D620, "EventKillTimer"); + set_name(0x0047D690, "EventSetMouseMode"); + set_name(0x0047D770, "EventRegister"); + set_name(0x0047D790, "EventUnregister"); + set_name(0x0047D990, "IEvtSchedulerShutdown"); + set_name(0x0047DBC0, "SynthesizeIdle"); + set_name(0x0047DC20, "SynthesizePoll"); + set_name(0x0047DC50, "SynthesizePaint"); + set_name(0x0047DCA0, "EventForceIdleProcessing"); + set_name(0x0047DEA0, "IEvtSchedulerDestroy"); + set_name(0x0047E910, "InitializeSchedulerThread"); + set_name(0x0047EC10, "AttachContextToThread"); + set_name(0x0047EFF0, "SchedulerThreadProcProcess"); + set_name(0x0047F230, "SchedulerThreadProc"); + set_name(0x0047F2D0, "EventDoMessageLoop"); + set_name(0x0047F2F0, "IEvtSchedulerInitialize"); + set_name(0x0047F5C0, "IEvtSchedulerCreateContext"); + set_name(0x0047FAC0, "PostMouseModeChanged"); + set_name(0x0047FB80, "IEvtInputDestroy"); + set_name(0x0047FBB0, "IEvtInputSetMouseMode"); + set_name(0x0047FC20, "IEvtInputSetConfirmCloseCallback"); + set_name(0x0047FC90, "ConvertPosition"); + set_name(0x004800A0, "IEvtInputGetMousePosition"); + set_name(0x00480410, "IEvtInputProcess"); + set_name(0x004804B0, "IEvtQueueDestroy"); + set_name(0x004804C0, "IEvtQueueCheckSyncMouseState"); + set_name(0x004804F0, "IEvtQueueRegister"); + set_name(0x004806A0, "IEvtQueuePost"); + set_name(0x00480A50, "IEvtQueueCheckSyncKeyState"); + set_name(0x00480AD0, "IEvtQueueDispatch"); + set_name(0x00480BD0, "IEvtQueueDispatchAll"); + set_name(0x00480D30, "IEvtQueueUnregister"); + set_name(0x00480EA0, "EventDestroy_cleanup"); + set_name(0x00480F70, "IEvtTimerGetNextTime"); + set_name(0x00481100, "IEvtTimerDispatch"); + set_name(0x00481290, "IEvtTimerKill"); + set_name(0x00481390, "IEvtTimerSet"); + set_name(0x004829D0, "GxBufLock"); + set_name(0x004829F0, "GxBufUnlock"); + set_name(0x00482A20, "GxBufStream"); + set_name(0x00482A40, "GxDraw"); + set_name(0x00493BF0, "GxCapsWindowSizeInScreenCoords"); + set_name(0x004A8500, "ScrnLayerSetRect"); + set_name(0x004A8720, "OnPaint"); + set_name(0x004A8BB0, "ScrnLayerCreate"); + set_name(0x004A8D10, "GxuFontShutdown"); + set_name(0x004B5510, "TextureCalcMipCount"); + set_name(0x004B5550, "TextureGenerateMips"); + set_name(0x004B5A00, "LoadPredrawnMips"); + set_name(0x004B7220, "TextureAllocMippedImg"); + set_name(0x004B7300, "TextureFreeMippedImg"); + set_name(0x004B78A0, "LoadTgaMips"); + set_name(0x004B8070, "LoadBlpMips"); + set_name(0x004B81D0, "TextureLoadImage"); + set_name(0x004BD9D0, "TextBlockGetFontPtr"); + set_name(0x004BDAA0, "TextBlockCreate"); + set_name(0x004BDBF0, "TextBlockSetStringPos"); + set_name(0x004BDD80, "TextBlockGetWrappedTextHeight"); + set_name(0x004BE9C0, "TextBlockGenerateFont"); + set_name(0x004BEC70, "GxXformProjection"); + set_name(0x004BECF0, "CCamera__SetupWorldProjection"); + set_name(0x004BEE60, "CameraSetupScreenProjection"); + set_name(0x004BF0C0, "CameraSetupWorldProjection"); + set_name(0x004BF770, "CCamera__CCamera"); + set_name(0x004BFCA0, "CameraCreate"); + set_name(0x004C1510, "CRndSeed__SetSeed"); + set_name(0x004C1930, "C44Matrix__Determinant"); + set_name(0x004C1B30, "C44Matrix__Translate"); + set_name(0x004C1B90, "C44Matrix__Scale_C3Vector"); + set_name(0x004C1BF0, "C44Matrix__Scale_float"); + set_name(0x004C1DE0, "C44Matrix__C44Matrix_C4Quaternion"); + set_name(0x004C1F00, "operator_multiply_C44Matrix_C44Matrix"); + set_name(0x004C21B0, "operator_multiply_C3Vector_C44Matrix"); + set_name(0x004C2370, "C44Matrix__operator_assignment_multiply"); + set_name(0x004C23D0, "C44Matrix__Transpose"); + set_name(0x004C2F90, "C44Matrix__Inverse"); + set_name(0x004C2FC0, "C44Matrix__AffineInverse"); + set_name(0x004C30A0, "C44Matrix__AffineInvertInPlace"); + set_name(0x004C3290, "C44Matrix__RotationAroundZ"); + set_name(0x004C3300, "C44Matrix__RotateAroundX"); + set_name(0x004C3340, "C44Matrix__RotateAroundY"); + set_name(0x004C3380, "C44Matrix__RotateAroundZ"); + set_name(0x004C33C0, "C44Matrix__Rotate"); + set_name(0x004C3420, "C3Vector__Normalize_1"); + set_name(0x004C3600, "C3Vector__Normalize_2"); + set_name(0x004C51B0, "C33Matrix__operator_assign_C33Matrix"); + set_name(0x004D7F60, "CGlueMgr__SetCurrentAccount"); + set_name(0x004D80C0, "CGlueMgr__DisplayLoginStatus"); + set_name(0x004D82A0, "CGlueMgr__SetScreen"); + set_name(0x004D82C0, "CGlueMgr__UpdateCurrentScreen"); + set_name(0x004D8860, "CGlueMgr__HandleDisplaySizeChanged"); + set_name(0x004D8930, "CGlueMgr__Suspend"); + set_name(0x004D8A30, "CGlueMgr__LoginServerLogin"); + set_name(0x004D8BD0, "CGlueMgr__ChangeRealm"); + set_name(0x004D9500, "CGlueMgr__OnKickReasonMsg"); + set_name(0x004D95C0, "CGlueMgr__GetCharacterList"); + set_name(0x004D98D0, "CGlueMgr__StatusDialogClick"); + set_name(0x004DA3D0, "CGlueMgr__LogConnectionStatus"); + set_name(0x004DA4B0, "CGlueMgr__SetLoginStateAndResult"); + set_name(0x004DA5F0, "CGlueMgr__Resume"); + set_name(0x004DA9D0, "CGlueMgr__NetDisconnectHandler"); + set_name(0x004DAB40, "CGlueMgr__Idle"); + set_name(0x004DB9F0, "CGlueMgr__Initialize"); + set_name(0x004DBFD0, "Script_GetLocale"); + set_name(0x004DCE40, "Script_IsWindowsClient"); + set_name(0x004DD400, "Script_RestartGx"); + set_name(0x004DD420, "Script_RestoreVideoStereoDefaults"); + set_name(0x004DD610, "Script_GetMovieResolution"); + set_name(0x004DDC20, "Script_GetExpansionLevel"); + set_name(0x004E4A40, "CGlueMgr__SurveyDownloadCancel"); + set_name(0x004F71A0, "TSList__LinkNode"); + set_name(0x004FBD00, "Script_LoggingChat"); + set_name(0x004FBD20, "Script_LoggingCombat"); + set_name(0x004FBD40, "Script_GetActiveVoiceChannel"); + set_name(0x004FBD90, "Script_GetChatWindowInfo"); + set_name(0x004FBF60, "Script_GetChatWindowSavedPosition"); + set_name(0x004FC020, "Script_GetChatWindowSavedDimensions"); + set_name(0x004FC0C0, "Script_GetChatWindowMessages"); + set_name(0x004FC170, "Script_AddChatWindowMessages"); + set_name(0x004FC250, "Script_RemoveChatWindowMessages"); + set_name(0x004FC330, "Script_SetChatWindowName"); + set_name(0x004FC3D0, "Script_SetChatWindowSize"); + set_name(0x004FC470, "Script_SetChatWindowColor"); + set_name(0x004FC5B0, "Script_SetChatWindowAlpha"); + set_name(0x004FC660, "Script_SetChatWindowLocked"); + set_name(0x004FC6E0, "Script_SetChatWindowUninteractable"); + set_name(0x004FC760, "Script_SetChatWindowDocked"); + set_name(0x004FC810, "Script_SetChatWindowShown"); + set_name(0x004FC890, "Script_SetChatWindowSavedPosition"); + set_name(0x004FC9A0, "Script_SetChatWindowSavedDimensions"); + set_name(0x004FCA50, "Script_GetNumSavedInstances"); + set_name(0x004FCBF0, "Script_IsVoiceChatEnabled"); + set_name(0x004FCC60, "Script_IsVoiceChatAllowed"); + set_name(0x004FCCB0, "Script_IsVoiceChatAllowedByServer"); + set_name(0x004FCCF0, "Script_UnitIsSilenced"); + set_name(0x004FCDF0, "Script_GetMuteStatus"); + set_name(0x004FE630, "Script_ListChannelByName"); + set_name(0x004FE650, "Script_GetChannelList"); + set_name(0x004FE720, "Script_SetChannelPassword"); + set_name(0x004FE810, "Script_SetChannelOwner"); + set_name(0x004FE830, "Script_DisplayChannelOwner"); + set_name(0x004FE850, "Script_GetChannelName"); + set_name(0x004FE950, "Script_ChannelModerator"); + set_name(0x004FE970, "Script_ChannelUnmoderator"); + set_name(0x004FE990, "Script_ChannelMute"); + set_name(0x004FE9B0, "Script_ChannelUnmute"); + set_name(0x004FE9D0, "Script_ChannelInvite"); + set_name(0x004FE9F0, "Script_ChannelKick"); + set_name(0x004FEA10, "Script_ChannelBan"); + set_name(0x004FEA30, "Script_ChannelUnban"); + set_name(0x004FEA50, "Script_ChannelToggleAnnouncements"); + set_name(0x004FEA70, "Script_ChannelVoiceOn"); + set_name(0x004FEA90, "Script_ChannelVoiceOff"); + set_name(0x004FEAB0, "Script_DisplayChannelVoiceOn"); + set_name(0x004FEAD0, "Script_DisplayChannelVoiceOff"); + set_name(0x004FEAF0, "Script_ChangeChatColor"); + set_name(0x004FED10, "Script_ResetChatColors"); + set_name(0x004FEDC0, "Script_SetChatColorNameByClass"); + set_name(0x004FEEE0, "Script_GetChatTypeIndex"); + set_name(0x004FEFF0, "Script_GetChatWindowChannels"); + set_name(0x004FF0D0, "Script_RemoveChatWindowChannel"); + set_name(0x004FF200, "Script_EnumerateServerChannels"); + set_name(0x004FF2C0, "Script_GetSavedInstanceInfo"); + set_name(0x004FF580, "Script_GetChannelDisplayInfo"); + set_name(0x004FFA10, "Script_GetSelectedDisplayChannel"); + set_name(0x004FFA70, "Script_IsDisplayChannelOwner"); + set_name(0x004FFAE0, "Script_IsDisplayChannelModerator"); + set_name(0x004FFB50, "Script_IsSilenced"); + set_name(0x004FFC30, "Script_SetChannelWatch"); + set_name(0x004FFC50, "Script_ClearChannelWatch"); + set_name(0x004FFCC0, "Script_DeclineInvite"); + set_name(0x00500560, "Script_SendAddonMessage"); + set_name(0x00500760, "Script_GetNumLanguages"); + set_name(0x00500810, "Script_GetLanguageByIndex"); + set_name(0x00500910, "Script_GetDefaultLanguage"); + set_name(0x00500980, "Script_DoEmote"); + set_name(0x00500AE0, "Script_SetActiveVoiceChannel"); + set_name(0x00500BE0, "Script_RequestRaidInfo"); + set_name(0x00500C80, "Script_CanComplainChat"); + set_name(0x00501140, "Script_ChannelSilenceVoice"); + set_name(0x00501250, "Script_ChannelSilenceAll"); + set_name(0x005012F0, "Script_ChannelUnSilenceVoice"); + set_name(0x00501400, "Script_ChannelUnSilenceAll"); + set_name(0x00501DB0, "Script_AddChatWindowChannel"); + set_name(0x00501F00, "Script_ResetChatWindows"); + set_name(0x00504E10, "Script_GetNumDisplayChannels"); + set_name(0x00504E50, "Script_SetSelectedDisplayChannel"); + set_name(0x00504F30, "Script_GetChannelRosterInfo"); + set_name(0x00505190, "Script_GetNumChannelMembers"); + set_name(0x005052E0, "Script_CollapseChannelHeader"); + set_name(0x00505360, "Script_ExpandChannelHeader"); + set_name(0x005096D0, "Script_LeaveChannelByName"); + set_name(0x0050D170, "Script_SendChatMessage"); + set_name(0x0050D8A0, "Script_SendSystemMessage"); + set_name(0x0050DAA0, "Script_JoinTemporaryChannel"); + set_name(0x0050DAC0, "Script_JoinPermanentChannel"); + set_name(0x0050DAE0, "Script_ListChannels"); + set_name(0x0050DC10, "Script_SetSavedInstanceExtend"); + set_name(0x0050ED00, "Script_ComplainChat"); + set_name(0x0050F830, "Script_FrameXML_Debug"); + set_name(0x0050F890, "Script_GetBuildInfo"); + set_name(0x0050F8F0, "Script_SetLayoutMode"); + set_name(0x0050F950, "Script_GetMouseButtonClicked"); + set_name(0x0050F990, "Script_SetConsoleKey"); + set_name(0x0050FE80, "Script_IsDebugBuild"); + set_name(0x0050FF30, "Script_RegisterCVar"); + set_name(0x0050FF50, "Script_GetCVarInfo"); + set_name(0x00510040, "Script_GetCVar"); + set_name(0x005100C0, "Script_GetCVarBool"); + set_name(0x00510150, "Script_GetCVarDefault"); + set_name(0x005101D0, "Script_SetWaterDetail"); + set_name(0x00510200, "Script_GetFarclip"); + set_name(0x00510230, "Script_SetFarclip"); + set_name(0x005102B0, "Script_GetTexLodBias"); + set_name(0x005102E0, "Script_SetTexLodBias"); + set_name(0x00510360, "Script_GetBaseMip"); + set_name(0x00510390, "Script_SetBaseMip"); + set_name(0x00510410, "Script_Stuck"); + set_name(0x00510430, "Script_Logout"); + set_name(0x00510450, "Script_Quit"); + set_name(0x00510470, "Script_GetFramerate"); + set_name(0x005104A0, "Script_SetCursor"); + set_name(0x00510920, "Script_ResetCursor"); + set_name(0x00510930, "Script_ReportBug"); + set_name(0x00510980, "Script_ReportSuggestion"); + set_name(0x005109D0, "Script_BeginTrade"); + set_name(0x005109E0, "Script_CancelTrade"); + set_name(0x005109F0, "Script_ForceLogout"); + set_name(0x00510A00, "Script_ForceQuit"); + set_name(0x00510A10, "Script_GetCursorPosition"); + set_name(0x00510AC0, "Script_GetNetStats"); + set_name(0x00510B30, "Script_RunScript"); + set_name(0x00510B80, "Script_ReplaceTradeEnchant"); + set_name(0x00510B90, "Script_IsMacClient"); + set_name(0x00510BB0, "Script_ReadFile"); + set_name(0x00510BD0, "Script_GetCoinIcon"); + set_name(0x00510C60, "Script_GetCoinText"); + set_name(0x00510D00, "Script_GetCoinTextureString"); + set_name(0x00510DB0, "Script_ConfirmBindOnUse"); + set_name(0x00510DC0, "Script_RestoreVideoResolutionDefaults"); + set_name(0x00510DD0, "Script_RestoreVideoEffectsDefaults"); + set_name(0x00510DE0, "Script_SetEuropeanNumbers"); + set_name(0x00510E00, "Script_GetRealmName"); + set_name(0x00510E20, "Script_GetItemQualityColor"); + set_name(0x00510F20, "Script_GetItemFamily"); + set_name(0x00510FC0, "Script_GetItemCooldown"); + set_name(0x005110D0, "Script_IsCurrentItem"); + set_name(0x00511150, "Script_IsEquippableItem"); + set_name(0x00511200, "Script_GetNumAddOns"); + set_name(0x00511240, "Script_GetAddOnInfo"); + set_name(0x00511430, "Script_GetAddOnMetadata"); + set_name(0x00511510, "Script_UpdateAddOnMemoryUsage"); + set_name(0x00511530, "Script_GetAddOnMemoryUsage"); + set_name(0x00511610, "Script_GetScriptCPUUsage"); + set_name(0x00511640, "Script_UpdateAddOnCPUUsage"); + set_name(0x00511660, "Script_GetAddOnCPUUsage"); + set_name(0x00511720, "Script_GetFunctionCPUUsage"); + set_name(0x005117C0, "Script_GetEventCPUUsage"); + set_name(0x00511830, "Script_ResetCPUUsage"); + set_name(0x00511840, "Script_EnableAddOn"); + set_name(0x00511900, "Script_EnableAllAddOns"); + set_name(0x00511940, "Script_DisableAddOn"); + set_name(0x00511A00, "Script_DisableAllAddOns"); + set_name(0x00511A40, "Script_ResetDisabledAddOns"); + set_name(0x00511A60, "Script_IsAddOnLoadOnDemand"); + set_name(0x00511B30, "Script_IsAddOnLoaded"); + set_name(0x00511C40, "Script_GetBillingTimeRested"); + set_name(0x00511C80, "Script_GetExistingLocales"); + set_name(0x00511CC0, "Script_InCombatLockdown"); + set_name(0x00511D20, "Script_VoicePushToTalkStop"); + set_name(0x00511D30, "Script_GetSummonFriendCooldown"); + set_name(0x00511DD0, "Script_GetNumDeclensionSets"); + set_name(0x00511E80, "Script_DeclineName"); + set_name(0x00511F90, "Script_UploadSettings"); + set_name(0x00511FA0, "Script_DownloadSettings"); + set_name(0x00511FB0, "Script_IsDesaturateSupported"); + set_name(0x00511FE0, "Script_GetThreatStatusColor"); + set_name(0x00512090, "Script_ConsoleAddMessage"); + set_name(0x00514430, "Script_IsModifierKeyDown"); + set_name(0x005144C0, "Script_IsLeftShiftKeyDown"); + set_name(0x00514520, "Script_IsRightShiftKeyDown"); + set_name(0x00514580, "Script_IsShiftKeyDown"); + set_name(0x00514610, "Script_IsLeftControlKeyDown"); + set_name(0x00514670, "Script_IsRightControlKeyDown"); + set_name(0x005146D0, "Script_IsControlKeyDown"); + set_name(0x00514760, "Script_IsLeftAltKeyDown"); + set_name(0x005147C0, "Script_IsRightAltKeyDown"); + set_name(0x00514820, "Script_IsAltKeyDown"); + set_name(0x005148B0, "Script_IsMouseButtonDown"); + set_name(0x00514BA0, "Script_GetMouseButtonName"); + set_name(0x00514C10, "Script_SetCVar"); + set_name(0x00514D40, "Script_GetCVarMin"); + set_name(0x00514E30, "Script_GetCVarMax"); + set_name(0x00514F60, "Script_GetCVarAbsoluteMin"); + set_name(0x00515010, "Script_GetCVarAbsoluteMax"); + set_name(0x005150E0, "Script_Screenshot"); + set_name(0x00515100, "Script_CursorHasItem"); + set_name(0x00515140, "Script_CursorHasSpell"); + set_name(0x00515180, "Script_CursorHasMacro"); + set_name(0x005151C0, "Script_CursorHasMoney"); + set_name(0x00515200, "Script_GetCursorInfo"); + set_name(0x00515560, "Script_TargetDirectionFinished"); + set_name(0x00515570, "Script_GetZoneText"); + set_name(0x005155A0, "Script_GetRealZoneText"); + set_name(0x005155D0, "Script_GetSubZoneText"); + set_name(0x00515600, "Script_GetMinimapZoneText"); + set_name(0x00515630, "Script_ResetInstances"); + set_name(0x005156A0, "Script_IsInInstance"); + set_name(0x00515750, "Script_GetInstanceDifficulty"); + set_name(0x00515790, "Script_GetDungeonDifficulty"); + set_name(0x00515810, "Script_GetRaidDifficulty"); + set_name(0x00515880, "Script_RequestTimePlayed"); + set_name(0x00515950, "Script_ResurrectGetOfferer"); + set_name(0x005159C0, "Script_ResurrectHasSickness"); + set_name(0x00515A00, "Script_ResurrectHasTimer"); + set_name(0x00515A50, "Script_GetCursorMoney"); + set_name(0x00515A90, "Script_GuildSetMOTD"); + set_name(0x00515B70, "Script_GuildLeave"); + set_name(0x00515BE0, "Script_GuildDisband"); + set_name(0x00515C50, "Script_GuildInfo"); + set_name(0x00515CC0, "Script_ArenaTeamInviteByName"); + set_name(0x00515DD0, "Script_ArenaTeamLeave"); + set_name(0x00515EB0, "Script_ArenaTeamUninviteByName"); + set_name(0x00515FF0, "Script_ArenaTeamSetLeaderByName"); + set_name(0x00516130, "Script_ArenaTeamDisband"); + set_name(0x00516210, "Script_GetReleaseTimeRemaining"); + set_name(0x00516280, "Script_GetCorpseRecoveryDelay"); + set_name(0x005162E0, "Script_GetInstanceBootTimeRemaining"); + set_name(0x00516340, "Script_GetInstanceLockTimeRemaining"); + set_name(0x00516410, "Script_GetInstanceLockTimeRemainingEncounter"); + set_name(0x005164B0, "Script_GetSummonConfirmTimeLeft"); + set_name(0x00516510, "Script_GetSummonConfirmSummoner"); + set_name(0x00516580, "Script_GetSummonConfirmAreaName"); + set_name(0x005165E0, "Script_GetNumTitles"); + set_name(0x00516610, "Script_RandomRoll"); + set_name(0x005166F0, "Script_OpeningCinematic"); + set_name(0x00516760, "Script_InCinematic"); + set_name(0x005167A0, "Script_ReplaceEnchant"); + set_name(0x005167E0, "Script_IsSubZonePVPPOI"); + set_name(0x00516840, "Script_TogglePVP"); + set_name(0x005168B0, "Script_SetPVP"); + set_name(0x00516970, "Script_SetPortraitToTexture"); + set_name(0x00516AA0, "Script_GetGMTicketCategories"); + set_name(0x00516B20, "Script_GetBindLocation"); + set_name(0x00516B90, "Script_GetAreaSpiritHealerTime"); + set_name(0x00516BF0, "Script_GetMouseFocus"); + set_name(0x00516C60, "Script_GetItemInfo"); + set_name(0x00516ED0, "Script_GetItemUniqueness"); + set_name(0x00517020, "Script_GetItemIcon"); + set_name(0x00517100, "Script_GetItemSpell"); + set_name(0x005171F0, "Script_IsHelpfulItem"); + set_name(0x005172E0, "Script_IsHarmfulItem"); + set_name(0x005173E0, "Script_IsConsumableItem"); + set_name(0x00517530, "Script_IsDressableItem"); + set_name(0x00517890, "Script_GetFrameCPUUsage"); + set_name(0x005179B0, "Script_GetAddOnDependencies"); + set_name(0x00517AA0, "Script_GetMirrorTimerProgress"); + set_name(0x00517B50, "Script_SetTaxiBenchmarkMode"); + set_name(0x00517C20, "Script_SetUIVisibility"); + set_name(0x00517C60, "Script_GetTotemTimeLeft"); + set_name(0x00517D20, "Script_DeclineLevelGrant"); + set_name(0x00517D30, "Script_IsThreatWarningEnabled"); + set_name(0x00517D70, "Script_CanMapChangeDifficulty"); + set_name(0x0051A3B0, "Script_ClearCursor"); + set_name(0x0051A3D0, "Script_EquipCursorItem"); + set_name(0x0051A530, "Script_EquipPendingItem"); + set_name(0x0051A5C0, "Script_CancelPendingEquip"); + set_name(0x0051A650, "Script_AttackTarget"); + set_name(0x0051A680, "Script_AutoEquipCursorItem"); + set_name(0x0051A6B0, "Script_ToggleSheath"); + set_name(0x0051A6E0, "Script_InviteUnit"); + set_name(0x0051A7A0, "Script_UninviteUnit"); + set_name(0x0051A880, "Script_CanShowResetInstances"); + set_name(0x0051A8C0, "Script_GetInstanceInfo"); + set_name(0x0051AA90, "Script_RepopMe"); + set_name(0x0051AAC0, "Script_AcceptResurrect"); + set_name(0x0051AAF0, "Script_DeclineResurrect"); + set_name(0x0051AB20, "Script_AcceptGroup"); + set_name(0x0051ABA0, "Script_DeclineGroup"); + set_name(0x0051ABD0, "Script_AcceptGuild"); + set_name(0x0051AC00, "Script_DeclineGuild"); + set_name(0x0051AC30, "Script_AcceptArenaTeam"); + set_name(0x0051AC60, "Script_DeclineArenaTeam"); + set_name(0x0051AC90, "Script_CancelLogout"); + set_name(0x0051ACD0, "Script_HasSoulstone"); + set_name(0x0051ADD0, "Script_UseSoulstone"); + set_name(0x0051AE80, "Script_HasKey"); + set_name(0x0051AEF0, "Script_GetScreenWidth"); + set_name(0x0051AF50, "Script_GetScreenHeight"); + set_name(0x0051AFB0, "Script_GetDamageBonusStat"); + set_name(0x0051B050, "Script_ConfirmSummon"); + set_name(0x0051B110, "Script_CancelSummon"); + set_name(0x0051B1D0, "Script_SitStandOrDescendStart"); + set_name(0x0051B240, "Script_CheckInteractDistance"); + set_name(0x0051B3B0, "Script_GetCurrentTitle"); + set_name(0x0051B410, "Script_IsTitleKnown"); + set_name(0x0051B4E0, "Script_GetTitleName"); + set_name(0x0051B6A0, "Script_AcceptXPLoss"); + set_name(0x0051B6E0, "Script_CheckSpiritHealerDist"); + set_name(0x0051B740, "Script_CheckTalentMasterDist"); + set_name(0x0051B7A0, "Script_CheckBinderDist"); + set_name(0x0051B800, "Script_RetrieveCorpse"); + set_name(0x0051B8B0, "Script_GetRestState"); + set_name(0x0051B960, "Script_GetXPExhaustion"); + set_name(0x0051BA50, "Script_GetZonePVPInfo"); + set_name(0x0051BCA0, "Script_GetPVPDesired"); + set_name(0x0051BD00, "Script_GetPVPTimer"); + set_name(0x0051BD60, "Script_IsPVPTimerRunning"); + set_name(0x0051BDD0, "Script_DropItemOnUnit"); + set_name(0x0051BF50, "Script_ConfirmTalentWipe"); + set_name(0x0051BF90, "Script_ConfirmBinder"); + set_name(0x0051BFD0, "Script_ShowingHelm"); + set_name(0x0051C040, "Script_ShowingCloak"); + set_name(0x0051C0B0, "Script_ShowHelm"); + set_name(0x0051C100, "Script_ShowCloak"); + set_name(0x0051C150, "Script_GetItemGem"); + set_name(0x0051C2E0, "Script_GetItemCount"); + set_name(0x0051C450, "Script_IsUsableItem"); + set_name(0x0051C690, "Script_IsEquippedItem"); + set_name(0x0051C740, "Script_IsEquippedItemType"); + set_name(0x0051C870, "Script_ItemHasRange"); + set_name(0x0051C9C0, "Script_IsItemInRange"); + set_name(0x0051CB30, "Script_PartialPlayTime"); + set_name(0x0051CBA0, "Script_NoPlayTime"); + set_name(0x0051CC10, "Script_GetMirrorTimerInfo"); + set_name(0x0051CD00, "Script_UseItemByName"); + set_name(0x0051CDB0, "Script_EquipItemByName"); + set_name(0x0051D0B0, "Script_StopAttack"); + set_name(0x0051D100, "Script_GetTaxiBenchmarkMode"); + set_name(0x0051D170, "Script_Dismount"); + set_name(0x0051D1B0, "Script_IsReferAFriendLinked"); + set_name(0x0051D230, "Script_CanGrantLevel"); + set_name(0x0051D2B0, "Script_CanSummonFriend"); + set_name(0x0051D330, "Script_GetTotemInfo"); + set_name(0x0051D520, "Script_DestroyTotem"); + set_name(0x0051D590, "Script_GameMovieFinished"); + set_name(0x0051D5A0, "Script_GetAllowLowLevelRaid"); + set_name(0x0051D600, "Script_SetAllowLowLevelRaid"); + set_name(0x005222E0, "Script_ReloadUI"); + set_name(0x00522320, "Script_DeleteCursorItem"); + set_name(0x00522480, "Script_FocusUnit"); + set_name(0x005224C0, "Script_FollowUnit"); + set_name(0x005225E0, "Script_ClearFocus"); + set_name(0x00522600, "Script_InitiateTrade"); + set_name(0x00522710, "Script_CanInspect"); + set_name(0x00522870, "Script_NotifyInspect"); + set_name(0x00522950, "Script_DropCursorMoney"); + set_name(0x00522980, "Script_PickupPlayerMoney"); + set_name(0x00522A20, "Script_GuildInvite"); + set_name(0x00522AF0, "Script_GuildUninvite"); + set_name(0x00522BC0, "Script_GuildPromote"); + set_name(0x00522C90, "Script_GuildDemote"); + set_name(0x00522D60, "Script_GuildSetLeader"); + set_name(0x00522E30, "Script_SetCurrentTitle"); + set_name(0x00522F70, "Script_BindEnchant"); + set_name(0x00522F90, "Script_NotWhileDeadError"); + set_name(0x00522FA0, "Script_CancelAreaSpiritHeal"); + set_name(0x00522FB0, "Script_PickupItem"); + set_name(0x00523090, "Script_StartAttack"); + set_name(0x00523160, "Script_GrantLevel"); + set_name(0x00523260, "Script_SummonFriend"); + set_name(0x00523360, "Script_AcceptLevelGrant"); + set_name(0x00523370, "Script_EndRefund"); + set_name(0x005233D0, "Script_EndBoundTradeable"); + set_name(0x00524980, "Script_StopCinematic"); + set_name(0x00525A30, "Script_TargetUnit"); + set_name(0x00525A90, "Script_TargetNearest"); + set_name(0x00525AD0, "Script_TargetNearestEnemy"); + set_name(0x00525B10, "Script_TargetNearestEnemyPlayer"); + set_name(0x00525B50, "Script_TargetNearestFriend"); + set_name(0x00525B90, "Script_TargetNearestFriendPlayer"); + set_name(0x00525BD0, "Script_TargetNearestPartyMember"); + set_name(0x00525C00, "Script_TargetNearestRaidMember"); + set_name(0x00525C30, "Script_TargetDirectionEnemy"); + set_name(0x00525CD0, "Script_TargetDirectionFriend"); + set_name(0x00525D70, "Script_TargetLastTarget"); + set_name(0x00525DF0, "Script_TargetLastEnemy"); + set_name(0x00525E50, "Script_TargetLastFriend"); + set_name(0x00525EB0, "Script_AssistUnit"); + set_name(0x00525FC0, "Script_ClearTarget"); + set_name(0x00526050, "Script_SetDungeonDifficulty"); + set_name(0x005261A0, "Script_SetRaidDifficulty"); + set_name(0x005262D0, "Script_AcceptAreaSpiritHeal"); + set_name(0x005262E0, "Script_TargetTotem"); + set_name(0x00527F00, "Script_InteractUnit"); + set_name(0x00528920, "Script_LoadAddOn"); + set_name(0x0052A980, "CGameUI__Initialize"); + set_name(0x0052B470, "Script_RegisterForSave"); + set_name(0x0052B4E0, "Script_RegisterForSavePerCharacter"); + set_name(0x0052C110, "Script_GetNumPartyMembers"); + set_name(0x0052C190, "Script_GetRealNumPartyMembers"); + set_name(0x0052C1D0, "Script_GetPartyMember"); + set_name(0x0052C270, "Script_GetPartyLeaderIndex"); + set_name(0x0052C2A0, "Script_GetLootThreshold"); + set_name(0x0052C2D0, "Script_GetOptOutOfLoot"); + set_name(0x0052C310, "Script_IsPartyLFG"); + set_name(0x0052C350, "Script_HasLFGRestrictions"); + set_name(0x0052CCD0, "Script_IsPartyLeader"); + set_name(0x0052CD30, "Script_IsRealPartyLeader"); + set_name(0x0052CD90, "Script_GetLootMethod"); + set_name(0x0052CF00, "Script_SetOptOutOfLoot"); + set_name(0x0052CF60, "Script_GetPartyAssignment"); + set_name(0x0052D000, "Script_CanChangePlayerDifficulty"); + set_name(0x0052D990, "Script_LeaveParty"); + set_name(0x0052D9C0, "Script_SilenceMember"); + set_name(0x0052DAF0, "Script_UnSilenceMember"); + set_name(0x0052DC20, "Script_SetLootMethod"); + set_name(0x0052DE60, "Script_SetLootThreshold"); + set_name(0x0052E1B0, "Script_SetPartyAssignment"); + set_name(0x0052E400, "Script_ClearPartyAssignment"); + set_name(0x0052E420, "Script_ChangePlayerDifficulty"); + set_name(0x0052E4F0, "Script_CanAlterSkin"); + set_name(0x0052E850, "Script_GetBarberShopStyleInfo"); + set_name(0x0052E9B0, "Script_GetHairCustomization"); + set_name(0x0052E9D0, "Script_GetFacialHairCustomization"); + set_name(0x0052ED60, "Script_GetBarberShopTotalCost"); + set_name(0x0052ED80, "Script_CancelBarberShop"); + set_name(0x0052EEF0, "Script_ApplyBarberShopStyle"); + set_name(0x0052F900, "Script_BarberShopReset"); + set_name(0x0052FDD0, "Script_SetNextBarberShopStyle"); + set_name(0x005301D0, "Script_GetNextCompleatedTutorial"); + set_name(0x00530240, "Script_GetPrevCompleatedTutorial"); + set_name(0x00530700, "Script_CanResetTutorials"); + set_name(0x00530750, "Script_FlagTutorial"); + set_name(0x005307A0, "Script_IsTutorialFlagged"); + set_name(0x00530820, "Script_ClearTutorials"); + set_name(0x00530830, "Script_ResetTutorials"); + set_name(0x005308D0, "Script_TriggerTutorial"); + set_name(0x00530EC0, "Script_BNConnected"); + set_name(0x00530F20, "Script_IsBNLogin"); + set_name(0x00532AF0, "CGxDevice__Caps"); + set_name(0x005343F0, "Script_BNGetInfo"); + set_name(0x00534590, "Script_BNGetNumFriends"); + set_name(0x005349F0, "Script_BNGetNumFriendToons"); + set_name(0x00534ED0, "Script_BNRemoveFriend"); + set_name(0x00534F80, "Script_BNSetFriendNote"); + set_name(0x00535080, "Script_BNGetNumFriendInvites"); + set_name(0x00535180, "Script_BNGetFriendInviteInfo"); + set_name(0x00535380, "Script_BNSendFriendInvite"); + set_name(0x00535490, "Script_BNSendFriendInviteByID"); + set_name(0x005355C0, "Script_BNAcceptFriendInvite"); + set_name(0x00535660, "Script_BNDeclineFriendInvite"); + set_name(0x00535700, "Script_BNReportFriendInvite"); + set_name(0x005357A0, "Script_BNSetAFK"); + set_name(0x00535860, "Script_BNSetDND"); + set_name(0x00535920, "Script_BNSetCustomMessage"); + set_name(0x00535AA0, "Script_BNGetCustomMessageTable"); + set_name(0x00535C60, "Script_BNSetFocus"); + set_name(0x00535CE0, "Script_BNCreateConversation"); + set_name(0x00535EB0, "Script_BNInviteToConversation"); + set_name(0x00536030, "Script_BNLeaveConversation"); + set_name(0x00536110, "Script_BNSendConversationMessage"); + set_name(0x00536220, "Script_BNGetNumConversationMembers"); + set_name(0x00536330, "Script_BNGetConversationInfo"); + set_name(0x00536400, "Script_BNGetNumBlocked"); + set_name(0x005364E0, "Script_BNIsBlocked"); + set_name(0x005365B0, "Script_BNSetBlocked"); + set_name(0x005366A0, "Script_BNSetSelectedBlock"); + set_name(0x00536790, "Script_BNGetSelectedBlock"); + set_name(0x00536890, "Script_BNGetNumBlockedToons"); + set_name(0x00536970, "Script_BNGetBlockedToonInfo"); + set_name(0x00536A90, "Script_BNIsToonBlocked"); + set_name(0x00536B60, "Script_BNSetToonBlocked"); + set_name(0x00536C50, "Script_BNSetSelectedToonBlock"); + set_name(0x00536D40, "Script_BNGetSelectedToonBlock"); + set_name(0x00536E40, "Script_BNReportPlayer"); + set_name(0x00537010, "Script_BNFeaturesEnabledAndConnected"); + set_name(0x00537070, "Script_BNFeaturesEnabled"); + set_name(0x005370D0, "Script_BNGetNumFOF"); + set_name(0x00537240, "Script_BNGetFOFInfo"); + set_name(0x00537510, "Script_BNSetSelectedFriend"); + set_name(0x00537600, "Script_BNGetSelectedFriend"); + set_name(0x005376C0, "Script_BNSetMatureLanguageFilter"); + set_name(0x005377C0, "Script_BNGetMatureLanguageFilter"); + set_name(0x005378A0, "Script_BNIsSelf"); + set_name(0x00537950, "Script_BNIsFriend"); + set_name(0x00537A00, "Script_BNGetMaxPlayersInConversation"); + set_name(0x00539BF0, "Script_BNGetFriendInfo"); + set_name(0x00539CC0, "Script_BNGetFriendInfoByID"); + set_name(0x00539D70, "Script_BNGetFriendToonInfo"); + set_name(0x00539F90, "Script_BNGetToonInfo"); + set_name(0x0053A030, "Script_BNSendWhisper"); + set_name(0x0053A150, "Script_BNGetConversationMemberInfo"); + set_name(0x0053A300, "Script_BNListConversation"); + set_name(0x0053A540, "Script_BNGetBlockedInfo"); + set_name(0x0053A660, "Script_BNRequestFOFInfo"); + set_name(0x0053B5C0, "Script_GetNumSpellTabs"); + set_name(0x0053B650, "Script_GetKnownSlotFromHighestRankSlot"); + set_name(0x0053B6C0, "Script_FindSpellBookSlotByID"); + set_name(0x0053BE70, "Script_GetSpellTabInfo"); + set_name(0x0053C0B0, "Script_GetNumShapeshiftForms"); + set_name(0x0053C0F0, "Script_CastShapeshiftForm"); + set_name(0x0053C180, "Script_GetShapeshiftFormCooldown"); + set_name(0x0053C2A0, "Script_GetNumCompanions"); + set_name(0x0053C310, "Script_PickupCompanion"); + set_name(0x0053C3A0, "Script_IsSpellKnown"); + set_name(0x0053DD10, "Script_UpdateSpells"); + set_name(0x0053DD30, "Script_HasPetSpells"); + set_name(0x0053DE10, "Script_GetShapeshiftForm"); + set_name(0x0053DE60, "Script_CancelShapeshiftForm"); + set_name(0x0053DE90, "Script_GetShapeshiftFormInfo"); + set_name(0x0053E060, "Script_CastSpellByID"); + set_name(0x0053E2C0, "Script_GetCompanionInfo"); + set_name(0x0053E490, "Script_GetCompanionCooldown"); + set_name(0x0053E5E0, "Script_CallCompanion"); + set_name(0x0053E6B0, "Script_DismissCompanion"); + set_name(0x0053E7E0, "Script_SummonRandomCritter"); + set_name(0x00540310, "Script_CastSpellByName"); + set_name(0x005407F0, "Script_GetSpellName"); + set_name(0x005408E0, "Script_GetSpellLink"); + set_name(0x00540A30, "Script_GetSpellInfo"); + set_name(0x00540D70, "Script_GetSpellTexture"); + set_name(0x00540DF0, "Script_GetSpellCount"); + set_name(0x00540E80, "Script_GetSpellCooldown"); + set_name(0x00541010, "Script_GetSpellAutocast"); + set_name(0x005410E0, "Script_ToggleSpellAutocast"); + set_name(0x00541140, "Script_EnableSpellAutocast"); + set_name(0x005411A0, "Script_DisableSpellAutocast"); + set_name(0x00541200, "Script_PickupSpell"); + set_name(0x00541250, "Script_CastSpell"); + set_name(0x005412C0, "Script_IsSelectedSpell"); + set_name(0x00541340, "Script_IsPassiveSpell"); + set_name(0x00541420, "Script_IsAttackSpell"); + set_name(0x00541500, "Script_IsCurrentSpell"); + set_name(0x005415D0, "Script_IsAutoRepeatSpell"); + set_name(0x00541680, "Script_IsUsableSpell"); + set_name(0x00541800, "Script_IsHelpfulSpell"); + set_name(0x005418F0, "Script_IsHarmfulSpell"); + set_name(0x005419F0, "Script_IsConsumableSpell"); + set_name(0x00541AF0, "Script_SpellHasRange"); + set_name(0x00541C60, "Script_IsSpellInRange"); + set_name(0x00543020, "Script_GetNumMapLandmarks"); + set_name(0x00543060, "Script_GetNumMapOverlays"); + set_name(0x005430A0, "Script_PositionWorldMapArrowFrame"); + set_name(0x005432C0, "Script_PositionMiniWorldMapArrowFrame"); + set_name(0x005434E0, "Script_ShowWorldMapArrowFrame"); + set_name(0x00543540, "Script_ShowMiniWorldMapArrowFrame"); + set_name(0x005435A0, "Script_GetWintergraspWaitTime"); + set_name(0x00543600, "Script_CanQueueForWintergrasp"); + set_name(0x00544B20, "Script_GetMapContinents"); + set_name(0x00544B90, "Script_GetMapZones"); + set_name(0x00544C40, "Script_DungeonUsesTerrainMap"); + set_name(0x00544CA0, "Script_GetMapInfo"); + set_name(0x00544D40, "Script_GetCurrentMapContinent"); + set_name(0x00544E10, "Script_GetCurrentMapAreaID"); + set_name(0x00544E80, "Script_GetCurrentMapZone"); + set_name(0x00544FC0, "Script_GetCurrentMapDungeonLevel"); + set_name(0x00545050, "Script_IsZoomOutAvailable"); + set_name(0x00545110, "Script_UpdateMapHighlight"); + set_name(0x00545880, "Script_GetPlayerMapPosition"); + set_name(0x00545950, "Script_GetCorpseMapPosition"); + set_name(0x005459C0, "Script_GetDeathReleasePosition"); + set_name(0x00545A30, "Script_GetMapLandmarkInfo"); + set_name(0x00545C80, "Script_GetMapOverlayInfo"); + set_name(0x00545E60, "Script_CreateWorldMapArrowFrame"); + set_name(0x00545F20, "Script_CreateMiniWorldMapArrowFrame"); + set_name(0x00545FE0, "Script_UpdateWorldMapArrowFrames"); + set_name(0x00545FF0, "Script_InitWorldMapPing"); + set_name(0x00546290, "Script_GetNumDungeonMapLevels"); + set_name(0x005469E0, "Script_SetMapZoom"); + set_name(0x00546A90, "Script_ZoomOut"); + set_name(0x00546C50, "Script_SetMapByID"); + set_name(0x00546E80, "Script_ProcessMapClick"); + set_name(0x00546EF0, "Script_ClickLandmark"); + set_name(0x00547B80, "Script_SetDungeonMapLevel"); + set_name(0x00547C10, "Script_SetMapToCurrentZone"); + set_name(0x00548720, "Script_GetNumWorldStateUI"); + set_name(0x00548D40, "Script_GetWorldStateUIInfo"); + set_name(0x00549AD0, "Script_IsActiveBattlefieldArena"); + set_name(0x00549B40, "Script_CloseBattlefield"); + set_name(0x00549B80, "Script_GetBattlefieldPortExpiration"); + set_name(0x00549C40, "Script_GetBattlefieldInstanceExpiration"); + set_name(0x00549CD0, "Script_GetBattlefieldInstanceRunTime"); + set_name(0x00549D30, "Script_GetBattlefieldEstimatedWaitTime"); + set_name(0x00549DD0, "Script_GetBattlefieldTimeWaited"); + set_name(0x00549E80, "Script_GetNumBattlefieldScores"); + set_name(0x00549EC0, "Script_GetBattlefieldWinner"); + set_name(0x00549F20, "Script_GetNumBattlefieldStats"); + set_name(0x00549F60, "Script_GetBattlefieldStatData"); + set_name(0x0054A040, "Script_GetNumBattlefieldPositions"); + set_name(0x0054A0E0, "Script_GetNumBattlefieldFlagPositions"); + set_name(0x0054A140, "Script_GetNumBattlefieldVehicles"); + set_name(0x0054A180, "Script_GetBattlefieldTeamInfo"); + set_name(0x0054A280, "Script_GetBattlefieldArenaFaction"); + set_name(0x0054A2C0, "Script_GetNumArenaOpponents"); + set_name(0x0054A300, "Script_GetHolidayBGHonorCurrencyBonuses"); + set_name(0x0054A370, "Script_GetRandomBGHonorCurrencyBonuses"); + set_name(0x0054BAA0, "Script_GetNumBattlefields"); + set_name(0x0054BAE0, "Script_IsBattlefieldArena"); + set_name(0x0054BB40, "Script_SetSelectedBattlefield"); + set_name(0x0054BBD0, "Script_GetSelectedBattlefield"); + set_name(0x0054BC30, "Script_GetBattlefieldStatus"); + set_name(0x0054BE90, "Script_GetBattlefieldScore"); + set_name(0x0054C120, "Script_SetBattlefieldScoreFaction"); + set_name(0x0054C170, "Script_GetBattlefieldStatInfo"); + set_name(0x0054C250, "Script_LeaveBattlefield"); + set_name(0x0054C2E0, "Script_GetBattlefieldPosition"); + set_name(0x0054C4D0, "Script_GetBattlefieldVehicleInfo"); + set_name(0x0054C6E0, "Script_CanJoinBattlefieldAsGroup"); + set_name(0x0054C740, "Script_GetBattlefieldMapIconScale"); + set_name(0x0054C7A0, "Script_HearthAndResurrectFromArea"); + set_name(0x0054C810, "Script_CanHearthAndResurrectFromArea"); + set_name(0x0054C870, "Script_GetNumBattlegroundTypes"); + set_name(0x0054C8A0, "Script_GetWorldPVPQueueStatus"); + set_name(0x0054C9F0, "Script_SortBGList"); + set_name(0x0054D770, "Script_GetBattlefieldInfo"); + set_name(0x0054D8F0, "Script_GetBattlefieldInstanceInfo"); + set_name(0x0054D990, "Script_JoinBattlefield"); + set_name(0x0054DA10, "Script_AcceptBattlefieldPort"); + set_name(0x0054DCA0, "Script_RequestBattlefieldScoreData"); + set_name(0x0054DCB0, "Script_RequestBattlefieldPositions"); + set_name(0x0054DCC0, "Script_GetBattlefieldFlagPosition"); + set_name(0x0054DE00, "Script_SortBattlefieldScoreData"); + set_name(0x0054E010, "Script_GetBattlegroundInfo"); + set_name(0x0054E160, "Script_BattlefieldMgrEntryInviteResponse"); + set_name(0x0054E1A0, "Script_BattlefieldMgrQueueRequest"); + set_name(0x0054E1C0, "Script_BattlefieldMgrQueueInviteResponse"); + set_name(0x0054E200, "Script_BattlefieldMgrExitRequest"); + set_name(0x0054E6D0, "Script_RequestBattlegroundInstanceInfo"); + set_name(0x0054EA60, "Script_GetGamma"); + set_name(0x0054EA90, "Script_SetGamma"); + set_name(0x0054EB10, "Script_GetTerrainMip"); + set_name(0x0054EB40, "Script_SetTerrainMip"); + set_name(0x0054EBC0, "Script_IsPlayerResolutionAvailable"); + set_name(0x0054ED80, "Script_SetupFullscreenScale"); + set_name(0x0054EE60, "Script_GetVideoCaps"); + set_name(0x0054EF90, "Script_IsStereoVideoAvailable"); + set_name(0x0054F430, "Script_GetScreenResolutions"); + set_name(0x0054F4A0, "Script_GetCurrentResolution"); + set_name(0x0054F570, "Script_SetScreenResolution"); + set_name(0x0054F690, "Script_GetRefreshRates"); + set_name(0x0054F820, "Script_GetMultisampleFormats"); + set_name(0x0054F8B0, "Script_GetCurrentMultisampleFormat"); + set_name(0x0054F980, "Script_SetMultisampleFormat"); + set_name(0x00551720, "Script_KBSetup_BeginLoading"); + set_name(0x00551760, "Script_KBSetup_IsLoaded"); + set_name(0x00551790, "Script_KBSetup_GetLanguageCount"); + set_name(0x005517D0, "Script_KBSetup_GetLanguageData"); + set_name(0x005518C0, "Script_KBSetup_GetCategoryCount"); + set_name(0x00551900, "Script_KBSetup_GetCategoryData"); + set_name(0x005519F0, "Script_KBSetup_GetArticleHeaderCount"); + set_name(0x00551A30, "Script_KBSetup_GetArticleHeaderData"); + set_name(0x00551B40, "Script_KBSetup_GetTotalArticleCount"); + set_name(0x00551B90, "Script_KBQuery_IsLoaded"); + set_name(0x00551BC0, "Script_KBQuery_GetArticleHeaderCount"); + set_name(0x00551C00, "Script_KBQuery_GetArticleHeaderData"); + set_name(0x00551D10, "Script_KBQuery_GetTotalArticleCount"); + set_name(0x00551D60, "Script_KBArticle_BeginLoading"); + set_name(0x00551DA0, "Script_KBArticle_IsLoaded"); + set_name(0x00551DD0, "Script_KBArticle_GetData"); + set_name(0x00551FB0, "Script_KBSystem_GetMOTD"); + set_name(0x00551FD0, "Script_KBSystem_GetServerStatus"); + set_name(0x00551FF0, "Script_KBSystem_GetServerNotice"); + set_name(0x005523A0, "Script_KBSetup_GetSubCategoryCount"); + set_name(0x00552440, "Script_KBSetup_GetSubCategoryData"); + set_name(0x00552580, "Script_KBQuery_BeginLoading"); + set_name(0x005529A0, "Script_SearchLFGGetJoinedID"); + set_name(0x00552DD0, "Script_GetLFGTypes"); + set_name(0x00552E10, "Script_GetLFGRoles"); + set_name(0x00552E90, "Script_GetLFGInfoLocal"); + set_name(0x00552F30, "Script_GetLFGInfoServer"); + set_name(0x00553110, "Script_GetLFGProposalMember"); + set_name(0x00553120, "Script_GetRandomDungeonBestChoice"); + set_name(0x00553170, "Script_CanPartyLFGBackfill"); + set_name(0x00553BA0, "Script_SearchLFGGetNumResults"); + set_name(0x00553C30, "Script_SearchLFGGetEncounterResults"); + set_name(0x00553D60, "Script_SetLFGRoles"); + set_name(0x00553E20, "Script_CompleteLFGRoleCheck"); + set_name(0x00553F50, "Script_SetLFGComment"); + set_name(0x00553F90, "Script_GetLFGQueueStats"); + set_name(0x00554160, "Script_LeaveLFG"); + set_name(0x00554370, "Script_GetLFGProposal"); + set_name(0x00554440, "Script_GetLFGProposalEncounter"); + set_name(0x005545E0, "Script_AcceptProposal"); + set_name(0x00554600, "Script_RejectProposal"); + set_name(0x00554680, "Script_GetLFGRoleUpdate"); + set_name(0x00554740, "Script_GetLFGRoleUpdateSlot"); + set_name(0x005548E0, "Script_GetLFGRoleUpdateMember"); + set_name(0x005548F0, "Script_GetAvailableRoles"); + set_name(0x00554A50, "Script_SetLFGBootVote"); + set_name(0x00554BD0, "Script_GetLFGBootProposal"); + set_name(0x00554BE0, "Script_GetLFDChoiceOrder"); + set_name(0x00554D20, "Script_GetLFRChoiceOrder"); + set_name(0x005551E0, "Script_GetLFDChoiceInfo"); + set_name(0x005553B0, "Script_GetNumRandomDungeons"); + set_name(0x00555590, "Script_GetLFGDungeonInfo"); + set_name(0x005555D0, "Script_GetLFGRandomDungeonInfo"); + set_name(0x00555660, "Script_IsInLFGDungeon"); + set_name(0x005556D0, "Script_GetPartyLFGBackfillInfo"); + set_name(0x00555760, "Script_UnitHasLFGRandomCooldown"); + set_name(0x00555840, "Script_UnitHasLFGDeserter"); + set_name(0x00555FD0, "Script_SearchLFGGetResults"); + set_name(0x00556280, "Script_SearchLFGGetPartyResults"); + set_name(0x005564D0, "Script_GetLFDChoiceCollapseState"); + set_name(0x005567E0, "Script_GetLFDChoiceEnabledState"); + set_name(0x005569D0, "Script_RequestLFDPlayerLockInfo"); + set_name(0x00556A50, "Script_RequestLFDPartyLockInfo"); + set_name(0x00556AD0, "Script_SetLFGHeaderCollapsed"); + set_name(0x00556B60, "Script_SetLFGDungeonEnabled"); + set_name(0x00556BC0, "Script_LFGTeleport"); + set_name(0x00557520, "Script_GetLFGQueuedList"); + set_name(0x00557660, "Script_JoinLFG"); + set_name(0x005576B0, "Script_GetLFDChoiceLockedState"); + set_name(0x00557890, "Script_GetLFDLockPlayerCount"); + set_name(0x00557930, "Script_GetLFDLockInfo"); + set_name(0x00557AA0, "Script_GetLFGDungeonRewards"); + set_name(0x00557BE0, "Script_GetLFGDungeonRewardInfo"); + set_name(0x00557D60, "Script_GetLFGDungeonRewardLink"); + set_name(0x00557E40, "Script_GetLFGCompletionReward"); + set_name(0x00557F70, "Script_GetLFGCompletionRewardItem"); + set_name(0x00558060, "Script_GetLFGRandomCooldownExpiration"); + set_name(0x005580E0, "Script_GetLFGDeserterExpiration"); + set_name(0x005586D0, "Script_IsListedInLFR"); + set_name(0x00559400, "Script_SearchLFGJoin"); + set_name(0x005594E0, "Script_SearchLFGLeave"); + set_name(0x00559500, "Script_ClearLFGDungeon"); + set_name(0x005595D0, "Script_ClearAllLFGDungeons"); + set_name(0x00559F50, "Script_SetLFGDungeon"); + set_name(0x00559FF0, "Script_GetLastQueueStatusIndex"); + set_name(0x0055A040, "Script_IsLFGDungeonJoinable"); + set_name(0x0055A0C0, "Script_PartyLFGStartBackfill"); + set_name(0x0055D280, "Script_RefreshLFGList"); + set_name(0x0055D2B0, "Script_SearchLFGSort"); + set_name(0x0055DC00, "Script_GetNumBindings"); + set_name(0x0055DC30, "Script_GetCurrentBindingSet"); + set_name(0x0055DC60, "Script_GetNumModifiedClickActions"); + set_name(0x0055E8D0, "Script_GetBinding"); + set_name(0x0055E9B0, "Script_GetBindingKey"); + set_name(0x0055EA70, "Script_GetModifiedClickAction"); + set_name(0x0055FAD0, "Script_RunBinding"); + set_name(0x0055FB90, "Script_SetModifiedClick"); + set_name(0x0055FC20, "Script_GetModifiedClick"); + set_name(0x0055FCC0, "Script_IsModifiedClick"); + set_name(0x00560560, "Script_ClearOverrideBindings"); + set_name(0x00562550, "Script_GetBindingAction"); + set_name(0x005625F0, "Script_GetBindingByKey"); + set_name(0x00563520, "Script_SetBinding"); + set_name(0x005635E0, "Script_SetBindingSpell"); + set_name(0x00563700, "Script_SetBindingItem"); + set_name(0x00563820, "Script_SetBindingMacro"); + set_name(0x00563940, "Script_SetBindingClick"); + set_name(0x00563A90, "Script_SetOverrideBinding"); + set_name(0x00563B80, "Script_SetOverrideBindingSpell"); + set_name(0x00563CB0, "Script_SetOverrideBindingItem"); + set_name(0x00563DE0, "Script_SetOverrideBindingMacro"); + set_name(0x00563F10, "Script_SetOverrideBindingClick"); + set_name(0x00564070, "Script_LoadBindings"); + set_name(0x005640C0, "Script_SaveBindings"); + set_name(0x00564130, "Script_GetClickFrame"); + set_name(0x00564AE0, "Script_SecureCmdOptionParse"); + set_name(0x00564B90, "Script_StopMacro"); + set_name(0x00564BB0, "Script_GetNumMacros"); + set_name(0x00564C10, "Script_GetRunningMacro"); + set_name(0x00564C70, "Script_GetRunningMacroButton"); + set_name(0x00564E90, "Script_GetMacroIconInfo"); + set_name(0x00564F60, "Script_GetMacroItemIconInfo"); + set_name(0x00566400, "Script_RunMacroText"); + set_name(0x00566490, "Script_GetNumMacroIcons"); + set_name(0x005664E0, "Script_GetNumMacroItemIcons"); + set_name(0x005666A0, "Script_GetMacroIndexByName"); + set_name(0x00566E80, "Script_RunMacro"); + set_name(0x00566EB0, "Script_GetMacroInfo"); + set_name(0x00566F40, "Script_GetMacroBody"); + set_name(0x00566F70, "Script_DeleteMacro"); + set_name(0x00566FA0, "Script_EditMacro"); + set_name(0x005670D0, "Script_SetMacroItem"); + set_name(0x00567200, "Script_GetMacroItem"); + set_name(0x00567320, "Script_SetMacroSpell"); + set_name(0x00567450, "Script_GetMacroSpell"); + set_name(0x005674F0, "Script_PickupMacro"); + set_name(0x00568160, "Script_CreateMacro"); + set_name(0x00568730, "Script_CommentatorGetNumMaps"); + set_name(0x00568770, "Script_CommentatorZoomIn"); + set_name(0x00568810, "Script_CommentatorZoomOut"); + set_name(0x005690A0, "Script_CommentatorSetMode"); + set_name(0x00569180, "Script_CommentatorToggleMode"); + set_name(0x00569230, "Script_CommentatorGetMode"); + set_name(0x005692A0, "Script_CommentatorUpdatePlayerInfo"); + set_name(0x00569340, "Script_CommentatorUpdateMapInfo"); + set_name(0x005693E0, "Script_CommentatorGetMapInfo"); + set_name(0x00569520, "Script_CommentatorGetInstanceInfo"); + set_name(0x005696E0, "Script_CommentatorEnterInstance"); + set_name(0x005697B0, "Script_CommentatorExitInstance"); + set_name(0x00569820, "Script_CommentatorGetNumPlayers"); + set_name(0x00569910, "Script_CommentatorGetPlayerInfo"); + set_name(0x00569B50, "Script_CommentatorFollowPlayer"); + set_name(0x00569CD0, "Script_CommentatorLookatPlayer"); + set_name(0x00569E50, "Script_CommentatorSetMapAndInstanceIndex"); + set_name(0x00569FA0, "Script_CommentatorSetPlayerIndex"); + set_name(0x0056A0F0, "Script_CommentatorSetCamera"); + set_name(0x0056A2A0, "Script_CommentatorGetCamera"); + set_name(0x0056A380, "Script_CommentatorGetCurrentMapID"); + set_name(0x0056A410, "Script_CommentatorStartInstance"); + set_name(0x0056A640, "Script_CommentatorAddPlayer"); + set_name(0x0056A860, "Script_CommentatorRemovePlayer"); + set_name(0x0056AA10, "Script_CommentatorSetBattlemaster"); + set_name(0x0056AAF0, "Script_CommentatorSetMoveSpeed"); + set_name(0x0056AB70, "Script_CommentatorSetCameraCollision"); + set_name(0x0056AC10, "Script_CommentatorSetTargetHeightOffset"); + set_name(0x0056AC90, "Script_CommentatorSetSkirmishMatchmakingMode"); + set_name(0x0056ADA0, "Script_CommentatorRequestSkirmishQueueData"); + set_name(0x0056AE50, "Script_CommentatorRequestSkirmishMode"); + set_name(0x0056AF00, "Script_CommentatorGetSkirmishMode"); + set_name(0x0056AF60, "Script_CommentatorGetSkirmishQueueCount"); + set_name(0x0056AFC0, "Script_CommentatorGetSkirmishQueuePlayerInfo"); + set_name(0x0056B0B0, "Script_CommentatorStartSkirmishMatch"); + set_name(0x0056D570, "Script_SetSendMailShowing"); + set_name(0x0056D5C0, "Script_ClearSendMail"); + set_name(0x0056D5D0, "Script_GetSendMailMoney"); + set_name(0x0056D610, "Script_SetSendMailCOD"); + set_name(0x0056D690, "Script_GetSendMailCOD"); + set_name(0x0056D6D0, "Script_GetInboxNumItems"); + set_name(0x0056DF80, "Script_GetStationeryInfo"); + set_name(0x0056E0E0, "Script_SelectStationery"); + set_name(0x0056E170, "Script_GetSelectedStationeryTexture"); + set_name(0x0056E1E0, "Script_GetNumPackages"); + set_name(0x0056E210, "Script_GetPackageInfo"); + set_name(0x0056E310, "Script_SelectPackage"); + set_name(0x0056E3A0, "Script_GetSendMailItemLink"); + set_name(0x0056E440, "Script_CheckInbox"); + set_name(0x0056E520, "Script_GetInboxHeaderInfo"); + set_name(0x0056E9B0, "Script_GetInboxInvoiceInfo"); + set_name(0x0056ECA0, "Script_GetInboxItemLink"); + set_name(0x0056EDF0, "Script_TakeInboxMoney"); + set_name(0x0056EEF0, "Script_TakeInboxTextItem"); + set_name(0x0056F000, "Script_ReturnInboxItem"); + set_name(0x0056F140, "Script_DeleteInboxItem"); + set_name(0x0056F280, "Script_InboxItemCanDelete"); + set_name(0x0056F350, "Script_HasNewMail"); + set_name(0x0056F3A0, "Script_GetLatestThreeSenders"); + set_name(0x0056F410, "Script_RespondMailLockSendItem"); + set_name(0x00570550, "Script_ClickSendMailItemButton"); + set_name(0x005706C0, "Script_SetSendMailMoney"); + set_name(0x00570750, "Script_GetSendMailItem"); + set_name(0x00570910, "Script_SendMail"); + set_name(0x00570BD0, "Script_GetInboxText"); + set_name(0x00570F10, "Script_GetInboxItem"); + set_name(0x005711C0, "Script_TakeInboxItem"); + set_name(0x00571350, "Script_ComplainInboxItem"); + set_name(0x005713C0, "Script_CanComplainInboxItem"); + set_name(0x00571450, "Script_AutoLootMailItem"); + set_name(0x00571A40, "Script_CloseMail"); + set_name(0x00571AB0, "Script_GetNumStationeries"); + set_name(0x00571B00, "Script_GetSendMailPrice"); + set_name(0x00572AB0, "Script_GetRaidTargetIndex"); + set_name(0x00572B40, "Script_GetNumRaidMembers"); + set_name(0x00572B80, "Script_GetRealNumRaidMembers"); + set_name(0x00572BC0, "Script_SetRaidRosterSelection"); + set_name(0x00572C50, "Script_GetRaidRosterSelection"); + set_name(0x00572C80, "Script_GetReadyCheckTimeLeft"); + set_name(0x00573690, "Script_GetRaidRosterInfo"); + set_name(0x00573A60, "Script_IsRaidLeader"); + set_name(0x00573AB0, "Script_IsRealRaidLeader"); + set_name(0x00573B00, "Script_IsRaidOfficer"); + set_name(0x00573B50, "Script_SetRaidSubgroup"); + set_name(0x00573C90, "Script_SwapRaidSubgroup"); + set_name(0x00573E10, "Script_PromoteToLeader"); + set_name(0x00573EF0, "Script_PromoteToAssistant"); + set_name(0x00573FD0, "Script_DemoteAssistant"); + set_name(0x005740B0, "Script_DoReadyCheck"); + set_name(0x005740C0, "Script_ConfirmReadyCheck"); + set_name(0x00574180, "Script_GetReadyCheckStatus"); + set_name(0x00574A00, "Script_ConvertToRaid"); + set_name(0x00574AB0, "Script_SetRaidTarget"); + set_name(0x005761F0, "Script_PlayDance"); + set_name(0x0057B3A0, "Script_GetAutoCompleteResults"); + set_name(0x0057B500, "Script_GetAutoCompletePresenceID"); + set_name(0x0057B940, "Script_BankButtonIDToInvSlotID"); + set_name(0x0057B9C0, "Script_CloseBankFrame"); + set_name(0x0057BAB0, "Script_GetNumBankSlots"); + set_name(0x0057BB30, "Script_GetBankSlotCost"); + set_name(0x0057BBC0, "Script_PurchaseSlot"); + set_name(0x0057C420, "GxXformPop"); + set_name(0x0057F170, "Script_GetNumTrackingTypes"); + set_name(0x0057F1B0, "Script_GetTrackingInfo"); + set_name(0x0057F380, "Script_SetTracking"); + set_name(0x0057F4F0, "Script_GetTrackingTexture"); + set_name(0x005841D0, "Script_GetMerchantNumItems"); + set_name(0x00584200, "Script_GetMerchantItemLink"); + set_name(0x005842D0, "Script_GetMerchantItemMaxStack"); + set_name(0x00584390, "Script_HideRepairCursor"); + set_name(0x005843B0, "Script_InRepairMode"); + set_name(0x005843F0, "Script_GetNumBuybackItems"); + set_name(0x005846D0, "Script_CloseMerchant"); + set_name(0x005846E0, "Script_GetMerchantItemCostInfo"); + set_name(0x00584820, "Script_GetMerchantItemCostItem"); + set_name(0x005849F0, "Script_CanMerchantRepair"); + set_name(0x00584A60, "Script_ShowRepairCursor"); + set_name(0x00584E10, "Script_GetMerchantItemInfo"); + set_name(0x00585070, "Script_GetBuybackItemInfo"); + set_name(0x005852C0, "Script_GetBuybackItemLink"); + set_name(0x005853A0, "Script_PickupMerchantItem"); + set_name(0x005854C0, "Script_BuyMerchantItem"); + set_name(0x005855C0, "Script_BuybackItem"); + set_name(0x005856D0, "Script_ShowMerchantSellCursor"); + set_name(0x00585890, "Script_ShowBuybackSellCursor"); + set_name(0x00585990, "Script_GetRepairAllCost"); + set_name(0x00585C90, "Script_RepairAllItems"); + set_name(0x005865F0, "Script_GetTradeTargetItemLink"); + set_name(0x005866E0, "Script_AcceptTrade"); + set_name(0x00586730, "Script_CancelTradeAccept"); + set_name(0x00586780, "Script_GetPlayerTradeMoney"); + set_name(0x005867D0, "Script_GetTargetTradeMoney"); + set_name(0x00586810, "Script_PickupTradeMoney"); + set_name(0x00586870, "Script_SetTradeMoney"); + set_name(0x00586C80, "Script_ClickTargetTradeButton"); + set_name(0x00586D00, "Script_GetTradePlayerItemLink"); + set_name(0x00586D90, "Script_AddTradeMoney"); + set_name(0x00587940, "Script_CloseTrade"); + set_name(0x005879D0, "Script_ClickTradeButton"); + set_name(0x00587C60, "Script_GetTradeTargetItemInfo"); + set_name(0x00587EB0, "Script_GetTradePlayerItemInfo"); + set_name(0x00588540, "Script_GetNumLootItems"); + set_name(0x00588570, "Script_GetLootSlotInfo"); + set_name(0x005886D0, "Script_GetLootSlotLink"); + set_name(0x00588750, "Script_LootSlotIsItem"); + set_name(0x00588810, "Script_LootSlotIsCoin"); + set_name(0x005888B0, "Script_CloseLoot"); + set_name(0x005888E0, "Script_IsFishingLoot"); + set_name(0x00588920, "Script_GetMasterLootCandidate"); + set_name(0x005889D0, "Script_GetLootRollItemInfo"); + set_name(0x00588C00, "Script_GetLootRollItemLink"); + set_name(0x00588CC0, "Script_GetLootRollTimeLeft"); + set_name(0x00588D60, "Script_RollOnLoot"); + set_name(0x00588DD0, "Script_ConfirmLootRoll"); + set_name(0x00588F00, "Script_SetLootPortrait"); + set_name(0x00589520, "Script_LootSlot"); + set_name(0x00589590, "Script_ConfirmLootSlot"); + set_name(0x00589600, "Script_GiveMasterLoot"); + set_name(0x00589B50, "Script_ItemTextGetPage"); + set_name(0x00589B90, "Script_ItemTextGetText"); + set_name(0x00589C40, "Script_ItemTextGetItem"); + set_name(0x00589C90, "Script_ItemTextGetMaterial"); + set_name(0x00589D70, "Script_ItemTextHasNextPage"); + set_name(0x0058A110, "Script_ItemTextPrevPage"); + set_name(0x0058A150, "Script_ItemTextNextPage"); + set_name(0x0058A400, "Script_CloseItemText"); + set_name(0x0058A480, "Script_ItemTextGetCreator"); + set_name(0x0058A900, "Script_GetGossipText"); + set_name(0x0058A920, "Script_GetNumGossipOptions"); + set_name(0x0058A960, "Script_GetNumGossipAvailableQuests"); + set_name(0x0058A9A0, "Script_GetNumGossipActiveQuests"); + set_name(0x0058A9E0, "Script_GetGossipOptions"); + set_name(0x0058AA40, "Script_CloseGossip"); + set_name(0x0058AB50, "Script_ForceGossip"); + set_name(0x0058B3A0, "Script_GetGossipAvailableQuests"); + set_name(0x0058B490, "Script_GetGossipActiveQuests"); + set_name(0x0058B590, "Script_SelectGossipOption"); + set_name(0x0058B600, "Script_SelectGossipAvailableQuest"); + set_name(0x0058B670, "Script_SelectGossipActiveQuest"); + set_name(0x0058BD10, "Script_GetTitleText"); + set_name(0x0058BD30, "Script_GetGreetingText"); + set_name(0x0058BD50, "Script_GetQuestText"); + set_name(0x0058BD70, "Script_GetObjectiveText"); + set_name(0x0058BD90, "Script_GetProgressText"); + set_name(0x0058BDB0, "Script_GetRewardText"); + set_name(0x0058BDD0, "Script_GetNumAvailableQuests"); + set_name(0x0058BE00, "Script_GetNumActiveQuests"); + set_name(0x0058BE30, "Script_GetAvailableTitle"); + set_name(0x0058BED0, "Script_GetActiveTitle"); + set_name(0x0058BF70, "Script_GetAvailableLevel"); + set_name(0x0058C010, "Script_GetActiveLevel"); + set_name(0x0058C0B0, "Script_GetRewardMoney"); + set_name(0x0058C0E0, "Script_GetRewardXP"); + set_name(0x0058C110, "Script_GetRewardHonor"); + set_name(0x0058C140, "Script_GetRewardTalents"); + set_name(0x0058C160, "Script_GetQuestMoneyToGet"); + set_name(0x0058C190, "Script_GetNumQuestRewards"); + set_name(0x0058C1F0, "Script_GetNumQuestChoices"); + set_name(0x0058C250, "Script_GetNumQuestItems"); + set_name(0x0058C2B0, "Script_GetQuestItemLink"); + set_name(0x0058C3A0, "Script_QuestChooseRewardError"); + set_name(0x0058C3B0, "Script_GetSuggestedGroupNum"); + set_name(0x0058C3E0, "Script_QuestFlagsPVP"); + set_name(0x0058C430, "Script_QuestGetAutoAccept"); + set_name(0x0058C470, "Script_GetMaxDailyQuests"); + set_name(0x0058C4A0, "Script_GetRewardArenaPoints"); + set_name(0x0058C4D0, "Script_QuestIsDaily"); + set_name(0x0058C510, "Script_QuestIsWeekly"); + set_name(0x0058C910, "Script_ConfirmAcceptQuest"); + set_name(0x0058C990, "Script_GetQuestBackgroundMaterial"); + set_name(0x0058D350, "Script_CloseQuest"); + set_name(0x0058D370, "Script_IsAvailableQuestTrivial"); + set_name(0x0058D420, "Script_IsActiveQuestTrivial"); + set_name(0x0058D4D0, "Script_SelectAvailableQuest"); + set_name(0x0058D540, "Script_SelectActiveQuest"); + set_name(0x0058D5B0, "Script_AcceptQuest"); + set_name(0x0058D5C0, "Script_DeclineQuest"); + set_name(0x0058D5D0, "Script_IsQuestCompletable"); + set_name(0x0058D610, "Script_CompleteQuest"); + set_name(0x0058D620, "Script_GetQuestReward"); + set_name(0x0058D670, "Script_GetRewardSpell"); + set_name(0x0058D810, "Script_GetRewardTitle"); + set_name(0x0058D980, "Script_GetQuestItemInfo"); + set_name(0x0058DAB0, "Script_GetQuestSpellLink"); + set_name(0x0058DB30, "Script_GetDailyQuestsCompleted"); + set_name(0x0058DBC0, "Script_GetAvailableQuestInfo"); + set_name(0x00590710, "Script_NumTaxiNodes"); + set_name(0x00590D10, "Script_SetTaxiMap"); + set_name(0x00590D60, "Script_TaxiNodeName"); + set_name(0x00590E00, "Script_TaxiNodePosition"); + set_name(0x00590EC0, "Script_CloseTaxiMap"); + set_name(0x00590ED0, "Script_TaxiNodeGetType"); + set_name(0x00590F40, "Script_TaxiGetSrcX"); + set_name(0x00590FE0, "Script_TaxiGetSrcY"); + set_name(0x00591080, "Script_TaxiGetDestX"); + set_name(0x00591120, "Script_TaxiGetDestY"); + set_name(0x005911C0, "Script_GetNumRoutes"); + set_name(0x005915E0, "Script_TaxiNodeCost"); + set_name(0x00591680, "Script_TakeTaxiNode"); + set_name(0x00591E60, "Script_TaxiNodeSetCurrent"); + set_name(0x00593D10, "Script_GetNumTrainerServices"); + set_name(0x00593D50, "Script_IsTradeskillTrainer"); + set_name(0x00593D90, "Script_GetTrainerGreetingText"); + set_name(0x00593E10, "Script_GetTrainerServiceTypeFilter"); + set_name(0x00593EB0, "Script_GetTrainerSkillLineFilter"); + set_name(0x00594370, "Script_CloseTrainer"); + set_name(0x005943A0, "Script_SelectTrainerService"); + set_name(0x00594430, "Script_GetTrainerSelectionIndex"); + set_name(0x00594480, "Script_GetTrainerServiceCost"); + set_name(0x00594530, "Script_GetTrainerServiceLevelReq"); + set_name(0x005945B0, "Script_GetTrainerServiceNumAbilityReq"); + set_name(0x00594650, "Script_GetTrainerSkillLines"); + set_name(0x00595040, "Script_OpenTrainer"); + set_name(0x00595090, "Script_GetTrainerServiceInfo"); + set_name(0x00595150, "Script_GetTrainerServiceIcon"); + set_name(0x005952F0, "Script_GetTrainerServiceSkillLine"); + set_name(0x00595470, "Script_GetTrainerServiceSkillReq"); + set_name(0x005955E0, "Script_GetTrainerServiceAbilityReq"); + set_name(0x005957D0, "Script_GetTrainerServiceStepReq"); + set_name(0x005959D0, "Script_GetTrainerServiceDescription"); + set_name(0x00595B60, "Script_IsTrainerServiceSkillStep"); + set_name(0x00595C40, "Script_GetTrainerServiceStepIncrease"); + set_name(0x00595E60, "Script_BuyTrainerService"); + set_name(0x00595EC0, "Script_SetTrainerServiceTypeFilter"); + set_name(0x00596010, "Script_SetTrainerSkillLineFilter"); + set_name(0x00596150, "Script_CollapseTrainerSkillLine"); + set_name(0x005961F0, "Script_ExpandTrainerSkillLine"); + set_name(0x00596290, "Script_GetTrainerServiceItemLink"); + set_name(0x00598DD0, "Script_GetTabardCreationCost"); + set_name(0x00598F30, "Script_CloseTabardCreation"); + set_name(0x00599F00, "Script_CloseGuildRegistrar"); + set_name(0x00599F40, "Script_GetGuildCharterCost"); + set_name(0x0059A130, "Script_BuyGuildCharter"); + set_name(0x0059A1C0, "Script_TurnInGuildCharter"); + set_name(0x0059A1F0, "Script_GetTabardInfo"); + set_name(0x0059AB90, "Script_IsAuctionSortReversed"); + set_name(0x0059AD40, "Script_GetAuctionSort"); + set_name(0x0059AE70, "Script_SortAuctionClearSort"); + set_name(0x0059AF10, "Script_SortAuctionSetSort"); + set_name(0x0059B040, "Script_CancelSell"); + set_name(0x0059B0B0, "Script_SetAuctionsTabShowing"); + set_name(0x0059BC90, "Script_GetAuctionHouseDepositRate"); + set_name(0x0059BCF0, "Script_QueryAuctionItems"); + set_name(0x0059C1A0, "Script_GetNumAuctionItems"); + set_name(0x0059C2D0, "Script_GetAuctionItemLink"); + set_name(0x0059C420, "Script_GetAuctionItemClasses"); + set_name(0x0059C480, "Script_GetAuctionItemSubClasses"); + set_name(0x0059C590, "Script_GetAuctionInvTypes"); + set_name(0x0059C740, "Script_CanSendAuctionQuery"); + set_name(0x0059C830, "Script_SetSelectedAuctionItem"); + set_name(0x0059C920, "Script_GetSelectedAuctionItem"); + set_name(0x0059C9F0, "Script_CanCancelAuction"); + set_name(0x0059CAB0, "Script_SortAuctionApplySort"); + set_name(0x0059D270, "Script_CalculateAuctionDeposit"); + set_name(0x0059D410, "Script_ClickAuctionSellItemButton"); + set_name(0x0059D4F0, "Script_GetOwnerAuctionItems"); + set_name(0x0059D540, "Script_GetBidderAuctionItems"); + set_name(0x0059D5E0, "Script_GetAuctionItemInfo"); + set_name(0x0059DA40, "Script_PlaceAuctionBid"); + set_name(0x0059DD00, "Script_SortAuctionItems"); + set_name(0x0059DDF0, "Script_CancelAuction"); + set_name(0x0059F750, "Script_CloseAuctionHouse"); + set_name(0x0059F760, "Script_GetAuctionSellItemInfo"); + set_name(0x0059F990, "Script_StartAuction"); + set_name(0x0059FD60, "Script_GetAuctionItemTimeLeft"); + set_name(0x005A0F60, "Script_GetNumStablePets"); + set_name(0x005A0FA0, "Script_GetNumStableSlots"); + set_name(0x005A0FE0, "Script_PickupStablePet"); + set_name(0x005A1060, "Script_GetSelectedStablePet"); + set_name(0x005A1090, "Script_IsAtStableMaster"); + set_name(0x005A1330, "Script_GetStablePetInfo"); + set_name(0x005A14D0, "Script_GetNextStableSlotCost"); + set_name(0x005A1530, "Script_SetPetStablePaperdoll"); + set_name(0x005A16A0, "Script_GetStablePetFoodTypes"); + set_name(0x005A1950, "Script_ClosePetStables"); + set_name(0x005A19C0, "Script_StablePet"); + set_name(0x005A1AC0, "Script_UnstablePet"); + set_name(0x005A1BD0, "Script_BuyStableSlot"); + set_name(0x005A1CA0, "Script_ClickStablePet"); + set_name(0x005A1F70, "Script_GetNumPetitionItems"); + set_name(0x005A1FB0, "Script_GetPetitionItemInfo"); + set_name(0x005A2200, "Script_ClickPetitionButton"); + set_name(0x005A24F0, "Script_ClosePetitionVendor"); + set_name(0x005A2530, "Script_BuyPetition"); + set_name(0x005A2600, "Script_TurnInPetition"); + set_name(0x005A26D0, "Script_TurnInArenaPetition"); + set_name(0x005A2820, "Script_HasFilledPetition"); + set_name(0x005A2930, "Script_GetNumArenaTeamMembers"); + set_name(0x005A2A00, "Script_GetArenaTeamRosterShowOffline"); + set_name(0x005A2A40, "Script_GetCurrentArenaSeason"); + set_name(0x005A2A70, "Script_GetPreviousArenaSeason"); + set_name(0x005A2FC0, "Script_GetArenaTeamRosterInfo"); + set_name(0x005A3260, "Script_GetArenaTeamGdfInfo"); + set_name(0x005A3370, "Script_SetArenaTeamRosterSelection"); + set_name(0x005A3410, "Script_GetArenaTeamRosterSelection"); + set_name(0x005A3490, "Script_SortArenaTeamRoster"); + set_name(0x005A35E0, "Script_SetArenaTeamRosterShowOffline"); + set_name(0x005A3860, "Script_GetArenaTeam"); + set_name(0x005A3CF0, "Script_ArenaTeamRoster"); + set_name(0x005A4330, "Script_PickupGuildBankMoney"); + set_name(0x005A43C0, "Script_SetCurrentGuildBankTab"); + set_name(0x005A4410, "Script_GetCurrentGuildBankTab"); + set_name(0x005A4440, "Script_GetGuildBankMoney"); + set_name(0x005A44A0, "Script_GetGuildBankWithdrawMoney"); + set_name(0x005A44D0, "Script_GetNumGuildBankTabs"); + set_name(0x005A4500, "Script_CloseGuildBankFrame"); + set_name(0x005A4520, "Script_GetNumGuildBankTransactions"); + set_name(0x005A45B0, "Script_GetNumGuildBankMoneyTransactions"); + set_name(0x005A45E0, "Script_GetGuildBankText"); + set_name(0x005A4D30, "Script_GetGuildBankItemLink"); + set_name(0x005A4E50, "Script_GetGuildBankMoneyTransaction"); + set_name(0x005A5CE0, "Script_QueryGuildBankTab"); + set_name(0x005A5D30, "Script_BuyGuildBankTab"); + set_name(0x005A5E20, "Script_DepositGuildBankMoney"); + set_name(0x005A5EF0, "Script_WithdrawGuildBankMoney"); + set_name(0x005A5F60, "Script_CanWithdrawGuildBankMoney"); + set_name(0x005A6000, "Script_GetGuildBankItemInfo"); + set_name(0x005A6200, "Script_PickupGuildBankItem"); + set_name(0x005A63F0, "Script_AutoStoreGuildBankItem"); + set_name(0x005A6600, "Script_SplitGuildBankItem"); + set_name(0x005A67F0, "Script_GetGuildBankTabInfo"); + set_name(0x005A6A00, "Script_SetGuildBankTabInfo"); + set_name(0x005A6B20, "Script_GetGuildBankTabCost"); + set_name(0x005A6BA0, "Script_GetGuildTabardFileNames"); + set_name(0x005A6D50, "Script_QueryGuildBankLog"); + set_name(0x005A6DC0, "Script_GetGuildBankTransaction"); + set_name(0x005A7110, "Script_QueryGuildBankText"); + set_name(0x005A7180, "Script_SetGuildBankText"); + set_name(0x005A7D10, "Script_GetActionCount"); + set_name(0x005A7D90, "Script_GetActionText"); + set_name(0x005A7E60, "Script_IsUsableAction"); + set_name(0x005A7F20, "Script_GetBonusBarOffset"); + set_name(0x005A7F60, "Script_ChangeActionBarPage"); + set_name(0x005A7FD0, "Script_GetActionBarPage"); + set_name(0x005A8220, "Script_HasAction"); + set_name(0x005A8290, "Script_SetActionBarToggles"); + set_name(0x005A8330, "Script_GetMultiCastTotemSpells"); + set_name(0x005A8720, "Script_IsStackableAction"); + set_name(0x005A8790, "Script_GetActionBarToggles"); + set_name(0x005A8820, "Script_IsPossessBarVisible"); + set_name(0x005A8BC0, "Script_IsEquippedAction"); + set_name(0x005A8F10, "Script_GetActionInfo"); + set_name(0x005A91C0, "Script_GetActionCooldown"); + set_name(0x005A9290, "Script_GetActionAutocast"); + set_name(0x005A9B30, "Script_GetActionTexture"); + set_name(0x005A9BA0, "Script_IsAttackAction"); + set_name(0x005A9C10, "Script_IsAutoRepeatAction"); + set_name(0x005A9C80, "Script_IsConsumableAction"); + set_name(0x005A9CF0, "Script_ActionHasRange"); + set_name(0x005A9D50, "Script_IsActionInRange"); + set_name(0x005AAD40, "Script_IsCurrentAction"); + set_name(0x005AB840, "Script_PlaceAction"); + set_name(0x005AB8A0, "Script_SetMultiCastSpell"); + set_name(0x005AC000, "Script_UseAction"); + set_name(0x005AC090, "Script_PickupAction"); + set_name(0x005AC320, "Script_RegisterStaticConstants"); + set_name(0x005AC390, "Script_GMSurveyAnswerSubmit"); + set_name(0x005AC480, "Script_GMSurveyCommentSubmit"); + set_name(0x005AC750, "Script_GMSurveyQuestion"); + set_name(0x005AC7D0, "Script_GMSurveyAnswer"); + set_name(0x005AC870, "Script_GMSurveyNumAnswers"); + set_name(0x005AD020, "Script_GMReportLag"); + set_name(0x005AD070, "Script_GetGMTicket"); + set_name(0x005AD080, "Script_NewGMTicket"); + set_name(0x005AD0F0, "Script_UpdateGMTicket"); + set_name(0x005AD140, "Script_DeleteGMTicket"); + set_name(0x005AD150, "Script_GMResponseNeedMoreHelp"); + set_name(0x005AD1B0, "Script_GMResponseResolve"); + set_name(0x005AD1C0, "Script_GetGMStatus"); + set_name(0x005AD230, "Script_GMSurveySubmit"); + set_name(0x005AD770, "Script_EquipmentManagerIgnoreSlotForSave"); + set_name(0x005AD7C0, "Script_EquipmentManagerIsSlotIgnoredForSave"); + set_name(0x005AD820, "Script_EquipmentManagerClearIgnoredSlotsForSave"); + set_name(0x005AD830, "Script_EquipmentManagerUnignoreSlotForSave"); + set_name(0x005AD880, "Script_CanUseEquipmentSets"); + set_name(0x005AE800, "Script_DeleteEquipmentSet"); + set_name(0x005AE860, "Script_GetEquipmentSetLocations"); + set_name(0x005AEF90, "Script_GetEquipmentSetItemIDs"); + set_name(0x005AF0D0, "Script_GetNumEquipmentSets"); + set_name(0x005AF120, "Script_GetEquipmentSetInfo"); + set_name(0x005AF1D0, "Script_GetEquipmentSetInfoByName"); + set_name(0x005AF250, "Script_PickupEquipmentSetByName"); + set_name(0x005AF2C0, "Script_PickupEquipmentSet"); + set_name(0x005AF320, "Script_EquipmentSetContainsLockedItems"); + set_name(0x005AF380, "Script_UseEquipmentSet"); + set_name(0x005AF910, "Script_RenameEquipmentSet"); + set_name(0x005AF9C0, "Script_SaveEquipmentSet"); + set_name(0x005AFD10, "Script_GetCurrencyListSize"); + set_name(0x005B0680, "Script_GetCurrencyListInfo"); + set_name(0x005B0940, "Script_ExpandCurrencyList"); + set_name(0x005B09B0, "Script_SetCurrencyUnused"); + set_name(0x005B0A20, "Script_SetCurrencyBackpack"); + set_name(0x005B0A90, "Script_GetBackpackCurrencyInfo"); + set_name(0x005B0CE0, "Script_CanShowAchievementUI"); + set_name(0x005B1390, "Script_GetCategoryList"); + set_name(0x005B14B0, "Script_GetStatisticsCategoryList"); + set_name(0x005B15C0, "Script_GetCategoryInfo"); + set_name(0x005B1690, "Script_GetPreviousAchievement"); + set_name(0x005B1720, "Script_GetAchievementInfoFromCriteria"); + set_name(0x005B18E0, "Script_GetAchievementCategory"); + set_name(0x005B1970, "Script_GetAchievementNumRewards"); + set_name(0x005B1A00, "Script_GetAchievementReward"); + set_name(0x005B1AB0, "Script_SetAchievementComparisonUnit"); + set_name(0x005B1BB0, "Script_QueryQuestsCompleted"); + set_name(0x005B1C20, "Script_GetLatestCompletedAchievements"); + set_name(0x005B1C90, "Script_GetLatestUpdatedStats"); + set_name(0x005B1CF0, "Script_GetLatestCompletedComparisonAchievements"); + set_name(0x005B1D60, "Script_GetLatestUpdatedComparisonStats"); + set_name(0x005B1DC0, "Script_GetTotalAchievementPoints"); + set_name(0x005B1E40, "Script_GetComparisonAchievementPoints"); + set_name(0x005B1EC0, "Script_HasCompletedAnyAchievement"); + set_name(0x005B2040, "Script_GetTrackedAchievements"); + set_name(0x005B2090, "Script_IsTrackedAchievement"); + set_name(0x005B2120, "Script_GetNumTrackedAchievements"); + set_name(0x005B38E0, "Script_GetCategoryNumAchievements"); + set_name(0x005B3B30, "Script_GetComparisonCategoryNumAchievements"); + set_name(0x005B3CA0, "Script_GetNumCompletedAchievements"); + set_name(0x005B3DC0, "Script_GetNumComparisonCompletedAchievements"); + set_name(0x005B3EF0, "Script_GetNextAchievement"); + set_name(0x005B3FC0, "Script_GetAchievementInfo"); + set_name(0x005B4760, "Script_ClearAchievementComparisonUnit"); + set_name(0x005B4770, "Script_GetAchievementComparisonInfo"); + set_name(0x005B4870, "Script_AddTrackedAchievement"); + set_name(0x005B48D0, "Script_RemoveTrackedAchievement"); + set_name(0x005B5290, "Script_GetQuestsCompleted"); + set_name(0x005B5530, "Script_GetAchievementNumCriteria"); + set_name(0x005B5620, "Script_GetStatistic"); + set_name(0x005B58B0, "Script_GetAchievementCriteriaInfo"); + set_name(0x005B5E70, "Script_GetComparisonStatistic"); + set_name(0x005B6110, "Script_GetAchievementLink"); + set_name(0x005B71E0, "Script_GetNumGlyphSockets"); + set_name(0x005B7260, "Script_GetGlyphSocketInfo"); + set_name(0x005B7410, "Script_GlyphMatchesSocket"); + set_name(0x005B75A0, "Script_PlaceGlyphInSocket"); + set_name(0x005B7660, "Script_RemoveGlyphFromSocket"); + set_name(0x005B7740, "Script_GetGlyphLink"); + set_name(0x005B80E0, "Script_CalendarGetMonthNames"); + set_name(0x005B8120, "Script_CalendarGetWeekdayNames"); + set_name(0x005B8160, "Script_CalendarGetDate"); + set_name(0x005B81F0, "Script_CalendarGetMinDate"); + set_name(0x005B82A0, "Script_CalendarGetMaxDate"); + set_name(0x005B8350, "Script_CalendarGetMinHistoryDate"); + set_name(0x005B8410, "Script_CalendarGetMaxCreateDate"); + set_name(0x005B84A0, "Script_CalendarCloseEvent"); + set_name(0x005B84D0, "Script_CalendarEventGetNumInvites"); + set_name(0x005B8510, "Script_CalendarContextDeselectEvent"); + set_name(0x005B8540, "Script_CalendarContextEventClipboard"); + set_name(0x005B8570, "Script_CalendarEventSortInvites"); + set_name(0x005B8690, "Script_CalendarEventGetInviteSortCriterion"); + set_name(0x005B8730, "Script_CalendarEventSetStatus"); + set_name(0x005B87D0, "Script_CalendarEventSetModerator"); + set_name(0x005B8840, "Script_CalendarEventClearModerator"); + set_name(0x005B88B0, "Script_CalendarEventIsModerator"); + set_name(0x005B88E0, "Script_CalendarEventCanModerate"); + set_name(0x005B8970, "Script_CalendarEventGetTypes"); + set_name(0x005B89C0, "Script_CalendarEventGetRepeatOptions"); + set_name(0x005B8A10, "Script_CalendarEventHaveSettingsChanged"); + set_name(0x005B8A50, "Script_CalendarEventCanEdit"); + set_name(0x005B8AA0, "Script_CalendarEventGetCalendarType"); + set_name(0x005B8AE0, "Script_CalendarEventSelectInvite"); + set_name(0x005B8B30, "Script_CalendarCanSendInvite"); + set_name(0x005B8BA0, "Script_CalendarCanAddEvent"); + set_name(0x005B8C10, "Script_CalendarIsActionPending"); + set_name(0x005B99F0, "Script_CalendarGetMonth"); + set_name(0x005B9AC0, "Script_CalendarGetAbsMonth"); + set_name(0x005B9BF0, "Script_CalendarGetNumDayEvents"); + set_name(0x005B9CA0, "Script_CalendarGetDayEventSequenceInfo"); + set_name(0x005B9E10, "Script_CalendarGetFirstPendingInvite"); + set_name(0x005B9EB0, "Script_CalendarOpenEvent"); + set_name(0x005B9F80, "Script_CalendarGetEventIndex"); + set_name(0x005BA000, "Script_CalendarGetRaidInfo"); + set_name(0x005BA220, "Script_CalendarEventGetInvite"); + set_name(0x005BA420, "Script_CalendarEventGetInviteResponseTime"); + set_name(0x005BA5A0, "Script_CalendarRemoveEvent"); + set_name(0x005BA5B0, "Script_CalendarContextSelectEvent"); + set_name(0x005BA680, "Script_CalendarContextGetEventIndex"); + set_name(0x005BA700, "Script_CalendarContextInviteIsPending"); + set_name(0x005BA7F0, "Script_CalendarContextInviteModeratorStatus"); + set_name(0x005BA910, "Script_CalendarContextInviteStatus"); + set_name(0x005BAA20, "Script_CalendarContextInviteType"); + set_name(0x005BAB50, "Script_CalendarContextInviteAvailable"); + set_name(0x005BAD00, "Script_CalendarContextInviteDecline"); + set_name(0x005BAEB0, "Script_CalendarContextEventCanEdit"); + set_name(0x005BAFC0, "Script_CalendarContextEventGetCalendarType"); + set_name(0x005BB0C0, "Script_CalendarEventRemoveInvite"); + set_name(0x005BB130, "Script_CalendarEventGetStatusOptions"); + set_name(0x005BB210, "Script_CalendarEventSetTitle"); + set_name(0x005BB280, "Script_CalendarEventSetDescription"); + set_name(0x005BB2F0, "Script_CalendarEventSetType"); + set_name(0x005BB380, "Script_CalendarEventSetRepeatOption"); + set_name(0x005BB410, "Script_CalendarEventSetSize"); + set_name(0x005BB4A0, "Script_CalendarEventSetDate"); + set_name(0x005BB5A0, "Script_CalendarEventSetTime"); + set_name(0x005BB650, "Script_CalendarEventSetLockoutDate"); + set_name(0x005BB750, "Script_CalendarEventSetLockoutTime"); + set_name(0x005BB800, "Script_CalendarEventSetTextureID"); + set_name(0x005BB870, "Script_CalendarEventSetLocked"); + set_name(0x005BB8B0, "Script_CalendarEventClearLocked"); + set_name(0x005BB8F0, "Script_CalendarEventSetAutoApprove"); + set_name(0x005BB930, "Script_CalendarEventClearAutoApprove"); + set_name(0x005BB970, "Script_CalendarEventGetTextures"); + set_name(0x005BBB00, "Script_CalendarEventGetSelectedInvite"); + set_name(0x005BCC00, "Script_CalendarSetMonth"); + set_name(0x005BCC70, "Script_CalendarAddEvent"); + set_name(0x005BCCA0, "Script_CalendarNewEvent"); + set_name(0x005BCCB0, "Script_CalendarMassInviteGuild"); + set_name(0x005BCD80, "Script_CalendarNewGuildAnnouncement"); + set_name(0x005BCD90, "Script_CalendarNewGuildEvent"); + set_name(0x005BCDA0, "Script_CalendarDefaultGuildFilter"); + set_name(0x005BCE60, "Script_CalendarMassInviteArenaTeam"); + set_name(0x005BCED0, "Script_CalendarUpdateEvent"); + set_name(0x005BCF00, "Script_CalendarEventInvite"); + set_name(0x005BCF30, "Script_CalendarContextInviteTentative"); + set_name(0x005BD040, "Script_CalendarContextInviteRemove"); + set_name(0x005BD130, "Script_CalendarContextEventSignUp"); + set_name(0x005BD220, "Script_CalendarContextEventRemove"); + set_name(0x005BD340, "Script_CalendarContextEventCopy"); + set_name(0x005BD460, "Script_CalendarContextEventPaste"); + set_name(0x005BD4F0, "Script_CalendarContextEventCanComplain"); + set_name(0x005BD600, "Script_CalendarContextEventComplain"); + set_name(0x005BD6E0, "Script_CalendarEventAvailable"); + set_name(0x005BD750, "Script_CalendarEventTentative"); + set_name(0x005BD760, "Script_CalendarEventDecline"); + set_name(0x005BD7D0, "Script_CalendarEventSignUp"); + set_name(0x005BD7E0, "Script_OpenCalendar"); + set_name(0x005BD8A0, "Script_CalendarGetEventInfo"); + set_name(0x005BDD90, "Script_CalendarEventHasPendingInvite"); + set_name(0x005BF830, "Script_CalendarGetNumPendingInvites"); + set_name(0x005C1070, "Script_CalendarGetDayEvent"); + set_name(0x005C1480, "Script_CalendarGetHolidayInfo"); + set_name(0x005C43B0, "Script_CalendarSetAbsMonth"); + set_name(0x005C4550, "Script_GetSocketTypes"); + set_name(0x005C49C0, "Script_CloseSocketInfo"); + set_name(0x005C49D0, "Script_GetSocketItemInfo"); + set_name(0x005C4AF0, "Script_GetNumSockets"); + set_name(0x005C4B60, "Script_GetNewSocketInfo"); + set_name(0x005C4D10, "Script_GetNewSocketLink"); + set_name(0x005C4DC0, "Script_ClickSocketButton"); + set_name(0x005C4EA0, "Script_GetSocketItemBoundTradeable"); + set_name(0x005C5160, "Script_GetExistingSocketInfo"); + set_name(0x005C5340, "Script_GetExistingSocketLink"); + set_name(0x005C5460, "Script_AcceptSockets"); + set_name(0x005C5470, "Script_GetSocketItemRefundable"); + set_name(0x005C5500, "Script_GetMinigameType"); + set_name(0x005C5550, "Script_MakeMinigameMove"); + set_name(0x005C55F0, "Script_GetMinigameState"); + set_name(0x005C5810, "Script_GetActiveTalentGroup"); + set_name(0x005C5CC0, "Script_GetNumTalentTabs"); + set_name(0x005C5D40, "Script_GetNumTalents"); + set_name(0x005C5DF0, "Script_GetNumTalentGroups"); + set_name(0x005C5E70, "Script_SetActiveTalentGroup"); + set_name(0x005C6150, "Script_GetTalentTabInfo"); + set_name(0x005C6310, "Script_GetUnspentTalentPoints"); + set_name(0x005C63B0, "Script_GetPreviewTalentPointsSpent"); + set_name(0x005C6420, "Script_GetGroupPreviewTalentPointsSpent"); + set_name(0x005C6A10, "Script_LearnPreviewTalents"); + set_name(0x005C7130, "Script_ResetPreviewTalentPoints"); + set_name(0x005C7200, "Script_ResetGroupPreviewTalentPoints"); + set_name(0x005C7800, "Script_GetTalentInfo"); + set_name(0x005C7CE0, "Script_GetTalentLink"); + set_name(0x005C7ED0, "Script_GetTalentPrereqs"); + set_name(0x005C80E0, "Script_LearnTalent"); + set_name(0x005C9590, "Script_AddPreviewTalentPoints"); + set_name(0x005CA130, "Script_GetNumGuildMembers"); + set_name(0x005CA190, "Script_GetGuildRosterMOTD"); + set_name(0x005CA1B0, "Script_SetGuildRosterShowOffline"); + set_name(0x005CA1E0, "Script_GetGuildRosterShowOffline"); + set_name(0x005CA220, "Script_GuildControlGetNumRanks"); + set_name(0x005CA260, "Script_GuildControlSetRank"); + set_name(0x005CA2B0, "Script_GuildControlSetRankFlag"); + set_name(0x005CA330, "Script_GetGuildInfoText"); + set_name(0x005CA350, "Script_GetNumGuildEvents"); + set_name(0x005CABB0, "Script_GetGuildRosterLastOnline"); + set_name(0x005CAD00, "Script_GuildRosterSetPublicNote"); + set_name(0x005CAE20, "Script_GuildRosterSetOfficerNote"); + set_name(0x005CAF40, "Script_SetGuildRosterSelection"); + set_name(0x005CAFD0, "Script_GetGuildRosterSelection"); + set_name(0x005CB000, "Script_SortGuildRoster"); + set_name(0x005CB170, "Script_GuildControlSaveRank"); + set_name(0x005CB330, "Script_GuildControlAddRank"); + set_name(0x005CB3F0, "Script_GuildControlDelRank"); + set_name(0x005CB470, "Script_SetGuildBankTabPermissions"); + set_name(0x005CB560, "Script_GetGuildBankTabPermissions"); + set_name(0x005CB6A0, "Script_SetGuildBankWithdrawLimit"); + set_name(0x005CB700, "Script_GetGuildBankWithdrawLimit"); + set_name(0x005CB760, "Script_SetGuildBankTabWithdraw"); + set_name(0x005CB810, "Script_GuildRoster"); + set_name(0x005CB820, "Script_SetGuildInfoText"); + set_name(0x005CBCF0, "Script_CanGuildPromote"); + set_name(0x005CBD80, "Script_CanGuildDemote"); + set_name(0x005CBE10, "Script_CanGuildInvite"); + set_name(0x005CBEA0, "Script_CanGuildRemove"); + set_name(0x005CBF30, "Script_CanEditMOTD"); + set_name(0x005CBFC0, "Script_CanEditPublicNote"); + set_name(0x005CC050, "Script_CanEditOfficerNote"); + set_name(0x005CC0E0, "Script_CanViewOfficerNote"); + set_name(0x005CC170, "Script_CanEditGuildInfo"); + set_name(0x005CC200, "Script_CanGuildBankRepair"); + set_name(0x005CC290, "Script_CanEditGuildTabInfo"); + set_name(0x005CC360, "Script_CanEditGuildEvent"); + set_name(0x005CC3E0, "Script_GuildControlGetRankFlags"); + set_name(0x005CC470, "Script_QueryGuildEventLog"); + set_name(0x005CC9C0, "Script_GetGuildRosterInfo"); + set_name(0x005CCC90, "Script_GuildControlGetRankName"); + set_name(0x005CCD90, "Script_GetGuildEventInfo"); + set_name(0x005CD1B0, "Script_GetNumSkillLines"); + set_name(0x005CD820, "Script_CancelSkillUps"); + set_name(0x005CD860, "Script_SetSelectedSkill"); + set_name(0x005CD8F0, "Script_GetSelectedSkill"); + set_name(0x005CDE20, "Script_GetSkillLineInfo"); + set_name(0x005CE2C0, "Script_AbandonSkill"); + set_name(0x005CE3A0, "Script_CollapseSkillHeader"); + set_name(0x005CE400, "Script_ExpandSkillHeader"); + set_name(0x005CE460, "Script_AddSkillUp"); + set_name(0x005CE4D0, "Script_RemoveSkillUp"); + set_name(0x005CE540, "Script_GetAdjustedSkillPoints"); + set_name(0x005CE5D0, "Script_AcceptSkillUps"); + set_name(0x005CE6F0, "Script_BuySkillTier"); + set_name(0x005CEAC0, "Script_GetNumPetitionNames"); + set_name(0x005CECE0, "Script_GetPetitionInfo"); + set_name(0x005CEE30, "Script_GetPetitionNameInfo"); + set_name(0x005CF020, "Script_ClosePetition"); + set_name(0x005CF040, "Script_CanSignPetition"); + set_name(0x005CF140, "Script_SignPetition"); + set_name(0x005CF220, "Script_OfferPetition"); + set_name(0x005CF450, "Script_RenamePetition"); + set_name(0x005CF950, "Script_StartDuel"); + set_name(0x005CFDB0, "Script_AcceptDuel"); + set_name(0x005CFF20, "Script_GetNumFactions"); + set_name(0x005D0740, "Script_IsFactionInactive"); + set_name(0x005D07B0, "Script_SetSelectedFaction"); + set_name(0x005D0820, "Script_GetSelectedFaction"); + set_name(0x005D1150, "Script_GetFactionInfo"); + set_name(0x005D11E0, "Script_GetFactionInfoByID"); + set_name(0x005D1240, "Script_GetWatchedFactionInfo"); + set_name(0x005D1390, "Script_FactionToggleAtWar"); + set_name(0x005D1420, "Script_SetWatchedFactionIndex"); + set_name(0x005D1E50, "Script_SetFactionInactive"); + set_name(0x005D1EE0, "Script_SetFactionActive"); + set_name(0x005D1F70, "Script_CollapseFactionHeader"); + set_name(0x005D1FC0, "Script_CollapseAllFactionHeaders"); + set_name(0x005D1FE0, "Script_ExpandAllFactionHeaders"); + set_name(0x005D2000, "Script_ExpandFactionHeader"); + set_name(0x005D3160, "Script_IsPetAttackActive"); + set_name(0x005D3180, "Script_GetPetTimeRemaining"); + set_name(0x005D3720, "Script_PetHasActionBar"); + set_name(0x005D3780, "Script_PetCanBeAbandoned"); + set_name(0x005D3820, "Script_PetCanBeDismissed"); + set_name(0x005D38C0, "Script_PetCanBeRenamed"); + set_name(0x005D3960, "Script_HasPetUI"); + set_name(0x005D3A20, "Script_GetPetExperience"); + set_name(0x005D3B00, "Script_GetPetHappiness"); + set_name(0x005D3BD0, "Script_GetPetFoodTypes"); + set_name(0x005D3CE0, "Script_GetPetIcon"); + set_name(0x005D3D80, "Script_GetPetTalentTree"); + set_name(0x005D4EC0, "Script_GetPetActionInfo"); + set_name(0x005D5280, "Script_GetPetActionCooldown"); + set_name(0x005D53C0, "Script_GetPetActionsUsable"); + set_name(0x005D5400, "Script_GetPetActionSlotUsable"); + set_name(0x005D54C0, "Script_PetPassiveMode"); + set_name(0x005D54F0, "Script_PetDefensiveMode"); + set_name(0x005D5520, "Script_PetAggressiveMode"); + set_name(0x005D5550, "Script_PetWait"); + set_name(0x005D5580, "Script_PetFollow"); + set_name(0x005D55B0, "Script_PetAttack"); + set_name(0x005D5640, "Script_PetStopAttack"); + set_name(0x005D5650, "Script_PetAbandon"); + set_name(0x005D5660, "Script_PetDismiss"); + set_name(0x005D5670, "Script_PetRename"); + set_name(0x005D5820, "Script_GetPossessInfo"); + set_name(0x005D5A10, "Script_IsPetAttackAction"); + set_name(0x005D65C0, "Script_PickupPetAction"); + set_name(0x005D66F0, "Script_TogglePetAutocast"); + set_name(0x005D67B0, "Script_CastPetAction"); + set_name(0x005D6F60, "Script_ContainerIDToInventoryID"); + set_name(0x005D6FF0, "Script_GetMaxArenaCurrency"); + set_name(0x005D7180, "Script_SetBagPortraitTexture"); + set_name(0x005D74A0, "Script_GetContainerNumSlots"); + set_name(0x005D7590, "Script_GetContainerNumFreeSlots"); + set_name(0x005D7820, "Script_GetContainerFreeSlots"); + set_name(0x005D7A90, "Script_GetContainerItemInfo"); + set_name(0x005D7C80, "Script_GetContainerItemLink"); + set_name(0x005D7D00, "Script_GetContainerItemID"); + set_name(0x005D7D90, "Script_GetContainerItemCooldown"); + set_name(0x005D7EF0, "Script_GetContainerItemDurability"); + set_name(0x005D7FF0, "Script_PickupContainerItem"); + set_name(0x005D84F0, "Script_SplitContainerItem"); + set_name(0x005D8650, "Script_UseContainerItem"); + set_name(0x005D8B10, "Script_SocketContainerItem"); + set_name(0x005D8BD0, "Script_ShowContainerSellCursor"); + set_name(0x005D8C70, "Script_GetBagName"); + set_name(0x005D8D80, "Script_GetContainerItemPurchaseInfo"); + set_name(0x005D8F70, "Script_GetContainerItemPurchaseItem"); + set_name(0x005D91B0, "Script_ContainerRefundItemPurchase"); + set_name(0x005D9300, "Script_GetContainerItemGems"); + set_name(0x005D9400, "Script_GetContainerItemQuestInfo"); + set_name(0x005DA120, "Script_GetNumTradeSkills"); + set_name(0x005DA150, "Script_GetTradeSkillItemNameFilter"); + set_name(0x005DA170, "Script_GetTradeSkillItemLevelFilter"); + set_name(0x005DA1B0, "Script_GetTradeSkillSubClassFilter"); + set_name(0x005DA270, "Script_GetTradeskillRepeatCount"); + set_name(0x005DA2E0, "Script_StopTradeSkillRepeat"); + set_name(0x005DA310, "Script_IsTradeSkillLinked"); + set_name(0x005DA8B0, "Script_CloseTradeSkill"); + set_name(0x005DA900, "Script_SelectTradeSkill"); + set_name(0x005DA970, "Script_GetTradeSkillSelectionIndex"); + set_name(0x005DA9A0, "Script_GetTradeSkillCooldown"); + set_name(0x005DAA70, "Script_GetTradeSkillSubClasses"); + set_name(0x005DAB70, "Script_GetFirstTradeSkill"); + set_name(0x005DAC00, "Script_DoTradeSkill"); + set_name(0x005DB2A0, "Script_GetTradeSkillInfo"); + set_name(0x005DB550, "Script_GetTradeSkillIcon"); + set_name(0x005DB6E0, "Script_GetTradeSkillNumMade"); + set_name(0x005DB810, "Script_GetTradeSkillLine"); + set_name(0x005DB920, "Script_GetTradeSkillRecipeLink"); + set_name(0x005DBA70, "Script_GetTradeSkillItemLink"); + set_name(0x005DBBA0, "Script_GetTradeSkillNumReagents"); + set_name(0x005DBCC0, "Script_GetTradeSkillReagentItemLink"); + set_name(0x005DBE10, "Script_GetTradeSkillDescription"); + set_name(0x005DBF10, "Script_GetTradeSkillInvSlots"); + set_name(0x005DBF90, "Script_GetTradeSkillInvSlotFilter"); + set_name(0x005DC0B0, "Script_GetTradeSkillListLink"); + set_name(0x005DD070, "Script_SetTradeSkillItemNameFilter"); + set_name(0x005DD090, "Script_SetTradeSkillItemLevelFilter"); + set_name(0x005DD0F0, "Script_SetTradeSkillSubClassFilter"); + set_name(0x005DD230, "Script_SetTradeSkillInvSlotFilter"); + set_name(0x005DD3E0, "Script_TradeSkillOnlyShowMakeable"); + set_name(0x005DD420, "Script_TradeSkillOnlyShowSkillUps"); + set_name(0x005DD460, "Script_CollapseTradeSkillSubClass"); + set_name(0x005DD500, "Script_ExpandTradeSkillSubClass"); + set_name(0x005DE400, "Script_GetTradeSkillReagentInfo"); + set_name(0x005DE620, "Script_GetTradeSkillTools"); + set_name(0x005DF010, "Script_GetNumQuestLogEntries"); + set_name(0x005DF0A0, "Script_GetQuestLogSelection"); + set_name(0x005DF0D0, "Script_SetAbandonQuest"); + set_name(0x005DF0E0, "Script_GetAbandonQuestName"); + set_name(0x005DF150, "Script_GetNumQuestLogRewards"); + set_name(0x005DF1D0, "Script_GetNumQuestLogChoices"); + set_name(0x005DF250, "Script_GetQuestLogItemLink"); + set_name(0x005DF3A0, "Script_GetQuestLogRewardTalents"); + set_name(0x005DF400, "Script_GetQuestLogRewardArenaPoints"); + set_name(0x005DF460, "Script_GetQuestLogRequiredMoney"); + set_name(0x005DF520, "Script_GetQuestLogPushable"); + set_name(0x005DF5D0, "Script_GetNumQuestWatches"); + set_name(0x005DF610, "Script_IsQuestWatched"); + set_name(0x005DF700, "Script_RemoveQuestWatch"); + set_name(0x005DF780, "Script_GetQuestIndexForWatch"); + set_name(0x005DF870, "Script_GetQuestLogGroupNum"); + set_name(0x005DF8A0, "Script_ProcessQuestLogRewardFactions"); + set_name(0x005DF910, "Script_GetNumQuestLogRewardFactions"); + set_name(0x005DF940, "Script_GetQuestLogRewardFactionInfo"); + set_name(0x005DFA10, "Script_GetQuestSortIndex"); + set_name(0x005DFA80, "Script_QuestPOIGetQuestIDByIndex"); + set_name(0x005DFB00, "Script_SetPOIIconOverlapDistance"); + set_name(0x005DFB40, "Script_SetPOIIconOverlapPushDistance"); + set_name(0x005DFBA0, "Script_ShiftQuestWatches"); + set_name(0x005DFC40, "Script_GetQuestWatchIndex"); + set_name(0x005E02F0, "Script_SelectQuestLogEntry"); + set_name(0x005E0340, "Script_GetQuestLogQuestText"); + set_name(0x005E0590, "Script_QuestPOIGetIconInfo"); + set_name(0x005E06D0, "Script_GetQuestLogCompletionText"); + set_name(0x005E3D60, "Script_GetAbandonQuestItems"); + set_name(0x005E4060, "Script_AbandonQuest"); + set_name(0x005E4070, "Script_IsUnitOnQuest"); + set_name(0x005E41A0, "Script_GetNumQuestLeaderBoards"); + set_name(0x005E4260, "Script_GetNumQuestItemDrops"); + set_name(0x005E4320, "Script_GetQuestLogTimeLeft"); + set_name(0x005E43F0, "Script_IsCurrentQuestFailed"); + set_name(0x005E4490, "Script_GetQuestLogRewardInfo"); + set_name(0x005E4660, "Script_GetQuestLogChoiceInfo"); + set_name(0x005E4840, "Script_GetQuestLogSpellLink"); + set_name(0x005E48F0, "Script_GetQuestLogRewardMoney"); + set_name(0x005E49B0, "Script_GetQuestLogRewardXP"); + set_name(0x005E4B70, "Script_GetQuestLogRewardHonor"); + set_name(0x005E4C10, "Script_GetQuestLogRewardTitle"); + set_name(0x005E4D10, "Script_GetQuestLogRewardSpell"); + set_name(0x005E4ED0, "Script_QuestLogPushQuest"); + set_name(0x005E4FB0, "Script_GetQuestIndexForTimer"); + set_name(0x005E5100, "Script_CollapseQuestHeader"); + set_name(0x005E5150, "Script_ExpandQuestHeader"); + set_name(0x005E51A0, "Script_GetQuestGreenRange"); + set_name(0x005E51D0, "Script_GetQuestLink"); + set_name(0x005E52D0, "Script_GetQuestLogSpecialItemInfo"); + set_name(0x005E53D0, "Script_GetQuestLogSpecialItemCooldown"); + set_name(0x005E54C0, "Script_IsQuestLogSpecialItemInRange"); + set_name(0x005E5640, "Script_UseQuestLogSpecialItem"); + set_name(0x005E56C0, "Script_GetQuestWorldMapAreaID"); + set_name(0x005E5740, "Script_QuestPOIUpdateIcons"); + set_name(0x005E5750, "Script_QuestPOIGetQuestIDByVisibleIndex"); + set_name(0x005E5CC0, "Script_GetQuestLogTitle"); + set_name(0x005E5F60, "Script_GetQuestLogLeaderBoard"); + set_name(0x005E60D0, "Script_GetQuestLogItemDrop"); + set_name(0x005E6240, "Script_GetQuestTimers"); + set_name(0x005E63D0, "Script_QuestMapUpdateAllQuests"); + set_name(0x005E64B0, "Script_SortQuestWatches"); + set_name(0x005E6650, "Script_GetQuestPOILeaderBoard"); + set_name(0x005E67C0, "Script_AddQuestWatch"); + set_name(0x005E6DE0, "Script_GetQuestResetTime"); + set_name(0x005E7700, "Script_KeyRingButtonIDToInvSlotID"); + set_name(0x005E7780, "Script_HasInspectHonorData"); + set_name(0x005E77C0, "Script_GetInspectHonorData"); + set_name(0x005E7890, "Script_ClearInspectPlayer"); + set_name(0x005E7D60, "Script_GetInventorySlotInfo"); + set_name(0x005E7E60, "Script_GetInventoryItemCooldown"); + set_name(0x005E7FA0, "Script_GetInventoryAlertStatus"); + set_name(0x005E8030, "Script_GetInspectArenaTeamData"); + set_name(0x005E95C0, "Script_GetInventoryItemsForSlot"); + set_name(0x005E9BC0, "Script_GetInventoryItemTexture"); + set_name(0x005E9D80, "Script_GetInventoryItemBroken"); + set_name(0x005E9E40, "Script_GetInventoryItemCount"); + set_name(0x005EA040, "Script_GetInventoryItemQuality"); + set_name(0x005EA170, "Script_GetInventoryItemDurability"); + set_name(0x005EA270, "Script_GetInventoryItemLink"); + set_name(0x005EA3E0, "Script_GetInventoryItemID"); + set_name(0x005EA4F0, "Script_GetInventoryItemGems"); + set_name(0x005EA5F0, "Script_PickupInventoryItem"); + set_name(0x005EA630, "Script_UseInventoryItem"); + set_name(0x005EA6A0, "Script_SocketInventoryItem"); + set_name(0x005EA6E0, "Script_IsInventoryItemLocked"); + set_name(0x005EA780, "Script_PutItemInBag"); + set_name(0x005EA7F0, "Script_PutItemInBackpack"); + set_name(0x005EA840, "Script_PickupBagFromSlot"); + set_name(0x005EA880, "Script_CursorCanGoInSlot"); + set_name(0x005EA930, "Script_ShowInventorySellCursor"); + set_name(0x005EA9B0, "Script_SetInventoryPortraitTexture"); + set_name(0x005EAAF0, "Script_GetGuildInfo"); + set_name(0x005EAC00, "Script_UpdateInventoryAlertStatus"); + set_name(0x005EAC10, "Script_OffhandHasWeapon"); + set_name(0x005EAC90, "Script_RequestInspectHonorData"); + set_name(0x005EACA0, "Script_GetWeaponEnchantInfo"); + set_name(0x005EAE90, "Script_HasWandEquipped"); + set_name(0x005EEB70, "nullsub_3"); + set_name(0x005F9550, "Script_VehicleAimGetNormPower"); + set_name(0x005F9DD0, "Script_IsMouselooking"); + set_name(0x005F9E10, "Script_VehicleAimGetAngle"); + set_name(0x005F9E60, "Script_VehicleAimGetNormAngle"); + set_name(0x005F9F10, "Script_VehicleAimSetNormPower"); + set_name(0x005F9F70, "Script_IsVehicleAimAngleAdjustable"); + set_name(0x005F9FE0, "Script_IsVehicleAimPowerAdjustable"); + set_name(0x005FA050, "Script_DetectWowMouse"); + set_name(0x005FAAE0, "Script_ToggleRun"); + set_name(0x005FB660, "Script_VehicleExit"); + set_name(0x005FB6D0, "Script_VehiclePrevSeat"); + set_name(0x005FB720, "Script_VehicleNextSeat"); + set_name(0x005FB770, "Script_VehicleAimIncrement"); + set_name(0x005FB7D0, "Script_VehicleAimDecrement"); + set_name(0x005FB820, "Script_VehicleAimRequestAngle"); + set_name(0x005FB8C0, "Script_VehicleAimRequestNormAngle"); + set_name(0x005FB970, "Script_IsUsingVehicleControls"); + set_name(0x005FB9C0, "Script_CanExitVehicle"); + set_name(0x005FBA10, "Script_CanSwitchVehicleSeats"); + set_name(0x005FBF80, "Script_JumpOrAscendStart"); + set_name(0x005FC0A0, "Script_AscendStop"); + set_name(0x005FC140, "Script_DescendStop"); + set_name(0x005FC190, "Script_ToggleAutoRun"); + set_name(0x005FC200, "Script_MoveForwardStart"); + set_name(0x005FC250, "Script_MoveForwardStop"); + set_name(0x005FC290, "Script_MoveBackwardStart"); + set_name(0x005FC2E0, "Script_MoveBackwardStop"); + set_name(0x005FC320, "Script_TurnLeftStart"); + set_name(0x005FC360, "Script_TurnLeftStop"); + set_name(0x005FC3B0, "Script_TurnRightStart"); + set_name(0x005FC3F0, "Script_TurnRightStop"); + set_name(0x005FC440, "Script_StrafeLeftStart"); + set_name(0x005FC490, "Script_StrafeLeftStop"); + set_name(0x005FC4D0, "Script_StrafeRightStart"); + set_name(0x005FC520, "Script_StrafeRightStop"); + set_name(0x005FC570, "Script_VehicleAimUpStop"); + set_name(0x005FC5C0, "Script_VehicleAimDownStop"); + set_name(0x005FC610, "Script_TurnOrActionStart"); + set_name(0x005FC680, "Script_TurnOrActionStop"); + set_name(0x005FC6C0, "Script_CameraOrSelectOrMoveStart"); + set_name(0x005FC730, "Script_CameraOrSelectOrMoveStop"); + set_name(0x005FC780, "Script_MoveAndSteerStart"); + set_name(0x005FC830, "Script_MoveAndSteerStop"); + set_name(0x005FC890, "Script_MouselookStop"); + set_name(0x005FC8E0, "Script_VehicleAimUpStart"); + set_name(0x005FC920, "Script_VehicleAimDownStart"); + set_name(0x005FCC10, "Script_MouselookStart"); + set_name(0x005FD550, "Script_SetMouselookOverrideBinding"); + set_name(0x005FF080, "Script_MoveViewInStart"); + set_name(0x005FF0A0, "Script_MoveViewInStop"); + set_name(0x005FF0D0, "Script_MoveViewOutStart"); + set_name(0x005FF0F0, "Script_MoveViewOutStop"); + set_name(0x005FF120, "Script_MoveViewRightStart"); + set_name(0x005FF140, "Script_MoveViewRightStop"); + set_name(0x005FF170, "Script_MoveViewLeftStart"); + set_name(0x005FF190, "Script_MoveViewLeftStop"); + set_name(0x005FF1C0, "Script_MoveViewUpStart"); + set_name(0x005FF1E0, "Script_MoveViewUpStop"); + set_name(0x005FF210, "Script_MoveViewDownStart"); + set_name(0x005FF230, "Script_MoveViewDownStop"); + set_name(0x005FF260, "Script_SaveView"); + set_name(0x005FF2C0, "Script_FlipCameraYaw"); + set_name(0x006017E0, "Script_CameraZoomIn"); + set_name(0x00601840, "Script_CameraZoomOut"); + set_name(0x006018A0, "Script_VehicleCameraZoomIn"); + set_name(0x006018B0, "Script_VehicleCameraZoomOut"); + set_name(0x006039B0, "Script_SetView"); + set_name(0x00604C80, "Script_ResetView"); + set_name(0x00604CE0, "Script_NextView"); + set_name(0x00604D10, "Script_PrevView"); + set_name(0x006081F0, "Script_GetTime"); + set_name(0x00608230, "Script_GetGameTime"); + set_name(0x00608270, "Script_ConsoleExec"); + set_name(0x006082C0, "Script_GetMaxCombatRatingBonus"); + set_name(0x00608560, "Script_GetWaterDetail"); + set_name(0x00608580, "Script_CanSwitchVehicleSeat"); + set_name(0x00608690, "Script_GetItemStats"); + set_name(0x00608760, "Script_GetItemStatDelta"); + set_name(0x0060A450, "Script_IsLoggedIn"); + set_name(0x0060A490, "Script_GetPlayerFacing"); + set_name(0x0060A510, "Script_FillLocalizedClassList"); + set_name(0x0060C2A0, "Script_UnitExists"); + set_name(0x0060C350, "Script_UnitIsVisible"); + set_name(0x0060C3D0, "Script_UnitIsUnit"); + set_name(0x0060C4B0, "Script_UnitIsPlayer"); + set_name(0x0060C550, "Script_UnitIsInMyGuild"); + set_name(0x0060C6F0, "Script_UnitIsCorpse"); + set_name(0x0060C770, "Script_UnitIsPartyLeader"); + set_name(0x0060C810, "Script_UnitGroupRolesAssigned"); + set_name(0x0060C8A0, "Script_UnitIsRaidOfficer"); + set_name(0x0060C920, "Script_UnitInParty"); + set_name(0x0060C9A0, "Script_UnitPlayerOrPetInParty"); + set_name(0x0060CA20, "Script_UnitInRaid"); + set_name(0x0060CAA0, "Script_UnitInBattleground"); + set_name(0x0060CB20, "Script_UnitPlayerOrPetInRaid"); + set_name(0x0060CBA0, "Script_UnitPlayerControlled"); + set_name(0x0060CC30, "Script_UnitIsAFK"); + set_name(0x0060CD50, "Script_UnitIsDND"); + set_name(0x0060CE20, "Script_UnitIsPVP"); + set_name(0x0060CF20, "Script_UnitIsPVPSanctuary"); + set_name(0x0060CFB0, "Script_UnitIsPVPFreeForAll"); + set_name(0x0060D0A0, "Script_UnitFactionGroup"); + set_name(0x0060D280, "Script_UnitReaction"); + set_name(0x0060D330, "Script_UnitIsEnemy"); + set_name(0x0060D3D0, "Script_UnitIsFriend"); + set_name(0x0060D530, "Script_UnitCanCooperate"); + set_name(0x0060D690, "Script_UnitCanAssist"); + set_name(0x0060D730, "Script_UnitCanAttack"); + set_name(0x0060D7D0, "Script_UnitIsCharmed"); + set_name(0x0060D860, "Script_UnitIsPossessed"); + set_name(0x0060D8F0, "Script_PlayerCanTeleport"); + set_name(0x0060D970, "Script_UnitClassification"); + set_name(0x0060DA00, "Script_UnitSelectionColor"); + set_name(0x0060DB20, "Script_IsInGuild"); + set_name(0x0060DB80, "Script_IsGuildLeader"); + set_name(0x0060DBF0, "Script_IsInArenaTeam"); + set_name(0x0060DC70, "Script_IsArenaTeamCaptain"); + set_name(0x0060DD40, "Script_IsResting"); + set_name(0x0060DDB0, "Script_GetCombatRating"); + set_name(0x0060DE70, "Script_GetCombatRatingBonus"); + set_name(0x0060DF30, "Script_GetDodgeChance"); + set_name(0x0060DF90, "Script_GetBlockChance"); + set_name(0x0060DFF0, "Script_GetShieldBlock"); + set_name(0x0060E070, "Script_GetParryChance"); + set_name(0x0060E0D0, "Script_GetCritChance"); + set_name(0x0060E130, "Script_GetCritChanceFromAgility"); + set_name(0x0060E1B0, "Script_GetSpellCritChanceFromIntellect"); + set_name(0x0060E230, "Script_GetRangedCritChance"); + set_name(0x0060E290, "Script_GetSpellCritChance"); + set_name(0x0060E310, "Script_GetSpellBonusDamage"); + set_name(0x0060E3B0, "Script_GetSpellBonusHealing"); + set_name(0x0060E410, "Script_GetPetSpellBonusDamage"); + set_name(0x0060E470, "Script_GetSpellPenetration"); + set_name(0x0060E4E0, "Script_GetArmorPenetration"); + set_name(0x0060E560, "Script_GetAttackPowerForStat"); + set_name(0x0060E630, "Script_UnitGUID"); + set_name(0x0060E740, "Script_UnitName"); + set_name(0x0060E9A0, "Script_UnitPVPName"); + set_name(0x0060EA60, "Script_UnitXP"); + set_name(0x0060EAE0, "Script_UnitXPMax"); + set_name(0x0060EB60, "Script_UnitHealth"); + set_name(0x0060EC60, "Script_UnitHealthMax"); + set_name(0x0060ED40, "Script_UnitPower"); + set_name(0x0060EF40, "Script_UnitPowerMax"); + set_name(0x0060F100, "Script_UnitPowerType"); + set_name(0x0060F350, "Script_UnitOnTaxi"); + set_name(0x0060F3D0, "Script_UnitIsFeignDeath"); + set_name(0x0060F480, "Script_UnitIsDead"); + set_name(0x0060F580, "Script_UnitIsGhost"); + set_name(0x0060F680, "Script_UnitIsDeadOrGhost"); + set_name(0x0060F790, "Script_UnitIsConnected"); + set_name(0x0060F860, "Script_UnitAffectingCombat"); + set_name(0x0060F8E0, "Script_UnitSex"); + set_name(0x0060F9E0, "Script_UnitLevel"); + set_name(0x0060FBA0, "Script_GetMoney"); + set_name(0x0060FC40, "Script_GetHonorCurrency"); + set_name(0x0060FCC0, "Script_GetArenaCurrency"); + set_name(0x0060FD40, "Script_UnitRace"); + set_name(0x0060FEC0, "Script_UnitClass"); + set_name(0x00610040, "Script_UnitClassBase"); + set_name(0x006101A0, "Script_UnitResistance"); + set_name(0x00610300, "Script_UnitStat"); + set_name(0x00610450, "Script_UnitAttackBothHands"); + set_name(0x00610550, "Script_UnitRangedDamage"); + set_name(0x006107D0, "Script_UnitRangedAttack"); + set_name(0x00610860, "Script_UnitDamage"); + set_name(0x00610A00, "Script_UnitAttackSpeed"); + set_name(0x00610B60, "Script_UnitAttackPower"); + set_name(0x00610CA0, "Script_UnitRangedAttackPower"); + set_name(0x00610DE0, "Script_UnitDefense"); + set_name(0x00610EC0, "Script_UnitArmor"); + set_name(0x00610FB0, "Script_UnitCharacterPoints"); + set_name(0x00611130, "Script_UnitIsTapped"); + set_name(0x006111B0, "Script_UnitIsTappedByPlayer"); + set_name(0x00611230, "Script_UnitIsTappedByAllThreatList"); + set_name(0x006112B0, "Script_UnitIsTrivial"); + set_name(0x00611330, "Script_UnitHasRelicSlot"); + set_name(0x006113E0, "Script_SetPortraitTexture"); + set_name(0x00611600, "Script_HasFullControl"); + set_name(0x00611670, "Script_GetComboPoints"); + set_name(0x00611780, "Script_UnitCreatureType"); + set_name(0x00611820, "Script_UnitCreatureFamily"); + set_name(0x006118C0, "Script_GetResSicknessDuration"); + set_name(0x00611A20, "Script_GetPVPSessionStats"); + set_name(0x00611AD0, "Script_GetPVPYesterdayStats"); + set_name(0x00611B80, "Script_GetPVPLifetimeStats"); + set_name(0x00611C40, "Script_UnitPVPRank"); + set_name(0x00611CB0, "Script_GetPVPRankInfo"); + set_name(0x00611DF0, "Script_UnitCastingInfo"); + set_name(0x00612090, "Script_UnitChannelInfo"); + set_name(0x00612260, "Script_IsFlyableArea"); + set_name(0x00612300, "Script_IsIndoors"); + set_name(0x00612360, "Script_IsOutdoors"); + set_name(0x006123C0, "Script_IsOutOfBounds"); + set_name(0x00612430, "Script_IsFalling"); + set_name(0x006124A0, "Script_IsSwimming"); + set_name(0x00612500, "Script_IsFlying"); + set_name(0x006125A0, "Script_IsMounted"); + set_name(0x00612610, "Script_IsStealthed"); + set_name(0x00612670, "Script_UnitIsSameServer"); + set_name(0x006127F0, "Script_GetUnitHealthModifier"); + set_name(0x00612870, "Script_GetUnitMaxHealthModifier"); + set_name(0x00612900, "Script_GetUnitPowerModifier"); + set_name(0x00612980, "Script_GetUnitHealthRegenRateFromSpirit"); + set_name(0x00612A00, "Script_GetUnitManaRegenRateFromSpirit"); + set_name(0x00612A90, "Script_GetManaRegen"); + set_name(0x00612B40, "Script_GetPowerRegen"); + set_name(0x00612BF0, "Script_GetExpertise"); + set_name(0x00612CB0, "Script_GetExpertisePercent"); + set_name(0x00612D50, "Script_ReportPlayerIsPVPAFK"); + set_name(0x00612E20, "Script_PlayerIsPVPInactive"); + set_name(0x00612F10, "Script_UnitInRange"); + set_name(0x00613020, "Script_GetRuneCooldown"); + set_name(0x00613140, "Script_GetRuneCount"); + set_name(0x006131E0, "Script_GetRuneType"); + set_name(0x00613290, "Script_GetUnitSpeed"); + set_name(0x00613330, "Script_GetUnitPitch"); + set_name(0x006133D0, "Script_UnitInVehicle"); + set_name(0x006134A0, "Script_UnitUsingVehicle"); + set_name(0x00613570, "Script_UnitControllingVehicle"); + set_name(0x00613700, "Script_UnitInVehicleControlSeat"); + set_name(0x00613740, "Script_UnitHasVehicleUI"); + set_name(0x00613780, "Script_UnitTargetsVehicleInRaidUI"); + set_name(0x006137D0, "Script_UnitVehicleSkin"); + set_name(0x00613830, "Script_UnitVehicleSeatCount"); + set_name(0x006138C0, "Script_UnitVehicleSeatInfo"); + set_name(0x006139B0, "Script_UnitSwitchToVehicleSeat"); + set_name(0x00613A60, "Script_UnitThreatSituation"); + set_name(0x00613B40, "Script_UnitDetailedThreatSituation"); + set_name(0x00613C90, "Script_UnitIsControlling"); + set_name(0x00613D20, "Script_CanEjectPassengerFromSeat"); + set_name(0x00613E10, "Script_EjectPassengerFromSeat"); + set_name(0x00613ED0, "Script_RespondInstanceLock"); + set_name(0x00613F90, "Script_GetPlayerInfoByGUID"); + set_name(0x00614140, "Script_IsXPUserDisabled"); + set_name(0x00614CA0, "Script_UnitBuff"); + set_name(0x00614CF0, "Script_UnitDebuff"); + set_name(0x00614D40, "Script_UnitAura"); + set_name(0x00614E60, "Script_GetVehicleUIIndicator"); + set_name(0x00614EF0, "Script_GetVehicleUIIndicatorSeat"); + set_name(0x006160B0, "CopyCursorImage"); + set_name(0x006162C0, "UpdateCursor"); + set_name(0x006163B0, "CursorInitialize"); + set_name(0x00616800, "CursorSetMode"); + set_name(0x00616AD0, "GxXformPush_EGxXform_C44Matrix"); + set_name(0x00632050, "nullsub_4"); + set_name(0x00653A10, "nullsub_5"); + set_name(0x00681290, "GxDevCreate"); + set_name(0x006813B0, "GxSceneClear"); + set_name(0x006813D0, "GxTexUpdate"); + set_name(0x006817E0, "GxLog"); + set_name(0x00681AB0, "GxPrimIndexPtr"); + set_name(0x00681B00, "GxPrimVertexPtr"); + set_name(0x00681BE0, "CGxTexFlags__CGxTexFlags"); + set_name(0x00681CB0, "GxTexCreate"); + set_name(0x00682340, "GxDrawLockedElements"); + set_name(0x00682400, "GxPrimVertexPtr_FFP"); + set_name(0x006828C0, "GxPrimLockVertexPtrs"); + set_name(0x00682A00, "GxScenePresent"); + set_name(0x00682CB0, "CGxDevice__DeviceCreate_WindowProc_CGxFormat"); + set_name(0x00682D00, "CGxDevice__DeviceSetBaseMipLevel"); + set_name(0x00682D20, "CGxDevice__DeviceApi"); + set_name(0x00682D40, "CGxDevice__IDevIsWindowed"); + set_name(0x00682D70, "CGxDevice__DeviceCurWindow"); + set_name(0x00682E50, "CGxDevice__ScenePresent"); + set_name(0x00682F40, "CGxDevice__PrimCalcCount"); + set_name(0x00683080, "CGxDevice__LightEnable"); + set_name(0x006830B0, "CGxDevice__NeedsUpdate"); + set_name(0x00683100, "CGxDevice__MasterEnable"); + set_name(0x00683130, "CGxDevice__BufData"); + set_name(0x00683150, "CGxDevice__BufLock"); + set_name(0x00683180, "CGxDevice__BufUnlock"); + set_name(0x006833A0, "CGxDevice__ShaderConstantsClear"); + set_name(0x006833E0, "CGxDevice__ShaderConstantsSet"); + set_name(0x00683560, "CGxDevice__ShaderConstantsLock"); + set_name(0x00683580, "CGxDevice__ShaderConstantsUnlock"); + set_name(0x006835E0, "CGxDevice__ICursorDestroy"); + set_name(0x00683610, "CGxDevice__ICursorUpdate"); + set_name(0x00683640, "CGxDevice__CursorSetVisible"); + set_name(0x00683650, "CGxDevice__CursorLock"); + set_name(0x00683660, "CGxDevice__CursorSetDepth"); + set_name(0x006840F0, "CGxDevice__DeviceSetFormat"); + set_name(0x00684190, "CGxDevice__DeviceSetGamma"); + set_name(0x00684360, "CGxDevice__DeviceSetDefWindow"); + set_name(0x00684440, "CGxDevice__ClipPlaneSet"); + set_name(0x006847D0, "CGxDevice__LightSet"); + set_name(0x00684850, "CGxDevice__BufStream"); + set_name(0x006848A0, "CGxDevice__TexMarkForUpdate"); + set_name(0x00684900, "CGxDevice__ITexMarkAsUpdated"); + set_name(0x00684970, "CGxDevice__IShaderLoad"); + set_name(0x00684AD0, "CGxDevice__ICursorCreate"); + set_name(0x00684B50, "CGxDevice__CursorUnlock"); + set_name(0x00684C20, "CGxDevice__Log"); + set_name(0x00684C40, "CGxDevice__Log_CGxCaps"); + set_name(0x00684D10, "CGxDevice__Log"); + set_name(0x00685970, "CGxDevice__IRsDirty"); + set_name(0x006859E0, "CGxDevice__IRsForceUpdate_EGxRenderState"); + set_name(0x006859E0, "CGxDevice__IRsForceUpdate"); + set_name(0x00685A70, "CGxDevice__IRsForceUpdate"); + set_name(0x00685B50, "CGxDevice__IRsSync"); + set_name(0x00685C60, "CGxDevice__TexCreate"); + set_name(0x00685EB0, "CGxDevice__MasterEnableSet"); + set_name(0x00685F50, "CGxDevice__RsSet"); + set_name(0x00685FB0, "CGxDevice__RsPop"); + set_name(0x00687660, "CGxDevice__BufCreate"); + set_name(0x006876D0, "CGxDevice__PoolCreate"); + set_name(0x00687A90, "CGxDevice__ICursorDraw"); + set_name(0x00688340, "CGxDevice__PoolDestroy"); + set_name(0x00688690, "CGxDevice__CGxDevice"); + set_name(0x006897C0, "CGxDevice__ShaderCreate"); + set_name(0x00689A50, "CGxShader__Valid"); + set_name(0x00689EF0, "CGxDevice__NewD3d"); + set_name(0x0068BBC0, "CGxDeviceOpenGl__CGxDeviceOpenGl"); + set_name(0x0068BF20, "CGxDevice__NewOpenGl"); + set_name(0x0068C220, "CGxDevice__NewD3d9Ex"); + set_name(0x0068E180, "CGxDeviceD3d__ICreateD3dIB"); + set_name(0x0068E250, "CGxDeviceD3d__ISetPresentParms"); + set_name(0x0068E720, "CGxDeviceD3d__PoolDestroy"); + set_name(0x0068E750, "CGxDeviceD3d__CursorSetVisible"); + set_name(0x0068E810, "CGxDeviceD3d__ICursorDraw"); + set_name(0x0068E900, "CGxDeviceD3d__ICursorCreate"); + set_name(0x0068EBB0, "CGxDeviceD3d__ICreateWindow"); + set_name(0x0068ED80, "CGxDeviceD3d__ILoadD3dLib"); + set_name(0x0068EE20, "CGxDeviceD3d__ISetCaps"); + set_name(0x0068F3D0, "CGxDeviceD3d__ICreateD3dDevice"); + set_name(0x0068FA60, "CGxDeviceD3d__IBufUnlock"); + set_name(0x0068FAE0, "CGxDeviceD3d__BufUnlock"); + set_name(0x0068FB10, "CGxDeviceD3d__IBufLock"); + set_name(0x0068FCE0, "CGxDeviceD3d__BufLock"); + set_name(0x0068FD00, "CGxDeviceD3d__BufData"); + set_name(0x0068FD50, "CGxDeviceD3d__CGxDeviceD3d"); + set_name(0x00690230, "CGxDeviceD3d__DeviceWM"); + set_name(0x006904D0, "CGxDeviceD3d__DeviceSetFormat"); + set_name(0x00690680, "CGxDeviceD3d__ICreateD3d"); + set_name(0x00690750, "CGxDeviceD3d__DeviceCreate_WindowProc_CGxFormat"); + set_name(0x0069FB00, "CGxDeviceD3d__ICreateD3dVB"); + set_name(0x0069FB70, "CGxDeviceD3d__CreatePoolAPI"); + set_name(0x006A00C0, "CGxDeviceD3d__ICursorDestroy"); + set_name(0x006A0360, "CGxDeviceD3d__WindowProcD3d"); + set_name(0x006A1A90, "CGxDeviceD3d9Ex__CGxDeviceD3d9Ex"); + set_name(0x006A2C00, "CGxDeviceD3d__ITexCreate"); + set_name(0x006A2D80, "CGxDeviceD3d__ITexUpload"); + set_name(0x006A3070, "CGxDeviceD3d__ITexMarkAsUpdated"); + set_name(0x006A3350, "CGxDeviceD3d__ISceneBegin"); + set_name(0x006A3420, "CGxDeviceD3d__ISceneEnd"); + set_name(0x006A3450, "CGxDeviceD3d__ScenePresent"); + set_name(0x006A3620, "CGxDeviceD3d__Draw"); + set_name(0x006A3810, "CGxDeviceD3d__IStateSyncEnables"); + set_name(0x006A39E0, "CGxDeviceD3d__ISetVertexBuffer"); + set_name(0x006A3A60, "CGxDeviceD3d__IStateSetD3DDefaults"); + set_name(0x006A3C40, "CGxDeviceD3d__DsSet"); + set_name(0x006A4190, "CGxDeviceD3d__ISetColorOp"); + set_name(0x006A41F0, "CGxDeviceD3d__ISetAlphaOp"); + set_name(0x006A4700, "CGxDeviceD3d__IStateSyncMaterial"); + set_name(0x006A4850, "CGxDeviceD3d__IStateSyncXforms"); + set_name(0x006A4900, "CGxDeviceD3d__ISetTexture"); + set_name(0x006A4C30, "CGxDeviceD3d__IRsSendToHw"); + set_name(0x006A5540, "CGxDeviceD3d__ICreateD3dVertexDecl"); + set_name(0x006A5700, "CGxDeviceD3d__IStateSyncVertexPtrs"); + set_name(0x006A5940, "CGxDeviceD3d__IStateSync"); + set_name(0x006A5A00, "CGxDeviceD3d__CapsWindowSize"); + set_name(0x006A5A30, "CGxDeviceD3d__IXformSetWorld"); + set_name(0x006A5C70, "CGxDeviceD3d__IBindPixelShader"); + set_name(0x006A5E10, "CGxDeviceD3d__IShaderCreate"); + set_name(0x006A5EF0, "CGxDevice__ITexWHDStartEnd"); + set_name(0x006A74B0, "CGxDeviceD3d__SceneClear"); + set_name(0x006A9920, "CGxDeviceD3d__CapsWindowSizeInScreenCoords"); + set_name(0x006A9B40, "CGxDeviceD3d__XformSetProjection"); + set_name(0x006A9E00, "CGxDeviceD3d__XformSetView"); + set_name(0x006A9FE0, "CGxDeviceD3d__IShaderConstantsFlush"); + set_name(0x006AA070, "CGxDeviceD3d__IShaderCreatePixel"); + set_name(0x006AA0D0, "CGxDeviceD3d__IShaderCreateVertex"); + set_name(0x006AA130, "CGxDeviceD3d__ShaderCreate"); + set_name(0x006AA2F0, "CGxDeviceD3d__IBindVertexShader"); + set_name(0x006AA350, "CTgaFile__ColorMapEntryBytes"); + set_name(0x006AA380, "CTgaFile__ColorMapBytes"); + set_name(0x006AA3B0, "CTgaFile__ValidateColorDepth"); + set_name(0x006AA3E0, "CTgaFile__PreImageBytes"); + set_name(0x006AA420, "CTgaFile__AddAlphaChannel_internal"); + set_name(0x006AA520, "CTgaFile__ReadRawImage"); + set_name(0x006AA630, "CTgaFile__RLEDecompressImage"); + set_name(0x006AA700, "CTgaFile__SetTopDown"); + set_name(0x006AA840, "CTgaFile__ImageTGA32Pixel"); + set_name(0x006AA870, "CTgaFile__RemoveAlphaChannels"); + set_name(0x006AAF40, "CTgaFile__Close"); + set_name(0x006AAFB0, "CTgaFile__Open"); + set_name(0x006AB0E0, "CTgaFile__ConvertColorMapped"); + set_name(0x006AB220, "CTgaFile__ReadRleImage"); + set_name(0x006AB390, "CTgaFile__AddAlphaChannel"); + set_name(0x006AB450, "CTgaFile__ReadColorMappedImage"); + set_name(0x006AB4B0, "CTgaFile__LoadImageData"); + set_name(0x006AB5C0, "GetBitDepth"); + set_name(0x006AB620, "CalcLevelSize"); + set_name(0x006AB700, "CalcLevelCount"); + set_name(0x006AB760, "MippedImgAllocA"); + set_name(0x006AB810, "MippedImgSet"); + set_name(0x006AB860, "FullShrink"); + set_name(0x006AE8B0, "CBLPFile__Close"); + set_name(0x006AE900, "CBLPFile__Source"); + set_name(0x006AE990, "CBLPFile__DecompPalFastPath"); + set_name(0x006AE9E0, "CBLPFile__DecompPalARGB8888"); + set_name(0x006AEBA0, "CBLPFile__DecompPalARGB4444DitherFloydSteinberg"); + set_name(0x006AEE70, "CBLPFile__DecompPalARGB1555DitherFloydSteinberg"); + set_name(0x006AF140, "CBLPFile__DecompPalARGB565DitherFloydSteinberg"); + set_name(0x006AF340, "CBLPFile__DecompPalARGB2565DitherFloydSteinberg"); + set_name(0x006AF6A0, "CBLPFile__Pixels"); + set_name(0x006AF730, "CBLPFile__GetFormatSize"); + set_name(0x006AF810, "CBLPFile__DecompPal"); + set_name(0x006AFCE0, "CBLPFile__Lock2"); + set_name(0x006AFF10, "CBLPFile__Open"); + set_name(0x006AFFD0, "CBLPFile__LockChain2"); + set_name(0x006B0960, "nullsub_154"); + set_name(0x006B1B80, "nullsub_151"); + set_name(0x006B1B90, "nullsub_6"); + set_name(0x006B1BA0, "nullsub_155"); + set_name(0x006B33D0, "Script_GetNumWhoResults"); + set_name(0x006B3430, "Script_SetWhoToUI"); + set_name(0x006B4060, "Script_GetNumFriends"); + set_name(0x006B4130, "Script_GetFriendInfo"); + set_name(0x006B4400, "Script_SetSelectedFriend"); + set_name(0x006B44B0, "Script_GetSelectedFriend"); + set_name(0x006B44F0, "Script_ShowFriends"); + set_name(0x006B4560, "Script_GetNumIgnores"); + set_name(0x006B45C0, "Script_GetNumMutes"); + set_name(0x006B4620, "Script_GetIgnoreName"); + set_name(0x006B4760, "Script_GetMuteName"); + set_name(0x006B48A0, "Script_SetSelectedIgnore"); + set_name(0x006B4950, "Script_SetSelectedMute"); + set_name(0x006B4A00, "Script_GetSelectedIgnore"); + set_name(0x006B4A40, "Script_GetSelectedMute"); + set_name(0x006B4A80, "Script_GetWhoInfo"); + set_name(0x006B4EB0, "Script_SortWho"); + set_name(0x006B6AF0, "Script_AddFriend"); + set_name(0x006B6B50, "Script_SendWho"); + set_name(0x006B6BA0, "Script_AddOrDelIgnore"); + set_name(0x006B6BD0, "Script_AddOrDelMute"); + set_name(0x006B6C00, "Script_AddIgnore"); + set_name(0x006B6C30, "Script_AddMute"); + set_name(0x006B6C60, "Script_IsIgnored"); + set_name(0x006B6CF0, "Script_IsMuted"); + set_name(0x006B6D80, "Script_IsIgnoredOrMuted"); + set_name(0x006B7B70, "Script_AddOrRemoveFriend"); + set_name(0x006B7BD0, "Script_RemoveFriend"); + set_name(0x006B7C90, "Script_SetFriendNotes"); + set_name(0x006B7D70, "Script_DelIgnore"); + set_name(0x006B7DA0, "Script_DelMute"); + set_name(0x006BCE10, "GxuFontAddToBatch"); + set_name(0x006BCE40, "GxuFontRenderBatch"); + set_name(0x006BCE60, "GxuFontGetTextExtent"); + set_name(0x006BCEA0, "GxuFontGetMaxCharsWithinWidth"); + set_name(0x006BD020, "GxuFontGetOneToOneHeight"); + set_name(0x006BD0A0, "GxuFontSetStringPosition"); + set_name(0x006BD0C0, "GxuFontAddShadow"); + set_name(0x006BD5A0, "GxuDetermineQuotedCode"); + set_name(0x006BDFC0, "GxuFontDestroyString"); + set_name(0x006BE020, "GxuFontWindowSizeChanged"); + set_name(0x006BE2B0, "GxuFontCreateString"); + set_name(0x006BE390, "GxuFontClearBatch"); + set_name(0x006BE3B0, "GxuFontDestroyBatch"); + set_name(0x006BE3E0, "GxuFontUpdate"); + set_name(0x006BF160, "GxuFontCreateBatch"); + set_name(0x006BF370, "GxuXformCreateProjection_Exact"); + set_name(0x006BF6D0, "GxuXformCalcFrustumCorners"); + set_name(0x006BFDA0, "GxuUpdateSingleColorTexture"); + set_name(0x006BFE00, "GxuXformCreateProjection_SG"); + set_name(0x006BFE60, "GxuXformCreateLookAtSgCompat"); + set_name(0x006C8CC0, "IGxuFontGlyphRenderGlyph"); + set_name(0x00743550, "nullsub_152"); + set_name(0x00743560, "nullsub_153"); + set_name(0x0074D580, "Script_CombatTextSetActiveUnit"); + set_name(0x0074D5B0, "Script_CombatLogSetRetentionTime"); + set_name(0x0074D600, "Script_CombatLog_Object_IsA"); + set_name(0x0074D9E0, "Script_CombatLogGetRetentionTime"); + set_name(0x0074F2B0, "Script_CombatLogGetCurrentEntry"); + set_name(0x0074FA60, "Script_CombatLogResetFilter"); + set_name(0x0074FA70, "Script_CombatLogGetNumEntries"); + set_name(0x0074FAE0, "Script_CombatLogSetCurrentEntry"); + set_name(0x0074FC20, "Script_CombatLogAdvanceEntry"); + set_name(0x0074FF70, "Script_CombatLogAddFilter"); + set_name(0x00751120, "Script_CombatLogClearEntries"); + set_name(0x00763730, "SetInputString"); + set_name(0x007637D0, "ReserveInputSpace"); + set_name(0x00763830, "ResetHighlight"); + set_name(0x00763860, "UpdateHighlight"); + set_name(0x007639A0, "OnMouseUp"); + set_name(0x007639D0, "OnMouseMove"); + set_name(0x00763A60, "MakeCommandCurrent"); + set_name(0x00763B40, "ConsoleCommandHistoryPrev"); + set_name(0x00763B90, "ConsoleCommandHistoryNext"); + set_name(0x00763BE0, "OnKeyUp"); + set_name(0x00763C50, "ConsolePostClose"); + set_name(0x00763D60, "EventCloseCallback"); + set_name(0x00763DF0, "DrawBackground"); + set_name(0x00764040, "DrawHighLight"); + set_name(0x007641A0, "DrawCaret"); + set_name(0x007643F0, "PaintBackground"); + set_name(0x00764520, "GetInputLine"); + set_name(0x007645E0, "PaintText"); + set_name(0x00764800, "PasteInInputLine"); + set_name(0x00764990, "OnChar"); + set_name(0x007649AF, "s_active"); + set_name(0x00764A10, "OnMouseDown"); + set_name(0x00764B90, "OnKeyDownRepeat"); + set_name(0x00765270, "ConsoleWrite"); + set_name(0x007653B0, "ConsoleWriteA"); + set_name(0x007658A0, "ConsoleCommandExecute"); + set_name(0x007659C0, "OnIdle"); + set_name(0x00765AF0, "OnKeyDown"); + set_name(0x00765FF0, "RegisterHandlers"); + set_name(0x00766140, "ConsoleScreenInitialize"); + set_name(0x00766530, "CVarLoadFile"); + set_name(0x007668C0, "CVar__Set"); + set_name(0x00767100, "CVarSaveFile"); + set_name(0x007673F0, "CVar__Destroy"); + set_name(0x00767FC0, "CVar__Register"); + set_name(0x00768340, "CVar__Initialize"); + set_name(0x00768410, "ConsoleCommand_Quit"); + set_name(0x00768440, "ConsoleCommandHistory"); + set_name(0x007689E0, "ConsoleCommandUnregister"); + set_name(0x00769100, "ConsoleCommandRegister"); + set_name(0x00769230, "ConsoleAccessGetEnabled"); + set_name(0x0076AB80, "ConsoleDeviceInitialize"); + set_name(0x0076E4A0, "SMemSetDebugFlags"); + set_name(0x0076E540, "SMemAlloc"); + set_name(0x0076E5A0, "SMemFree"); + set_name(0x0076E5E0, "SMemReAlloc"); + set_name(0x0076E6E0, "SStrChr"); + set_name(0x0076E720, "SStrChrR"); + set_name(0x0076E760, "SStrCmp"); + set_name(0x0076E780, "SStrCmpI"); + set_name(0x0076ED20, "SStrCopy"); + set_name(0x0076EE30, "SStrLen"); + set_name(0x0076EF70, "SStrPack"); + set_name(0x0076F070, "SStrPrintf"); + set_name(0x0076F0A0, "SStrVPrintf"); + set_name(0x0076F1E0, "SStrTokenize"); + set_name(0x0076F640, "SStrHashHT"); + set_name(0x00770840, "SRegLoadValue"); + set_name(0x007709A0, "SRegSaveValue"); + set_name(0x00771870, "SErrSetLastError"); + set_name(0x00771890, "SErrSetLogTitleString"); + set_name(0x00771900, "SErrSetLogTitleCallback"); + set_name(0x00771B80, "SErrRegisterHandler"); + set_name(0x00772B20, "SErrCatchUnhandledExceptions"); + set_name(0x00773590, "SCmdRegisterArgList"); + set_name(0x00773890, "SCmdProcess"); + set_name(0x00773990, "SCmdProcessCommandLine"); + set_name(0x007739E0, "StormInitialize"); + set_name(0x00773A80, "StormSetOption"); + set_name(0x00774620, "SCritSect__SCritSect"); + set_name(0x00774630, "SCritSect__destructor"); + set_name(0x00774640, "SCritSect__Enter"); + set_name(0x00774650, "SCritSect__Leave"); + set_name(0x00774660, "CSRWLock__Leave"); + set_name(0x00774690, "SSyncObject__Wait"); + set_name(0x00774720, "SEvent__Set"); + set_name(0x00774730, "SEvent__Reset"); + set_name(0x00777940, "SRgnDelete"); + set_name(0x00777980, "SRgnCreate"); + set_name(0x007DAB80, "Script_VoiceEnumerateOutputDevices"); + set_name(0x007DAC40, "Script_VoiceEnumerateCaptureDevices"); + set_name(0x007DACF0, "Script_VoiceSelectOutputDevice"); + set_name(0x007DAE40, "Script_VoiceSelectCaptureDevice"); + set_name(0x007DAF90, "Script_VoiceGetCurrentOutputDevice"); + set_name(0x007DAFE0, "Script_VoiceGetCurrentCaptureDevice"); + set_name(0x007DB030, "Script_GetNumVoiceSessions"); + set_name(0x007DB0B0, "Script_GetVoiceSessionInfo"); + set_name(0x007DB1F0, "Script_GetVoiceCurrentSessionID"); + set_name(0x007DB280, "Script_SetActiveVoiceChannelBySessionID"); + set_name(0x007DB370, "Script_GetNumVoiceSessionMembersBySessionID"); + set_name(0x007DB8D0, "Script_GetVoiceStatus"); + set_name(0x007DC910, "Script_VoiceIsDisabledByClient"); + set_name(0x007DEEF0, "Script_GetVoiceSessionMemberInfoBySessionID"); + set_name(0x007DF0B0, "Script_UnitIsTalking"); + set_name(0x007FDCD0, "Script_SpellIsTargeting"); + set_name(0x007FDD10, "Script_SpellCanTargetItem"); + set_name(0x007FDD60, "Script_SpellCanTargetGlyph"); + set_name(0x008007E0, "Script_SpellTargetItem"); + set_name(0x008021D0, "Script_CancelItemTempEnchantment"); + set_name(0x00802270, "Script_CannotBeResurrected"); + set_name(0x00804190, "Script_SpellCanTargetUnit"); + set_name(0x00804220, "Script_CancelUnitBuff"); + set_name(0x00809E30, "Script_SpellStopTargeting"); + set_name(0x00809EA0, "Script_SpellStopCasting"); + set_name(0x0080DC00, "Script_SpellTargetUnit"); + set_name(0x00819EA0, "FrameScript_Execute"); + set_name(0x0081B530, "FrameScript_SignalEvent"); + set_name(0x0081B720, "Script_GetText"); + set_name(0x0081B7B0, "Script_CreateFont"); + set_name(0x0081B820, "Script_GetCurrentKeyBoardFocus"); + set_name(0x0081B9C0, "Script_EnumerateFrames"); + set_name(0x0081BAB0, "Script_GetNumFrames"); + set_name(0x0081BB20, "Script_CreateFrame"); + set_name(0x0081BE70, "Script_GetFramesRegisteredForEvent"); + set_name(0x0084DBD0, "_lua_gettop"); + set_name(0x0084DBF0, "_lua_settop"); + set_name(0x0084DCC0, "_lua_insert"); + set_name(0x0084DEB0, "_lua_type"); + set_name(0x0084DF20, "_lua_isnumber"); + set_name(0x0084DF60, "_lua_isstring"); + set_name(0x0084E030, "_lua_tonumber"); + set_name(0x0084E0E0, "_lua_tolstring"); + set_name(0x0084E1C0, "_lua_touserdata"); + set_name(0x0084E280, "_lua_pushnil"); + set_name(0x0084E2A0, "_lua_pushnumber"); + set_name(0x0084E350, "_lua_pushstring"); + set_name(0x0084E600, "_lua_rawget"); + set_name(0x0084E670, "_lua_rawgeti"); + set_name(0x0084E970, "_lua_rawset"); + set_name(0x0084F280, "_luaL_error"); + set_name(0x0084F7A0, "_luaL_unref"); + set_name(0x00850920, "_luaG_runerror"); + set_name(0x008562E0, "_luaD_throw"); + set_name(0x00856370, "_luaD_precall"); + set_name(0x00856760, "luaD_call"); + set_name(0x00857CA0, "_luaV_execute"); + set_name(0x008695B0, "RestoreMouse"); + set_name(0x00869720, "OsInputInitialize"); + set_name(0x00869760, "OsInputDestroy"); + set_name(0x00869D90, "OsInputSetEventPollProc"); + set_name(0x00869DB0, "CenterMouse"); + set_name(0x00869E00, "OsInputGet"); + set_name(0x0086A020, "OsInputSetMouseMode"); + set_name(0x0086A0D0, "OsInputGetMousePosition"); + set_name(0x0086A130, "OsInputSetMousePosition"); + set_name(0x0086A1A0, "OsGetDefaultWindowRect"); + set_name(0x0086AE20, "OsGetAsyncTimeMs"); + set_name(0x0086B0C0, "OsSystemEnableCpuLog"); + set_name(0x0086B240, "OsGetProcessorCount"); + set_name(0x0086BBD0, "OsGetExeName"); + set_name(0x0086BC30, "OsPathGetRootChars"); + set_name(0x0086BE50, "OsPathStripFilename"); + set_name(0x0086BEA0, "OsGetExePath"); + set_name(0x0086C6A0, "OsGuiGetWindow"); + set_name(0x0086D0A0, "OsIMEInitialize"); + set_name(0x0086D0C0, "OsIMEDestroy"); + set_name(0x0086F5A0, "OsCallSetContext"); + set_name(0x0086F760, "OsCallInitialize"); + set_name(0x0086F880, "OsCallInitializeContext"); + set_name(0x008722A0, "OsClipboardPutString"); + set_name(0x008E5250, "return_zero4_sub"); + set_name(0x0095BFB0, "ConsoleCommandHistoryDepth"); + set_name(0x0095CEC0, "CDataRecycler__Clear"); + set_name(0x0095CF40, "CDataRecycler__GetData"); + set_name(0x0095CFB0, "CDataRecycler__PutData"); + set_name(0x0095D110, "CDataAllocator__GetData"); + set_name(0x0095D1B0, "CDataAllocator__PutData"); + set_name(0x009858B0, "Script_PlaySound"); + set_name(0x00985950, "Script_PlayMusic"); + set_name(0x009859B0, "Script_PlaySoundFile"); + set_name(0x00985A10, "Script_StopMusic"); + set_name(0x00985A20, "Script_Sound_ChatSystem_GetNumInputDrivers"); + set_name(0x00985A50, "Script_Sound_ChatSystem_GetInputDriverNameByIndex"); + set_name(0x00985AE0, "Script_Sound_ChatSystem_GetNumOutputDrivers"); + set_name(0x00985B10, "Script_Sound_ChatSystem_GetOutputDriverNameByIndex"); + set_name(0x00985BB0, "Script_Sound_GameSystem_GetNumInputDrivers"); + set_name(0x00985BE0, "Script_Sound_GameSystem_GetInputDriverNameByIndex"); + set_name(0x00985C70, "Script_Sound_GameSystem_GetNumOutputDrivers"); + set_name(0x00985CA0, "Script_Sound_GameSystem_GetOutputDriverNameByIndex"); + set_name(0x00985D30, "Script_Sound_GameSystem_RestartSoundSystem"); + set_name(0x00985D50, "Script_VoiceChat_StopCapture"); + set_name(0x00985D60, "Script_VoiceChat_RecordLoopbackSound"); + set_name(0x00985DD0, "Script_VoiceChat_StopRecordingLoopbackSound"); + set_name(0x00985DE0, "Script_VoiceChat_PlayLoopbackSound"); + set_name(0x00985DF0, "Script_VoiceChat_StopPlayingLoopbackSound"); + set_name(0x00985E00, "Script_VoiceChat_IsRecordingLoopbackSound"); + set_name(0x00985E30, "Script_VoiceChat_IsPlayingLoopbackSound"); + set_name(0x00985E60, "Script_VoiceChat_GetCurrentMicrophoneSignalLevel"); + set_name(0x00985E90, "Script_VoiceChat_ActivatePrimaryCaptureCallback"); + set_name(0x00985EF0, "Script_VoiceChat_StartCapture"); + set_name(0x009D34B0, "nullsub_7"); + set_name(0x009D34C0, "nullsub_8"); + set_name(0x009D4260, "nullsub_9"); + set_name(0x009DB620, "nullsub_10"); + set_name(0x009DB630, "nullsub_11"); + set_name(0x009DD930, "nullsub_12"); + set_name(0x009DD940, "nullsub_13"); + set_name(0x009DD950, "nullsub_14"); + set_name(0x009DD960, "nullsub_15"); + set_name(0x009DD970, "nullsub_16"); + set_name(0x009DD980, "nullsub_17"); + set_name(0x009DD990, "nullsub_18"); + set_name(0x009DD9A0, "nullsub_19"); + set_name(0x009DD9B0, "nullsub_20"); + set_name(0x009DD9C0, "nullsub_21"); + set_name(0x009DD9D0, "nullsub_22"); + set_name(0x009DD9E0, "nullsub_23"); + set_name(0x009DD9F0, "nullsub_24"); + set_name(0x009DDA00, "nullsub_25"); + set_name(0x009DDA10, "nullsub_26"); + set_name(0x009DDA20, "nullsub_27"); + set_name(0x009DDA30, "nullsub_28"); + set_name(0x009DDA40, "nullsub_29"); + set_name(0x009DDA50, "nullsub_30"); + set_name(0x009DDA60, "nullsub_31"); + set_name(0x009DDA70, "nullsub_32"); + set_name(0x009DDA80, "nullsub_33"); + set_name(0x009DDA90, "nullsub_34"); + set_name(0x009DDAA0, "nullsub_35"); + set_name(0x009DDAB0, "nullsub_36"); + set_name(0x009DDAC0, "nullsub_37"); + set_name(0x009DDAD0, "nullsub_38"); + set_name(0x009DDAE0, "nullsub_39"); + set_name(0x009DDAF0, "nullsub_40"); + set_name(0x009DDB00, "nullsub_41"); + set_name(0x009DDB10, "nullsub_42"); + set_name(0x009DDB20, "nullsub_43"); + set_name(0x009DDB30, "nullsub_44"); + set_name(0x009DDB40, "nullsub_45"); + set_name(0x009DDB50, "nullsub_46"); + set_name(0x009DDB60, "nullsub_47"); + set_name(0x009DDB70, "nullsub_48"); + set_name(0x009DDB80, "nullsub_49"); + set_name(0x009DDB90, "nullsub_50"); + set_name(0x009DDBA0, "nullsub_51"); + set_name(0x009DDBB0, "nullsub_52"); + set_name(0x009DDBC0, "nullsub_53"); + set_name(0x009DDBD0, "nullsub_54"); + set_name(0x009DDBE0, "nullsub_55"); + set_name(0x009DDBF0, "nullsub_56"); + set_name(0x009DDC00, "nullsub_57"); + set_name(0x009DDC10, "nullsub_58"); + set_name(0x009DDC20, "nullsub_59"); + set_name(0x009DDC30, "nullsub_60"); + set_name(0x009DDC40, "nullsub_61"); + set_name(0x009DDC50, "nullsub_62"); + set_name(0x009DDC60, "nullsub_63"); + set_name(0x009DDC70, "nullsub_64"); + set_name(0x009DDC80, "nullsub_65"); + set_name(0x009DDC90, "nullsub_66"); + set_name(0x009DDCA0, "nullsub_67"); + set_name(0x009DDCB0, "nullsub_68"); + set_name(0x009DDCC0, "nullsub_69"); + set_name(0x009DDCD0, "nullsub_70"); + set_name(0x009DDCE0, "nullsub_71"); + set_name(0x009DDCF0, "nullsub_72"); + set_name(0x009DDD00, "nullsub_73"); + set_name(0x009DDD10, "nullsub_74"); + set_name(0x009DDD20, "nullsub_75"); + set_name(0x009DDD30, "nullsub_76"); + set_name(0x009DDD40, "nullsub_77"); + set_name(0x009DDD50, "nullsub_78"); + set_name(0x009DDD60, "nullsub_79"); + set_name(0x009DDD70, "nullsub_80"); + set_name(0x009DDD80, "nullsub_81"); + set_name(0x009DDD90, "nullsub_82"); + set_name(0x009DDDA0, "nullsub_83"); + set_name(0x009DDDB0, "nullsub_84"); + set_name(0x009DDDC0, "nullsub_85"); + set_name(0x009DDDD0, "nullsub_86"); + set_name(0x009DDDE0, "nullsub_87"); + set_name(0x009DDDF0, "nullsub_88"); + set_name(0x009DDE00, "nullsub_89"); + set_name(0x009DDE10, "nullsub_90"); + set_name(0x009DDE20, "nullsub_91"); + set_name(0x009DDE30, "nullsub_92"); + set_name(0x009DDE40, "nullsub_93"); + set_name(0x009DDE50, "nullsub_94"); + set_name(0x009DDE60, "nullsub_95"); + set_name(0x009DDE70, "nullsub_96"); + set_name(0x009DDE80, "nullsub_97"); + set_name(0x009DDE90, "nullsub_98"); + set_name(0x009DDEA0, "nullsub_99"); + set_name(0x009DDEB0, "nullsub_100"); + set_name(0x009DDEC0, "nullsub_101"); + set_name(0x009DDED0, "nullsub_102"); + set_name(0x009DDEE0, "nullsub_103"); + set_name(0x009DDEF0, "nullsub_104"); + set_name(0x009DDF00, "nullsub_105"); + set_name(0x009DDF10, "nullsub_106"); + set_name(0x009DDF20, "nullsub_107"); + set_name(0x009DDF30, "nullsub_108"); + set_name(0x009DDF40, "nullsub_109"); + set_name(0x009DDF50, "nullsub_110"); + set_name(0x009DDF60, "nullsub_111"); + set_name(0x009DDF70, "nullsub_112"); + set_name(0x009DDF80, "nullsub_113"); + set_name(0x009DDF90, "nullsub_114"); + set_name(0x009DDFA0, "nullsub_115"); + set_name(0x009DDFB0, "nullsub_116"); + set_name(0x009DDFC0, "nullsub_117"); + set_name(0x009DDFD0, "nullsub_118"); + set_name(0x009DDFE0, "nullsub_119"); + set_name(0x009DDFF0, "nullsub_120"); + set_name(0x009DE000, "nullsub_121"); + set_name(0x009DE010, "nullsub_122"); + set_name(0x009DE020, "nullsub_123"); + set_name(0x009DE030, "nullsub_124"); + set_name(0x009DE040, "nullsub_125"); + set_name(0x009DE050, "nullsub_126"); + set_name(0x009DE060, "nullsub_127"); + set_name(0x009DE070, "nullsub_128"); + set_name(0x009DE080, "nullsub_129"); + set_name(0x009DE090, "nullsub_130"); + set_name(0x009DE0A0, "nullsub_131"); + set_name(0x009DE0B0, "nullsub_132"); + set_name(0x009DE0C0, "nullsub_133"); + set_name(0x009DE0D0, "nullsub_134"); + set_name(0x009DE0E0, "nullsub_135"); + set_name(0x009DE0F0, "nullsub_136"); + set_name(0x009DE100, "nullsub_137"); + set_name(0x009DE110, "nullsub_138"); + set_name(0x009DE120, "nullsub_139"); + set_name(0x009DE130, "nullsub_140"); + set_name(0x009DE140, "nullsub_141"); + set_name(0x009DE150, "nullsub_142"); + set_name(0x009DE160, "nullsub_143"); + set_name(0x009DE170, "nullsub_144"); + set_name(0x009DE180, "nullsub_145"); + set_name(0x009DE190, "nullsub_146"); + set_name(0x009DE1A0, "nullsub_147"); + set_name(0x009DE1B0, "nullsub_148"); + set_name(0x009DE1C0, "nullsub_149"); + set_name(0x009DE1D0, "nullsub_150"); + set_name(0x009F1074, "s_pixelFormatToMipBitsCache"); + set_name(0x00A2DDC0, "CGxDevice__vtable"); + set_name(0x00A2E198, "CGxDeviceOpenGl__vtable"); + set_name(0x00A2E718, "CGxDeviceD3d__vtable"); + set_name(0x00A2F500, "CGxDeviceD3d9Ex__vtable"); + set_name(0x00AD2808, "s_cursorNames"); + set_name(0x00AD90B0, "CBLPFile__s_eightBitAlphaLookup"); + set_name(0x00AD90C0, "CBLPFile__s_oneBitAlphaLookup"); + set_name(0x00ADBAB4, "s_rect"); + set_name(0x00ADBAC4, "s_consoleHotKey"); + set_name(0x00ADBAC8, "s_historyIndex"); + set_name(0x00ADBACC, "s_fontHeight"); + set_name(0x00ADBAD4, "s_hRect"); + set_name(0x00ADBAE4, "s_baseTextFlags"); + set_name(0x00B417C8, "s_mainThread"); + set_name(0x00B417D0, "s_interactiveCount"); + set_name(0x00B41850, "s_messageRecycler"); + set_name(0x00B6A9DC, "CGlueMgr__m_cursorMipBits"); + set_name(0x00C25CD0, "s_cursorFile"); + set_name(0x00C25DD4, "s_cursorItemMipsWidth"); + set_name(0x00C25DD8, "s_cursorItemMipsHeight"); + set_name(0x00C25DDC, "s_cursorItemMips"); + set_name(0x00C25DE0, "s_cursorItemType"); + set_name(0x00C25DE4, "s_cursorResetMode"); + set_name(0x00C25DE8, "s_cursorItem"); + set_name(0x00C26DE8, "s_cursorMode"); + set_name(0x00C26DF0, "s_cursorImages"); + set_name(0x00C5DF88, "g_theGxDevicePtr"); + set_name(0x00C5DFDC, "CGxDevice__s_uiVertexShader"); + set_name(0x00C5DFE0, "CGxDevice__s_shadowConstants"); + set_name(0x00C5FFFC, "CGxDevice__s_uiPixelShader"); + set_name(0x00C60760, "isIdent"); + set_name(0x00CA1690, "s_caretpixheight"); + set_name(0x00CA1694, "s_caret"); + set_name(0x00CA1718, "s_caretpixwidth"); + set_name(0x00CA171C, "s_inputString"); + set_name(0x00CA1720, "s_currlineptr"); + set_name(0x00CA1724, "s_layerBackground"); + set_name(0x00CA1728, "s_repeatBuffer"); + set_name(0x00CA1768, "s_fontName"); + set_name(0x00CA186C, "s_repeatCount"); + set_name(0x00CA1870, "s_layerText"); + set_name(0x00CA1874, "s_batch"); + set_name(0x00CA1878, "s_partial"); + set_name(0x00CA197C, "s_NumLines"); + set_name(0x00CA1980, "s_completionMode"); + set_name(0x00CA1984, "s_completedCmd"); + set_name(0x00CA198C, "s_textFont"); + set_name(0x00CA1990, "s_consoleResizeState"); + set_name(0x00CA1994, "s_highlightState"); + set_name(0x00CA19A0, "s_highlightLeftCharIndex"); + set_name(0x00CA19A4, "s_highlightRightCharIndex"); + set_name(0x00CA19A8, "s_charSpacing"); + set_name(0x00CA19B0, "s_consoleHeight"); + set_name(0x00CA19F0, "carettime"); + set_name(0x00CA3A28, "g_commandHistory"); + set_name(0x00CABA28, "g_commandHistoryIndex"); + set_name(0x00CABA2C, "g_defaultCommand"); + set_name(0x00CABA30, "g_consoleCommandHash"); + set_name(0x00CABCC4, "s_consoleAccessEnabled"); + // Make functions + set_func_start(0x00401070, 0x00401070); + set_func_start(0x004010D0, 0x004010D0); + set_func_start(0x004010E0, 0x004010E0); + set_func_start(0x00401130, 0x00401130); + set_func_start(0x00402B20, 0x00402B20); + set_func_end(0x00402B20, 0x00402B8B); + set_func_start(0x004033B0, 0x004033B0); + set_func_end(0x004033B0, 0x004033B9); + set_func_start(0x004038A0, 0x004038A0); + set_func_start(0x004067F0, 0x004067F0); + set_func_end(0x004067F0, 0x00406B67); + set_func_start(0x00406B70, 0x00406B70); + set_func_end(0x00406B70, 0x00406C65); + set_func_start(0x00406C70, 0x00406C70); + set_func_end(0x00406C70, 0x00406D64); + set_func_start(0x00407F40, 0x00407F40); + set_func_end(0x00407F40, 0x00407F76); + set_func_start(0x00407F80, 0x00407F80); + set_func_end(0x00407F80, 0x00407FEA); + set_func_start(0x00408030, 0x00408030); + set_func_end(0x00408030, 0x00408049); + set_func_start(0x00408070, 0x00408070); + set_func_end(0x00408070, 0x004080D9); + set_func_start(0x00408110, 0x00408110); + set_func_end(0x00408110, 0x0040820F); + set_func_start(0x00408210, 0x00408210); + set_func_end(0x00408210, 0x0040823B); + set_func_start(0x00408240, 0x00408240); + set_func_end(0x00408240, 0x00408258); + set_func_start(0x00408BF0, 0x00408BF0); + set_func_end(0x00408BF0, 0x00408C27); + set_func_start(0x00409670, 0x00409670); + set_func_end(0x00409670, 0x004096CC); + set_func_start(0x0040BAA5, 0x0040BAA5); + set_func_end(0x0040BAA5, 0x0040BACF); + set_func_start(0x0040D3B5, 0x0040D3B5); + set_func_start(0x004217C0, 0x004217C0); + set_func_end(0x004217C0, 0x004217DA); + set_func_start(0x004218C0, 0x004218C0); + set_func_end(0x004218C0, 0x00421948); + set_func_start(0x00421AF0, 0x00421AF0); + set_func_end(0x00421AF0, 0x00421B4A); + set_func_start(0x00421BB0, 0x00421BB0); + set_func_end(0x00421BB0, 0x00421C98); + set_func_start(0x00421CA0, 0x00421CA0); + set_func_end(0x00421CA0, 0x00421CB8); + set_func_start(0x00422130, 0x00422130); + set_func_end(0x00422130, 0x00422139); + set_func_start(0x00422530, 0x00422530); + set_func_end(0x00422530, 0x004227D4); + set_func_start(0x00422910, 0x00422910); + set_func_end(0x00422910, 0x004229AB); + set_func_start(0x00424B10, 0x00424B10); + set_func_end(0x00424B10, 0x00424B41); + set_func_start(0x00424B50, 0x00424B50); + set_func_end(0x00424B50, 0x00424E44); + set_func_start(0x00424E80, 0x00424E80); + set_func_end(0x00424E80, 0x00424F46); + set_func_start(0x00424F80, 0x00424F80); + set_func_end(0x00424F80, 0x00424F98); + set_func_start(0x00461B00, 0x00461B00); + set_func_end(0x00461B00, 0x00461B09); + set_func_start(0x00461B50, 0x00461B50); + set_func_end(0x00461B50, 0x00461B88); + set_func_start(0x00461BD0, 0x00461BD0); + set_func_end(0x00461BD0, 0x00461BF4); + set_func_start(0x00461DB0, 0x00461DB0); + set_func_end(0x00461DB0, 0x00461DD7); + set_func_start(0x00461FA0, 0x00461FA0); + set_func_end(0x00461FA0, 0x00461FFA); + set_func_start(0x0047ADD0, 0x0047ADD0); + set_func_start(0x0047ADE0, 0x0047ADE0); + set_func_start(0x0047AE10, 0x0047AE10); + set_func_start(0x0047AE50, 0x0047AE50); + set_func_start(0x0047AEA0, 0x0047AEA0); + set_func_start(0x0047AF40, 0x0047AF40); + set_func_start(0x0047AFE0, 0x0047AFE0); + set_func_start(0x0047B040, 0x0047B040); + set_func_start(0x0047B0A0, 0x0047B0A0); + set_func_start(0x0047B100, 0x0047B100); + set_func_start(0x0047B1C0, 0x0047B1C0); + set_func_start(0x0047B280, 0x0047B280); + set_func_start(0x0047B290, 0x0047B290); + set_func_start(0x0047B300, 0x0047B300); + set_func_start(0x0047B340, 0x0047B340); + set_func_end(0x0047B340, 0x0047B371); + set_func_start(0x0047B380, 0x0047B380); + set_func_end(0x0047B380, 0x0047B3B3); + set_func_start(0x0047B3C0, 0x0047B3C0); + set_func_end(0x0047B3C0, 0x0047B3F1); + set_func_start(0x0047B400, 0x0047B400); + set_func_end(0x0047B400, 0x0047B43A); + set_func_start(0x0047B440, 0x0047B440); + set_func_end(0x0047B440, 0x0047B471); + set_func_start(0x0047B480, 0x0047B480); + set_func_end(0x0047B480, 0x0047B560); + set_func_start(0x0047B560, 0x0047B560); + set_func_end(0x0047B560, 0x0047B5ED); + set_func_start(0x0047B6B0, 0x0047B6B0); + set_func_end(0x0047B6B0, 0x0047B6E9); + set_func_start(0x0047B720, 0x0047B720); + set_func_end(0x0047B720, 0x0047B736); + set_func_start(0x0047B760, 0x0047B760); + set_func_start(0x0047BF30, 0x0047BF30); + set_func_end(0x0047BF30, 0x0047BF46); + set_func_start(0x0047BF50, 0x0047BF50); + set_func_end(0x0047BF50, 0x0047BF6B); + set_func_start(0x0047BF70, 0x0047BF70); + set_func_end(0x0047BF70, 0x0047BF82); + set_func_start(0x0047BF90, 0x0047BF90); + set_func_end(0x0047BF90, 0x0047BFC8); + set_func_start(0x0047BFD0, 0x0047BFD0); + set_func_end(0x0047BFD0, 0x0047BFD7); + set_func_start(0x0047BFE0, 0x0047BFE0); + set_func_end(0x0047BFE0, 0x0047BFE7); + set_func_start(0x0047BFF0, 0x0047BFF0); + set_func_end(0x0047BFF0, 0x0047C019); + set_func_start(0x0047C020, 0x0047C020); + set_func_end(0x0047C020, 0x0047C049); + set_func_start(0x0047C050, 0x0047C050); + set_func_end(0x0047C050, 0x0047C05E); + set_func_start(0x0047C060, 0x0047C060); + set_func_end(0x0047C060, 0x0047C06E); + set_func_start(0x0047C070, 0x0047C070); + set_func_end(0x0047C070, 0x0047C07E); + set_func_start(0x0047C080, 0x0047C080); + set_func_end(0x0047C080, 0x0047C08E); + set_func_start(0x0047CBF0, 0x0047CBF0); + set_func_end(0x0047CBF0, 0x0047CC08); + set_func_start(0x0047CC20, 0x0047CC20); + set_func_end(0x0047CC20, 0x0047CC41); + set_func_start(0x0047CC50, 0x0047CC50); + set_func_end(0x0047CC50, 0x0047CC70); + set_func_start(0x0047CF80, 0x0047CF80); + set_func_end(0x0047CF80, 0x0047CFEC); + set_func_start(0x0047CFF0, 0x0047CFF0); + set_func_end(0x0047CFF0, 0x0047D02D); + set_func_start(0x0047D030, 0x0047D030); + set_func_end(0x0047D030, 0x0047D04E); + set_func_start(0x0047D080, 0x0047D080); + set_func_end(0x0047D080, 0x0047D089); + set_func_start(0x0047D090, 0x0047D090); + set_func_end(0x0047D090, 0x0047D099); + set_func_start(0x0047D0E0, 0x0047D0E0); + set_func_end(0x0047D0E0, 0x0047D16A); + set_func_start(0x0047D1D0, 0x0047D1D0); + set_func_end(0x0047D1D0, 0x0047D230); + set_func_start(0x0047D230, 0x0047D230); + set_func_end(0x0047D230, 0x0047D290); + set_func_start(0x0047D290, 0x0047D290); + set_func_end(0x0047D290, 0x0047D305); + set_func_start(0x0047D310, 0x0047D310); + set_func_end(0x0047D310, 0x0047D3AF); + set_func_start(0x0047D3C0, 0x0047D3C0); + set_func_end(0x0047D3C0, 0x0047D443); + set_func_start(0x0047D450, 0x0047D450); + set_func_end(0x0047D450, 0x0047D4B7); + set_func_start(0x0047D530, 0x0047D530); + set_func_end(0x0047D530, 0x0047D59C); + set_func_start(0x0047D620, 0x0047D620); + set_func_end(0x0047D620, 0x0047D683); + set_func_start(0x0047D690, 0x0047D690); + set_func_end(0x0047D690, 0x0047D6FD); + set_func_start(0x0047D770, 0x0047D770); + set_func_end(0x0047D770, 0x0047D78D); + set_func_start(0x0047D790, 0x0047D790); + set_func_end(0x0047D790, 0x0047D7A9); + set_func_start(0x0047D990, 0x0047D990); + set_func_end(0x0047D990, 0x0047D9EB); + set_func_start(0x0047DBC0, 0x0047DBC0); + set_func_end(0x0047DBC0, 0x0047DC14); + set_func_start(0x0047DC20, 0x0047DC20); + set_func_end(0x0047DC20, 0x0047DC50); + set_func_start(0x0047DC50, 0x0047DC50); + set_func_end(0x0047DC50, 0x0047DC8D); + set_func_start(0x0047DCA0, 0x0047DCA0); + set_func_end(0x0047DCA0, 0x0047DE09); + set_func_start(0x0047DEA0, 0x0047DEA0); + set_func_end(0x0047DEA0, 0x0047E117); + set_func_start(0x0047E910, 0x0047E910); + set_func_end(0x0047E910, 0x0047EA69); + set_func_start(0x0047EC10, 0x0047EC10); + set_func_start(0x0047EFF0, 0x0047EFF0); + set_func_end(0x0047EFF0, 0x0047F225); + set_func_start(0x0047F230, 0x0047F230); + set_func_end(0x0047F230, 0x0047F2C1); + set_func_start(0x0047F2D0, 0x0047F2D0); + set_func_end(0x0047F2D0, 0x0047F2EC); + set_func_start(0x0047F2F0, 0x0047F2F0); + set_func_end(0x0047F2F0, 0x0047F5BA); + set_func_start(0x0047F5C0, 0x0047F5C0); + set_func_end(0x0047F5C0, 0x0047F6B9); + set_func_start(0x0047FAC0, 0x0047FAC0); + set_func_end(0x0047FAC0, 0x0047FB22); + set_func_start(0x0047FB80, 0x0047FB80); + set_func_end(0x0047FB80, 0x0047FB92); + set_func_start(0x0047FBB0, 0x0047FBB0); + set_func_end(0x0047FBB0, 0x0047FC17); + set_func_start(0x0047FC20, 0x0047FC20); + set_func_end(0x0047FC20, 0x0047FC36); + set_func_start(0x0047FC90, 0x0047FC90); + set_func_end(0x0047FC90, 0x0047FDD4); + set_func_start(0x004800A0, 0x004800A0); + set_func_end(0x004800A0, 0x004800EF); + set_func_start(0x00480410, 0x00480410); + set_func_end(0x00480410, 0x004804A8); + set_func_start(0x004804B0, 0x004804B0); + set_func_end(0x004804B0, 0x004804BA); + set_func_start(0x004804C0, 0x004804C0); + set_func_end(0x004804C0, 0x004804E6); + set_func_start(0x004804F0, 0x004804F0); + set_func_end(0x004804F0, 0x004805F4); + set_func_start(0x004806A0, 0x004806A0); + set_func_end(0x004806A0, 0x0048071F); + set_func_start(0x00480A50, 0x00480A50); + set_func_end(0x00480A50, 0x00480AC2); + set_func_start(0x00480AD0, 0x00480AD0); + set_func_end(0x00480AD0, 0x00480BCB); + set_func_start(0x00480BD0, 0x00480BD0); + set_func_end(0x00480BD0, 0x00480D28); + set_func_start(0x00480D30, 0x00480D30); + set_func_end(0x00480D30, 0x00480DD1); + set_func_start(0x00480EA0, 0x00480EA0); + set_func_end(0x00480EA0, 0x00480ED9); + set_func_start(0x00480F70, 0x00480F70); + set_func_end(0x00480F70, 0x00480FCA); + set_func_start(0x00481100, 0x00481100); + set_func_end(0x00481100, 0x00481289); + set_func_start(0x00481290, 0x00481290); + set_func_end(0x00481290, 0x0048138F); + set_func_start(0x00481390, 0x00481390); + set_func_end(0x00481390, 0x004814E4); + set_func_start(0x004829D0, 0x004829D0); + set_func_end(0x004829D0, 0x004829E9); + set_func_start(0x004829F0, 0x004829F0); + set_func_end(0x004829F0, 0x00482A13); + set_func_start(0x00482A20, 0x00482A20); + set_func_end(0x00482A20, 0x00482A3C); + set_func_start(0x00482A40, 0x00482A40); + set_func_end(0x00482A40, 0x00482A5D); + set_func_start(0x00493BF0, 0x00493BF0); + set_func_end(0x00493BF0, 0x00493C09); + set_func_start(0x004A8500, 0x004A8500); + set_func_end(0x004A8500, 0x004A8522); + set_func_start(0x004A8720, 0x004A8720); + set_func_end(0x004A8720, 0x004A8B58); + set_func_start(0x004A8BB0, 0x004A8BB0); + set_func_end(0x004A8BB0, 0x004A8C83); + set_func_start(0x004A8D10, 0x004A8D10); + set_func_end(0x004A8D10, 0x004A8DBF); + set_func_start(0x004B5510, 0x004B5510); + set_func_end(0x004B5510, 0x004B5549); + set_func_start(0x004B5550, 0x004B5550); + set_func_end(0x004B5550, 0x004B55D7); + set_func_start(0x004B5A00, 0x004B5A00); + set_func_end(0x004B5A00, 0x004B5BA2); + set_func_start(0x004B7220, 0x004B7220); + set_func_end(0x004B7220, 0x004B72F4); + set_func_start(0x004B7300, 0x004B7300); + set_func_end(0x004B7300, 0x004B73D9); + set_func_start(0x004B78A0, 0x004B78A0); + set_func_end(0x004B78A0, 0x004B7AA0); + set_func_start(0x004B8070, 0x004B8070); + set_func_end(0x004B8070, 0x004B81CE); + set_func_start(0x004B81D0, 0x004B81D0); + set_func_end(0x004B81D0, 0x004B8385); + set_func_start(0x004BD9D0, 0x004BD9D0); + set_func_end(0x004BD9D0, 0x004BD9EA); + set_func_start(0x004BDAA0, 0x004BDAA0); + set_func_end(0x004BDAA0, 0x004BDBE4); + set_func_start(0x004BDBF0, 0x004BDBF0); + set_func_end(0x004BDBF0, 0x004BDC4C); + set_func_start(0x004BDD80, 0x004BDD80); + set_func_start(0x004BE9C0, 0x004BE9C0); + set_func_end(0x004BE9C0, 0x004BEB8C); + set_func_start(0x004BEC70, 0x004BEC70); + set_func_end(0x004BEC70, 0x004BEC88); + set_func_start(0x004BECF0, 0x004BECF0); + set_func_end(0x004BECF0, 0x004BEE5E); + set_func_start(0x004BEE60, 0x004BEE60); + set_func_end(0x004BEE60, 0x004BF0B9); + set_func_start(0x004BF0C0, 0x004BF0C0); + set_func_end(0x004BF0C0, 0x004BF0E2); + set_func_start(0x004BF770, 0x004BF770); + set_func_end(0x004BF770, 0x004BFA4E); + set_func_start(0x004BFCA0, 0x004BFCA0); + set_func_end(0x004BFCA0, 0x004BFCD4); + set_func_start(0x004C1510, 0x004C1510); + set_func_start(0x004C1930, 0x004C1930); + set_func_start(0x004C1B30, 0x004C1B30); + set_func_start(0x004C1B90, 0x004C1B90); + set_func_start(0x004C1BF0, 0x004C1BF0); + set_func_start(0x004C1DE0, 0x004C1DE0); + set_func_start(0x004C1F00, 0x004C1F00); + set_func_start(0x004C21B0, 0x004C21B0); + set_func_start(0x004C2370, 0x004C2370); + set_func_start(0x004C23D0, 0x004C23D0); + set_func_start(0x004C2F90, 0x004C2F90); + set_func_start(0x004C2FC0, 0x004C2FC0); + set_func_start(0x004C30A0, 0x004C30A0); + set_func_start(0x004C3290, 0x004C3290); + set_func_start(0x004C3300, 0x004C3300); + set_func_start(0x004C3340, 0x004C3340); + set_func_start(0x004C3380, 0x004C3380); + set_func_start(0x004C33C0, 0x004C33C0); + set_func_start(0x004C3420, 0x004C3420); + set_func_start(0x004C3600, 0x004C3600); + set_func_start(0x004C51B0, 0x004C51B0); + set_func_start(0x004D7F60, 0x004D7F60); + set_func_end(0x004D7F60, 0x004D7F82); + set_func_start(0x004D80C0, 0x004D80C0); + set_func_end(0x004D80C0, 0x004D8200); + set_func_start(0x004D82A0, 0x004D82A0); + set_func_end(0x004D82A0, 0x004D82B8); + set_func_start(0x004D82C0, 0x004D82C0); + set_func_end(0x004D82C0, 0x004D834D); + set_func_start(0x004D8860, 0x004D8860); + set_func_end(0x004D8860, 0x004D8924); + set_func_start(0x004D8930, 0x004D8930); + set_func_end(0x004D8930, 0x004D8A2D); + set_func_start(0x004D8A30, 0x004D8A30); + set_func_end(0x004D8A30, 0x004D8B9C); + set_func_start(0x004D8BD0, 0x004D8BD0); + set_func_end(0x004D8BD0, 0x004D8C56); + set_func_start(0x004D9500, 0x004D9500); + set_func_end(0x004D9500, 0x004D9582); + set_func_start(0x004D95C0, 0x004D95C0); + set_func_end(0x004D95C0, 0x004D960D); + set_func_start(0x004D98D0, 0x004D98D0); + set_func_end(0x004D98D0, 0x004D99D4); + set_func_start(0x004DA3D0, 0x004DA3D0); + set_func_end(0x004DA3D0, 0x004DA4A8); + set_func_start(0x004DA4B0, 0x004DA4B0); + set_func_end(0x004DA4B0, 0x004DA50D); + set_func_start(0x004DA5F0, 0x004DA5F0); + set_func_end(0x004DA5F0, 0x004DA9C4); + set_func_start(0x004DA9D0, 0x004DA9D0); + set_func_end(0x004DA9D0, 0x004DAB3D); + set_func_start(0x004DAB40, 0x004DAB40); + set_func_end(0x004DAB40, 0x004DB9E4); + set_func_start(0x004DB9F0, 0x004DB9F0); + set_func_end(0x004DB9F0, 0x004DBBBF); + set_func_start(0x004DBFD0, 0x004DBFD0); + set_func_end(0x004DBFD0, 0x004DBFF3); + set_func_start(0x004DCE40, 0x004DCE40); + set_func_end(0x004DCE40, 0x004DCE5E); + set_func_start(0x004DD400, 0x004DD400); + set_func_end(0x004DD400, 0x004DD412); + set_func_start(0x004DD420, 0x004DD420); + set_func_end(0x004DD420, 0x004DD42D); + set_func_start(0x004DD610, 0x004DD610); + set_func_end(0x004DD610, 0x004DD671); + set_func_start(0x004DDC20, 0x004DDC20); + set_func_end(0x004DDC20, 0x004DDC51); + set_func_start(0x004E4A40, 0x004E4A40); + set_func_end(0x004E4A40, 0x004E4A9E); + set_func_start(0x004F71A0, 0x004F71A0); + set_func_end(0x004F71A0, 0x004F724D); + set_func_start(0x004FBD00, 0x004FBD00); + set_func_end(0x004FBD00, 0x004FBD13); + set_func_start(0x004FBD20, 0x004FBD20); + set_func_end(0x004FBD20, 0x004FBD36); + set_func_start(0x004FBD40, 0x004FBD40); + set_func_end(0x004FBD40, 0x004FBD90); + set_func_start(0x004FBD90, 0x004FBD90); + set_func_end(0x004FBD90, 0x004FBF5D); + set_func_start(0x004FBF60, 0x004FBF60); + set_func_end(0x004FBF60, 0x004FC018); + set_func_start(0x004FC020, 0x004FC020); + set_func_end(0x004FC020, 0x004FC0B4); + set_func_start(0x004FC0C0, 0x004FC0C0); + set_func_end(0x004FC0C0, 0x004FC169); + set_func_start(0x004FC170, 0x004FC170); + set_func_end(0x004FC170, 0x004FC249); + set_func_start(0x004FC250, 0x004FC250); + set_func_end(0x004FC250, 0x004FC329); + set_func_start(0x004FC330, 0x004FC330); + set_func_end(0x004FC330, 0x004FC3CF); + set_func_start(0x004FC3D0, 0x004FC3D0); + set_func_end(0x004FC3D0, 0x004FC461); + set_func_start(0x004FC470, 0x004FC470); + set_func_end(0x004FC470, 0x004FC5AB); + set_func_start(0x004FC5B0, 0x004FC5B0); + set_func_end(0x004FC5B0, 0x004FC659); + set_func_start(0x004FC660, 0x004FC660); + set_func_end(0x004FC660, 0x004FC6DB); + set_func_start(0x004FC6E0, 0x004FC6E0); + set_func_end(0x004FC6E0, 0x004FC75B); + set_func_start(0x004FC760, 0x004FC760); + set_func_end(0x004FC760, 0x004FC807); + set_func_start(0x004FC810, 0x004FC810); + set_func_end(0x004FC810, 0x004FC88B); + set_func_start(0x004FC890, 0x004FC890); + set_func_end(0x004FC890, 0x004FC99E); + set_func_start(0x004FC9A0, 0x004FC9A0); + set_func_end(0x004FC9A0, 0x004FCA4B); + set_func_start(0x004FCA50, 0x004FCA50); + set_func_end(0x004FCA50, 0x004FCA84); + set_func_start(0x004FCBF0, 0x004FCBF0); + set_func_end(0x004FCBF0, 0x004FCC52); + set_func_start(0x004FCC60, 0x004FCC60); + set_func_end(0x004FCC60, 0x004FCCA3); + set_func_start(0x004FCCB0, 0x004FCCB0); + set_func_end(0x004FCCB0, 0x004FCCEA); + set_func_start(0x004FCCF0, 0x004FCCF0); + set_func_end(0x004FCCF0, 0x004FCDE9); + set_func_start(0x004FCDF0, 0x004FCDF0); + set_func_end(0x004FCDF0, 0x004FCEE7); + set_func_start(0x004FE630, 0x004FE630); + set_func_end(0x004FE630, 0x004FE64C); + set_func_start(0x004FE650, 0x004FE650); + set_func_end(0x004FE650, 0x004FE715); + set_func_start(0x004FE720, 0x004FE720); + set_func_end(0x004FE720, 0x004FE806); + set_func_start(0x004FE810, 0x004FE810); + set_func_end(0x004FE810, 0x004FE82C); + set_func_start(0x004FE830, 0x004FE830); + set_func_end(0x004FE830, 0x004FE84C); + set_func_start(0x004FE850, 0x004FE850); + set_func_end(0x004FE850, 0x004FE94E); + set_func_start(0x004FE950, 0x004FE950); + set_func_end(0x004FE950, 0x004FE96C); + set_func_start(0x004FE970, 0x004FE970); + set_func_end(0x004FE970, 0x004FE98C); + set_func_start(0x004FE990, 0x004FE990); + set_func_end(0x004FE990, 0x004FE9AC); + set_func_start(0x004FE9B0, 0x004FE9B0); + set_func_end(0x004FE9B0, 0x004FE9CC); + set_func_start(0x004FE9D0, 0x004FE9D0); + set_func_end(0x004FE9D0, 0x004FE9EC); + set_func_start(0x004FE9F0, 0x004FE9F0); + set_func_end(0x004FE9F0, 0x004FEA0C); + set_func_start(0x004FEA10, 0x004FEA10); + set_func_end(0x004FEA10, 0x004FEA2C); + set_func_start(0x004FEA30, 0x004FEA30); + set_func_end(0x004FEA30, 0x004FEA4C); + set_func_start(0x004FEA50, 0x004FEA50); + set_func_end(0x004FEA50, 0x004FEA6C); + set_func_start(0x004FEA70, 0x004FEA70); + set_func_end(0x004FEA70, 0x004FEA8C); + set_func_start(0x004FEA90, 0x004FEA90); + set_func_end(0x004FEA90, 0x004FEAAC); + set_func_start(0x004FEAB0, 0x004FEAB0); + set_func_end(0x004FEAB0, 0x004FEACC); + set_func_start(0x004FEAD0, 0x004FEAD0); + set_func_end(0x004FEAD0, 0x004FEAEC); + set_func_start(0x004FEAF0, 0x004FEAF0); + set_func_end(0x004FEAF0, 0x004FED0C); + set_func_start(0x004FED10, 0x004FED10); + set_func_end(0x004FED10, 0x004FEDB5); + set_func_start(0x004FEDC0, 0x004FEDC0); + set_func_end(0x004FEDC0, 0x004FEED1); + set_func_start(0x004FEEE0, 0x004FEEE0); + set_func_end(0x004FEEE0, 0x004FEFE5); + set_func_start(0x004FEFF0, 0x004FEFF0); + set_func_end(0x004FEFF0, 0x004FF0C7); + set_func_start(0x004FF0D0, 0x004FF0D0); + set_func_end(0x004FF0D0, 0x004FF1F9); + set_func_start(0x004FF200, 0x004FF200); + set_func_end(0x004FF200, 0x004FF2B4); + set_func_start(0x004FF2C0, 0x004FF2C0); + set_func_end(0x004FF2C0, 0x004FF4EA); + set_func_start(0x004FF580, 0x004FF580); + set_func_end(0x004FF580, 0x004FFA01); + set_func_start(0x004FFA10, 0x004FFA10); + set_func_end(0x004FFA10, 0x004FFA61); + set_func_start(0x004FFA70, 0x004FFA70); + set_func_end(0x004FFA70, 0x004FFAE0); + set_func_start(0x004FFAE0, 0x004FFAE0); + set_func_end(0x004FFAE0, 0x004FFB50); + set_func_start(0x004FFB50, 0x004FFB50); + set_func_end(0x004FFB50, 0x004FFC23); + set_func_start(0x004FFC30, 0x004FFC30); + set_func_end(0x004FFC30, 0x004FFC4C); + set_func_start(0x004FFC50, 0x004FFC50); + set_func_end(0x004FFC50, 0x004FFCB8); + set_func_start(0x004FFCC0, 0x004FFCC0); + set_func_end(0x004FFCC0, 0x004FFCDC); + set_func_start(0x00500560, 0x00500560); + set_func_end(0x00500560, 0x00500751); + set_func_start(0x00500760, 0x00500760); + set_func_end(0x00500760, 0x0050078E); + set_func_start(0x00500810, 0x00500810); + set_func_end(0x00500810, 0x00500906); + set_func_start(0x00500910, 0x00500910); + set_func_end(0x00500910, 0x00500975); + set_func_start(0x00500980, 0x00500980); + set_func_end(0x00500980, 0x00500AD9); + set_func_start(0x00500AE0, 0x00500AE0); + set_func_end(0x00500AE0, 0x00500BD6); + set_func_start(0x00500BE0, 0x00500BE0); + set_func_end(0x00500BE0, 0x00500C7F); + set_func_start(0x00500C80, 0x00500C80); + set_func_end(0x00500C80, 0x00500D75); + set_func_start(0x00501140, 0x00501140); + set_func_end(0x00501140, 0x00501246); + set_func_start(0x00501250, 0x00501250); + set_func_end(0x00501250, 0x005012E7); + set_func_start(0x005012F0, 0x005012F0); + set_func_end(0x005012F0, 0x005013F6); + set_func_start(0x00501400, 0x00501400); + set_func_end(0x00501400, 0x00501497); + set_func_start(0x00501DB0, 0x00501DB0); + set_func_end(0x00501DB0, 0x00501EF8); + set_func_start(0x00501F00, 0x00501F00); + set_func_end(0x00501F00, 0x00502264); + set_func_start(0x00504E10, 0x00504E10); + set_func_end(0x00504E10, 0x00504E49); + set_func_start(0x00504E50, 0x00504E50); + set_func_end(0x00504E50, 0x00504F27); + set_func_start(0x00504F30, 0x00504F30); + set_func_end(0x00504F30, 0x0050518C); + set_func_start(0x00505190, 0x00505190); + set_func_end(0x00505190, 0x005052D7); + set_func_start(0x005052E0, 0x005052E0); + set_func_end(0x005052E0, 0x00505354); + set_func_start(0x00505360, 0x00505360); + set_func_end(0x00505360, 0x005053D4); + set_func_start(0x005096D0, 0x005096D0); + set_func_end(0x005096D0, 0x00509718); + set_func_start(0x0050D170, 0x0050D170); + set_func_end(0x0050D170, 0x0050D8A0); + set_func_start(0x0050D8A0, 0x0050D8A0); + set_func_end(0x0050D8A0, 0x0050D900); + set_func_start(0x0050DAA0, 0x0050DAA0); + set_func_end(0x0050DAA0, 0x0050DAB4); + set_func_start(0x0050DAC0, 0x0050DAC0); + set_func_end(0x0050DAC0, 0x0050DAD4); + set_func_start(0x0050DAE0, 0x0050DAE0); + set_func_end(0x0050DAE0, 0x0050DC01); + set_func_start(0x0050DC10, 0x0050DC10); + set_func_end(0x0050DC10, 0x0050DDD5); + set_func_start(0x0050ED00, 0x0050ED00); + set_func_end(0x0050ED00, 0x0050EDC5); + set_func_start(0x0050F830, 0x0050F830); + set_func_end(0x0050F830, 0x0050F884); + set_func_start(0x0050F890, 0x0050F890); + set_func_end(0x0050F890, 0x0050F8E7); + set_func_start(0x0050F8F0, 0x0050F8F0); + set_func_end(0x0050F8F0, 0x0050F943); + set_func_start(0x0050F950, 0x0050F950); + set_func_end(0x0050F950, 0x0050F988); + set_func_start(0x0050F990, 0x0050F990); + set_func_end(0x0050F990, 0x0050FE77); + set_func_start(0x0050FE80, 0x0050FE80); + set_func_end(0x0050FE80, 0x0050FE98); + set_func_start(0x0050FF30, 0x0050FF30); + set_func_end(0x0050FF30, 0x0050FF44); + set_func_start(0x0050FF50, 0x0050FF50); + set_func_end(0x0050FF50, 0x00510035); + set_func_start(0x00510040, 0x00510040); + set_func_end(0x00510040, 0x005100B1); + set_func_start(0x005100C0, 0x005100C0); + set_func_end(0x005100C0, 0x00510145); + set_func_start(0x00510150, 0x00510150); + set_func_end(0x00510150, 0x005101CE); + set_func_start(0x005101D0, 0x005101D0); + set_func_end(0x005101D0, 0x005101F9); + set_func_start(0x00510200, 0x00510200); + set_func_end(0x00510200, 0x00510227); + set_func_start(0x00510230, 0x00510230); + set_func_end(0x00510230, 0x005102A8); + set_func_start(0x005102B0, 0x005102B0); + set_func_end(0x005102B0, 0x005102D7); + set_func_start(0x005102E0, 0x005102E0); + set_func_end(0x005102E0, 0x00510358); + set_func_start(0x00510360, 0x00510360); + set_func_end(0x00510360, 0x00510389); + set_func_start(0x00510390, 0x00510390); + set_func_end(0x00510390, 0x0051040B); + set_func_start(0x00510410, 0x00510410); + set_func_end(0x00510410, 0x00510429); + set_func_start(0x00510430, 0x00510430); + set_func_end(0x00510430, 0x00510443); + set_func_start(0x00510450, 0x00510450); + set_func_end(0x00510450, 0x00510463); + set_func_start(0x00510470, 0x00510470); + set_func_end(0x00510470, 0x00510491); + set_func_start(0x005104A0, 0x005104A0); + set_func_end(0x005104A0, 0x00510920); + set_func_start(0x00510920, 0x00510920); + set_func_end(0x00510920, 0x00510928); + set_func_start(0x00510930, 0x00510930); + set_func_end(0x00510930, 0x00510973); + set_func_start(0x00510980, 0x00510980); + set_func_end(0x00510980, 0x005109C3); + set_func_start(0x005109D0, 0x005109D0); + set_func_end(0x005109D0, 0x005109D8); + set_func_start(0x005109E0, 0x005109E0); + set_func_end(0x005109E0, 0x005109E8); + set_func_start(0x005109F0, 0x005109F0); + set_func_end(0x005109F0, 0x005109FF); + set_func_start(0x00510A00, 0x00510A00); + set_func_end(0x00510A00, 0x00510A0D); + set_func_start(0x00510A10, 0x00510A10); + set_func_end(0x00510A10, 0x00510AB3); + set_func_start(0x00510AC0, 0x00510AC0); + set_func_end(0x00510AC0, 0x00510B29); + set_func_start(0x00510B30, 0x00510B30); + set_func_end(0x00510B30, 0x00510B72); + set_func_start(0x00510B80, 0x00510B80); + set_func_end(0x00510B80, 0x00510B88); + set_func_start(0x00510B90, 0x00510B90); + set_func_end(0x00510B90, 0x00510BA6); + set_func_start(0x00510BB0, 0x00510BB0); + set_func_end(0x00510BB0, 0x00510BC8); + set_func_start(0x00510BD0, 0x00510BD0); + set_func_end(0x00510BD0, 0x00510C53); + set_func_start(0x00510C60, 0x00510C60); + set_func_end(0x00510C60, 0x00510CF6); + set_func_start(0x00510D00, 0x00510D00); + set_func_end(0x00510D00, 0x00510DAD); + set_func_start(0x00510DB0, 0x00510DB0); + set_func_end(0x00510DB0, 0x00510DB8); + set_func_start(0x00510DC0, 0x00510DC0); + set_func_end(0x00510DC0, 0x00510DCD); + set_func_start(0x00510DD0, 0x00510DD0); + set_func_end(0x00510DD0, 0x00510DDD); + set_func_start(0x00510DE0, 0x00510DE0); + set_func_end(0x00510DE0, 0x00510DFD); + set_func_start(0x00510E00, 0x00510E00); + set_func_end(0x00510E00, 0x00510E1C); + set_func_start(0x00510E20, 0x00510E20); + set_func_end(0x00510E20, 0x00510EEA); + set_func_start(0x00510F20, 0x00510F20); + set_func_end(0x00510F20, 0x00510FB9); + set_func_start(0x00510FC0, 0x00510FC0); + set_func_end(0x00510FC0, 0x005110C7); + set_func_start(0x005110D0, 0x005110D0); + set_func_end(0x005110D0, 0x00511150); + set_func_start(0x00511150, 0x00511150); + set_func_end(0x00511150, 0x005111FF); + set_func_start(0x00511200, 0x00511200); + set_func_end(0x00511200, 0x00511234); + set_func_start(0x00511240, 0x00511240); + set_func_end(0x00511240, 0x00511423); + set_func_start(0x00511430, 0x00511430); + set_func_end(0x00511430, 0x00511505); + set_func_start(0x00511510, 0x00511510); + set_func_end(0x00511510, 0x00511523); + set_func_start(0x00511530, 0x00511530); + set_func_end(0x00511530, 0x00511601); + set_func_start(0x00511610, 0x00511610); + set_func_end(0x00511610, 0x00511631); + set_func_start(0x00511640, 0x00511640); + set_func_end(0x00511640, 0x00511653); + set_func_start(0x00511660, 0x00511660); + set_func_end(0x00511660, 0x0051171C); + set_func_start(0x00511720, 0x00511720); + set_func_end(0x00511720, 0x005117BE); + set_func_start(0x005117C0, 0x005117C0); + set_func_end(0x005117C0, 0x00511829); + set_func_start(0x00511830, 0x00511830); + set_func_end(0x00511830, 0x00511838); + set_func_start(0x00511840, 0x00511840); + set_func_end(0x00511840, 0x005118F5); + set_func_start(0x00511900, 0x00511900); + set_func_end(0x00511900, 0x0051193A); + set_func_start(0x00511940, 0x00511940); + set_func_end(0x00511940, 0x005119F5); + set_func_start(0x00511A00, 0x00511A00); + set_func_end(0x00511A00, 0x00511A3A); + set_func_start(0x00511A40, 0x00511A40); + set_func_end(0x00511A40, 0x00511A51); + set_func_start(0x00511A60, 0x00511A60); + set_func_end(0x00511A60, 0x00511B30); + set_func_start(0x00511B30, 0x00511B30); + set_func_end(0x00511B30, 0x00511C32); + set_func_start(0x00511C40, 0x00511C40); + set_func_end(0x00511C40, 0x00511C7A); + set_func_start(0x00511C80, 0x00511C80); + set_func_end(0x00511C80, 0x00511CBC); + set_func_start(0x00511CC0, 0x00511CC0); + set_func_end(0x00511CC0, 0x00511D15); + set_func_start(0x00511D20, 0x00511D20); + set_func_end(0x00511D20, 0x00511D28); + set_func_start(0x00511D30, 0x00511D30); + set_func_end(0x00511D30, 0x00511DCB); + set_func_start(0x00511DD0, 0x00511DD0); + set_func_end(0x00511DD0, 0x00511E7D); + set_func_start(0x00511E80, 0x00511E80); + set_func_end(0x00511E80, 0x00511F82); + set_func_start(0x00511F90, 0x00511F90); + set_func_end(0x00511F90, 0x00511F98); + set_func_start(0x00511FA0, 0x00511FA0); + set_func_end(0x00511FA0, 0x00511FA8); + set_func_start(0x00511FB0, 0x00511FB0); + set_func_end(0x00511FB0, 0x00511FE0); + set_func_start(0x00511FE0, 0x00511FE0); + set_func_end(0x00511FE0, 0x0051208A); + set_func_start(0x00512090, 0x00512090); + set_func_end(0x00512090, 0x005120DD); + set_func_start(0x00514430, 0x00514430); + set_func_end(0x00514430, 0x005144B1); + set_func_start(0x005144C0, 0x005144C0); + set_func_end(0x005144C0, 0x00514518); + set_func_start(0x00514520, 0x00514520); + set_func_end(0x00514520, 0x0051457A); + set_func_start(0x00514580, 0x00514580); + set_func_end(0x00514580, 0x00514602); + set_func_start(0x00514610, 0x00514610); + set_func_end(0x00514610, 0x0051466B); + set_func_start(0x00514670, 0x00514670); + set_func_end(0x00514670, 0x005146CB); + set_func_start(0x005146D0, 0x005146D0); + set_func_end(0x005146D0, 0x00514756); + set_func_start(0x00514760, 0x00514760); + set_func_end(0x00514760, 0x005147BB); + set_func_start(0x005147C0, 0x005147C0); + set_func_end(0x005147C0, 0x0051481B); + set_func_start(0x00514820, 0x00514820); + set_func_end(0x00514820, 0x005148A6); + set_func_start(0x005148B0, 0x005148B0); + set_func_end(0x005148B0, 0x00514B94); + set_func_start(0x00514BA0, 0x00514BA0); + set_func_end(0x00514BA0, 0x00514C0F); + set_func_start(0x00514C10, 0x00514C10); + set_func_end(0x00514C10, 0x00514D3A); + set_func_start(0x00514D40, 0x00514D40); + set_func_end(0x00514D40, 0x00514E23); + set_func_start(0x00514E30, 0x00514E30); + set_func_end(0x00514E30, 0x00514F52); + set_func_start(0x00514F60, 0x00514F60); + set_func_end(0x00514F60, 0x0051500A); + set_func_start(0x00515010, 0x00515010); + set_func_end(0x00515010, 0x005150D6); + set_func_start(0x005150E0, 0x005150E0); + set_func_end(0x005150E0, 0x005150F8); + set_func_start(0x00515100, 0x00515100); + set_func_end(0x00515100, 0x00515140); + set_func_start(0x00515140, 0x00515140); + set_func_end(0x00515140, 0x0051517A); + set_func_start(0x00515180, 0x00515180); + set_func_end(0x00515180, 0x005151BA); + set_func_start(0x005151C0, 0x005151C0); + set_func_end(0x005151C0, 0x005151FA); + set_func_start(0x00515200, 0x00515200); + set_func_end(0x00515200, 0x00515528); + set_func_start(0x00515560, 0x00515560); + set_func_end(0x00515560, 0x0051556D); + set_func_start(0x00515570, 0x00515570); + set_func_end(0x00515570, 0x00515595); + set_func_start(0x005155A0, 0x005155A0); + set_func_end(0x005155A0, 0x005155C5); + set_func_start(0x005155D0, 0x005155D0); + set_func_end(0x005155D0, 0x005155F5); + set_func_start(0x00515600, 0x00515600); + set_func_end(0x00515600, 0x00515625); + set_func_start(0x00515630, 0x00515630); + set_func_end(0x00515630, 0x00515698); + set_func_start(0x005156A0, 0x005156A0); + set_func_end(0x005156A0, 0x0051574C); + set_func_start(0x00515750, 0x00515750); + set_func_end(0x00515750, 0x00515787); + set_func_start(0x00515790, 0x00515790); + set_func_end(0x00515790, 0x00515809); + set_func_start(0x00515810, 0x00515810); + set_func_end(0x00515810, 0x0051587B); + set_func_start(0x00515880, 0x00515880); + set_func_end(0x00515880, 0x005158F2); + set_func_start(0x00515950, 0x00515950); + set_func_end(0x00515950, 0x005159B5); + set_func_start(0x005159C0, 0x005159C0); + set_func_end(0x005159C0, 0x005159FA); + set_func_start(0x00515A00, 0x00515A00); + set_func_end(0x00515A00, 0x00515A43); + set_func_start(0x00515A50, 0x00515A50); + set_func_end(0x00515A50, 0x00515A84); + set_func_start(0x00515A90, 0x00515A90); + set_func_end(0x00515A90, 0x00515B6D); + set_func_start(0x00515B70, 0x00515B70); + set_func_end(0x00515B70, 0x00515BD8); + set_func_start(0x00515BE0, 0x00515BE0); + set_func_end(0x00515BE0, 0x00515C48); + set_func_start(0x00515C50, 0x00515C50); + set_func_end(0x00515C50, 0x00515CB8); + set_func_start(0x00515CC0, 0x00515CC0); + set_func_end(0x00515CC0, 0x00515DCB); + set_func_start(0x00515DD0, 0x00515DD0); + set_func_end(0x00515DD0, 0x00515EAC); + set_func_start(0x00515EB0, 0x00515EB0); + set_func_end(0x00515EB0, 0x00515FE4); + set_func_start(0x00515FF0, 0x00515FF0); + set_func_end(0x00515FF0, 0x00516124); + set_func_start(0x00516130, 0x00516130); + set_func_end(0x00516130, 0x0051620C); + set_func_start(0x00516210, 0x00516210); + set_func_end(0x00516210, 0x00516272); + set_func_start(0x00516280, 0x00516280); + set_func_end(0x00516280, 0x005162D5); + set_func_start(0x005162E0, 0x005162E0); + set_func_end(0x005162E0, 0x00516335); + set_func_start(0x00516340, 0x00516340); + set_func_end(0x00516340, 0x00516409); + set_func_start(0x00516410, 0x00516410); + set_func_end(0x00516410, 0x005164A4); + set_func_start(0x005164B0, 0x005164B0); + set_func_end(0x005164B0, 0x00516505); + set_func_start(0x00516510, 0x00516510); + set_func_end(0x00516510, 0x00516574); + set_func_start(0x00516580, 0x00516580); + set_func_end(0x00516580, 0x005165D8); + set_func_start(0x005165E0, 0x005165E0); + set_func_end(0x005165E0, 0x0051660D); + set_func_start(0x00516610, 0x00516610); + set_func_end(0x00516610, 0x005166E8); + set_func_start(0x005166F0, 0x005166F0); + set_func_end(0x005166F0, 0x00516758); + set_func_start(0x00516760, 0x00516760); + set_func_end(0x00516760, 0x0051679A); + set_func_start(0x005167A0, 0x005167A0); + set_func_end(0x005167A0, 0x005167D3); + set_func_start(0x005167E0, 0x005167E0); + set_func_end(0x005167E0, 0x00516840); + set_func_start(0x00516840, 0x00516840); + set_func_end(0x00516840, 0x005168A8); + set_func_start(0x005168B0, 0x005168B0); + set_func_end(0x005168B0, 0x00516966); + set_func_start(0x00516970, 0x00516970); + set_func_end(0x00516970, 0x00516A93); + set_func_start(0x00516AA0, 0x00516AA0); + set_func_end(0x00516AA0, 0x00516B1A); + set_func_start(0x00516B20, 0x00516B20); + set_func_end(0x00516B20, 0x00516B82); + set_func_start(0x00516B90, 0x00516B90); + set_func_end(0x00516B90, 0x00516BE1); + set_func_start(0x00516BF0, 0x00516BF0); + set_func_end(0x00516BF0, 0x00516C56); + set_func_start(0x00516C60, 0x00516C60); + set_func_end(0x00516C60, 0x00516EC8); + set_func_start(0x00516ED0, 0x00516ED0); + set_func_end(0x00516ED0, 0x00517013); + set_func_start(0x00517020, 0x00517020); + set_func_end(0x00517020, 0x005170F5); + set_func_start(0x00517100, 0x00517100); + set_func_end(0x00517100, 0x005171E7); + set_func_start(0x005171F0, 0x005171F0); + set_func_end(0x005171F0, 0x005172E0); + set_func_start(0x005172E0, 0x005172E0); + set_func_end(0x005172E0, 0x005173D4); + set_func_start(0x005173E0, 0x005173E0); + set_func_end(0x005173E0, 0x00517529); + set_func_start(0x00517530, 0x00517530); + set_func_end(0x00517530, 0x005176E5); + set_func_start(0x00517890, 0x00517890); + set_func_end(0x00517890, 0x005179A3); + set_func_start(0x005179B0, 0x005179B0); + set_func_end(0x005179B0, 0x00517A97); + set_func_start(0x00517AA0, 0x00517AA0); + set_func_end(0x00517AA0, 0x00517B4E); + set_func_start(0x00517B50, 0x00517B50); + set_func_end(0x00517B50, 0x00517BDC); + set_func_start(0x00517C20, 0x00517C20); + set_func_end(0x00517C20, 0x00517C58); + set_func_start(0x00517C60, 0x00517C60); + set_func_end(0x00517C60, 0x00517D14); + set_func_start(0x00517D20, 0x00517D20); + set_func_end(0x00517D20, 0x00517D2D); + set_func_start(0x00517D30, 0x00517D30); + set_func_end(0x00517D30, 0x00517D6A); + set_func_start(0x00517D70, 0x00517D70); + set_func_end(0x00517D70, 0x00517DF1); + set_func_start(0x0051A3B0, 0x0051A3B0); + set_func_end(0x0051A3B0, 0x0051A3C2); + set_func_start(0x0051A3D0, 0x0051A3D0); + set_func_end(0x0051A3D0, 0x0051A528); + set_func_start(0x0051A530, 0x0051A530); + set_func_end(0x0051A530, 0x0051A5B8); + set_func_start(0x0051A5C0, 0x0051A5C0); + set_func_end(0x0051A5C0, 0x0051A648); + set_func_start(0x0051A650, 0x0051A650); + set_func_end(0x0051A650, 0x0051A67F); + set_func_start(0x0051A680, 0x0051A680); + set_func_end(0x0051A680, 0x0051A6AB); + set_func_start(0x0051A6B0, 0x0051A6B0); + set_func_end(0x0051A6B0, 0x0051A6D9); + set_func_start(0x0051A6E0, 0x0051A6E0); + set_func_end(0x0051A6E0, 0x0051A796); + set_func_start(0x0051A7A0, 0x0051A7A0); + set_func_end(0x0051A7A0, 0x0051A876); + set_func_start(0x0051A880, 0x0051A880); + set_func_end(0x0051A880, 0x0051A8BA); + set_func_start(0x0051A8C0, 0x0051A8C0); + set_func_end(0x0051A8C0, 0x0051AA85); + set_func_start(0x0051AA90, 0x0051AA90); + set_func_end(0x0051AA90, 0x0051AABB); + set_func_start(0x0051AAC0, 0x0051AAC0); + set_func_end(0x0051AAC0, 0x0051AAEB); + set_func_start(0x0051AAF0, 0x0051AAF0); + set_func_end(0x0051AAF0, 0x0051AB1B); + set_func_start(0x0051AB20, 0x0051AB20); + set_func_end(0x0051AB20, 0x0051AB98); + set_func_start(0x0051ABA0, 0x0051ABA0); + set_func_end(0x0051ABA0, 0x0051ABC9); + set_func_start(0x0051ABD0, 0x0051ABD0); + set_func_end(0x0051ABD0, 0x0051ABF9); + set_func_start(0x0051AC00, 0x0051AC00); + set_func_end(0x0051AC00, 0x0051AC29); + set_func_start(0x0051AC30, 0x0051AC30); + set_func_end(0x0051AC30, 0x0051AC59); + set_func_start(0x0051AC60, 0x0051AC60); + set_func_end(0x0051AC60, 0x0051AC89); + set_func_start(0x0051AC90, 0x0051AC90); + set_func_end(0x0051AC90, 0x0051ACC9); + set_func_start(0x0051ACD0, 0x0051ACD0); + set_func_end(0x0051ACD0, 0x0051ADC9); + set_func_start(0x0051ADD0, 0x0051ADD0); + set_func_end(0x0051ADD0, 0x0051AE79); + set_func_start(0x0051AE80, 0x0051AE80); + set_func_end(0x0051AE80, 0x0051AEE6); + set_func_start(0x0051AEF0, 0x0051AEF0); + set_func_end(0x0051AEF0, 0x0051AF4F); + set_func_start(0x0051AF50, 0x0051AF50); + set_func_end(0x0051AF50, 0x0051AFAF); + set_func_start(0x0051AFB0, 0x0051AFB0); + set_func_end(0x0051AFB0, 0x0051B042); + set_func_start(0x0051B050, 0x0051B050); + set_func_end(0x0051B050, 0x0051B108); + set_func_start(0x0051B110, 0x0051B110); + set_func_end(0x0051B110, 0x0051B1CD); + set_func_start(0x0051B1D0, 0x0051B1D0); + set_func_end(0x0051B1D0, 0x0051B239); + set_func_start(0x0051B240, 0x0051B240); + set_func_end(0x0051B240, 0x0051B3A6); + set_func_start(0x0051B3B0, 0x0051B3B0); + set_func_end(0x0051B3B0, 0x0051B40F); + set_func_start(0x0051B410, 0x0051B410); + set_func_end(0x0051B410, 0x0051B4DC); + set_func_start(0x0051B4E0, 0x0051B4E0); + set_func_end(0x0051B4E0, 0x0051B69F); + set_func_start(0x0051B6A0, 0x0051B6A0); + set_func_end(0x0051B6A0, 0x0051B6DE); + set_func_start(0x0051B6E0, 0x0051B6E0); + set_func_end(0x0051B6E0, 0x0051B73B); + set_func_start(0x0051B740, 0x0051B740); + set_func_end(0x0051B740, 0x0051B79B); + set_func_start(0x0051B7A0, 0x0051B7A0); + set_func_end(0x0051B7A0, 0x0051B7FB); + set_func_start(0x0051B800, 0x0051B800); + set_func_end(0x0051B800, 0x0051B8A4); + set_func_start(0x0051B8B0, 0x0051B8B0); + set_func_end(0x0051B8B0, 0x0051B955); + set_func_start(0x0051B960, 0x0051B960); + set_func_end(0x0051B960, 0x0051BA50); + set_func_start(0x0051BA50, 0x0051BA50); + set_func_end(0x0051BA50, 0x0051BC93); + set_func_start(0x0051BCA0, 0x0051BCA0); + set_func_end(0x0051BCA0, 0x0051BCFC); + set_func_start(0x0051BD00, 0x0051BD00); + set_func_end(0x0051BD00, 0x0051BD59); + set_func_start(0x0051BD60, 0x0051BD60); + set_func_end(0x0051BD60, 0x0051BDC1); + set_func_start(0x0051BDD0, 0x0051BDD0); + set_func_end(0x0051BDD0, 0x0051BF47); + set_func_start(0x0051BF50, 0x0051BF50); + set_func_end(0x0051BF50, 0x0051BF8F); + set_func_start(0x0051BF90, 0x0051BF90); + set_func_end(0x0051BF90, 0x0051BFCE); + set_func_start(0x0051BFD0, 0x0051BFD0); + set_func_end(0x0051BFD0, 0x0051C033); + set_func_start(0x0051C040, 0x0051C040); + set_func_end(0x0051C040, 0x0051C0A3); + set_func_start(0x0051C0B0, 0x0051C0B0); + set_func_end(0x0051C0B0, 0x0051C0FF); + set_func_start(0x0051C100, 0x0051C100); + set_func_end(0x0051C100, 0x0051C14F); + set_func_start(0x0051C150, 0x0051C150); + set_func_end(0x0051C150, 0x0051C2D4); + set_func_start(0x0051C2E0, 0x0051C2E0); + set_func_end(0x0051C2E0, 0x0051C44C); + set_func_start(0x0051C450, 0x0051C450); + set_func_end(0x0051C450, 0x0051C68E); + set_func_start(0x0051C690, 0x0051C690); + set_func_end(0x0051C690, 0x0051C732); + set_func_start(0x0051C740, 0x0051C740); + set_func_end(0x0051C740, 0x0051C86C); + set_func_start(0x0051C870, 0x0051C870); + set_func_end(0x0051C870, 0x0051C9B1); + set_func_start(0x0051C9C0, 0x0051C9C0); + set_func_end(0x0051C9C0, 0x0051CB30); + set_func_start(0x0051CB30, 0x0051CB30); + set_func_end(0x0051CB30, 0x0051CB9C); + set_func_start(0x0051CBA0, 0x0051CBA0); + set_func_end(0x0051CBA0, 0x0051CC0C); + set_func_start(0x0051CC10, 0x0051CC10); + set_func_end(0x0051CC10, 0x0051CCF8); + set_func_start(0x0051CD00, 0x0051CD00); + set_func_end(0x0051CD00, 0x0051CDAA); + set_func_start(0x0051CDB0, 0x0051CDB0); + set_func_end(0x0051CDB0, 0x0051D0A5); + set_func_start(0x0051D0B0, 0x0051D0B0); + set_func_end(0x0051D0B0, 0x0051D0FA); + set_func_start(0x0051D100, 0x0051D100); + set_func_end(0x0051D100, 0x0051D161); + set_func_start(0x0051D170, 0x0051D170); + set_func_end(0x0051D170, 0x0051D1AD); + set_func_start(0x0051D1B0, 0x0051D1B0); + set_func_end(0x0051D1B0, 0x0051D222); + set_func_start(0x0051D230, 0x0051D230); + set_func_end(0x0051D230, 0x0051D2A2); + set_func_start(0x0051D2B0, 0x0051D2B0); + set_func_end(0x0051D2B0, 0x0051D322); + set_func_start(0x0051D330, 0x0051D330); + set_func_end(0x0051D330, 0x0051D503); + set_func_start(0x0051D520, 0x0051D520); + set_func_end(0x0051D520, 0x0051D584); + set_func_start(0x0051D590, 0x0051D590); + set_func_end(0x0051D590, 0x0051D598); + set_func_start(0x0051D5A0, 0x0051D5A0); + set_func_end(0x0051D5A0, 0x0051D5FC); + set_func_start(0x0051D600, 0x0051D600); + set_func_end(0x0051D600, 0x0051D706); + set_func_start(0x005222E0, 0x005222E0); + set_func_end(0x005222E0, 0x00522314); + set_func_start(0x00522320, 0x00522320); + set_func_end(0x00522320, 0x0052247F); + set_func_start(0x00522480, 0x00522480); + set_func_end(0x00522480, 0x005224BB); + set_func_start(0x005224C0, 0x005224C0); + set_func_end(0x005224C0, 0x005225D7); + set_func_start(0x005225E0, 0x005225E0); + set_func_end(0x005225E0, 0x00522600); + set_func_start(0x00522600, 0x00522600); + set_func_end(0x00522600, 0x0052270B); + set_func_start(0x00522710, 0x00522710); + set_func_end(0x00522710, 0x00522870); + set_func_start(0x00522870, 0x00522870); + set_func_end(0x00522870, 0x0052294C); + set_func_start(0x00522950, 0x00522950); + set_func_end(0x00522950, 0x0052297A); + set_func_start(0x00522980, 0x00522980); + set_func_end(0x00522980, 0x00522A16); + set_func_start(0x00522A20, 0x00522A20); + set_func_end(0x00522A20, 0x00522AE4); + set_func_start(0x00522AF0, 0x00522AF0); + set_func_end(0x00522AF0, 0x00522BB4); + set_func_start(0x00522BC0, 0x00522BC0); + set_func_end(0x00522BC0, 0x00522C84); + set_func_start(0x00522C90, 0x00522C90); + set_func_end(0x00522C90, 0x00522D54); + set_func_start(0x00522D60, 0x00522D60); + set_func_end(0x00522D60, 0x00522E24); + set_func_start(0x00522E30, 0x00522E30); + set_func_end(0x00522E30, 0x00522F6C); + set_func_start(0x00522F70, 0x00522F70); + set_func_end(0x00522F70, 0x00522F8A); + set_func_start(0x00522F90, 0x00522F90); + set_func_end(0x00522F90, 0x00522FA0); + set_func_start(0x00522FA0, 0x00522FA0); + set_func_end(0x00522FA0, 0x00522FA8); + set_func_start(0x00522FB0, 0x00522FB0); + set_func_end(0x00522FB0, 0x0052308C); + set_func_start(0x00523090, 0x00523090); + set_func_end(0x00523090, 0x00523153); + set_func_start(0x00523160, 0x00523160); + set_func_end(0x00523160, 0x0052320E); + set_func_start(0x00523260, 0x00523260); + set_func_end(0x00523260, 0x00523360); + set_func_start(0x00523360, 0x00523360); + set_func_end(0x00523360, 0x00523368); + set_func_start(0x00523370, 0x00523370); + set_func_end(0x00523370, 0x005233C5); + set_func_start(0x005233D0, 0x005233D0); + set_func_end(0x005233D0, 0x0052349D); + set_func_start(0x00524980, 0x00524980); + set_func_end(0x00524980, 0x005249B7); + set_func_start(0x00525A30, 0x00525A30); + set_func_end(0x00525A30, 0x00525A8B); + set_func_start(0x00525A90, 0x00525A90); + set_func_end(0x00525A90, 0x00525ACB); + set_func_start(0x00525AD0, 0x00525AD0); + set_func_end(0x00525AD0, 0x00525B0B); + set_func_start(0x00525B10, 0x00525B10); + set_func_end(0x00525B10, 0x00525B4B); + set_func_start(0x00525B50, 0x00525B50); + set_func_end(0x00525B50, 0x00525B8B); + set_func_start(0x00525B90, 0x00525B90); + set_func_end(0x00525B90, 0x00525BCB); + set_func_start(0x00525BD0, 0x00525BD0); + set_func_end(0x00525BD0, 0x00525BF2); + set_func_start(0x00525C00, 0x00525C00); + set_func_end(0x00525C00, 0x00525C22); + set_func_start(0x00525C30, 0x00525C30); + set_func_end(0x00525C30, 0x00525CC4); + set_func_start(0x00525CD0, 0x00525CD0); + set_func_end(0x00525CD0, 0x00525D64); + set_func_start(0x00525D70, 0x00525D70); + set_func_end(0x00525D70, 0x00525DE6); + set_func_start(0x00525DF0, 0x00525DF0); + set_func_end(0x00525DF0, 0x00525E4F); + set_func_start(0x00525E50, 0x00525E50); + set_func_end(0x00525E50, 0x00525EAF); + set_func_start(0x00525EB0, 0x00525EB0); + set_func_end(0x00525EB0, 0x00525FB1); + set_func_start(0x00525FC0, 0x00525FC0); + set_func_end(0x00525FC0, 0x0052604B); + set_func_start(0x00526050, 0x00526050); + set_func_end(0x00526050, 0x0052619C); + set_func_start(0x005261A0, 0x005261A0); + set_func_end(0x005261A0, 0x005262C4); + set_func_start(0x005262D0, 0x005262D0); + set_func_end(0x005262D0, 0x005262D8); + set_func_start(0x005262E0, 0x005262E0); + set_func_end(0x005262E0, 0x00526362); + set_func_start(0x00527F00, 0x00527F00); + set_func_end(0x00527F00, 0x00527FD4); + set_func_start(0x00528920, 0x00528920); + set_func_end(0x00528920, 0x00528AE1); + set_func_start(0x0052A980, 0x0052A980); + set_func_end(0x0052A980, 0x0052AEC6); + set_func_start(0x0052B470, 0x0052B470); + set_func_end(0x0052B470, 0x0052B4D4); + set_func_start(0x0052B4E0, 0x0052B4E0); + set_func_end(0x0052B4E0, 0x0052B544); + set_func_start(0x0052C110, 0x0052C110); + set_func_end(0x0052C110, 0x0052C187); + set_func_start(0x0052C190, 0x0052C190); + set_func_end(0x0052C190, 0x0052C1C4); + set_func_start(0x0052C1D0, 0x0052C1D0); + set_func_end(0x0052C1D0, 0x0052C26A); + set_func_start(0x0052C270, 0x0052C270); + set_func_end(0x0052C270, 0x0052C29D); + set_func_start(0x0052C2A0, 0x0052C2A0); + set_func_end(0x0052C2A0, 0x0052C2C2); + set_func_start(0x0052C2D0, 0x0052C2D0); + set_func_end(0x0052C2D0, 0x0052C30A); + set_func_start(0x0052C310, 0x0052C310); + set_func_end(0x0052C310, 0x0052C34A); + set_func_start(0x0052C350, 0x0052C350); + set_func_end(0x0052C350, 0x0052C36C); + set_func_start(0x0052CCD0, 0x0052CCD0); + set_func_end(0x0052CCD0, 0x0052CD26); + set_func_start(0x0052CD30, 0x0052CD30); + set_func_end(0x0052CD30, 0x0052CD86); + set_func_start(0x0052CD90, 0x0052CD90); + set_func_end(0x0052CD90, 0x0052CEDD); + set_func_start(0x0052CF00, 0x0052CF00); + set_func_end(0x0052CF00, 0x0052CF60); + set_func_start(0x0052CF60, 0x0052CF60); + set_func_end(0x0052CF60, 0x0052CFF6); + set_func_start(0x0052D000, 0x0052D000); + set_func_end(0x0052D000, 0x0052D053); + set_func_start(0x0052D990, 0x0052D990); + set_func_end(0x0052D990, 0x0052D9B9); + set_func_start(0x0052D9C0, 0x0052D9C0); + set_func_end(0x0052D9C0, 0x0052DAEC); + set_func_start(0x0052DAF0, 0x0052DAF0); + set_func_end(0x0052DAF0, 0x0052DC1C); + set_func_start(0x0052DC20, 0x0052DC20); + set_func_end(0x0052DC20, 0x0052DE54); + set_func_start(0x0052DE60, 0x0052DE60); + set_func_end(0x0052DE60, 0x0052DF35); + set_func_start(0x0052E1B0, 0x0052E1B0); + set_func_end(0x0052E1B0, 0x0052E3F2); + set_func_start(0x0052E400, 0x0052E400); + set_func_end(0x0052E400, 0x0052E412); + set_func_start(0x0052E420, 0x0052E420); + set_func_end(0x0052E420, 0x0052E475); + set_func_start(0x0052E4F0, 0x0052E4F0); + set_func_end(0x0052E4F0, 0x0052E512); + set_func_start(0x0052E850, 0x0052E850); + set_func_end(0x0052E850, 0x0052E9A6); + set_func_start(0x0052E9B0, 0x0052E9B0); + set_func_end(0x0052E9B0, 0x0052E9CC); + set_func_start(0x0052E9D0, 0x0052E9D0); + set_func_end(0x0052E9D0, 0x0052E9EC); + set_func_start(0x0052ED60, 0x0052ED60); + set_func_end(0x0052ED60, 0x0052ED7C); + set_func_start(0x0052ED80, 0x0052ED80); + set_func_end(0x0052ED80, 0x0052ED88); + set_func_start(0x0052EEF0, 0x0052EEF0); + set_func_end(0x0052EEF0, 0x0052EEF8); + set_func_start(0x0052F900, 0x0052F900); + set_func_end(0x0052F900, 0x0052F90B); + set_func_start(0x0052FDD0, 0x0052FDD0); + set_func_end(0x0052FDD0, 0x0052FE5F); + set_func_start(0x005301D0, 0x005301D0); + set_func_end(0x005301D0, 0x00530239); + set_func_start(0x00530240, 0x00530240); + set_func_end(0x00530240, 0x005302A8); + set_func_start(0x00530700, 0x00530700); + set_func_end(0x00530700, 0x0053074D); + set_func_start(0x00530750, 0x00530750); + set_func_end(0x00530750, 0x0053079F); + set_func_start(0x005307A0, 0x005307A0); + set_func_end(0x005307A0, 0x00530818); + set_func_start(0x00530820, 0x00530820); + set_func_end(0x00530820, 0x00530828); + set_func_start(0x00530830, 0x00530830); + set_func_end(0x00530830, 0x00530838); + set_func_start(0x005308D0, 0x005308D0); + set_func_end(0x005308D0, 0x0053091F); + set_func_start(0x00530EC0, 0x00530EC0); + set_func_end(0x00530EC0, 0x00530F13); + set_func_start(0x00530F20, 0x00530F20); + set_func_end(0x00530F20, 0x00530F58); + set_func_start(0x00532AF0, 0x00532AF0); + set_func_end(0x00532AF0, 0x00532AF7); + set_func_start(0x005343F0, 0x005343F0); + set_func_end(0x005343F0, 0x00534581); + set_func_start(0x00534590, 0x00534590); + set_func_end(0x00534590, 0x005346EC); + set_func_start(0x005349F0, 0x005349F0); + set_func_end(0x005349F0, 0x00534B5C); + set_func_start(0x00534ED0, 0x00534ED0); + set_func_end(0x00534ED0, 0x00534F73); + set_func_start(0x00534F80, 0x00534F80); + set_func_end(0x00534F80, 0x0053507B); + set_func_start(0x00535080, 0x00535080); + set_func_end(0x00535080, 0x00535171); + set_func_start(0x00535180, 0x00535180); + set_func_end(0x00535180, 0x0053537E); + set_func_start(0x00535380, 0x00535380); + set_func_end(0x00535380, 0x0053548B); + set_func_start(0x00535490, 0x00535490); + set_func_end(0x00535490, 0x005355B2); + set_func_start(0x005355C0, 0x005355C0); + set_func_end(0x005355C0, 0x00535656); + set_func_start(0x00535660, 0x00535660); + set_func_end(0x00535660, 0x005356F6); + set_func_start(0x00535700, 0x00535700); + set_func_end(0x00535700, 0x00535796); + set_func_start(0x005357A0, 0x005357A0); + set_func_end(0x005357A0, 0x0053585E); + set_func_start(0x00535860, 0x00535860); + set_func_end(0x00535860, 0x0053591E); + set_func_start(0x00535920, 0x00535920); + set_func_end(0x00535920, 0x00535A9B); + set_func_start(0x00535AA0, 0x00535AA0); + set_func_end(0x00535AA0, 0x00535C54); + set_func_start(0x00535C60, 0x00535C60); + set_func_end(0x00535C60, 0x00535CD9); + set_func_start(0x00535CE0, 0x00535CE0); + set_func_end(0x00535CE0, 0x00535EA4); + set_func_start(0x00535EB0, 0x00535EB0); + set_func_end(0x00535EB0, 0x00536026); + set_func_start(0x00536030, 0x00536030); + set_func_end(0x00536030, 0x00536107); + set_func_start(0x00536110, 0x00536110); + set_func_end(0x00536110, 0x0053621F); + set_func_start(0x00536220, 0x00536220); + set_func_end(0x00536220, 0x00536329); + set_func_start(0x00536330, 0x00536330); + set_func_end(0x00536330, 0x005363FB); + set_func_start(0x00536400, 0x00536400); + set_func_end(0x00536400, 0x005364D7); + set_func_start(0x005364E0, 0x005364E0); + set_func_end(0x005364E0, 0x005365A6); + set_func_start(0x005365B0, 0x005365B0); + set_func_end(0x005365B0, 0x0053669C); + set_func_start(0x005366A0, 0x005366A0); + set_func_end(0x005366A0, 0x0053678D); + set_func_start(0x00536790, 0x00536790); + set_func_end(0x00536790, 0x0053688B); + set_func_start(0x00536890, 0x00536890); + set_func_end(0x00536890, 0x00536967); + set_func_start(0x00536970, 0x00536970); + set_func_end(0x00536970, 0x00536A90); + set_func_start(0x00536A90, 0x00536A90); + set_func_end(0x00536A90, 0x00536B56); + set_func_start(0x00536B60, 0x00536B60); + set_func_end(0x00536B60, 0x00536C4C); + set_func_start(0x00536C50, 0x00536C50); + set_func_end(0x00536C50, 0x00536D3D); + set_func_start(0x00536D40, 0x00536D40); + set_func_end(0x00536D40, 0x00536E3B); + set_func_start(0x00536E40, 0x00536E40); + set_func_end(0x00536E40, 0x00537009); + set_func_start(0x00537010, 0x00537010); + set_func_end(0x00537010, 0x0053706C); + set_func_start(0x00537070, 0x00537070); + set_func_end(0x00537070, 0x005370CA); + set_func_start(0x005370D0, 0x005370D0); + set_func_end(0x005370D0, 0x0053723E); + set_func_start(0x00537240, 0x00537240); + set_func_end(0x00537240, 0x0053750F); + set_func_start(0x00537510, 0x00537510); + set_func_end(0x00537510, 0x005375F8); + set_func_start(0x00537600, 0x00537600); + set_func_end(0x00537600, 0x005376BB); + set_func_start(0x005376C0, 0x005376C0); + set_func_end(0x005376C0, 0x005377B3); + set_func_start(0x005377C0, 0x005377C0); + set_func_end(0x005377C0, 0x005378A0); + set_func_start(0x005378A0, 0x005378A0); + set_func_end(0x005378A0, 0x00537943); + set_func_start(0x00537950, 0x00537950); + set_func_end(0x00537950, 0x005379F3); + set_func_start(0x00537A00, 0x00537A00); + set_func_end(0x00537A00, 0x00537A5E); + set_func_start(0x00539BF0, 0x00539BF0); + set_func_end(0x00539BF0, 0x00539CB8); + set_func_start(0x00539CC0, 0x00539CC0); + set_func_end(0x00539CC0, 0x00539D6B); + set_func_start(0x00539D70, 0x00539D70); + set_func_end(0x00539D70, 0x00539F82); + set_func_start(0x00539F90, 0x00539F90); + set_func_end(0x00539F90, 0x0053A025); + set_func_start(0x0053A030, 0x0053A030); + set_func_end(0x0053A030, 0x0053A150); + set_func_start(0x0053A150, 0x0053A150); + set_func_end(0x0053A150, 0x0053A2F6); + set_func_start(0x0053A300, 0x0053A300); + set_func_end(0x0053A300, 0x0053A539); + set_func_start(0x0053A540, 0x0053A540); + set_func_end(0x0053A540, 0x0053A65E); + set_func_start(0x0053A660, 0x0053A660); + set_func_end(0x0053A660, 0x0053A742); + set_func_start(0x0053B5C0, 0x0053B5C0); + set_func_end(0x0053B5C0, 0x0053B5F4); + set_func_start(0x0053B650, 0x0053B650); + set_func_end(0x0053B650, 0x0053B6B6); + set_func_start(0x0053B6C0, 0x0053B6C0); + set_func_end(0x0053B6C0, 0x0053B739); + set_func_start(0x0053BE70, 0x0053BE70); + set_func_end(0x0053BE70, 0x0053C0A5); + set_func_start(0x0053C0B0, 0x0053C0B0); + set_func_end(0x0053C0B0, 0x0053C0E4); + set_func_start(0x0053C0F0, 0x0053C0F0); + set_func_end(0x0053C0F0, 0x0053C177); + set_func_start(0x0053C180, 0x0053C180); + set_func_end(0x0053C180, 0x0053C29C); + set_func_start(0x0053C2A0, 0x0053C2A0); + set_func_end(0x0053C2A0, 0x0053C304); + set_func_start(0x0053C310, 0x0053C310); + set_func_end(0x0053C310, 0x0053C393); + set_func_start(0x0053C3A0, 0x0053C3A0); + set_func_end(0x0053C3A0, 0x0053C426); + set_func_start(0x0053DD10, 0x0053DD10); + set_func_end(0x0053DD10, 0x0053DD21); + set_func_start(0x0053DD30, 0x0053DD30); + set_func_end(0x0053DD30, 0x0053DE09); + set_func_start(0x0053DE10, 0x0053DE10); + set_func_end(0x0053DE10, 0x0053DE51); + set_func_start(0x0053DE60, 0x0053DE60); + set_func_end(0x0053DE60, 0x0053DE89); + set_func_start(0x0053DE90, 0x0053DE90); + set_func_end(0x0053DE90, 0x0053E05A); + set_func_start(0x0053E060, 0x0053E060); + set_func_end(0x0053E060, 0x0053E2B6); + set_func_start(0x0053E2C0, 0x0053E2C0); + set_func_end(0x0053E2C0, 0x0053E490); + set_func_start(0x0053E490, 0x0053E490); + set_func_end(0x0053E490, 0x0053E5D4); + set_func_start(0x0053E5E0, 0x0053E5E0); + set_func_end(0x0053E5E0, 0x0053E6A3); + set_func_start(0x0053E6B0, 0x0053E6B0); + set_func_end(0x0053E6B0, 0x0053E7D4); + set_func_start(0x0053E7E0, 0x0053E7E0); + set_func_end(0x0053E7E0, 0x0053E80C); + set_func_start(0x00540310, 0x00540310); + set_func_end(0x00540310, 0x005405A9); + set_func_start(0x005407F0, 0x005407F0); + set_func_end(0x005407F0, 0x005408D6); + set_func_start(0x005408E0, 0x005408E0); + set_func_end(0x005408E0, 0x00540A26); + set_func_start(0x00540A30, 0x00540A30); + set_func_end(0x00540A30, 0x00540D66); + set_func_start(0x00540D70, 0x00540D70); + set_func_end(0x00540D70, 0x00540DE3); + set_func_start(0x00540DF0, 0x00540DF0); + set_func_end(0x00540DF0, 0x00540E75); + set_func_start(0x00540E80, 0x00540E80); + set_func_end(0x00540E80, 0x0054100C); + set_func_start(0x00541010, 0x00541010); + set_func_end(0x00541010, 0x005410DE); + set_func_start(0x005410E0, 0x005410E0); + set_func_end(0x005410E0, 0x0054113C); + set_func_start(0x00541140, 0x00541140); + set_func_end(0x00541140, 0x0054119C); + set_func_start(0x005411A0, 0x005411A0); + set_func_end(0x005411A0, 0x005411FC); + set_func_start(0x00541200, 0x00541200); + set_func_end(0x00541200, 0x00541242); + set_func_start(0x00541250, 0x00541250); + set_func_end(0x00541250, 0x005412BA); + set_func_start(0x005412C0, 0x005412C0); + set_func_end(0x005412C0, 0x00541336); + set_func_start(0x00541340, 0x00541340); + set_func_end(0x00541340, 0x0054141D); + set_func_start(0x00541420, 0x00541420); + set_func_end(0x00541420, 0x005414FD); + set_func_start(0x00541500, 0x00541500); + set_func_end(0x00541500, 0x005415CC); + set_func_start(0x005415D0, 0x005415D0); + set_func_end(0x005415D0, 0x00541679); + set_func_start(0x00541680, 0x00541680); + set_func_end(0x00541680, 0x005417FB); + set_func_start(0x00541800, 0x00541800); + set_func_end(0x00541800, 0x005418ED); + set_func_start(0x005418F0, 0x005418F0); + set_func_end(0x005418F0, 0x005419E1); + set_func_start(0x005419F0, 0x005419F0); + set_func_end(0x005419F0, 0x00541AE4); + set_func_start(0x00541AF0, 0x00541AF0); + set_func_end(0x00541AF0, 0x00541C51); + set_func_start(0x00541C60, 0x00541C60); + set_func_end(0x00541C60, 0x00541DEF); + set_func_start(0x00543020, 0x00543020); + set_func_end(0x00543020, 0x00543054); + set_func_start(0x00543060, 0x00543060); + set_func_end(0x00543060, 0x00543094); + set_func_start(0x005430A0, 0x005430A0); + set_func_end(0x005430A0, 0x005432B9); + set_func_start(0x005432C0, 0x005432C0); + set_func_end(0x005432C0, 0x005434D9); + set_func_start(0x005434E0, 0x005434E0); + set_func_end(0x005434E0, 0x00543533); + set_func_start(0x00543540, 0x00543540); + set_func_end(0x00543540, 0x00543593); + set_func_start(0x005435A0, 0x005435A0); + set_func_end(0x005435A0, 0x005435FD); + set_func_start(0x00543600, 0x00543600); + set_func_end(0x00543600, 0x00543642); + set_func_start(0x00544B20, 0x00544B20); + set_func_end(0x00544B20, 0x00544B8D); + set_func_start(0x00544B90, 0x00544B90); + set_func_end(0x00544B90, 0x00544C3B); + set_func_start(0x00544C40, 0x00544C40); + set_func_end(0x00544C40, 0x00544C9D); + set_func_start(0x00544CA0, 0x00544CA0); + set_func_end(0x00544CA0, 0x00544D3A); + set_func_start(0x00544D40, 0x00544D40); + set_func_end(0x00544D40, 0x00544E03); + set_func_start(0x00544E10, 0x00544E10); + set_func_end(0x00544E10, 0x00544E71); + set_func_start(0x00544E80, 0x00544E80); + set_func_end(0x00544E80, 0x00544FB2); + set_func_start(0x00544FC0, 0x00544FC0); + set_func_end(0x00544FC0, 0x00545050); + set_func_start(0x00545050, 0x00545050); + set_func_end(0x00545050, 0x00545102); + set_func_start(0x00545110, 0x00545110); + set_func_end(0x00545110, 0x00545880); + set_func_start(0x00545880, 0x00545880); + set_func_end(0x00545880, 0x00545941); + set_func_start(0x00545950, 0x00545950); + set_func_end(0x00545950, 0x005459BD); + set_func_start(0x005459C0, 0x005459C0); + set_func_end(0x005459C0, 0x00545A29); + set_func_start(0x00545A30, 0x00545A30); + set_func_end(0x00545A30, 0x00545C7B); + set_func_start(0x00545C80, 0x00545C80); + set_func_end(0x00545C80, 0x00545E57); + set_func_start(0x00545E60, 0x00545E60); + set_func_end(0x00545E60, 0x00545F12); + set_func_start(0x00545F20, 0x00545F20); + set_func_end(0x00545F20, 0x00545FD2); + set_func_start(0x00545FE0, 0x00545FE0); + set_func_end(0x00545FE0, 0x00545FE8); + set_func_start(0x00545FF0, 0x00545FF0); + set_func_end(0x00545FF0, 0x005460F7); + set_func_start(0x00546290, 0x00546290); + set_func_end(0x00546290, 0x005462BA); + set_func_start(0x005469E0, 0x005469E0); + set_func_end(0x005469E0, 0x00546A83); + set_func_start(0x00546A90, 0x00546A90); + set_func_end(0x00546A90, 0x00546C4C); + set_func_start(0x00546C50, 0x00546C50); + set_func_end(0x00546C50, 0x00546E76); + set_func_start(0x00546E80, 0x00546E80); + set_func_end(0x00546E80, 0x00546EEA); + set_func_start(0x00546EF0, 0x00546EF0); + set_func_end(0x00546EF0, 0x00546FDB); + set_func_start(0x00547B80, 0x00547B80); + set_func_end(0x00547B80, 0x00547C02); + set_func_start(0x00547C10, 0x00547C10); + set_func_end(0x00547C10, 0x00547C1D); + set_func_start(0x00548720, 0x00548720); + set_func_end(0x00548720, 0x00548754); + set_func_start(0x00548D40, 0x00548D40); + set_func_end(0x00548D40, 0x00548F49); + set_func_start(0x00549AD0, 0x00549AD0); + set_func_end(0x00549AD0, 0x00549B40); + set_func_start(0x00549B40, 0x00549B40); + set_func_end(0x00549B40, 0x00549B7B); + set_func_start(0x00549B80, 0x00549B80); + set_func_end(0x00549B80, 0x00549C37); + set_func_start(0x00549C40, 0x00549C40); + set_func_end(0x00549C40, 0x00549CC5); + set_func_start(0x00549CD0, 0x00549CD0); + set_func_end(0x00549CD0, 0x00549D30); + set_func_start(0x00549D30, 0x00549D30); + set_func_end(0x00549D30, 0x00549DC6); + set_func_start(0x00549DD0, 0x00549DD0); + set_func_end(0x00549DD0, 0x00549E73); + set_func_start(0x00549E80, 0x00549E80); + set_func_end(0x00549E80, 0x00549EB4); + set_func_start(0x00549EC0, 0x00549EC0); + set_func_end(0x00549EC0, 0x00549F13); + set_func_start(0x00549F20, 0x00549F20); + set_func_end(0x00549F20, 0x00549F54); + set_func_start(0x00549F60, 0x00549F60); + set_func_end(0x00549F60, 0x0054A032); + set_func_start(0x0054A040, 0x0054A040); + set_func_end(0x0054A040, 0x0054A0D1); + set_func_start(0x0054A0E0, 0x0054A0E0); + set_func_end(0x0054A0E0, 0x0054A13A); + set_func_start(0x0054A140, 0x0054A140); + set_func_end(0x0054A140, 0x0054A174); + set_func_start(0x0054A180, 0x0054A180); + set_func_end(0x0054A180, 0x0054A27C); + set_func_start(0x0054A280, 0x0054A280); + set_func_end(0x0054A280, 0x0054A2BA); + set_func_start(0x0054A2C0, 0x0054A2C0); + set_func_end(0x0054A2C0, 0x0054A2F4); + set_func_start(0x0054A300, 0x0054A300); + set_func_end(0x0054A300, 0x0054A361); + set_func_start(0x0054A370, 0x0054A370); + set_func_end(0x0054A370, 0x0054A3D1); + set_func_start(0x0054BAA0, 0x0054BAA0); + set_func_end(0x0054BAA0, 0x0054BAD4); + set_func_start(0x0054BAE0, 0x0054BAE0); + set_func_end(0x0054BAE0, 0x0054BB3D); + set_func_start(0x0054BB40, 0x0054BB40); + set_func_end(0x0054BB40, 0x0054BBC6); + set_func_start(0x0054BBD0, 0x0054BBD0); + set_func_end(0x0054BBD0, 0x0054BC24); + set_func_start(0x0054BC30, 0x0054BC30); + set_func_end(0x0054BC30, 0x0054BE79); + set_func_start(0x0054BE90, 0x0054BE90); + set_func_end(0x0054BE90, 0x0054C120); + set_func_start(0x0054C120, 0x0054C120); + set_func_end(0x0054C120, 0x0054C167); + set_func_start(0x0054C170, 0x0054C170); + set_func_end(0x0054C170, 0x0054C248); + set_func_start(0x0054C250, 0x0054C250); + set_func_end(0x0054C250, 0x0054C2E0); + set_func_start(0x0054C2E0, 0x0054C2E0); + set_func_end(0x0054C2E0, 0x0054C4D0); + set_func_start(0x0054C4D0, 0x0054C4D0); + set_func_end(0x0054C4D0, 0x0054C6D4); + set_func_start(0x0054C6E0, 0x0054C6E0); + set_func_end(0x0054C6E0, 0x0054C73D); + set_func_start(0x0054C740, 0x0054C740); + set_func_end(0x0054C740, 0x0054C7A0); + set_func_start(0x0054C7A0, 0x0054C7A0); + set_func_end(0x0054C7A0, 0x0054C808); + set_func_start(0x0054C810, 0x0054C810); + set_func_end(0x0054C810, 0x0054C870); + set_func_start(0x0054C870, 0x0054C870); + set_func_end(0x0054C870, 0x0054C892); + set_func_start(0x0054C8A0, 0x0054C8A0); + set_func_end(0x0054C8A0, 0x0054C9D3); + set_func_start(0x0054C9F0, 0x0054C9F0); + set_func_end(0x0054C9F0, 0x0054CA22); + set_func_start(0x0054D770, 0x0054D770); + set_func_end(0x0054D770, 0x0054D8E2); + set_func_start(0x0054D8F0, 0x0054D8F0); + set_func_end(0x0054D8F0, 0x0054D990); + set_func_start(0x0054D990, 0x0054D990); + set_func_end(0x0054D990, 0x0054DA10); + set_func_start(0x0054DA10, 0x0054DA10); + set_func_end(0x0054DA10, 0x0054DC91); + set_func_start(0x0054DCA0, 0x0054DCA0); + set_func_end(0x0054DCA0, 0x0054DCA8); + set_func_start(0x0054DCB0, 0x0054DCB0); + set_func_end(0x0054DCB0, 0x0054DCB8); + set_func_start(0x0054DCC0, 0x0054DCC0); + set_func_end(0x0054DCC0, 0x0054DDF1); + set_func_start(0x0054DE00, 0x0054DE00); + set_func_end(0x0054DE00, 0x0054E007); + set_func_start(0x0054E010, 0x0054E010); + set_func_end(0x0054E010, 0x0054E15E); + set_func_start(0x0054E160, 0x0054E160); + set_func_end(0x0054E160, 0x0054E191); + set_func_start(0x0054E1A0, 0x0054E1A0); + set_func_end(0x0054E1A0, 0x0054E1C0); + set_func_start(0x0054E1C0, 0x0054E1C0); + set_func_end(0x0054E1C0, 0x0054E1F1); + set_func_start(0x0054E200, 0x0054E200); + set_func_end(0x0054E200, 0x0054E220); + set_func_start(0x0054E6D0, 0x0054E6D0); + set_func_end(0x0054E6D0, 0x0054E717); + set_func_start(0x0054EA60, 0x0054EA60); + set_func_end(0x0054EA60, 0x0054EA89); + set_func_start(0x0054EA90, 0x0054EA90); + set_func_end(0x0054EA90, 0x0054EB0B); + set_func_start(0x0054EB10, 0x0054EB10); + set_func_end(0x0054EB10, 0x0054EB3B); + set_func_start(0x0054EB40, 0x0054EB40); + set_func_end(0x0054EB40, 0x0054EBBA); + set_func_start(0x0054EBC0, 0x0054EBC0); + set_func_end(0x0054EBC0, 0x0054EBFB); + set_func_start(0x0054ED80, 0x0054ED80); + set_func_end(0x0054ED80, 0x0054EE58); + set_func_start(0x0054EE60, 0x0054EE60); + set_func_end(0x0054EE60, 0x0054EF87); + set_func_start(0x0054EF90, 0x0054EF90); + set_func_end(0x0054EF90, 0x0054EFD5); + set_func_start(0x0054F430, 0x0054F430); + set_func_end(0x0054F430, 0x0054F49D); + set_func_start(0x0054F4A0, 0x0054F4A0); + set_func_end(0x0054F4A0, 0x0054F561); + set_func_start(0x0054F570, 0x0054F570); + set_func_end(0x0054F570, 0x0054F684); + set_func_start(0x0054F690, 0x0054F690); + set_func_end(0x0054F690, 0x0054F81D); + set_func_start(0x0054F820, 0x0054F820); + set_func_end(0x0054F820, 0x0054F8AA); + set_func_start(0x0054F8B0, 0x0054F8B0); + set_func_end(0x0054F8B0, 0x0054F97B); + set_func_start(0x0054F980, 0x0054F980); + set_func_end(0x0054F980, 0x0054FB0B); + set_func_start(0x00551720, 0x00551720); + set_func_end(0x00551720, 0x00551759); + set_func_start(0x00551760, 0x00551760); + set_func_end(0x00551760, 0x00551783); + set_func_start(0x00551790, 0x00551790); + set_func_end(0x00551790, 0x005517D0); + set_func_start(0x005517D0, 0x005517D0); + set_func_end(0x005517D0, 0x005518B3); + set_func_start(0x005518C0, 0x005518C0); + set_func_end(0x005518C0, 0x00551900); + set_func_start(0x00551900, 0x00551900); + set_func_end(0x00551900, 0x005519E3); + set_func_start(0x005519F0, 0x005519F0); + set_func_end(0x005519F0, 0x00551A30); + set_func_start(0x00551A30, 0x00551A30); + set_func_end(0x00551A30, 0x00551B3D); + set_func_start(0x00551B40, 0x00551B40); + set_func_end(0x00551B40, 0x00551B8F); + set_func_start(0x00551B90, 0x00551B90); + set_func_end(0x00551B90, 0x00551BB3); + set_func_start(0x00551BC0, 0x00551BC0); + set_func_end(0x00551BC0, 0x00551C00); + set_func_start(0x00551C00, 0x00551C00); + set_func_end(0x00551C00, 0x00551D0D); + set_func_start(0x00551D10, 0x00551D10); + set_func_end(0x00551D10, 0x00551D5F); + set_func_start(0x00551D60, 0x00551D60); + set_func_end(0x00551D60, 0x00551D99); + set_func_start(0x00551DA0, 0x00551DA0); + set_func_end(0x00551DA0, 0x00551DC3); + set_func_start(0x00551DD0, 0x00551DD0); + set_func_end(0x00551DD0, 0x00551FA1); + set_func_start(0x00551FB0, 0x00551FB0); + set_func_end(0x00551FB0, 0x00551FCC); + set_func_start(0x00551FD0, 0x00551FD0); + set_func_end(0x00551FD0, 0x00551FEC); + set_func_start(0x00551FF0, 0x00551FF0); + set_func_end(0x00551FF0, 0x0055200C); + set_func_start(0x005523A0, 0x005523A0); + set_func_end(0x005523A0, 0x00552439); + set_func_start(0x00552440, 0x00552440); + set_func_end(0x00552440, 0x0055257D); + set_func_start(0x00552580, 0x00552580); + set_func_end(0x00552580, 0x005526C8); + set_func_start(0x005529A0, 0x005529A0); + set_func_end(0x005529A0, 0x005529D7); + set_func_start(0x00552DD0, 0x00552DD0); + set_func_end(0x00552DD0, 0x00552E10); + set_func_start(0x00552E10, 0x00552E10); + set_func_end(0x00552E10, 0x00552E84); + set_func_start(0x00552E90, 0x00552E90); + set_func_end(0x00552E90, 0x00552F2F); + set_func_start(0x00552F30, 0x00552F30); + set_func_end(0x00552F30, 0x00552FFE); + set_func_start(0x00553110, 0x00553110); + set_func_end(0x00553110, 0x00553119); + set_func_start(0x00553120, 0x00553120); + set_func_end(0x00553120, 0x00553163); + set_func_start(0x00553170, 0x00553170); + set_func_end(0x00553170, 0x005531C2); + set_func_start(0x00553BA0, 0x00553BA0); + set_func_end(0x00553BA0, 0x00553C25); + set_func_start(0x00553C30, 0x00553C30); + set_func_end(0x00553C30, 0x00553D60); + set_func_start(0x00553D60, 0x00553D60); + set_func_end(0x00553D60, 0x00553E19); + set_func_start(0x00553E20, 0x00553E20); + set_func_end(0x00553E20, 0x00553F46); + set_func_start(0x00553F50, 0x00553F50); + set_func_end(0x00553F50, 0x00553F86); + set_func_start(0x00553F90, 0x00553F90); + set_func_end(0x00553F90, 0x00554157); + set_func_start(0x00554160, 0x00554160); + set_func_end(0x00554160, 0x00554168); + set_func_start(0x00554370, 0x00554370); + set_func_end(0x00554370, 0x00554379); + set_func_start(0x00554440, 0x00554440); + set_func_end(0x00554440, 0x00554449); + set_func_start(0x005545E0, 0x005545E0); + set_func_end(0x005545E0, 0x005545FB); + set_func_start(0x00554600, 0x00554600); + set_func_end(0x00554600, 0x0055460D); + set_func_start(0x00554680, 0x00554680); + set_func_end(0x00554680, 0x00554689); + set_func_start(0x00554740, 0x00554740); + set_func_end(0x00554740, 0x00554749); + set_func_start(0x005548E0, 0x005548E0); + set_func_end(0x005548E0, 0x005548E9); + set_func_start(0x005548F0, 0x005548F0); + set_func_end(0x005548F0, 0x00554958); + set_func_start(0x00554A50, 0x00554A50); + set_func_end(0x00554A50, 0x00554A59); + set_func_start(0x00554BD0, 0x00554BD0); + set_func_end(0x00554BD0, 0x00554BD9); + set_func_start(0x00554BE0, 0x00554BE0); + set_func_end(0x00554BE0, 0x00554D1B); + set_func_start(0x00554D20, 0x00554D20); + set_func_end(0x00554D20, 0x00554E5B); + set_func_start(0x005551E0, 0x005551E0); + set_func_end(0x005551E0, 0x005553A5); + set_func_start(0x005553B0, 0x005553B0); + set_func_end(0x005553B0, 0x005553E4); + set_func_start(0x00555590, 0x00555590); + set_func_end(0x00555590, 0x005555CC); + set_func_start(0x005555D0, 0x005555D0); + set_func_end(0x005555D0, 0x00555653); + set_func_start(0x00555660, 0x00555660); + set_func_end(0x00555660, 0x005556CB); + set_func_start(0x005556D0, 0x005556D0); + set_func_end(0x005556D0, 0x00555752); + set_func_start(0x00555760, 0x00555760); + set_func_end(0x00555760, 0x00555839); + set_func_start(0x00555840, 0x00555840); + set_func_end(0x00555840, 0x00555919); + set_func_start(0x00555FD0, 0x00555FD0); + set_func_end(0x00555FD0, 0x0055627C); + set_func_start(0x00556280, 0x00556280); + set_func_end(0x00556280, 0x005564CA); + set_func_start(0x005564D0, 0x005564D0); + set_func_end(0x005564D0, 0x005567D1); + set_func_start(0x005567E0, 0x005567E0); + set_func_end(0x005567E0, 0x005569CE); + set_func_start(0x005569D0, 0x005569D0); + set_func_end(0x005569D0, 0x00556A49); + set_func_start(0x00556A50, 0x00556A50); + set_func_end(0x00556A50, 0x00556AC9); + set_func_start(0x00556AD0, 0x00556AD0); + set_func_end(0x00556AD0, 0x00556B53); + set_func_start(0x00556B60, 0x00556B60); + set_func_end(0x00556B60, 0x00556BBF); + set_func_start(0x00556BC0, 0x00556BC0); + set_func_end(0x00556BC0, 0x00556D70); + set_func_start(0x00557520, 0x00557520); + set_func_end(0x00557520, 0x00557657); + set_func_start(0x00557660, 0x00557660); + set_func_end(0x00557660, 0x005576A3); + set_func_start(0x005576B0, 0x005576B0); + set_func_end(0x005576B0, 0x00557881); + set_func_start(0x00557890, 0x00557890); + set_func_end(0x00557890, 0x00557925); + set_func_start(0x00557930, 0x00557930); + set_func_end(0x00557930, 0x00557A99); + set_func_start(0x00557AA0, 0x00557AA0); + set_func_end(0x00557AA0, 0x00557BDB); + set_func_start(0x00557BE0, 0x00557BE0); + set_func_end(0x00557BE0, 0x00557D56); + set_func_start(0x00557D60, 0x00557D60); + set_func_end(0x00557D60, 0x00557E31); + set_func_start(0x00557E40, 0x00557E40); + set_func_end(0x00557E40, 0x00557F61); + set_func_start(0x00557F70, 0x00557F70); + set_func_end(0x00557F70, 0x0055805C); + set_func_start(0x00558060, 0x00558060); + set_func_end(0x00558060, 0x005580DB); + set_func_start(0x005580E0, 0x005580E0); + set_func_end(0x005580E0, 0x0055815B); + set_func_start(0x005586D0, 0x005586D0); + set_func_end(0x005586D0, 0x0055870F); + set_func_start(0x00559400, 0x00559400); + set_func_end(0x00559400, 0x005594D1); + set_func_start(0x005594E0, 0x005594E0); + set_func_end(0x005594E0, 0x005594F6); + set_func_start(0x00559500, 0x00559500); + set_func_end(0x00559500, 0x005595C9); + set_func_start(0x005595D0, 0x005595D0); + set_func_end(0x005595D0, 0x005595D8); + set_func_start(0x00559F50, 0x00559F50); + set_func_end(0x00559F50, 0x00559FE4); + set_func_start(0x00559FF0, 0x00559FF0); + set_func_end(0x00559FF0, 0x0055A03B); + set_func_start(0x0055A040, 0x0055A040); + set_func_end(0x0055A040, 0x0055A0BF); + set_func_start(0x0055A0C0, 0x0055A0C0); + set_func_end(0x0055A0C0, 0x0055A130); + set_func_start(0x0055D280, 0x0055D280); + set_func_end(0x0055D280, 0x0055D2A1); + set_func_start(0x0055D2B0, 0x0055D2B0); + set_func_end(0x0055D2B0, 0x0055D43D); + set_func_start(0x0055DC00, 0x0055DC00); + set_func_end(0x0055DC00, 0x0055DC23); + set_func_start(0x0055DC30, 0x0055DC30); + set_func_end(0x0055DC30, 0x0055DC57); + set_func_start(0x0055DC60, 0x0055DC60); + set_func_end(0x0055DC60, 0x0055DC84); + set_func_start(0x0055E8D0, 0x0055E8D0); + set_func_end(0x0055E8D0, 0x0055E9B0); + set_func_start(0x0055E9B0, 0x0055E9B0); + set_func_end(0x0055E9B0, 0x0055EA67); + set_func_start(0x0055EA70, 0x0055EA70); + set_func_end(0x0055EA70, 0x0055EACE); + set_func_start(0x0055FAD0, 0x0055FAD0); + set_func_end(0x0055FAD0, 0x0055FB81); + set_func_start(0x0055FB90, 0x0055FB90); + set_func_end(0x0055FB90, 0x0055FC1F); + set_func_start(0x0055FC20, 0x0055FC20); + set_func_end(0x0055FC20, 0x0055FCB9); + set_func_start(0x0055FCC0, 0x0055FCC0); + set_func_end(0x0055FCC0, 0x0055FD13); + set_func_start(0x00560560, 0x00560560); + set_func_end(0x00560560, 0x005605EC); + set_func_start(0x00562550, 0x00562550); + set_func_end(0x00562550, 0x005625F0); + set_func_start(0x005625F0, 0x005625F0); + set_func_end(0x005625F0, 0x0056269B); + set_func_start(0x00563520, 0x00563520); + set_func_end(0x00563520, 0x005635DF); + set_func_start(0x005635E0, 0x005635E0); + set_func_end(0x005635E0, 0x00563700); + set_func_start(0x00563700, 0x00563700); + set_func_end(0x00563700, 0x00563820); + set_func_start(0x00563820, 0x00563820); + set_func_end(0x00563820, 0x00563940); + set_func_start(0x00563940, 0x00563940); + set_func_end(0x00563940, 0x00563A87); + set_func_start(0x00563A90, 0x00563A90); + set_func_end(0x00563A90, 0x00563B7C); + set_func_start(0x00563B80, 0x00563B80); + set_func_end(0x00563B80, 0x00563CAC); + set_func_start(0x00563CB0, 0x00563CB0); + set_func_end(0x00563CB0, 0x00563DDC); + set_func_start(0x00563DE0, 0x00563DE0); + set_func_end(0x00563DE0, 0x00563F0C); + set_func_start(0x00563F10, 0x00563F10); + set_func_end(0x00563F10, 0x00564067); + set_func_start(0x00564070, 0x00564070); + set_func_end(0x00564070, 0x005640B2); + set_func_start(0x005640C0, 0x005640C0); + set_func_end(0x005640C0, 0x00564123); + set_func_start(0x00564130, 0x00564130); + set_func_end(0x00564130, 0x005641BC); + set_func_start(0x00564AE0, 0x00564AE0); + set_func_end(0x00564AE0, 0x00564B8A); + set_func_start(0x00564B90, 0x00564B90); + set_func_end(0x00564B90, 0x00564BAD); + set_func_start(0x00564BB0, 0x00564BB0); + set_func_end(0x00564BB0, 0x00564C08); + set_func_start(0x00564C10, 0x00564C10); + set_func_end(0x00564C10, 0x00564C61); + set_func_start(0x00564C70, 0x00564C70); + set_func_end(0x00564C70, 0x00564C8C); + set_func_start(0x00564E90, 0x00564E90); + set_func_end(0x00564E90, 0x00564F54); + set_func_start(0x00564F60, 0x00564F60); + set_func_end(0x00564F60, 0x00565024); + set_func_start(0x00566400, 0x00566400); + set_func_end(0x00566400, 0x00566487); + set_func_start(0x00566490, 0x00566490); + set_func_end(0x00566490, 0x005664D2); + set_func_start(0x005664E0, 0x005664E0); + set_func_end(0x005664E0, 0x00566522); + set_func_start(0x005666A0, 0x005666A0); + set_func_end(0x005666A0, 0x005666FE); + set_func_start(0x00566E80, 0x00566E80); + set_func_end(0x00566E80, 0x00566EAD); + set_func_start(0x00566EB0, 0x00566EB0); + set_func_end(0x00566EB0, 0x00566F32); + set_func_start(0x00566F40, 0x00566F40); + set_func_end(0x00566F40, 0x00566F6C); + set_func_start(0x00566F70, 0x00566F70); + set_func_end(0x00566F70, 0x00566F9F); + set_func_start(0x00566FA0, 0x00566FA0); + set_func_end(0x00566FA0, 0x005670CE); + set_func_start(0x005670D0, 0x005670D0); + set_func_end(0x005670D0, 0x005671F5); + set_func_start(0x00567200, 0x00567200); + set_func_end(0x00567200, 0x00567313); + set_func_start(0x00567320, 0x00567320); + set_func_end(0x00567320, 0x0056744C); + set_func_start(0x00567450, 0x00567450); + set_func_end(0x00567450, 0x005674F0); + set_func_start(0x005674F0, 0x005674F0); + set_func_end(0x005674F0, 0x0056751F); + set_func_start(0x00568160, 0x00568160); + set_func_end(0x00568160, 0x005682B6); + set_func_start(0x00568730, 0x00568730); + set_func_end(0x00568730, 0x00568764); + set_func_start(0x00568770, 0x00568770); + set_func_end(0x00568770, 0x00568808); + set_func_start(0x00568810, 0x00568810); + set_func_end(0x00568810, 0x005688B2); + set_func_start(0x005690A0, 0x005690A0); + set_func_end(0x005690A0, 0x0056917B); + set_func_start(0x00569180, 0x00569180); + set_func_end(0x00569180, 0x00569229); + set_func_start(0x00569230, 0x00569230); + set_func_end(0x00569230, 0x005692A0); + set_func_start(0x005692A0, 0x005692A0); + set_func_end(0x005692A0, 0x0056933F); + set_func_start(0x00569340, 0x00569340); + set_func_end(0x00569340, 0x005693DF); + set_func_start(0x005693E0, 0x005693E0); + set_func_end(0x005693E0, 0x0056951E); + set_func_start(0x00569520, 0x00569520); + set_func_end(0x00569520, 0x005696DD); + set_func_start(0x005696E0, 0x005696E0); + set_func_end(0x005696E0, 0x005697AD); + set_func_start(0x005697B0, 0x005697B0); + set_func_end(0x005697B0, 0x0056981C); + set_func_start(0x00569820, 0x00569820); + set_func_end(0x00569820, 0x00569901); + set_func_start(0x00569910, 0x00569910); + set_func_end(0x00569910, 0x00569B4C); + set_func_start(0x00569B50, 0x00569B50); + set_func_end(0x00569B50, 0x00569CCE); + set_func_start(0x00569CD0, 0x00569CD0); + set_func_end(0x00569CD0, 0x00569E46); + set_func_start(0x00569E50, 0x00569E50); + set_func_end(0x00569E50, 0x00569F99); + set_func_start(0x00569FA0, 0x00569FA0); + set_func_end(0x00569FA0, 0x0056A0EC); + set_func_start(0x0056A0F0, 0x0056A0F0); + set_func_end(0x0056A0F0, 0x0056A29E); + set_func_start(0x0056A2A0, 0x0056A2A0); + set_func_end(0x0056A2A0, 0x0056A376); + set_func_start(0x0056A380, 0x0056A380); + set_func_end(0x0056A380, 0x0056A404); + set_func_start(0x0056A410, 0x0056A410); + set_func_end(0x0056A410, 0x0056A639); + set_func_start(0x0056A640, 0x0056A640); + set_func_end(0x0056A640, 0x0056A85E); + set_func_start(0x0056A860, 0x0056A860); + set_func_end(0x0056A860, 0x0056AA04); + set_func_start(0x0056AA10, 0x0056AA10); + set_func_end(0x0056AA10, 0x0056AAEC); + set_func_start(0x0056AAF0, 0x0056AAF0); + set_func_end(0x0056AAF0, 0x0056AB61); + set_func_start(0x0056AB70, 0x0056AB70); + set_func_end(0x0056AB70, 0x0056AC05); + set_func_start(0x0056AC10, 0x0056AC10); + set_func_end(0x0056AC10, 0x0056AC88); + set_func_start(0x0056AC90, 0x0056AC90); + set_func_end(0x0056AC90, 0x0056AD96); + set_func_start(0x0056ADA0, 0x0056ADA0); + set_func_end(0x0056ADA0, 0x0056AE42); + set_func_start(0x0056AE50, 0x0056AE50); + set_func_end(0x0056AE50, 0x0056AEF2); + set_func_start(0x0056AF00, 0x0056AF00); + set_func_end(0x0056AF00, 0x0056AF51); + set_func_start(0x0056AF60, 0x0056AF60); + set_func_end(0x0056AF60, 0x0056AFB1); + set_func_start(0x0056AFC0, 0x0056AFC0); + set_func_end(0x0056AFC0, 0x0056B0AB); + set_func_start(0x0056B0B0, 0x0056B0B0); + set_func_end(0x0056B0B0, 0x0056B1DC); + set_func_start(0x0056D570, 0x0056D570); + set_func_end(0x0056D570, 0x0056D5B4); + set_func_start(0x0056D5C0, 0x0056D5C0); + set_func_end(0x0056D5C0, 0x0056D5CD); + set_func_start(0x0056D5D0, 0x0056D5D0); + set_func_end(0x0056D5D0, 0x0056D604); + set_func_start(0x0056D610, 0x0056D610); + set_func_end(0x0056D610, 0x0056D689); + set_func_start(0x0056D690, 0x0056D690); + set_func_end(0x0056D690, 0x0056D6C4); + set_func_start(0x0056D6D0, 0x0056D6D0); + set_func_end(0x0056D6D0, 0x0056D728); + set_func_start(0x0056DF80, 0x0056DF80); + set_func_end(0x0056DF80, 0x0056E0DC); + set_func_start(0x0056E0E0, 0x0056E0E0); + set_func_end(0x0056E0E0, 0x0056E167); + set_func_start(0x0056E170, 0x0056E170); + set_func_end(0x0056E170, 0x0056E1DA); + set_func_start(0x0056E1E0, 0x0056E1E0); + set_func_end(0x0056E1E0, 0x0056E202); + set_func_start(0x0056E210, 0x0056E210); + set_func_end(0x0056E210, 0x0056E306); + set_func_start(0x0056E310, 0x0056E310); + set_func_end(0x0056E310, 0x0056E39D); + set_func_start(0x0056E3A0, 0x0056E3A0); + set_func_end(0x0056E3A0, 0x0056E440); + set_func_start(0x0056E440, 0x0056E440); + set_func_end(0x0056E440, 0x0056E518); + set_func_start(0x0056E520, 0x0056E520); + set_func_end(0x0056E520, 0x0056E9AF); + set_func_start(0x0056E9B0, 0x0056E9B0); + set_func_end(0x0056E9B0, 0x0056EC9D); + set_func_start(0x0056ECA0, 0x0056ECA0); + set_func_end(0x0056ECA0, 0x0056EDE2); + set_func_start(0x0056EDF0, 0x0056EDF0); + set_func_end(0x0056EDF0, 0x0056EEE2); + set_func_start(0x0056EEF0, 0x0056EEF0); + set_func_end(0x0056EEF0, 0x0056EFFA); + set_func_start(0x0056F000, 0x0056F000); + set_func_end(0x0056F000, 0x0056F13F); + set_func_start(0x0056F140, 0x0056F140); + set_func_end(0x0056F140, 0x0056F274); + set_func_start(0x0056F280, 0x0056F280); + set_func_end(0x0056F280, 0x0056F342); + set_func_start(0x0056F350, 0x0056F350); + set_func_end(0x0056F350, 0x0056F396); + set_func_start(0x0056F3A0, 0x0056F3A0); + set_func_end(0x0056F3A0, 0x0056F404); + set_func_start(0x0056F410, 0x0056F410); + set_func_end(0x0056F410, 0x0056F4D8); + set_func_start(0x00570550, 0x00570550); + set_func_end(0x00570550, 0x005706B2); + set_func_start(0x005706C0, 0x005706C0); + set_func_end(0x005706C0, 0x0057074C); + set_func_start(0x00570750, 0x00570750); + set_func_end(0x00570750, 0x00570901); + set_func_start(0x00570910, 0x00570910); + set_func_end(0x00570910, 0x00570BC7); + set_func_start(0x00570BD0, 0x00570BD0); + set_func_end(0x00570BD0, 0x00570F0A); + set_func_start(0x00570F10, 0x00570F10); + set_func_end(0x00570F10, 0x005711BC); + set_func_start(0x005711C0, 0x005711C0); + set_func_end(0x005711C0, 0x00571347); + set_func_start(0x00571350, 0x00571350); + set_func_end(0x00571350, 0x005713B4); + set_func_start(0x005713C0, 0x005713C0); + set_func_end(0x005713C0, 0x0057144F); + set_func_start(0x00571450, 0x00571450); + set_func_end(0x00571450, 0x005714CA); + set_func_start(0x00571A40, 0x00571A40); + set_func_end(0x00571A40, 0x00571AA1); + set_func_start(0x00571AB0, 0x00571AB0); + set_func_end(0x00571AB0, 0x00571AF2); + set_func_start(0x00571B00, 0x00571B00); + set_func_end(0x00571B00, 0x00571BDF); + set_func_start(0x00572AB0, 0x00572AB0); + set_func_end(0x00572AB0, 0x00572B3A); + set_func_start(0x00572B40, 0x00572B40); + set_func_end(0x00572B40, 0x00572B74); + set_func_start(0x00572B80, 0x00572B80); + set_func_end(0x00572B80, 0x00572BB4); + set_func_start(0x00572BC0, 0x00572BC0); + set_func_end(0x00572BC0, 0x00572C4F); + set_func_start(0x00572C50, 0x00572C50); + set_func_end(0x00572C50, 0x00572C7D); + set_func_start(0x00572C80, 0x00572C80); + set_func_end(0x00572C80, 0x00572D07); + set_func_start(0x00573690, 0x00573690); + set_func_end(0x00573690, 0x00573A5F); + set_func_start(0x00573A60, 0x00573A60); + set_func_end(0x00573A60, 0x00573AA6); + set_func_start(0x00573AB0, 0x00573AB0); + set_func_end(0x00573AB0, 0x00573AF6); + set_func_start(0x00573B00, 0x00573B00); + set_func_end(0x00573B00, 0x00573B4A); + set_func_start(0x00573B50, 0x00573B50); + set_func_end(0x00573B50, 0x00573C8F); + set_func_start(0x00573C90, 0x00573C90); + set_func_end(0x00573C90, 0x00573E09); + set_func_start(0x00573E10, 0x00573E10); + set_func_end(0x00573E10, 0x00573EE3); + set_func_start(0x00573EF0, 0x00573EF0); + set_func_end(0x00573EF0, 0x00573FD0); + set_func_start(0x00573FD0, 0x00573FD0); + set_func_end(0x00573FD0, 0x005740AF); + set_func_start(0x005740B0, 0x005740B0); + set_func_end(0x005740B0, 0x005740B8); + set_func_start(0x005740C0, 0x005740C0); + set_func_end(0x005740C0, 0x0057417E); + set_func_start(0x00574180, 0x00574180); + set_func_end(0x00574180, 0x00574304); + set_func_start(0x00574A00, 0x00574A00); + set_func_end(0x00574A00, 0x00574AA8); + set_func_start(0x00574AB0, 0x00574AB0); + set_func_end(0x00574AB0, 0x00574CF3); + set_func_start(0x005761F0, 0x005761F0); + set_func_end(0x005761F0, 0x00576238); + set_func_start(0x0057B3A0, 0x0057B3A0); + set_func_end(0x0057B3A0, 0x0057B4F4); + set_func_start(0x0057B500, 0x0057B500); + set_func_end(0x0057B500, 0x0057B573); + set_func_start(0x0057B940, 0x0057B940); + set_func_end(0x0057B940, 0x0057B9B9); + set_func_start(0x0057B9C0, 0x0057B9C0); + set_func_end(0x0057B9C0, 0x0057B9E0); + set_func_start(0x0057BAB0, 0x0057BAB0); + set_func_end(0x0057BAB0, 0x0057BB30); + set_func_start(0x0057BB30, 0x0057BB30); + set_func_end(0x0057BB30, 0x0057BBB3); + set_func_start(0x0057BBC0, 0x0057BBC0); + set_func_end(0x0057BBC0, 0x0057BC8A); + set_func_start(0x0057C420, 0x0057C420); + set_func_end(0x0057C420, 0x0057C44A); + set_func_start(0x0057F170, 0x0057F170); + set_func_end(0x0057F170, 0x0057F1AE); + set_func_start(0x0057F1B0, 0x0057F1B0); + set_func_end(0x0057F1B0, 0x0057F37A); + set_func_start(0x0057F380, 0x0057F380); + set_func_end(0x0057F380, 0x0057F4F0); + set_func_start(0x0057F4F0, 0x0057F4F0); + set_func_end(0x0057F4F0, 0x0057F5CE); + set_func_start(0x005841D0, 0x005841D0); + set_func_end(0x005841D0, 0x005841F2); + set_func_start(0x00584200, 0x00584200); + set_func_end(0x00584200, 0x005842C4); + set_func_start(0x005842D0, 0x005842D0); + set_func_end(0x005842D0, 0x00584389); + set_func_start(0x00584390, 0x00584390); + set_func_end(0x00584390, 0x005843AE); + set_func_start(0x005843B0, 0x005843B0); + set_func_end(0x005843B0, 0x005843EB); + set_func_start(0x005843F0, 0x005843F0); + set_func_end(0x005843F0, 0x0058444F); + set_func_start(0x005846D0, 0x005846D0); + set_func_end(0x005846D0, 0x005846D8); + set_func_start(0x005846E0, 0x005846E0); + set_func_end(0x005846E0, 0x00584820); + set_func_start(0x00584820, 0x00584820); + set_func_end(0x00584820, 0x005849E5); + set_func_start(0x005849F0, 0x005849F0); + set_func_end(0x005849F0, 0x00584A59); + set_func_start(0x00584A60, 0x00584A60); + set_func_end(0x00584A60, 0x00584ABE); + set_func_start(0x00584E10, 0x00584E10); + set_func_end(0x00584E10, 0x00585070); + set_func_start(0x00585070, 0x00585070); + set_func_end(0x00585070, 0x005852B4); + set_func_start(0x005852C0, 0x005852C0); + set_func_end(0x005852C0, 0x00585394); + set_func_start(0x005853A0, 0x005853A0); + set_func_end(0x005853A0, 0x005854B2); + set_func_start(0x005854C0, 0x005854C0); + set_func_end(0x005854C0, 0x005855B7); + set_func_start(0x005855C0, 0x005855C0); + set_func_end(0x005855C0, 0x005856C1); + set_func_start(0x005856D0, 0x005856D0); + set_func_end(0x005856D0, 0x00585886); + set_func_start(0x00585890, 0x00585890); + set_func_end(0x00585890, 0x00585990); + set_func_start(0x00585990, 0x00585990); + set_func_end(0x00585990, 0x00585C8E); + set_func_start(0x00585C90, 0x00585C90); + set_func_end(0x00585C90, 0x00585F57); + set_func_start(0x005865F0, 0x005865F0); + set_func_end(0x005865F0, 0x005866DB); + set_func_start(0x005866E0, 0x005866E0); + set_func_end(0x005866E0, 0x00586722); + set_func_start(0x00586730, 0x00586730); + set_func_end(0x00586730, 0x00586773); + set_func_start(0x00586780, 0x00586780); + set_func_end(0x00586780, 0x005867C5); + set_func_start(0x005867D0, 0x005867D0); + set_func_end(0x005867D0, 0x00586804); + set_func_start(0x00586810, 0x00586810); + set_func_end(0x00586810, 0x0058686C); + set_func_start(0x00586870, 0x00586870); + set_func_end(0x00586870, 0x005868D1); + set_func_start(0x00586C80, 0x00586C80); + set_func_end(0x00586C80, 0x00586CF2); + set_func_start(0x00586D00, 0x00586D00); + set_func_end(0x00586D00, 0x00586D87); + set_func_start(0x00586D90, 0x00586D90); + set_func_end(0x00586D90, 0x00586DB5); + set_func_start(0x00587940, 0x00587940); + set_func_end(0x00587940, 0x005879D0); + set_func_start(0x005879D0, 0x005879D0); + set_func_end(0x005879D0, 0x00587C60); + set_func_start(0x00587C60, 0x00587C60); + set_func_end(0x00587C60, 0x00587EAD); + set_func_start(0x00587EB0, 0x00587EB0); + set_func_end(0x00587EB0, 0x005880BB); + set_func_start(0x00588540, 0x00588540); + set_func_end(0x00588540, 0x0058856A); + set_func_start(0x00588570, 0x00588570); + set_func_end(0x00588570, 0x005886C6); + set_func_start(0x005886D0, 0x005886D0); + set_func_end(0x005886D0, 0x0058874D); + set_func_start(0x00588750, 0x00588750); + set_func_end(0x00588750, 0x00588804); + set_func_start(0x00588810, 0x00588810); + set_func_end(0x00588810, 0x005888B0); + set_func_start(0x005888B0, 0x005888B0); + set_func_end(0x005888B0, 0x005888D6); + set_func_start(0x005888E0, 0x005888E0); + set_func_end(0x005888E0, 0x0058891A); + set_func_start(0x00588920, 0x00588920); + set_func_end(0x00588920, 0x005889CD); + set_func_start(0x005889D0, 0x005889D0); + set_func_end(0x005889D0, 0x00588C00); + set_func_start(0x00588C00, 0x00588C00); + set_func_end(0x00588C00, 0x00588CBF); + set_func_start(0x00588CC0, 0x00588CC0); + set_func_end(0x00588CC0, 0x00588D59); + set_func_start(0x00588D60, 0x00588D60); + set_func_end(0x00588D60, 0x00588DC7); + set_func_start(0x00588DD0, 0x00588DD0); + set_func_end(0x00588DD0, 0x00588E52); + set_func_start(0x00588F00, 0x00588F00); + set_func_end(0x00588F00, 0x00588F89); + set_func_start(0x00589520, 0x00589520); + set_func_end(0x00589520, 0x00589584); + set_func_start(0x00589590, 0x00589590); + set_func_end(0x00589590, 0x005895F4); + set_func_start(0x00589600, 0x00589600); + set_func_end(0x00589600, 0x005896AC); + set_func_start(0x00589B50, 0x00589B50); + set_func_end(0x00589B50, 0x00589B87); + set_func_start(0x00589B90, 0x00589B90); + set_func_end(0x00589B90, 0x00589BAB); + set_func_start(0x00589C40, 0x00589C40); + set_func_end(0x00589C40, 0x00589C8E); + set_func_start(0x00589C90, 0x00589C90); + set_func_end(0x00589C90, 0x00589D67); + set_func_start(0x00589D70, 0x00589D70); + set_func_end(0x00589D70, 0x00589DBC); + set_func_start(0x0058A110, 0x0058A110); + set_func_end(0x0058A110, 0x0058A148); + set_func_start(0x0058A150, 0x0058A150); + set_func_end(0x0058A150, 0x0058A192); + set_func_start(0x0058A400, 0x0058A400); + set_func_end(0x0058A400, 0x0058A421); + set_func_start(0x0058A480, 0x0058A480); + set_func_end(0x0058A480, 0x0058A515); + set_func_start(0x0058A900, 0x0058A900); + set_func_end(0x0058A900, 0x0058A91B); + set_func_start(0x0058A920, 0x0058A920); + set_func_end(0x0058A920, 0x0058A954); + set_func_start(0x0058A960, 0x0058A960); + set_func_end(0x0058A960, 0x0058A994); + set_func_start(0x0058A9A0, 0x0058A9A0); + set_func_end(0x0058A9A0, 0x0058A9D4); + set_func_start(0x0058A9E0, 0x0058A9E0); + set_func_end(0x0058A9E0, 0x0058AA35); + set_func_start(0x0058AA40, 0x0058AA40); + set_func_end(0x0058AA40, 0x0058AA60); + set_func_start(0x0058AB50, 0x0058AB50); + set_func_end(0x0058AB50, 0x0058AB9C); + set_func_start(0x0058B3A0, 0x0058B3A0); + set_func_end(0x0058B3A0, 0x0058B487); + set_func_start(0x0058B490, 0x0058B490); + set_func_end(0x0058B490, 0x0058B587); + set_func_start(0x0058B590, 0x0058B590); + set_func_end(0x0058B590, 0x0058B5F7); + set_func_start(0x0058B600, 0x0058B600); + set_func_end(0x0058B600, 0x0058B664); + set_func_start(0x0058B670, 0x0058B670); + set_func_end(0x0058B670, 0x0058B6D4); + set_func_start(0x0058BD10, 0x0058BD10); + set_func_end(0x0058BD10, 0x0058BD2B); + set_func_start(0x0058BD30, 0x0058BD30); + set_func_end(0x0058BD30, 0x0058BD4B); + set_func_start(0x0058BD50, 0x0058BD50); + set_func_end(0x0058BD50, 0x0058BD6B); + set_func_start(0x0058BD70, 0x0058BD70); + set_func_end(0x0058BD70, 0x0058BD8B); + set_func_start(0x0058BD90, 0x0058BD90); + set_func_end(0x0058BD90, 0x0058BDAB); + set_func_start(0x0058BDB0, 0x0058BDB0); + set_func_end(0x0058BDB0, 0x0058BDCB); + set_func_start(0x0058BDD0, 0x0058BDD0); + set_func_end(0x0058BDD0, 0x0058BDF2); + set_func_start(0x0058BE00, 0x0058BE00); + set_func_end(0x0058BE00, 0x0058BE22); + set_func_start(0x0058BE30, 0x0058BE30); + set_func_end(0x0058BE30, 0x0058BEC4); + set_func_start(0x0058BED0, 0x0058BED0); + set_func_end(0x0058BED0, 0x0058BF63); + set_func_start(0x0058BF70, 0x0058BF70); + set_func_end(0x0058BF70, 0x0058C003); + set_func_start(0x0058C010, 0x0058C010); + set_func_end(0x0058C010, 0x0058C0A3); + set_func_start(0x0058C0B0, 0x0058C0B0); + set_func_end(0x0058C0B0, 0x0058C0D2); + set_func_start(0x0058C0E0, 0x0058C0E0); + set_func_end(0x0058C0E0, 0x0058C102); + set_func_start(0x0058C110, 0x0058C110); + set_func_end(0x0058C110, 0x0058C135); + set_func_start(0x0058C140, 0x0058C140); + set_func_end(0x0058C140, 0x0058C15C); + set_func_start(0x0058C160, 0x0058C160); + set_func_end(0x0058C160, 0x0058C182); + set_func_start(0x0058C190, 0x0058C190); + set_func_end(0x0058C190, 0x0058C1E1); + set_func_start(0x0058C1F0, 0x0058C1F0); + set_func_end(0x0058C1F0, 0x0058C241); + set_func_start(0x0058C250, 0x0058C250); + set_func_end(0x0058C250, 0x0058C2A1); + set_func_start(0x0058C2B0, 0x0058C2B0); + set_func_end(0x0058C2B0, 0x0058C39C); + set_func_start(0x0058C3A0, 0x0058C3A0); + set_func_end(0x0058C3A0, 0x0058C3B0); + set_func_start(0x0058C3B0, 0x0058C3B0); + set_func_end(0x0058C3B0, 0x0058C3D2); + set_func_start(0x0058C3E0, 0x0058C3E0); + set_func_end(0x0058C3E0, 0x0058C426); + set_func_start(0x0058C430, 0x0058C430); + set_func_end(0x0058C430, 0x0058C46D); + set_func_start(0x0058C470, 0x0058C470); + set_func_end(0x0058C470, 0x0058C492); + set_func_start(0x0058C4A0, 0x0058C4A0); + set_func_end(0x0058C4A0, 0x0058C4C2); + set_func_start(0x0058C4D0, 0x0058C4D0); + set_func_end(0x0058C4D0, 0x0058C50D); + set_func_start(0x0058C510, 0x0058C510); + set_func_end(0x0058C510, 0x0058C54D); + set_func_start(0x0058C910, 0x0058C910); + set_func_end(0x0058C910, 0x0058C986); + set_func_start(0x0058C990, 0x0058C990); + set_func_end(0x0058C990, 0x0058CA67); + set_func_start(0x0058D350, 0x0058D350); + set_func_end(0x0058D350, 0x0058D365); + set_func_start(0x0058D370, 0x0058D370); + set_func_end(0x0058D370, 0x0058D41A); + set_func_start(0x0058D420, 0x0058D420); + set_func_end(0x0058D420, 0x0058D4CA); + set_func_start(0x0058D4D0, 0x0058D4D0); + set_func_end(0x0058D4D0, 0x0058D534); + set_func_start(0x0058D540, 0x0058D540); + set_func_end(0x0058D540, 0x0058D5A4); + set_func_start(0x0058D5B0, 0x0058D5B0); + set_func_end(0x0058D5B0, 0x0058D5B8); + set_func_start(0x0058D5C0, 0x0058D5C0); + set_func_end(0x0058D5C0, 0x0058D5C8); + set_func_start(0x0058D5D0, 0x0058D5D0); + set_func_end(0x0058D5D0, 0x0058D60A); + set_func_start(0x0058D610, 0x0058D610); + set_func_end(0x0058D610, 0x0058D618); + set_func_start(0x0058D620, 0x0058D620); + set_func_end(0x0058D620, 0x0058D670); + set_func_start(0x0058D670, 0x0058D670); + set_func_end(0x0058D670, 0x0058D80A); + set_func_start(0x0058D810, 0x0058D810); + set_func_end(0x0058D810, 0x0058D971); + set_func_start(0x0058D980, 0x0058D980); + set_func_end(0x0058D980, 0x0058DAAC); + set_func_start(0x0058DAB0, 0x0058DAB0); + set_func_end(0x0058DAB0, 0x0058DB2A); + set_func_start(0x0058DB30, 0x0058DB30); + set_func_end(0x0058DB30, 0x0058DBBB); + set_func_start(0x0058DBC0, 0x0058DBC0); + set_func_end(0x0058DBC0, 0x0058DD2A); + set_func_start(0x00590710, 0x00590710); + set_func_end(0x00590710, 0x00590744); + set_func_start(0x00590D10, 0x00590D10); + set_func_end(0x00590D10, 0x00590D52); + set_func_start(0x00590D60, 0x00590D60); + set_func_end(0x00590D60, 0x00590DFE); + set_func_start(0x00590E00, 0x00590E00); + set_func_end(0x00590E00, 0x00590EB4); + set_func_start(0x00590EC0, 0x00590EC0); + set_func_end(0x00590EC0, 0x00590EC8); + set_func_start(0x00590ED0, 0x00590ED0); + set_func_end(0x00590ED0, 0x00590F3E); + set_func_start(0x00590F40, 0x00590F40); + set_func_end(0x00590F40, 0x00590FDF); + set_func_start(0x00590FE0, 0x00590FE0); + set_func_end(0x00590FE0, 0x00591080); + set_func_start(0x00591080, 0x00591080); + set_func_end(0x00591080, 0x00591120); + set_func_start(0x00591120, 0x00591120); + set_func_end(0x00591120, 0x005911C0); + set_func_start(0x005911C0, 0x005911C0); + set_func_end(0x005911C0, 0x00591249); + set_func_start(0x005915E0, 0x005915E0); + set_func_end(0x005915E0, 0x00591677); + set_func_start(0x00591680, 0x00591680); + set_func_end(0x00591680, 0x005916E4); + set_func_start(0x00591E60, 0x00591E60); + set_func_end(0x00591E60, 0x00591EC4); + set_func_start(0x00593D10, 0x00593D10); + set_func_end(0x00593D10, 0x00593D44); + set_func_start(0x00593D50, 0x00593D50); + set_func_end(0x00593D50, 0x00593D8A); + set_func_start(0x00593D90, 0x00593D90); + set_func_end(0x00593D90, 0x00593DAB); + set_func_start(0x00593E10, 0x00593E10); + set_func_end(0x00593E10, 0x00593EA4); + set_func_start(0x00593EB0, 0x00593EB0); + set_func_end(0x00593EB0, 0x00593F67); + set_func_start(0x00594370, 0x00594370); + set_func_end(0x00594370, 0x00594391); + set_func_start(0x005943A0, 0x005943A0); + set_func_end(0x005943A0, 0x00594424); + set_func_start(0x00594430, 0x00594430); + set_func_end(0x00594430, 0x0059447B); + set_func_start(0x00594480, 0x00594480); + set_func_end(0x00594480, 0x0059452C); + set_func_start(0x00594530, 0x00594530); + set_func_end(0x00594530, 0x005945AE); + set_func_start(0x005945B0, 0x005945B0); + set_func_end(0x005945B0, 0x0059464F); + set_func_start(0x00594650, 0x00594650); + set_func_end(0x00594650, 0x005946BB); + set_func_start(0x00595040, 0x00595040); + set_func_end(0x00595040, 0x00595084); + set_func_start(0x00595090, 0x00595090); + set_func_end(0x00595090, 0x00595148); + set_func_start(0x00595150, 0x00595150); + set_func_end(0x00595150, 0x005952E7); + set_func_start(0x005952F0, 0x005952F0); + set_func_end(0x005952F0, 0x00595470); + set_func_start(0x00595470, 0x00595470); + set_func_end(0x00595470, 0x005955D9); + set_func_start(0x005955E0, 0x005955E0); + set_func_end(0x005955E0, 0x005957CC); + set_func_start(0x005957D0, 0x005957D0); + set_func_end(0x005957D0, 0x005959C5); + set_func_start(0x005959D0, 0x005959D0); + set_func_end(0x005959D0, 0x00595B59); + set_func_start(0x00595B60, 0x00595B60); + set_func_end(0x00595B60, 0x00595C3B); + set_func_start(0x00595C40, 0x00595C40); + set_func_end(0x00595C40, 0x00595E60); + set_func_start(0x00595E60, 0x00595E60); + set_func_end(0x00595E60, 0x00595EB6); + set_func_start(0x00595EC0, 0x00595EC0); + set_func_end(0x00595EC0, 0x0059600E); + set_func_start(0x00596010, 0x00596010); + set_func_end(0x00596010, 0x00596143); + set_func_start(0x00596150, 0x00596150); + set_func_end(0x00596150, 0x005961E4); + set_func_start(0x005961F0, 0x005961F0); + set_func_end(0x005961F0, 0x00596282); + set_func_start(0x00596290, 0x00596290); + set_func_end(0x00596290, 0x005963BF); + set_func_start(0x00598DD0, 0x00598DD0); + set_func_end(0x00598DD0, 0x00598E04); + set_func_start(0x00598F30, 0x00598F30); + set_func_end(0x00598F30, 0x00598F38); + set_func_start(0x00599F00, 0x00599F00); + set_func_end(0x00599F00, 0x00599F3F); + set_func_start(0x00599F40, 0x00599F40); + set_func_end(0x00599F40, 0x00599F74); + set_func_start(0x0059A130, 0x0059A130); + set_func_end(0x0059A130, 0x0059A1B2); + set_func_start(0x0059A1C0, 0x0059A1C0); + set_func_end(0x0059A1C0, 0x0059A1E9); + set_func_start(0x0059A1F0, 0x0059A1F0); + set_func_end(0x0059A1F0, 0x0059A275); + set_func_start(0x0059AB90, 0x0059AB90); + set_func_end(0x0059AB90, 0x0059AD3B); + set_func_start(0x0059AD40, 0x0059AD40); + set_func_end(0x0059AD40, 0x0059AE6B); + set_func_start(0x0059AE70, 0x0059AE70); + set_func_end(0x0059AE70, 0x0059AF02); + set_func_start(0x0059AF10, 0x0059AF10); + set_func_end(0x0059AF10, 0x0059B037); + set_func_start(0x0059B040, 0x0059B040); + set_func_end(0x0059B040, 0x0059B0AC); + set_func_start(0x0059B0B0, 0x0059B0B0); + set_func_end(0x0059B0B0, 0x0059B0F4); + set_func_start(0x0059BC90, 0x0059BC90); + set_func_end(0x0059BC90, 0x0059BCF0); + set_func_start(0x0059BCF0, 0x0059BCF0); + set_func_end(0x0059BCF0, 0x0059C196); + set_func_start(0x0059C1A0, 0x0059C1A0); + set_func_end(0x0059C1A0, 0x0059C2CF); + set_func_start(0x0059C2D0, 0x0059C2D0); + set_func_end(0x0059C2D0, 0x0059C414); + set_func_start(0x0059C420, 0x0059C420); + set_func_end(0x0059C420, 0x0059C479); + set_func_start(0x0059C480, 0x0059C480); + set_func_end(0x0059C480, 0x0059C588); + set_func_start(0x0059C590, 0x0059C590); + set_func_end(0x0059C590, 0x0059C737); + set_func_start(0x0059C740, 0x0059C740); + set_func_end(0x0059C740, 0x0059C828); + set_func_start(0x0059C830, 0x0059C830); + set_func_end(0x0059C830, 0x0059C91A); + set_func_start(0x0059C920, 0x0059C920); + set_func_end(0x0059C920, 0x0059C9E4); + set_func_start(0x0059C9F0, 0x0059C9F0); + set_func_end(0x0059C9F0, 0x0059CAA1); + set_func_start(0x0059CAB0, 0x0059CAB0); + set_func_end(0x0059CAB0, 0x0059CB68); + set_func_start(0x0059D270, 0x0059D270); + set_func_end(0x0059D270, 0x0059D405); + set_func_start(0x0059D410, 0x0059D410); + set_func_end(0x0059D410, 0x0059D4F0); + set_func_start(0x0059D4F0, 0x0059D4F0); + set_func_end(0x0059D4F0, 0x0059D533); + set_func_start(0x0059D540, 0x0059D540); + set_func_end(0x0059D540, 0x0059D5D1); + set_func_start(0x0059D5E0, 0x0059D5E0); + set_func_end(0x0059D5E0, 0x0059DA35); + set_func_start(0x0059DA40, 0x0059DA40); + set_func_end(0x0059DA40, 0x0059DCFE); + set_func_start(0x0059DD00, 0x0059DD00); + set_func_end(0x0059DD00, 0x0059DDEA); + set_func_start(0x0059DDF0, 0x0059DDF0); + set_func_end(0x0059DDF0, 0x0059DF54); + set_func_start(0x0059F750, 0x0059F750); + set_func_end(0x0059F750, 0x0059F758); + set_func_start(0x0059F760, 0x0059F760); + set_func_end(0x0059F760, 0x0059F98D); + set_func_start(0x0059F990, 0x0059F990); + set_func_end(0x0059F990, 0x0059FD5B); + set_func_start(0x0059FD60, 0x0059FD60); + set_func_end(0x0059FD60, 0x0059FF23); + set_func_start(0x005A0F60, 0x005A0F60); + set_func_end(0x005A0F60, 0x005A0F94); + set_func_start(0x005A0FA0, 0x005A0FA0); + set_func_end(0x005A0FA0, 0x005A0FD4); + set_func_start(0x005A0FE0, 0x005A0FE0); + set_func_end(0x005A0FE0, 0x005A1054); + set_func_start(0x005A1060, 0x005A1060); + set_func_end(0x005A1060, 0x005A108D); + set_func_start(0x005A1090, 0x005A1090); + set_func_end(0x005A1090, 0x005A10CF); + set_func_start(0x005A1330, 0x005A1330); + set_func_end(0x005A1330, 0x005A14C8); + set_func_start(0x005A14D0, 0x005A14D0); + set_func_end(0x005A14D0, 0x005A152A); + set_func_start(0x005A1530, 0x005A1530); + set_func_end(0x005A1530, 0x005A169B); + set_func_start(0x005A16A0, 0x005A16A0); + set_func_end(0x005A16A0, 0x005A17E9); + set_func_start(0x005A1950, 0x005A1950); + set_func_end(0x005A1950, 0x005A19B5); + set_func_start(0x005A19C0, 0x005A19C0); + set_func_end(0x005A19C0, 0x005A1AB5); + set_func_start(0x005A1AC0, 0x005A1AC0); + set_func_end(0x005A1AC0, 0x005A1BC2); + set_func_start(0x005A1BD0, 0x005A1BD0); + set_func_end(0x005A1BD0, 0x005A1C93); + set_func_start(0x005A1CA0, 0x005A1CA0); + set_func_end(0x005A1CA0, 0x005A1EC5); + set_func_start(0x005A1F70, 0x005A1F70); + set_func_end(0x005A1F70, 0x005A1FA4); + set_func_start(0x005A1FB0, 0x005A1FB0); + set_func_end(0x005A1FB0, 0x005A20E3); + set_func_start(0x005A2200, 0x005A2200); + set_func_end(0x005A2200, 0x005A2292); + set_func_start(0x005A24F0, 0x005A24F0); + set_func_end(0x005A24F0, 0x005A252F); + set_func_start(0x005A2530, 0x005A2530); + set_func_end(0x005A2530, 0x005A25FB); + set_func_start(0x005A2600, 0x005A2600); + set_func_end(0x005A2600, 0x005A26CF); + set_func_start(0x005A26D0, 0x005A26D0); + set_func_end(0x005A26D0, 0x005A2820); + set_func_start(0x005A2820, 0x005A2820); + set_func_end(0x005A2820, 0x005A287D); + set_func_start(0x005A2930, 0x005A2930); + set_func_end(0x005A2930, 0x005A29F4); + set_func_start(0x005A2A00, 0x005A2A00); + set_func_end(0x005A2A00, 0x005A2A3A); + set_func_start(0x005A2A40, 0x005A2A40); + set_func_end(0x005A2A40, 0x005A2A6D); + set_func_start(0x005A2A70, 0x005A2A70); + set_func_end(0x005A2A70, 0x005A2A9D); + set_func_start(0x005A2FC0, 0x005A2FC0); + set_func_end(0x005A2FC0, 0x005A325C); + set_func_start(0x005A3260, 0x005A3260); + set_func_end(0x005A3260, 0x005A3364); + set_func_start(0x005A3370, 0x005A3370); + set_func_end(0x005A3370, 0x005A340C); + set_func_start(0x005A3410, 0x005A3410); + set_func_end(0x005A3410, 0x005A348C); + set_func_start(0x005A3490, 0x005A3490); + set_func_end(0x005A3490, 0x005A35DD); + set_func_start(0x005A35E0, 0x005A35E0); + set_func_end(0x005A35E0, 0x005A35FD); + set_func_start(0x005A3860, 0x005A3860); + set_func_end(0x005A3860, 0x005A3CE4); + set_func_start(0x005A3CF0, 0x005A3CF0); + set_func_end(0x005A3CF0, 0x005A3D54); + set_func_start(0x005A4330, 0x005A4330); + set_func_end(0x005A4330, 0x005A43B3); + set_func_start(0x005A43C0, 0x005A43C0); + set_func_end(0x005A43C0, 0x005A440B); + set_func_start(0x005A4410, 0x005A4410); + set_func_end(0x005A4410, 0x005A443F); + set_func_start(0x005A4440, 0x005A4440); + set_func_end(0x005A4440, 0x005A4493); + set_func_start(0x005A44A0, 0x005A44A0); + set_func_end(0x005A44A0, 0x005A44C2); + set_func_start(0x005A44D0, 0x005A44D0); + set_func_end(0x005A44D0, 0x005A44FC); + set_func_start(0x005A4500, 0x005A4500); + set_func_end(0x005A4500, 0x005A4520); + set_func_start(0x005A4520, 0x005A4520); + set_func_end(0x005A4520, 0x005A45AC); + set_func_start(0x005A45B0, 0x005A45B0); + set_func_end(0x005A45B0, 0x005A45D2); + set_func_start(0x005A45E0, 0x005A45E0); + set_func_end(0x005A45E0, 0x005A469F); + set_func_start(0x005A4D30, 0x005A4D30); + set_func_end(0x005A4D30, 0x005A4E46); + set_func_start(0x005A4E50, 0x005A4E50); + set_func_end(0x005A4E50, 0x005A500D); + set_func_start(0x005A5CE0, 0x005A5CE0); + set_func_end(0x005A5CE0, 0x005A5D2F); + set_func_start(0x005A5D30, 0x005A5D30); + set_func_end(0x005A5D30, 0x005A5E14); + set_func_start(0x005A5E20, 0x005A5E20); + set_func_end(0x005A5E20, 0x005A5EE2); + set_func_start(0x005A5EF0, 0x005A5EF0); + set_func_end(0x005A5EF0, 0x005A5F51); + set_func_start(0x005A5F60, 0x005A5F60); + set_func_end(0x005A5F60, 0x005A5FF8); + set_func_start(0x005A6000, 0x005A6000); + set_func_end(0x005A6000, 0x005A61FA); + set_func_start(0x005A6200, 0x005A6200); + set_func_end(0x005A6200, 0x005A63EA); + set_func_start(0x005A63F0, 0x005A63F0); + set_func_end(0x005A63F0, 0x005A65F2); + set_func_start(0x005A6600, 0x005A6600); + set_func_end(0x005A6600, 0x005A67EB); + set_func_start(0x005A67F0, 0x005A67F0); + set_func_end(0x005A67F0, 0x005A69F9); + set_func_start(0x005A6A00, 0x005A6A00); + set_func_end(0x005A6A00, 0x005A6B12); + set_func_start(0x005A6B20, 0x005A6B20); + set_func_end(0x005A6B20, 0x005A6B9C); + set_func_start(0x005A6BA0, 0x005A6BA0); + set_func_end(0x005A6BA0, 0x005A6D50); + set_func_start(0x005A6D50, 0x005A6D50); + set_func_end(0x005A6D50, 0x005A6DB9); + set_func_start(0x005A6DC0, 0x005A6DC0); + set_func_end(0x005A6DC0, 0x005A70ED); + set_func_start(0x005A7110, 0x005A7110); + set_func_end(0x005A7110, 0x005A7179); + set_func_start(0x005A7180, 0x005A7180); + set_func_end(0x005A7180, 0x005A7243); + set_func_start(0x005A7D10, 0x005A7D10); + set_func_end(0x005A7D10, 0x005A7D87); + set_func_start(0x005A7D90, 0x005A7D90); + set_func_end(0x005A7D90, 0x005A7E60); + set_func_start(0x005A7E60, 0x005A7E60); + set_func_end(0x005A7E60, 0x005A7F15); + set_func_start(0x005A7F20, 0x005A7F20); + set_func_end(0x005A7F20, 0x005A7F54); + set_func_start(0x005A7F60, 0x005A7F60); + set_func_end(0x005A7F60, 0x005A7FCB); + set_func_start(0x005A7FD0, 0x005A7FD0); + set_func_end(0x005A7FD0, 0x005A8011); + set_func_start(0x005A8220, 0x005A8220); + set_func_end(0x005A8220, 0x005A8290); + set_func_start(0x005A8290, 0x005A8290); + set_func_end(0x005A8290, 0x005A832F); + set_func_start(0x005A8330, 0x005A8330); + set_func_end(0x005A8330, 0x005A83B1); + set_func_start(0x005A8720, 0x005A8720); + set_func_end(0x005A8720, 0x005A8790); + set_func_start(0x005A8790, 0x005A8790); + set_func_end(0x005A8790, 0x005A8811); + set_func_start(0x005A8820, 0x005A8820); + set_func_end(0x005A8820, 0x005A88A9); + set_func_start(0x005A8BC0, 0x005A8BC0); + set_func_end(0x005A8BC0, 0x005A8C30); + set_func_start(0x005A8F10, 0x005A8F10); + set_func_end(0x005A8F10, 0x005A91BB); + set_func_start(0x005A91C0, 0x005A91C0); + set_func_end(0x005A91C0, 0x005A9288); + set_func_start(0x005A9290, 0x005A9290); + set_func_end(0x005A9290, 0x005A9357); + set_func_start(0x005A9B30, 0x005A9B30); + set_func_end(0x005A9B30, 0x005A9B99); + set_func_start(0x005A9BA0, 0x005A9BA0); + set_func_end(0x005A9BA0, 0x005A9C10); + set_func_start(0x005A9C10, 0x005A9C10); + set_func_end(0x005A9C10, 0x005A9C80); + set_func_start(0x005A9C80, 0x005A9C80); + set_func_end(0x005A9C80, 0x005A9CF0); + set_func_start(0x005A9CF0, 0x005A9CF0); + set_func_end(0x005A9CF0, 0x005A9D4D); + set_func_start(0x005A9D50, 0x005A9D50); + set_func_end(0x005A9D50, 0x005A9E17); + set_func_start(0x005AAD40, 0x005AAD40); + set_func_end(0x005AAD40, 0x005AADB0); + set_func_start(0x005AB840, 0x005AB840); + set_func_end(0x005AB840, 0x005AB896); + set_func_start(0x005AB8A0, 0x005AB8A0); + set_func_end(0x005AB8A0, 0x005AB9CD); + set_func_start(0x005AC000, 0x005AC000); + set_func_end(0x005AC000, 0x005AC084); + set_func_start(0x005AC090, 0x005AC090); + set_func_end(0x005AC090, 0x005AC0D7); + set_func_start(0x005AC320, 0x005AC320); + set_func_end(0x005AC320, 0x005AC385); + set_func_start(0x005AC390, 0x005AC390); + set_func_end(0x005AC390, 0x005AC477); + set_func_start(0x005AC480, 0x005AC480); + set_func_end(0x005AC480, 0x005AC4C1); + set_func_start(0x005AC750, 0x005AC750); + set_func_end(0x005AC750, 0x005AC7C3); + set_func_start(0x005AC7D0, 0x005AC7D0); + set_func_end(0x005AC7D0, 0x005AC865); + set_func_start(0x005AC870, 0x005AC870); + set_func_end(0x005AC870, 0x005AC8E5); + set_func_start(0x005AD020, 0x005AD020); + set_func_end(0x005AD020, 0x005AD064); + set_func_start(0x005AD070, 0x005AD070); + set_func_end(0x005AD070, 0x005AD078); + set_func_start(0x005AD080, 0x005AD080); + set_func_end(0x005AD080, 0x005AD0EE); + set_func_start(0x005AD0F0, 0x005AD0F0); + set_func_end(0x005AD0F0, 0x005AD13F); + set_func_start(0x005AD140, 0x005AD140); + set_func_end(0x005AD140, 0x005AD148); + set_func_start(0x005AD150, 0x005AD150); + set_func_end(0x005AD150, 0x005AD1A3); + set_func_start(0x005AD1B0, 0x005AD1B0); + set_func_end(0x005AD1B0, 0x005AD1B8); + set_func_start(0x005AD1C0, 0x005AD1C0); + set_func_end(0x005AD1C0, 0x005AD228); + set_func_start(0x005AD230, 0x005AD230); + set_func_end(0x005AD230, 0x005AD238); + set_func_start(0x005AD770, 0x005AD770); + set_func_end(0x005AD770, 0x005AD7B2); + set_func_start(0x005AD7C0, 0x005AD7C0); + set_func_end(0x005AD7C0, 0x005AD812); + set_func_start(0x005AD820, 0x005AD820); + set_func_end(0x005AD820, 0x005AD828); + set_func_start(0x005AD830, 0x005AD830); + set_func_end(0x005AD830, 0x005AD872); + set_func_start(0x005AD880, 0x005AD880); + set_func_end(0x005AD880, 0x005AD8E3); + set_func_start(0x005AE800, 0x005AE800); + set_func_end(0x005AE800, 0x005AE85A); + set_func_start(0x005AE860, 0x005AE860); + set_func_end(0x005AE860, 0x005AEF83); + set_func_start(0x005AEF90, 0x005AEF90); + set_func_end(0x005AEF90, 0x005AF0C7); + set_func_start(0x005AF0D0, 0x005AF0D0); + set_func_end(0x005AF0D0, 0x005AF116); + set_func_start(0x005AF120, 0x005AF120); + set_func_end(0x005AF120, 0x005AF1CD); + set_func_start(0x005AF1D0, 0x005AF1D0); + set_func_end(0x005AF1D0, 0x005AF242); + set_func_start(0x005AF250, 0x005AF250); + set_func_end(0x005AF250, 0x005AF2BB); + set_func_start(0x005AF2C0, 0x005AF2C0); + set_func_end(0x005AF2C0, 0x005AF317); + set_func_start(0x005AF320, 0x005AF320); + set_func_end(0x005AF320, 0x005AF380); + set_func_start(0x005AF380, 0x005AF380); + set_func_end(0x005AF380, 0x005AF3F1); + set_func_start(0x005AF910, 0x005AF910); + set_func_end(0x005AF910, 0x005AF9BA); + set_func_start(0x005AF9C0, 0x005AF9C0); + set_func_end(0x005AF9C0, 0x005AFBAF); + set_func_start(0x005AFD10, 0x005AFD10); + set_func_end(0x005AFD10, 0x005AFD32); + set_func_start(0x005B0680, 0x005B0680); + set_func_end(0x005B0680, 0x005B093C); + set_func_start(0x005B0940, 0x005B0940); + set_func_end(0x005B0940, 0x005B09AD); + set_func_start(0x005B09B0, 0x005B09B0); + set_func_end(0x005B09B0, 0x005B0A1D); + set_func_start(0x005B0A20, 0x005B0A20); + set_func_end(0x005B0A20, 0x005B0A8D); + set_func_start(0x005B0A90, 0x005B0A90); + set_func_end(0x005B0A90, 0x005B0CD2); + set_func_start(0x005B0CE0, 0x005B0CE0); + set_func_end(0x005B0CE0, 0x005B0CFC); + set_func_start(0x005B1390, 0x005B1390); + set_func_end(0x005B1390, 0x005B14A3); + set_func_start(0x005B14B0, 0x005B14B0); + set_func_end(0x005B14B0, 0x005B15BD); + set_func_start(0x005B15C0, 0x005B15C0); + set_func_end(0x005B15C0, 0x005B1689); + set_func_start(0x005B1690, 0x005B1690); + set_func_end(0x005B1690, 0x005B1713); + set_func_start(0x005B1720, 0x005B1720); + set_func_end(0x005B1720, 0x005B18D7); + set_func_start(0x005B18E0, 0x005B18E0); + set_func_end(0x005B18E0, 0x005B1969); + set_func_start(0x005B1970, 0x005B1970); + set_func_end(0x005B1970, 0x005B19FA); + set_func_start(0x005B1A00, 0x005B1A00); + set_func_end(0x005B1A00, 0x005B1AA7); + set_func_start(0x005B1AB0, 0x005B1AB0); + set_func_end(0x005B1AB0, 0x005B1BAC); + set_func_start(0x005B1BB0, 0x005B1BB0); + set_func_end(0x005B1BB0, 0x005B1C18); + set_func_start(0x005B1C20, 0x005B1C20); + set_func_end(0x005B1C20, 0x005B1C8E); + set_func_start(0x005B1C90, 0x005B1C90); + set_func_end(0x005B1C90, 0x005B1CE7); + set_func_start(0x005B1CF0, 0x005B1CF0); + set_func_end(0x005B1CF0, 0x005B1D5E); + set_func_start(0x005B1D60, 0x005B1D60); + set_func_end(0x005B1D60, 0x005B1DB7); + set_func_start(0x005B1DC0, 0x005B1DC0); + set_func_end(0x005B1DC0, 0x005B1E3C); + set_func_start(0x005B1E40, 0x005B1E40); + set_func_end(0x005B1E40, 0x005B1EBC); + set_func_start(0x005B1EC0, 0x005B1EC0); + set_func_end(0x005B1EC0, 0x005B1EED); + set_func_start(0x005B2040, 0x005B2040); + set_func_end(0x005B2040, 0x005B208B); + set_func_start(0x005B2090, 0x005B2090); + set_func_end(0x005B2090, 0x005B2113); + set_func_start(0x005B2120, 0x005B2120); + set_func_end(0x005B2120, 0x005B2166); + set_func_start(0x005B38E0, 0x005B38E0); + set_func_end(0x005B38E0, 0x005B3B2C); + set_func_start(0x005B3B30, 0x005B3B30); + set_func_end(0x005B3B30, 0x005B3C9B); + set_func_start(0x005B3CA0, 0x005B3CA0); + set_func_end(0x005B3CA0, 0x005B3DBC); + set_func_start(0x005B3DC0, 0x005B3DC0); + set_func_end(0x005B3DC0, 0x005B3EE1); + set_func_start(0x005B3EF0, 0x005B3EF0); + set_func_end(0x005B3EF0, 0x005B3FB2); + set_func_start(0x005B3FC0, 0x005B3FC0); + set_func_end(0x005B3FC0, 0x005B475C); + set_func_start(0x005B4760, 0x005B4760); + set_func_end(0x005B4760, 0x005B4768); + set_func_start(0x005B4770, 0x005B4770); + set_func_end(0x005B4770, 0x005B486E); + set_func_start(0x005B4870, 0x005B4870); + set_func_end(0x005B4870, 0x005B48CE); + set_func_start(0x005B48D0, 0x005B48D0); + set_func_end(0x005B48D0, 0x005B490A); + set_func_start(0x005B5290, 0x005B5290); + set_func_end(0x005B5290, 0x005B530A); + set_func_start(0x005B5530, 0x005B5530); + set_func_end(0x005B5530, 0x005B5613); + set_func_start(0x005B5620, 0x005B5620); + set_func_end(0x005B5620, 0x005B58AD); + set_func_start(0x005B58B0, 0x005B58B0); + set_func_end(0x005B58B0, 0x005B5E63); + set_func_start(0x005B5E70, 0x005B5E70); + set_func_end(0x005B5E70, 0x005B6101); + set_func_start(0x005B6110, 0x005B6110); + set_func_end(0x005B6110, 0x005B63E8); + set_func_start(0x005B71E0, 0x005B71E0); + set_func_end(0x005B71E0, 0x005B7202); + set_func_start(0x005B7260, 0x005B7260); + set_func_end(0x005B7260, 0x005B7408); + set_func_start(0x005B7410, 0x005B7410); + set_func_end(0x005B7410, 0x005B7597); + set_func_start(0x005B75A0, 0x005B75A0); + set_func_end(0x005B75A0, 0x005B765E); + set_func_start(0x005B7660, 0x005B7660); + set_func_end(0x005B7660, 0x005B7739); + set_func_start(0x005B7740, 0x005B7740); + set_func_end(0x005B7740, 0x005B7813); + set_func_start(0x005B80E0, 0x005B80E0); + set_func_end(0x005B80E0, 0x005B8120); + set_func_start(0x005B8120, 0x005B8120); + set_func_end(0x005B8120, 0x005B8160); + set_func_start(0x005B8160, 0x005B8160); + set_func_end(0x005B8160, 0x005B81E1); + set_func_start(0x005B81F0, 0x005B81F0); + set_func_end(0x005B81F0, 0x005B829E); + set_func_start(0x005B82A0, 0x005B82A0); + set_func_end(0x005B82A0, 0x005B8347); + set_func_start(0x005B8350, 0x005B8350); + set_func_end(0x005B8350, 0x005B840C); + set_func_start(0x005B8410, 0x005B8410); + set_func_end(0x005B8410, 0x005B8499); + set_func_start(0x005B84A0, 0x005B84A0); + set_func_end(0x005B84A0, 0x005B84C1); + set_func_start(0x005B84D0, 0x005B84D0); + set_func_end(0x005B84D0, 0x005B850F); + set_func_start(0x005B8510, 0x005B8510); + set_func_end(0x005B8510, 0x005B8536); + set_func_start(0x005B8540, 0x005B8540); + set_func_end(0x005B8540, 0x005B8570); + set_func_start(0x005B8570, 0x005B8570); + set_func_end(0x005B8570, 0x005B8685); + set_func_start(0x005B8690, 0x005B8690); + set_func_end(0x005B8690, 0x005B8713); + set_func_start(0x005B8730, 0x005B8730); + set_func_end(0x005B8730, 0x005B87CC); + set_func_start(0x005B87D0, 0x005B87D0); + set_func_end(0x005B87D0, 0x005B8836); + set_func_start(0x005B8840, 0x005B8840); + set_func_end(0x005B8840, 0x005B88A6); + set_func_start(0x005B88B0, 0x005B88B0); + set_func_end(0x005B88B0, 0x005B88DD); + set_func_start(0x005B88E0, 0x005B88E0); + set_func_end(0x005B88E0, 0x005B8962); + set_func_start(0x005B8970, 0x005B8970); + set_func_end(0x005B8970, 0x005B89B3); + set_func_start(0x005B89C0, 0x005B89C0); + set_func_end(0x005B89C0, 0x005B8A03); + set_func_start(0x005B8A10, 0x005B8A10); + set_func_end(0x005B8A10, 0x005B8A4C); + set_func_start(0x005B8A50, 0x005B8A50); + set_func_end(0x005B8A50, 0x005B8A9D); + set_func_start(0x005B8AA0, 0x005B8AA0); + set_func_end(0x005B8AA0, 0x005B8ADF); + set_func_start(0x005B8AE0, 0x005B8AE0); + set_func_end(0x005B8AE0, 0x005B8B2C); + set_func_start(0x005B8B30, 0x005B8B30); + set_func_end(0x005B8B30, 0x005B8B92); + set_func_start(0x005B8BA0, 0x005B8BA0); + set_func_end(0x005B8BA0, 0x005B8C02); + set_func_start(0x005B8C10, 0x005B8C10); + set_func_end(0x005B8C10, 0x005B8C2E); + set_func_start(0x005B99F0, 0x005B99F0); + set_func_end(0x005B99F0, 0x005B9AB9); + set_func_start(0x005B9AC0, 0x005B9AC0); + set_func_end(0x005B9AC0, 0x005B9BEC); + set_func_start(0x005B9BF0, 0x005B9BF0); + set_func_end(0x005B9BF0, 0x005B9C94); + set_func_start(0x005B9CA0, 0x005B9CA0); + set_func_end(0x005B9CA0, 0x005B9E10); + set_func_start(0x005B9E10, 0x005B9E10); + set_func_end(0x005B9E10, 0x005B9EA2); + set_func_start(0x005B9EB0, 0x005B9EB0); + set_func_end(0x005B9EB0, 0x005B9F75); + set_func_start(0x005B9F80, 0x005B9F80); + set_func_end(0x005B9F80, 0x005B9FFD); + set_func_start(0x005BA000, 0x005BA000); + set_func_end(0x005BA000, 0x005BA217); + set_func_start(0x005BA220, 0x005BA220); + set_func_end(0x005BA220, 0x005BA41D); + set_func_start(0x005BA420, 0x005BA420); + set_func_end(0x005BA420, 0x005BA592); + set_func_start(0x005BA5A0, 0x005BA5A0); + set_func_end(0x005BA5A0, 0x005BA5A8); + set_func_start(0x005BA5B0, 0x005BA5B0); + set_func_end(0x005BA5B0, 0x005BA675); + set_func_start(0x005BA680, 0x005BA680); + set_func_end(0x005BA680, 0x005BA6FD); + set_func_start(0x005BA700, 0x005BA700); + set_func_end(0x005BA700, 0x005BA7EF); + set_func_start(0x005BA7F0, 0x005BA7F0); + set_func_end(0x005BA7F0, 0x005BA90B); + set_func_start(0x005BA910, 0x005BA910); + set_func_end(0x005BA910, 0x005BAA12); + set_func_start(0x005BAA20, 0x005BAA20); + set_func_end(0x005BAA20, 0x005BAB4F); + set_func_start(0x005BAB50, 0x005BAB50); + set_func_end(0x005BAB50, 0x005BACF9); + set_func_start(0x005BAD00, 0x005BAD00); + set_func_end(0x005BAD00, 0x005BAEA9); + set_func_start(0x005BAEB0, 0x005BAEB0); + set_func_end(0x005BAEB0, 0x005BAFB7); + set_func_start(0x005BAFC0, 0x005BAFC0); + set_func_end(0x005BAFC0, 0x005BB0BB); + set_func_start(0x005BB0C0, 0x005BB0C0); + set_func_end(0x005BB0C0, 0x005BB124); + set_func_start(0x005BB130, 0x005BB130); + set_func_end(0x005BB130, 0x005BB20F); + set_func_start(0x005BB210, 0x005BB210); + set_func_end(0x005BB210, 0x005BB278); + set_func_start(0x005BB280, 0x005BB280); + set_func_end(0x005BB280, 0x005BB2E8); + set_func_start(0x005BB2F0, 0x005BB2F0); + set_func_end(0x005BB2F0, 0x005BB375); + set_func_start(0x005BB380, 0x005BB380); + set_func_end(0x005BB380, 0x005BB405); + set_func_start(0x005BB410, 0x005BB410); + set_func_end(0x005BB410, 0x005BB492); + set_func_start(0x005BB4A0, 0x005BB4A0); + set_func_end(0x005BB4A0, 0x005BB595); + set_func_start(0x005BB5A0, 0x005BB5A0); + set_func_end(0x005BB5A0, 0x005BB649); + set_func_start(0x005BB650, 0x005BB650); + set_func_end(0x005BB650, 0x005BB745); + set_func_start(0x005BB750, 0x005BB750); + set_func_end(0x005BB750, 0x005BB7F9); + set_func_start(0x005BB800, 0x005BB800); + set_func_end(0x005BB800, 0x005BB864); + set_func_start(0x005BB870, 0x005BB870); + set_func_end(0x005BB870, 0x005BB8AC); + set_func_start(0x005BB8B0, 0x005BB8B0); + set_func_end(0x005BB8B0, 0x005BB8EC); + set_func_start(0x005BB8F0, 0x005BB8F0); + set_func_end(0x005BB8F0, 0x005BB92C); + set_func_start(0x005BB930, 0x005BB930); + set_func_end(0x005BB930, 0x005BB96C); + set_func_start(0x005BB970, 0x005BB970); + set_func_end(0x005BB970, 0x005BBAF6); + set_func_start(0x005BBB00, 0x005BBB00); + set_func_end(0x005BBB00, 0x005BBB3E); + set_func_start(0x005BCC00, 0x005BCC00); + set_func_end(0x005BCC00, 0x005BCC63); + set_func_start(0x005BCC70, 0x005BCC70); + set_func_end(0x005BCC70, 0x005BCC95); + set_func_start(0x005BCCA0, 0x005BCCA0); + set_func_end(0x005BCCA0, 0x005BCCA8); + set_func_start(0x005BCCB0, 0x005BCCB0); + set_func_end(0x005BCCB0, 0x005BCD7E); + set_func_start(0x005BCD80, 0x005BCD80); + set_func_end(0x005BCD80, 0x005BCD88); + set_func_start(0x005BCD90, 0x005BCD90); + set_func_end(0x005BCD90, 0x005BCD98); + set_func_start(0x005BCDA0, 0x005BCDA0); + set_func_end(0x005BCDA0, 0x005BCE52); + set_func_start(0x005BCE60, 0x005BCE60); + set_func_end(0x005BCE60, 0x005BCEC4); + set_func_start(0x005BCED0, 0x005BCED0); + set_func_end(0x005BCED0, 0x005BCEF5); + set_func_start(0x005BCF00, 0x005BCF00); + set_func_end(0x005BCF00, 0x005BCF24); + set_func_start(0x005BCF30, 0x005BCF30); + set_func_end(0x005BCF30, 0x005BD038); + set_func_start(0x005BD040, 0x005BD040); + set_func_end(0x005BD040, 0x005BD12B); + set_func_start(0x005BD130, 0x005BD130); + set_func_end(0x005BD130, 0x005BD21D); + set_func_start(0x005BD220, 0x005BD220); + set_func_end(0x005BD220, 0x005BD338); + set_func_start(0x005BD340, 0x005BD340); + set_func_end(0x005BD340, 0x005BD458); + set_func_start(0x005BD460, 0x005BD460); + set_func_end(0x005BD460, 0x005BD4E5); + set_func_start(0x005BD4F0, 0x005BD4F0); + set_func_end(0x005BD4F0, 0x005BD600); + set_func_start(0x005BD600, 0x005BD600); + set_func_end(0x005BD600, 0x005BD6D7); + set_func_start(0x005BD6E0, 0x005BD6E0); + set_func_end(0x005BD6E0, 0x005BD749); + set_func_start(0x005BD750, 0x005BD750); + set_func_end(0x005BD750, 0x005BD75D); + set_func_start(0x005BD760, 0x005BD760); + set_func_end(0x005BD760, 0x005BD7C9); + set_func_start(0x005BD7D0, 0x005BD7D0); + set_func_end(0x005BD7D0, 0x005BD7D8); + set_func_start(0x005BD7E0, 0x005BD7E0); + set_func_end(0x005BD7E0, 0x005BD7F1); + set_func_start(0x005BD8A0, 0x005BD8A0); + set_func_end(0x005BD8A0, 0x005BDD85); + set_func_start(0x005BDD90, 0x005BDD90); + set_func_end(0x005BDD90, 0x005BDDD4); + set_func_start(0x005BF830, 0x005BF830); + set_func_end(0x005BF830, 0x005BF864); + set_func_start(0x005C1070, 0x005C1070); + set_func_end(0x005C1070, 0x005C1475); + set_func_start(0x005C1480, 0x005C1480); + set_func_end(0x005C1480, 0x005C15E1); + set_func_start(0x005C43B0, 0x005C43B0); + set_func_end(0x005C43B0, 0x005C446C); + set_func_start(0x005C4550, 0x005C4550); + set_func_end(0x005C4550, 0x005C4625); + set_func_start(0x005C49C0, 0x005C49C0); + set_func_end(0x005C49C0, 0x005C49CF); + set_func_start(0x005C49D0, 0x005C49D0); + set_func_end(0x005C49D0, 0x005C4AE5); + set_func_start(0x005C4AF0, 0x005C4AF0); + set_func_end(0x005C4AF0, 0x005C4B51); + set_func_start(0x005C4B60, 0x005C4B60); + set_func_end(0x005C4B60, 0x005C4D05); + set_func_start(0x005C4D10, 0x005C4D10); + set_func_end(0x005C4D10, 0x005C4DB4); + set_func_start(0x005C4DC0, 0x005C4DC0); + set_func_end(0x005C4DC0, 0x005C4E94); + set_func_start(0x005C4EA0, 0x005C4EA0); + set_func_end(0x005C4EA0, 0x005C4EDA); + set_func_start(0x005C5160, 0x005C5160); + set_func_end(0x005C5160, 0x005C533D); + set_func_start(0x005C5340, 0x005C5340); + set_func_end(0x005C5340, 0x005C5458); + set_func_start(0x005C5460, 0x005C5460); + set_func_end(0x005C5460, 0x005C5468); + set_func_start(0x005C5470, 0x005C5470); + set_func_end(0x005C5470, 0x005C54AA); + set_func_start(0x005C5500, 0x005C5500); + set_func_end(0x005C5500, 0x005C5544); + set_func_start(0x005C5550, 0x005C5550); + set_func_end(0x005C5550, 0x005C55E7); + set_func_start(0x005C55F0, 0x005C55F0); + set_func_end(0x005C55F0, 0x005C560E); + set_func_start(0x005C5810, 0x005C5810); + set_func_end(0x005C5810, 0x005C5876); + set_func_start(0x005C5CC0, 0x005C5CC0); + set_func_end(0x005C5CC0, 0x005C5D33); + set_func_start(0x005C5D40, 0x005C5D40); + set_func_end(0x005C5D40, 0x005C5DED); + set_func_start(0x005C5DF0, 0x005C5DF0); + set_func_end(0x005C5DF0, 0x005C5E6D); + set_func_start(0x005C5E70, 0x005C5E70); + set_func_end(0x005C5E70, 0x005C5EFC); + set_func_start(0x005C6150, 0x005C6150); + set_func_end(0x005C6150, 0x005C630D); + set_func_start(0x005C6310, 0x005C6310); + set_func_end(0x005C6310, 0x005C63AE); + set_func_start(0x005C63B0, 0x005C63B0); + set_func_end(0x005C63B0, 0x005C6418); + set_func_start(0x005C6420, 0x005C6420); + set_func_end(0x005C6420, 0x005C6472); + set_func_start(0x005C6A10, 0x005C6A10); + set_func_end(0x005C6A10, 0x005C6C56); + set_func_start(0x005C7130, 0x005C7130); + set_func_end(0x005C7130, 0x005C71F1); + set_func_start(0x005C7200, 0x005C7200); + set_func_end(0x005C7200, 0x005C7286); + set_func_start(0x005C7800, 0x005C7800); + set_func_end(0x005C7800, 0x005C7CD6); + set_func_start(0x005C7CE0, 0x005C7CE0); + set_func_end(0x005C7CE0, 0x005C7EC2); + set_func_start(0x005C7ED0, 0x005C7ED0); + set_func_end(0x005C7ED0, 0x005C80D5); + set_func_start(0x005C80E0, 0x005C80E0); + set_func_end(0x005C80E0, 0x005C8305); + set_func_start(0x005C9590, 0x005C9590); + set_func_end(0x005C9590, 0x005C968E); + set_func_start(0x005CA130, 0x005CA130); + set_func_end(0x005CA130, 0x005CA185); + set_func_start(0x005CA190, 0x005CA190); + set_func_end(0x005CA190, 0x005CA1AB); + set_func_start(0x005CA1B0, 0x005CA1B0); + set_func_end(0x005CA1B0, 0x005CA1DB); + set_func_start(0x005CA1E0, 0x005CA1E0); + set_func_end(0x005CA1E0, 0x005CA21C); + set_func_start(0x005CA220, 0x005CA220); + set_func_end(0x005CA220, 0x005CA254); + set_func_start(0x005CA260, 0x005CA260); + set_func_end(0x005CA260, 0x005CA2A7); + set_func_start(0x005CA2B0, 0x005CA2B0); + set_func_end(0x005CA2B0, 0x005CA329); + set_func_start(0x005CA330, 0x005CA330); + set_func_end(0x005CA330, 0x005CA34B); + set_func_start(0x005CA350, 0x005CA350); + set_func_end(0x005CA350, 0x005CA372); + set_func_start(0x005CABB0, 0x005CABB0); + set_func_end(0x005CABB0, 0x005CACF7); + set_func_start(0x005CAD00, 0x005CAD00); + set_func_end(0x005CAD00, 0x005CAE1D); + set_func_start(0x005CAE20, 0x005CAE20); + set_func_end(0x005CAE20, 0x005CAF40); + set_func_start(0x005CAF40, 0x005CAF40); + set_func_end(0x005CAF40, 0x005CAFD0); + set_func_start(0x005CAFD0, 0x005CAFD0); + set_func_end(0x005CAFD0, 0x005CAFFD); + set_func_start(0x005CB000, 0x005CB000); + set_func_end(0x005CB000, 0x005CB16B); + set_func_start(0x005CB170, 0x005CB170); + set_func_end(0x005CB170, 0x005CB329); + set_func_start(0x005CB330, 0x005CB330); + set_func_end(0x005CB330, 0x005CB3E3); + set_func_start(0x005CB3F0, 0x005CB3F0); + set_func_end(0x005CB3F0, 0x005CB461); + set_func_start(0x005CB470, 0x005CB470); + set_func_end(0x005CB470, 0x005CB553); + set_func_start(0x005CB560, 0x005CB560); + set_func_end(0x005CB560, 0x005CB693); + set_func_start(0x005CB6A0, 0x005CB6A0); + set_func_end(0x005CB6A0, 0x005CB700); + set_func_start(0x005CB700, 0x005CB700); + set_func_end(0x005CB700, 0x005CB752); + set_func_start(0x005CB760, 0x005CB760); + set_func_end(0x005CB760, 0x005CB804); + set_func_start(0x005CB810, 0x005CB810); + set_func_end(0x005CB810, 0x005CB818); + set_func_start(0x005CB820, 0x005CB820); + set_func_end(0x005CB820, 0x005CB8F6); + set_func_start(0x005CBCF0, 0x005CBCF0); + set_func_end(0x005CBCF0, 0x005CBD75); + set_func_start(0x005CBD80, 0x005CBD80); + set_func_end(0x005CBD80, 0x005CBE08); + set_func_start(0x005CBE10, 0x005CBE10); + set_func_end(0x005CBE10, 0x005CBE95); + set_func_start(0x005CBEA0, 0x005CBEA0); + set_func_end(0x005CBEA0, 0x005CBF25); + set_func_start(0x005CBF30, 0x005CBF30); + set_func_end(0x005CBF30, 0x005CBFB8); + set_func_start(0x005CBFC0, 0x005CBFC0); + set_func_end(0x005CBFC0, 0x005CC048); + set_func_start(0x005CC050, 0x005CC050); + set_func_end(0x005CC050, 0x005CC0D8); + set_func_start(0x005CC0E0, 0x005CC0E0); + set_func_end(0x005CC0E0, 0x005CC168); + set_func_start(0x005CC170, 0x005CC170); + set_func_end(0x005CC170, 0x005CC1F8); + set_func_start(0x005CC200, 0x005CC200); + set_func_end(0x005CC200, 0x005CC288); + set_func_start(0x005CC290, 0x005CC290); + set_func_end(0x005CC290, 0x005CC360); + set_func_start(0x005CC360, 0x005CC360); + set_func_end(0x005CC360, 0x005CC3D6); + set_func_start(0x005CC3E0, 0x005CC3E0); + set_func_end(0x005CC3E0, 0x005CC46F); + set_func_start(0x005CC470, 0x005CC470); + set_func_end(0x005CC470, 0x005CC502); + set_func_start(0x005CC9C0, 0x005CC9C0); + set_func_end(0x005CC9C0, 0x005CCC84); + set_func_start(0x005CCC90, 0x005CCC90); + set_func_end(0x005CCC90, 0x005CCD8E); + set_func_start(0x005CCD90, 0x005CCD90); + set_func_end(0x005CCD90, 0x005CD098); + set_func_start(0x005CD1B0, 0x005CD1B0); + set_func_end(0x005CD1B0, 0x005CD1E4); + set_func_start(0x005CD820, 0x005CD820); + set_func_end(0x005CD820, 0x005CD85E); + set_func_start(0x005CD860, 0x005CD860); + set_func_end(0x005CD860, 0x005CD8E7); + set_func_start(0x005CD8F0, 0x005CD8F0); + set_func_end(0x005CD8F0, 0x005CD91D); + set_func_start(0x005CDE20, 0x005CDE20); + set_func_end(0x005CDE20, 0x005CE2B5); + set_func_start(0x005CE2C0, 0x005CE2C0); + set_func_end(0x005CE2C0, 0x005CE39A); + set_func_start(0x005CE3A0, 0x005CE3A0); + set_func_end(0x005CE3A0, 0x005CE400); + set_func_start(0x005CE400, 0x005CE400); + set_func_end(0x005CE400, 0x005CE460); + set_func_start(0x005CE460, 0x005CE460); + set_func_end(0x005CE460, 0x005CE4C4); + set_func_start(0x005CE4D0, 0x005CE4D0); + set_func_end(0x005CE4D0, 0x005CE534); + set_func_start(0x005CE540, 0x005CE540); + set_func_end(0x005CE540, 0x005CE5CB); + set_func_start(0x005CE5D0, 0x005CE5D0); + set_func_end(0x005CE5D0, 0x005CE6E6); + set_func_start(0x005CE6F0, 0x005CE6F0); + set_func_end(0x005CE6F0, 0x005CE862); + set_func_start(0x005CEAC0, 0x005CEAC0); + set_func_end(0x005CEAC0, 0x005CEAF4); + set_func_start(0x005CECE0, 0x005CECE0); + set_func_end(0x005CECE0, 0x005CEE2D); + set_func_start(0x005CEE30, 0x005CEE30); + set_func_end(0x005CEE30, 0x005CEEF0); + set_func_start(0x005CF020, 0x005CF020); + set_func_end(0x005CF020, 0x005CF035); + set_func_start(0x005CF040, 0x005CF040); + set_func_end(0x005CF040, 0x005CF131); + set_func_start(0x005CF140, 0x005CF140); + set_func_end(0x005CF140, 0x005CF21B); + set_func_start(0x005CF220, 0x005CF220); + set_func_end(0x005CF220, 0x005CF446); + set_func_start(0x005CF450, 0x005CF450); + set_func_end(0x005CF450, 0x005CF529); + set_func_start(0x005CF950, 0x005CF950); + set_func_end(0x005CF950, 0x005CF9BB); + set_func_start(0x005CFDB0, 0x005CFDB0); + set_func_end(0x005CFDB0, 0x005CFDB8); + set_func_start(0x005CFF20, 0x005CFF20); + set_func_end(0x005CFF20, 0x005CFF54); + set_func_start(0x005D0740, 0x005D0740); + set_func_end(0x005D0740, 0x005D07B0); + set_func_start(0x005D07B0, 0x005D07B0); + set_func_end(0x005D07B0, 0x005D0814); + set_func_start(0x005D0820, 0x005D0820); + set_func_end(0x005D0820, 0x005D084D); + set_func_start(0x005D1150, 0x005D1150); + set_func_end(0x005D1150, 0x005D11D4); + set_func_start(0x005D11E0, 0x005D11E0); + set_func_end(0x005D11E0, 0x005D1240); + set_func_start(0x005D1240, 0x005D1240); + set_func_end(0x005D1240, 0x005D1384); + set_func_start(0x005D1390, 0x005D1390); + set_func_end(0x005D1390, 0x005D141B); + set_func_start(0x005D1420, 0x005D1420); + set_func_end(0x005D1420, 0x005D148E); + set_func_start(0x005D1E50, 0x005D1E50); + set_func_end(0x005D1E50, 0x005D1ED1); + set_func_start(0x005D1EE0, 0x005D1EE0); + set_func_end(0x005D1EE0, 0x005D1F61); + set_func_start(0x005D1F70, 0x005D1F70); + set_func_end(0x005D1F70, 0x005D1FB9); + set_func_start(0x005D1FC0, 0x005D1FC0); + set_func_end(0x005D1FC0, 0x005D1FD3); + set_func_start(0x005D1FE0, 0x005D1FE0); + set_func_end(0x005D1FE0, 0x005D1FF3); + set_func_start(0x005D2000, 0x005D2000); + set_func_end(0x005D2000, 0x005D2049); + set_func_start(0x005D3160, 0x005D3160); + set_func_end(0x005D3160, 0x005D317C); + set_func_start(0x005D3180, 0x005D3180); + set_func_end(0x005D3180, 0x005D31E7); + set_func_start(0x005D3720, 0x005D3720); + set_func_end(0x005D3720, 0x005D3779); + set_func_start(0x005D3780, 0x005D3780); + set_func_end(0x005D3780, 0x005D3817); + set_func_start(0x005D3820, 0x005D3820); + set_func_end(0x005D3820, 0x005D38B9); + set_func_start(0x005D38C0, 0x005D38C0); + set_func_end(0x005D38C0, 0x005D3957); + set_func_start(0x005D3960, 0x005D3960); + set_func_end(0x005D3960, 0x005D3A1D); + set_func_start(0x005D3A20, 0x005D3A20); + set_func_end(0x005D3A20, 0x005D3AF4); + set_func_start(0x005D3B00, 0x005D3B00); + set_func_end(0x005D3B00, 0x005D3BC1); + set_func_start(0x005D3BD0, 0x005D3BD0); + set_func_end(0x005D3BD0, 0x005D3CDA); + set_func_start(0x005D3CE0, 0x005D3CE0); + set_func_end(0x005D3CE0, 0x005D3D79); + set_func_start(0x005D3D80, 0x005D3D80); + set_func_end(0x005D3D80, 0x005D3E78); + set_func_start(0x005D4EC0, 0x005D4EC0); + set_func_end(0x005D4EC0, 0x005D5258); + set_func_start(0x005D5280, 0x005D5280); + set_func_end(0x005D5280, 0x005D53BA); + set_func_start(0x005D53C0, 0x005D53C0); + set_func_end(0x005D53C0, 0x005D53FF); + set_func_start(0x005D5400, 0x005D5400); + set_func_end(0x005D5400, 0x005D54B8); + set_func_start(0x005D54C0, 0x005D54C0); + set_func_end(0x005D54C0, 0x005D54EC); + set_func_start(0x005D54F0, 0x005D54F0); + set_func_end(0x005D54F0, 0x005D551C); + set_func_start(0x005D5520, 0x005D5520); + set_func_end(0x005D5520, 0x005D554C); + set_func_start(0x005D5550, 0x005D5550); + set_func_end(0x005D5550, 0x005D557C); + set_func_start(0x005D5580, 0x005D5580); + set_func_end(0x005D5580, 0x005D55AC); + set_func_start(0x005D55B0, 0x005D55B0); + set_func_end(0x005D55B0, 0x005D5640); + set_func_start(0x005D5640, 0x005D5640); + set_func_end(0x005D5640, 0x005D5648); + set_func_start(0x005D5650, 0x005D5650); + set_func_end(0x005D5650, 0x005D5658); + set_func_start(0x005D5660, 0x005D5660); + set_func_end(0x005D5660, 0x005D5668); + set_func_start(0x005D5670, 0x005D5670); + set_func_end(0x005D5670, 0x005D581B); + set_func_start(0x005D5820, 0x005D5820); + set_func_end(0x005D5820, 0x005D5A05); + set_func_start(0x005D5A10, 0x005D5A10); + set_func_end(0x005D5A10, 0x005D5A5C); + set_func_start(0x005D65C0, 0x005D65C0); + set_func_end(0x005D65C0, 0x005D66E5); + set_func_start(0x005D66F0, 0x005D66F0); + set_func_end(0x005D66F0, 0x005D67A4); + set_func_start(0x005D67B0, 0x005D67B0); + set_func_end(0x005D67B0, 0x005D68FE); + set_func_start(0x005D6F60, 0x005D6F60); + set_func_end(0x005D6F60, 0x005D6FEB); + set_func_start(0x005D6FF0, 0x005D6FF0); + set_func_end(0x005D6FF0, 0x005D7012); + set_func_start(0x005D7180, 0x005D7180); + set_func_end(0x005D7180, 0x005D729B); + set_func_start(0x005D74A0, 0x005D74A0); + set_func_end(0x005D74A0, 0x005D758A); + set_func_start(0x005D7590, 0x005D7590); + set_func_end(0x005D7590, 0x005D7820); + set_func_start(0x005D7820, 0x005D7820); + set_func_end(0x005D7820, 0x005D7A82); + set_func_start(0x005D7A90, 0x005D7A90); + set_func_end(0x005D7A90, 0x005D7C71); + set_func_start(0x005D7C80, 0x005D7C80); + set_func_end(0x005D7C80, 0x005D7CFF); + set_func_start(0x005D7D00, 0x005D7D00); + set_func_end(0x005D7D00, 0x005D7D84); + set_func_start(0x005D7D90, 0x005D7D90); + set_func_end(0x005D7D90, 0x005D7EED); + set_func_start(0x005D7EF0, 0x005D7EF0); + set_func_end(0x005D7EF0, 0x005D7FE6); + set_func_start(0x005D7FF0, 0x005D7FF0); + set_func_end(0x005D7FF0, 0x005D84E4); + set_func_start(0x005D84F0, 0x005D84F0); + set_func_end(0x005D84F0, 0x005D864E); + set_func_start(0x005D8650, 0x005D8650); + set_func_end(0x005D8650, 0x005D8B06); + set_func_start(0x005D8B10, 0x005D8B10); + set_func_end(0x005D8B10, 0x005D8BC7); + set_func_start(0x005D8BD0, 0x005D8BD0); + set_func_end(0x005D8BD0, 0x005D8C61); + set_func_start(0x005D8C70, 0x005D8C70); + set_func_end(0x005D8C70, 0x005D8D7F); + set_func_start(0x005D8D80, 0x005D8D80); + set_func_end(0x005D8D80, 0x005D8F61); + set_func_start(0x005D8F70, 0x005D8F70); + set_func_end(0x005D8F70, 0x005D91A1); + set_func_start(0x005D91B0, 0x005D91B0); + set_func_end(0x005D91B0, 0x005D92F2); + set_func_start(0x005D9300, 0x005D9300); + set_func_end(0x005D9300, 0x005D93FF); + set_func_start(0x005D9400, 0x005D9400); + set_func_end(0x005D9400, 0x005D953B); + set_func_start(0x005DA120, 0x005DA120); + set_func_end(0x005DA120, 0x005DA142); + set_func_start(0x005DA150, 0x005DA150); + set_func_end(0x005DA150, 0x005DA16C); + set_func_start(0x005DA170, 0x005DA170); + set_func_end(0x005DA170, 0x005DA1AE); + set_func_start(0x005DA1B0, 0x005DA1B0); + set_func_end(0x005DA1B0, 0x005DA267); + set_func_start(0x005DA270, 0x005DA270); + set_func_end(0x005DA270, 0x005DA2D5); + set_func_start(0x005DA2E0, 0x005DA2E0); + set_func_end(0x005DA2E0, 0x005DA30D); + set_func_start(0x005DA310, 0x005DA310); + set_func_end(0x005DA310, 0x005DA391); + set_func_start(0x005DA8B0, 0x005DA8B0); + set_func_end(0x005DA8B0, 0x005DA8FB); + set_func_start(0x005DA900, 0x005DA900); + set_func_end(0x005DA900, 0x005DA967); + set_func_start(0x005DA970, 0x005DA970); + set_func_end(0x005DA970, 0x005DA99D); + set_func_start(0x005DA9A0, 0x005DA9A0); + set_func_end(0x005DA9A0, 0x005DAA68); + set_func_start(0x005DAA70, 0x005DAA70); + set_func_end(0x005DAA70, 0x005DAB6C); + set_func_start(0x005DAB70, 0x005DAB70); + set_func_end(0x005DAB70, 0x005DABF6); + set_func_start(0x005DAC00, 0x005DAC00); + set_func_end(0x005DAC00, 0x005DACD2); + set_func_start(0x005DB2A0, 0x005DB2A0); + set_func_end(0x005DB2A0, 0x005DB543); + set_func_start(0x005DB550, 0x005DB550); + set_func_end(0x005DB550, 0x005DB6D2); + set_func_start(0x005DB6E0, 0x005DB6E0); + set_func_end(0x005DB6E0, 0x005DB808); + set_func_start(0x005DB810, 0x005DB810); + set_func_end(0x005DB810, 0x005DB919); + set_func_start(0x005DB920, 0x005DB920); + set_func_end(0x005DB920, 0x005DBA61); + set_func_start(0x005DBA70, 0x005DBA70); + set_func_end(0x005DBA70, 0x005DBBA0); + set_func_start(0x005DBBA0, 0x005DBBA0); + set_func_end(0x005DBBA0, 0x005DBCB6); + set_func_start(0x005DBCC0, 0x005DBCC0); + set_func_end(0x005DBCC0, 0x005DBE05); + set_func_start(0x005DBE10, 0x005DBE10); + set_func_end(0x005DBE10, 0x005DBF0A); + set_func_start(0x005DBF10, 0x005DBF10); + set_func_end(0x005DBF10, 0x005DBF8E); + set_func_start(0x005DBF90, 0x005DBF90); + set_func_end(0x005DBF90, 0x005DC0A8); + set_func_start(0x005DC0B0, 0x005DC0B0); + set_func_end(0x005DC0B0, 0x005DC109); + set_func_start(0x005DD070, 0x005DD070); + set_func_end(0x005DD070, 0x005DD08D); + set_func_start(0x005DD090, 0x005DD090); + set_func_end(0x005DD090, 0x005DD0ED); + set_func_start(0x005DD0F0, 0x005DD0F0); + set_func_end(0x005DD0F0, 0x005DD22B); + set_func_start(0x005DD230, 0x005DD230); + set_func_end(0x005DD230, 0x005DD3DD); + set_func_start(0x005DD3E0, 0x005DD3E0); + set_func_end(0x005DD3E0, 0x005DD41A); + set_func_start(0x005DD420, 0x005DD420); + set_func_end(0x005DD420, 0x005DD45A); + set_func_start(0x005DD460, 0x005DD460); + set_func_end(0x005DD460, 0x005DD4F6); + set_func_start(0x005DD500, 0x005DD500); + set_func_end(0x005DD500, 0x005DD594); + set_func_start(0x005DE400, 0x005DE400); + set_func_end(0x005DE400, 0x005DE619); + set_func_start(0x005DE620, 0x005DE620); + set_func_end(0x005DE620, 0x005DE8B6); + set_func_start(0x005DF010, 0x005DF010); + set_func_end(0x005DF010, 0x005DF094); + set_func_start(0x005DF0A0, 0x005DF0A0); + set_func_end(0x005DF0A0, 0x005DF0CD); + set_func_start(0x005DF0D0, 0x005DF0D0); + set_func_end(0x005DF0D0, 0x005DF0DD); + set_func_start(0x005DF0E0, 0x005DF0E0); + set_func_end(0x005DF0E0, 0x005DF143); + set_func_start(0x005DF150, 0x005DF150); + set_func_end(0x005DF150, 0x005DF1C8); + set_func_start(0x005DF1D0, 0x005DF1D0); + set_func_end(0x005DF1D0, 0x005DF246); + set_func_start(0x005DF250, 0x005DF250); + set_func_end(0x005DF250, 0x005DF395); + set_func_start(0x005DF3A0, 0x005DF3A0); + set_func_end(0x005DF3A0, 0x005DF3F6); + set_func_start(0x005DF400, 0x005DF400); + set_func_end(0x005DF400, 0x005DF456); + set_func_start(0x005DF460, 0x005DF460); + set_func_end(0x005DF460, 0x005DF51C); + set_func_start(0x005DF520, 0x005DF520); + set_func_end(0x005DF520, 0x005DF5CD); + set_func_start(0x005DF5D0, 0x005DF5D0); + set_func_end(0x005DF5D0, 0x005DF604); + set_func_start(0x005DF610, 0x005DF610); + set_func_end(0x005DF610, 0x005DF6F7); + set_func_start(0x005DF700, 0x005DF700); + set_func_end(0x005DF700, 0x005DF77D); + set_func_start(0x005DF780, 0x005DF780); + set_func_end(0x005DF780, 0x005DF862); + set_func_start(0x005DF870, 0x005DF870); + set_func_end(0x005DF870, 0x005DF89E); + set_func_start(0x005DF8A0, 0x005DF8A0); + set_func_end(0x005DF8A0, 0x005DF910); + set_func_start(0x005DF910, 0x005DF910); + set_func_end(0x005DF910, 0x005DF932); + set_func_start(0x005DF940, 0x005DF940); + set_func_end(0x005DF940, 0x005DFA02); + set_func_start(0x005DFA10, 0x005DFA10); + set_func_end(0x005DFA10, 0x005DFA74); + set_func_start(0x005DFA80, 0x005DFA80); + set_func_end(0x005DFA80, 0x005DFAF5); + set_func_start(0x005DFB00, 0x005DFB00); + set_func_end(0x005DFB00, 0x005DFB3F); + set_func_start(0x005DFB40, 0x005DFB40); + set_func_end(0x005DFB40, 0x005DFB95); + set_func_start(0x005DFBA0, 0x005DFBA0); + set_func_end(0x005DFBA0, 0x005DFC40); + set_func_start(0x005DFC40, 0x005DFC40); + set_func_end(0x005DFC40, 0x005DFD1D); + set_func_start(0x005E02F0, 0x005E02F0); + set_func_end(0x005E02F0, 0x005E0337); + set_func_start(0x005E0340, 0x005E0340); + set_func_end(0x005E0340, 0x005E041F); + set_func_start(0x005E0590, 0x005E0590); + set_func_end(0x005E0590, 0x005E06C1); + set_func_start(0x005E06D0, 0x005E06D0); + set_func_end(0x005E06D0, 0x005E07F7); + set_func_start(0x005E3D60, 0x005E3D60); + set_func_end(0x005E3D60, 0x005E405D); + set_func_start(0x005E4060, 0x005E4060); + set_func_end(0x005E4060, 0x005E4068); + set_func_start(0x005E4070, 0x005E4070); + set_func_end(0x005E4070, 0x005E419C); + set_func_start(0x005E41A0, 0x005E41A0); + set_func_end(0x005E41A0, 0x005E425E); + set_func_start(0x005E4260, 0x005E4260); + set_func_end(0x005E4260, 0x005E431E); + set_func_start(0x005E4320, 0x005E4320); + set_func_end(0x005E4320, 0x005E43E6); + set_func_start(0x005E43F0, 0x005E43F0); + set_func_end(0x005E43F0, 0x005E4484); + set_func_start(0x005E4490, 0x005E4490); + set_func_end(0x005E4490, 0x005E4660); + set_func_start(0x005E4660, 0x005E4660); + set_func_end(0x005E4660, 0x005E4833); + set_func_start(0x005E4840, 0x005E4840); + set_func_end(0x005E4840, 0x005E48EE); + set_func_start(0x005E48F0, 0x005E48F0); + set_func_end(0x005E48F0, 0x005E49A3); + set_func_start(0x005E49B0, 0x005E49B0); + set_func_end(0x005E49B0, 0x005E4B64); + set_func_start(0x005E4B70, 0x005E4B70); + set_func_end(0x005E4B70, 0x005E4C0C); + set_func_start(0x005E4C10, 0x005E4C10); + set_func_end(0x005E4C10, 0x005E4D10); + set_func_start(0x005E4D10, 0x005E4D10); + set_func_end(0x005E4D10, 0x005E4ECB); + set_func_start(0x005E4ED0, 0x005E4ED0); + set_func_end(0x005E4ED0, 0x005E4FA4); + set_func_start(0x005E4FB0, 0x005E4FB0); + set_func_end(0x005E4FB0, 0x005E50F7); + set_func_start(0x005E5100, 0x005E5100); + set_func_end(0x005E5100, 0x005E5149); + set_func_start(0x005E5150, 0x005E5150); + set_func_end(0x005E5150, 0x005E5199); + set_func_start(0x005E51A0, 0x005E51A0); + set_func_end(0x005E51A0, 0x005E51CA); + set_func_start(0x005E51D0, 0x005E51D0); + set_func_end(0x005E51D0, 0x005E52C2); + set_func_start(0x005E52D0, 0x005E52D0); + set_func_end(0x005E52D0, 0x005E53CB); + set_func_start(0x005E53D0, 0x005E53D0); + set_func_end(0x005E53D0, 0x005E54BB); + set_func_start(0x005E54C0, 0x005E54C0); + set_func_end(0x005E54C0, 0x005E5634); + set_func_start(0x005E5640, 0x005E5640); + set_func_end(0x005E5640, 0x005E56BC); + set_func_start(0x005E56C0, 0x005E56C0); + set_func_end(0x005E56C0, 0x005E573A); + set_func_start(0x005E5740, 0x005E5740); + set_func_end(0x005E5740, 0x005E5748); + set_func_start(0x005E5750, 0x005E5750); + set_func_end(0x005E5750, 0x005E57DC); + set_func_start(0x005E5CC0, 0x005E5CC0); + set_func_end(0x005E5CC0, 0x005E5F59); + set_func_start(0x005E5F60, 0x005E5F60); + set_func_end(0x005E5F60, 0x005E60CF); + set_func_start(0x005E60D0, 0x005E60D0); + set_func_end(0x005E60D0, 0x005E623F); + set_func_start(0x005E6240, 0x005E6240); + set_func_end(0x005E6240, 0x005E63CE); + set_func_start(0x005E63D0, 0x005E63D0); + set_func_end(0x005E63D0, 0x005E64AE); + set_func_start(0x005E64B0, 0x005E64B0); + set_func_end(0x005E64B0, 0x005E64CF); + set_func_start(0x005E6650, 0x005E6650); + set_func_end(0x005E6650, 0x005E67BC); + set_func_start(0x005E67C0, 0x005E67C0); + set_func_end(0x005E67C0, 0x005E687A); + set_func_start(0x005E6DE0, 0x005E6DE0); + set_func_end(0x005E6DE0, 0x005E6E31); + set_func_start(0x005E7700, 0x005E7700); + set_func_end(0x005E7700, 0x005E7758); + set_func_start(0x005E7780, 0x005E7780); + set_func_end(0x005E7780, 0x005E77BA); + set_func_start(0x005E77C0, 0x005E77C0); + set_func_end(0x005E77C0, 0x005E7885); + set_func_start(0x005E7890, 0x005E7890); + set_func_end(0x005E7890, 0x005E78E3); + set_func_start(0x005E7D60, 0x005E7D60); + set_func_end(0x005E7D60, 0x005E7E51); + set_func_start(0x005E7E60, 0x005E7E60); + set_func_end(0x005E7E60, 0x005E7F9C); + set_func_start(0x005E7FA0, 0x005E7FA0); + set_func_end(0x005E7FA0, 0x005E8030); + set_func_start(0x005E8030, 0x005E8030); + set_func_end(0x005E8030, 0x005E8284); + set_func_start(0x005E95C0, 0x005E95C0); + set_func_end(0x005E95C0, 0x005E9BB5); + set_func_start(0x005E9BC0, 0x005E9BC0); + set_func_end(0x005E9BC0, 0x005E9D71); + set_func_start(0x005E9D80, 0x005E9D80); + set_func_end(0x005E9D80, 0x005E9E31); + set_func_start(0x005E9E40, 0x005E9E40); + set_func_end(0x005E9E40, 0x005EA040); + set_func_start(0x005EA040, 0x005EA040); + set_func_end(0x005EA040, 0x005EA164); + set_func_start(0x005EA170, 0x005EA170); + set_func_end(0x005EA170, 0x005EA265); + set_func_start(0x005EA270, 0x005EA270); + set_func_end(0x005EA270, 0x005EA3DC); + set_func_start(0x005EA3E0, 0x005EA3E0); + set_func_end(0x005EA3E0, 0x005EA4E6); + set_func_start(0x005EA4F0, 0x005EA4F0); + set_func_end(0x005EA4F0, 0x005EA5EF); + set_func_start(0x005EA5F0, 0x005EA5F0); + set_func_end(0x005EA5F0, 0x005EA625); + set_func_start(0x005EA630, 0x005EA630); + set_func_end(0x005EA630, 0x005EA69D); + set_func_start(0x005EA6A0, 0x005EA6A0); + set_func_end(0x005EA6A0, 0x005EA6DA); + set_func_start(0x005EA6E0, 0x005EA6E0); + set_func_end(0x005EA6E0, 0x005EA77C); + set_func_start(0x005EA780, 0x005EA780); + set_func_end(0x005EA780, 0x005EA7F0); + set_func_start(0x005EA7F0, 0x005EA7F0); + set_func_end(0x005EA7F0, 0x005EA832); + set_func_start(0x005EA840, 0x005EA840); + set_func_end(0x005EA840, 0x005EA87A); + set_func_start(0x005EA880, 0x005EA880); + set_func_end(0x005EA880, 0x005EA924); + set_func_start(0x005EA930, 0x005EA930); + set_func_end(0x005EA930, 0x005EA9A7); + set_func_start(0x005EA9B0, 0x005EA9B0); + set_func_end(0x005EA9B0, 0x005EAAEC); + set_func_start(0x005EAAF0, 0x005EAAF0); + set_func_end(0x005EAAF0, 0x005EABF9); + set_func_start(0x005EAC00, 0x005EAC00); + set_func_end(0x005EAC00, 0x005EAC08); + set_func_start(0x005EAC10, 0x005EAC10); + set_func_end(0x005EAC10, 0x005EAC81); + set_func_start(0x005EAC90, 0x005EAC90); + set_func_end(0x005EAC90, 0x005EAC98); + set_func_start(0x005EACA0, 0x005EACA0); + set_func_end(0x005EACA0, 0x005EAE8C); + set_func_start(0x005EAE90, 0x005EAE90); + set_func_end(0x005EAE90, 0x005EAF27); + set_func_start(0x005EEB70, 0x005EEB70); + set_func_end(0x005EEB70, 0x005EEB71); + set_func_start(0x005F9550, 0x005F9550); + set_func_end(0x005F9550, 0x005F9572); + set_func_start(0x005F9DD0, 0x005F9DD0); + set_func_end(0x005F9DD0, 0x005F9E0F); + set_func_start(0x005F9E10, 0x005F9E10); + set_func_end(0x005F9E10, 0x005F9E5C); + set_func_start(0x005F9E60, 0x005F9E60); + set_func_end(0x005F9E60, 0x005F9F06); + set_func_start(0x005F9F10, 0x005F9F10); + set_func_end(0x005F9F10, 0x005F9F6E); + set_func_start(0x005F9F70, 0x005F9F70); + set_func_end(0x005F9F70, 0x005F9FDB); + set_func_start(0x005F9FE0, 0x005F9FE0); + set_func_end(0x005F9FE0, 0x005FA04B); + set_func_start(0x005FA050, 0x005FA050); + set_func_end(0x005FA050, 0x005FA05E); + set_func_start(0x005FAAE0, 0x005FAAE0); + set_func_end(0x005FAAE0, 0x005FAB6D); + set_func_start(0x005FB660, 0x005FB660); + set_func_end(0x005FB660, 0x005FB6C8); + set_func_start(0x005FB6D0, 0x005FB6D0); + set_func_end(0x005FB6D0, 0x005FB71B); + set_func_start(0x005FB720, 0x005FB720); + set_func_end(0x005FB720, 0x005FB76B); + set_func_start(0x005FB770, 0x005FB770); + set_func_end(0x005FB770, 0x005FB7CB); + set_func_start(0x005FB7D0, 0x005FB7D0); + set_func_end(0x005FB7D0, 0x005FB81C); + set_func_start(0x005FB820, 0x005FB820); + set_func_end(0x005FB820, 0x005FB8B1); + set_func_start(0x005FB8C0, 0x005FB8C0); + set_func_end(0x005FB8C0, 0x005FB967); + set_func_start(0x005FB970, 0x005FB970); + set_func_end(0x005FB970, 0x005FB9B5); + set_func_start(0x005FB9C0, 0x005FB9C0); + set_func_end(0x005FB9C0, 0x005FBA05); + set_func_start(0x005FBA10, 0x005FBA10); + set_func_end(0x005FBA10, 0x005FBA55); + set_func_start(0x005FBF80, 0x005FBF80); + set_func_end(0x005FBF80, 0x005FC095); + set_func_start(0x005FC0A0, 0x005FC0A0); + set_func_end(0x005FC0A0, 0x005FC0E2); + set_func_start(0x005FC140, 0x005FC140); + set_func_end(0x005FC140, 0x005FC182); + set_func_start(0x005FC190, 0x005FC190); + set_func_end(0x005FC190, 0x005FC1FA); + set_func_start(0x005FC200, 0x005FC200); + set_func_end(0x005FC200, 0x005FC242); + set_func_start(0x005FC250, 0x005FC250); + set_func_end(0x005FC250, 0x005FC28F); + set_func_start(0x005FC290, 0x005FC290); + set_func_end(0x005FC290, 0x005FC2D2); + set_func_start(0x005FC2E0, 0x005FC2E0); + set_func_end(0x005FC2E0, 0x005FC31F); + set_func_start(0x005FC320, 0x005FC320); + set_func_end(0x005FC320, 0x005FC360); + set_func_start(0x005FC360, 0x005FC360); + set_func_end(0x005FC360, 0x005FC3A2); + set_func_start(0x005FC3B0, 0x005FC3B0); + set_func_end(0x005FC3B0, 0x005FC3F0); + set_func_start(0x005FC3F0, 0x005FC3F0); + set_func_end(0x005FC3F0, 0x005FC432); + set_func_start(0x005FC440, 0x005FC440); + set_func_end(0x005FC440, 0x005FC482); + set_func_start(0x005FC490, 0x005FC490); + set_func_end(0x005FC490, 0x005FC4CF); + set_func_start(0x005FC4D0, 0x005FC4D0); + set_func_end(0x005FC4D0, 0x005FC515); + set_func_start(0x005FC520, 0x005FC520); + set_func_end(0x005FC520, 0x005FC562); + set_func_start(0x005FC570, 0x005FC570); + set_func_end(0x005FC570, 0x005FC5B2); + set_func_start(0x005FC5C0, 0x005FC5C0); + set_func_end(0x005FC5C0, 0x005FC602); + set_func_start(0x005FC610, 0x005FC610); + set_func_end(0x005FC610, 0x005FC671); + set_func_start(0x005FC680, 0x005FC680); + set_func_end(0x005FC680, 0x005FC6BB); + set_func_start(0x005FC6C0, 0x005FC6C0); + set_func_end(0x005FC6C0, 0x005FC721); + set_func_start(0x005FC730, 0x005FC730); + set_func_end(0x005FC730, 0x005FC77E); + set_func_start(0x005FC780, 0x005FC780); + set_func_end(0x005FC780, 0x005FC825); + set_func_start(0x005FC830, 0x005FC830); + set_func_end(0x005FC830, 0x005FC885); + set_func_start(0x005FC890, 0x005FC890); + set_func_end(0x005FC890, 0x005FC8D2); + set_func_start(0x005FC8E0, 0x005FC8E0); + set_func_end(0x005FC8E0, 0x005FC920); + set_func_start(0x005FC920, 0x005FC920); + set_func_end(0x005FC920, 0x005FC960); + set_func_start(0x005FCC10, 0x005FCC10); + set_func_end(0x005FCC10, 0x005FCC59); + set_func_start(0x005FD550, 0x005FD550); + set_func_end(0x005FD550, 0x005FD5B8); + set_func_start(0x005FF080, 0x005FF080); + set_func_end(0x005FF080, 0x005FF093); + set_func_start(0x005FF0A0, 0x005FF0A0); + set_func_end(0x005FF0A0, 0x005FF0C6); + set_func_start(0x005FF0D0, 0x005FF0D0); + set_func_end(0x005FF0D0, 0x005FF0E6); + set_func_start(0x005FF0F0, 0x005FF0F0); + set_func_end(0x005FF0F0, 0x005FF116); + set_func_start(0x005FF120, 0x005FF120); + set_func_end(0x005FF120, 0x005FF136); + set_func_start(0x005FF140, 0x005FF140); + set_func_end(0x005FF140, 0x005FF166); + set_func_start(0x005FF170, 0x005FF170); + set_func_end(0x005FF170, 0x005FF186); + set_func_start(0x005FF190, 0x005FF190); + set_func_end(0x005FF190, 0x005FF1B9); + set_func_start(0x005FF1C0, 0x005FF1C0); + set_func_end(0x005FF1C0, 0x005FF1D6); + set_func_start(0x005FF1E0, 0x005FF1E0); + set_func_end(0x005FF1E0, 0x005FF20C); + set_func_start(0x005FF210, 0x005FF210); + set_func_end(0x005FF210, 0x005FF226); + set_func_start(0x005FF230, 0x005FF230); + set_func_end(0x005FF230, 0x005FF25C); + set_func_start(0x005FF260, 0x005FF260); + set_func_end(0x005FF260, 0x005FF2B7); + set_func_start(0x005FF2C0, 0x005FF2C0); + set_func_end(0x005FF2C0, 0x005FF31B); + set_func_start(0x006017E0, 0x006017E0); + set_func_end(0x006017E0, 0x00601838); + set_func_start(0x00601840, 0x00601840); + set_func_end(0x00601840, 0x00601898); + set_func_start(0x006018A0, 0x006018A0); + set_func_end(0x006018A0, 0x006018A9); + set_func_start(0x006018B0, 0x006018B0); + set_func_end(0x006018B0, 0x006018B9); + set_func_start(0x006039B0, 0x006039B0); + set_func_end(0x006039B0, 0x00603A0F); + set_func_start(0x00604C80, 0x00604C80); + set_func_end(0x00604C80, 0x00604CD3); + set_func_start(0x00604CE0, 0x00604CE0); + set_func_end(0x00604CE0, 0x00604D0A); + set_func_start(0x00604D10, 0x00604D10); + set_func_end(0x00604D10, 0x00604D3A); + set_func_start(0x006081F0, 0x006081F0); + set_func_end(0x006081F0, 0x0060822A); + set_func_start(0x00608230, 0x00608230); + set_func_end(0x00608230, 0x00608266); + set_func_start(0x00608270, 0x00608270); + set_func_end(0x00608270, 0x006082B6); + set_func_start(0x006082C0, 0x006082C0); + set_func_end(0x006082C0, 0x00608364); + set_func_start(0x00608560, 0x00608560); + set_func_end(0x00608560, 0x0060857E); + set_func_start(0x00608580, 0x00608580); + set_func_end(0x00608580, 0x006085C1); + set_func_start(0x00608690, 0x00608690); + set_func_end(0x00608690, 0x00608760); + set_func_start(0x00608760, 0x00608760); + set_func_end(0x00608760, 0x0060887A); + set_func_start(0x0060A450, 0x0060A450); + set_func_end(0x0060A450, 0x0060A48A); + set_func_start(0x0060A490, 0x0060A490); + set_func_end(0x0060A490, 0x0060A50A); + set_func_start(0x0060A510, 0x0060A510); + set_func_end(0x0060A510, 0x0060A5CE); + set_func_start(0x0060C2A0, 0x0060C2A0); + set_func_end(0x0060C2A0, 0x0060C342); + set_func_start(0x0060C350, 0x0060C350); + set_func_end(0x0060C350, 0x0060C3C5); + set_func_start(0x0060C3D0, 0x0060C3D0); + set_func_end(0x0060C3D0, 0x0060C4A3); + set_func_start(0x0060C4B0, 0x0060C4B0); + set_func_end(0x0060C4B0, 0x0060C542); + set_func_start(0x0060C550, 0x0060C550); + set_func_end(0x0060C550, 0x0060C6E9); + set_func_start(0x0060C6F0, 0x0060C6F0); + set_func_end(0x0060C6F0, 0x0060C76F); + set_func_start(0x0060C770, 0x0060C770); + set_func_end(0x0060C770, 0x0060C810); + set_func_start(0x0060C810, 0x0060C810); + set_func_end(0x0060C810, 0x0060C89F); + set_func_start(0x0060C8A0, 0x0060C8A0); + set_func_end(0x0060C8A0, 0x0060C916); + set_func_start(0x0060C920, 0x0060C920); + set_func_end(0x0060C920, 0x0060C998); + set_func_start(0x0060C9A0, 0x0060C9A0); + set_func_end(0x0060C9A0, 0x0060CA18); + set_func_start(0x0060CA20, 0x0060CA20); + set_func_end(0x0060CA20, 0x0060CA94); + set_func_start(0x0060CAA0, 0x0060CAA0); + set_func_end(0x0060CAA0, 0x0060CB1D); + set_func_start(0x0060CB20, 0x0060CB20); + set_func_end(0x0060CB20, 0x0060CB98); + set_func_start(0x0060CBA0, 0x0060CBA0); + set_func_end(0x0060CBA0, 0x0060CC29); + set_func_start(0x0060CC30, 0x0060CC30); + set_func_end(0x0060CC30, 0x0060CD44); + set_func_start(0x0060CD50, 0x0060CD50); + set_func_end(0x0060CD50, 0x0060CE20); + set_func_start(0x0060CE20, 0x0060CE20); + set_func_end(0x0060CE20, 0x0060CF15); + set_func_start(0x0060CF20, 0x0060CF20); + set_func_end(0x0060CF20, 0x0060CFA4); + set_func_start(0x0060CFB0, 0x0060CFB0); + set_func_end(0x0060CFB0, 0x0060D091); + set_func_start(0x0060D0A0, 0x0060D0A0); + set_func_end(0x0060D0A0, 0x0060D27B); + set_func_start(0x0060D280, 0x0060D280); + set_func_end(0x0060D280, 0x0060D328); + set_func_start(0x0060D330, 0x0060D330); + set_func_end(0x0060D330, 0x0060D3CF); + set_func_start(0x0060D3D0, 0x0060D3D0); + set_func_end(0x0060D3D0, 0x0060D52E); + set_func_start(0x0060D530, 0x0060D530); + set_func_end(0x0060D530, 0x0060D68E); + set_func_start(0x0060D690, 0x0060D690); + set_func_end(0x0060D690, 0x0060D730); + set_func_start(0x0060D730, 0x0060D730); + set_func_end(0x0060D730, 0x0060D7CE); + set_func_start(0x0060D7D0, 0x0060D7D0); + set_func_end(0x0060D7D0, 0x0060D853); + set_func_start(0x0060D860, 0x0060D860); + set_func_end(0x0060D860, 0x0060D8E4); + set_func_start(0x0060D8F0, 0x0060D8F0); + set_func_end(0x0060D8F0, 0x0060D961); + set_func_start(0x0060D970, 0x0060D970); + set_func_end(0x0060D970, 0x0060D9F3); + set_func_start(0x0060DA00, 0x0060DA00); + set_func_end(0x0060DA00, 0x0060DB11); + set_func_start(0x0060DB20, 0x0060DB20); + set_func_end(0x0060DB20, 0x0060DB7C); + set_func_start(0x0060DB80, 0x0060DB80); + set_func_end(0x0060DB80, 0x0060DBE2); + set_func_start(0x0060DBF0, 0x0060DBF0); + set_func_end(0x0060DBF0, 0x0060DC69); + set_func_start(0x0060DC70, 0x0060DC70); + set_func_end(0x0060DC70, 0x0060DD3C); + set_func_start(0x0060DD40, 0x0060DD40); + set_func_end(0x0060DD40, 0x0060DDA1); + set_func_start(0x0060DDB0, 0x0060DDB0); + set_func_end(0x0060DDB0, 0x0060DE6F); + set_func_start(0x0060DE70, 0x0060DE70); + set_func_end(0x0060DE70, 0x0060DF2A); + set_func_start(0x0060DF30, 0x0060DF30); + set_func_end(0x0060DF30, 0x0060DF8F); + set_func_start(0x0060DF90, 0x0060DF90); + set_func_end(0x0060DF90, 0x0060DFEF); + set_func_start(0x0060DFF0, 0x0060DFF0); + set_func_end(0x0060DFF0, 0x0060E067); + set_func_start(0x0060E070, 0x0060E070); + set_func_end(0x0060E070, 0x0060E0CF); + set_func_start(0x0060E0D0, 0x0060E0D0); + set_func_end(0x0060E0D0, 0x0060E12F); + set_func_start(0x0060E130, 0x0060E130); + set_func_end(0x0060E130, 0x0060E1B0); + set_func_start(0x0060E1B0, 0x0060E1B0); + set_func_end(0x0060E1B0, 0x0060E230); + set_func_start(0x0060E230, 0x0060E230); + set_func_end(0x0060E230, 0x0060E28F); + set_func_start(0x0060E290, 0x0060E290); + set_func_end(0x0060E290, 0x0060E30E); + set_func_start(0x0060E310, 0x0060E310); + set_func_end(0x0060E310, 0x0060E3A8); + set_func_start(0x0060E3B0, 0x0060E3B0); + set_func_end(0x0060E3B0, 0x0060E40F); + set_func_start(0x0060E410, 0x0060E410); + set_func_end(0x0060E410, 0x0060E46F); + set_func_start(0x0060E470, 0x0060E470); + set_func_end(0x0060E470, 0x0060E4DC); + set_func_start(0x0060E4E0, 0x0060E4E0); + set_func_end(0x0060E4E0, 0x0060E560); + set_func_start(0x0060E560, 0x0060E560); + set_func_end(0x0060E560, 0x0060E626); + set_func_start(0x0060E630, 0x0060E630); + set_func_end(0x0060E630, 0x0060E731); + set_func_start(0x0060E740, 0x0060E740); + set_func_end(0x0060E740, 0x0060E994); + set_func_start(0x0060E9A0, 0x0060E9A0); + set_func_end(0x0060E9A0, 0x0060EA53); + set_func_start(0x0060EA60, 0x0060EA60); + set_func_end(0x0060EA60, 0x0060EADB); + set_func_start(0x0060EAE0, 0x0060EAE0); + set_func_end(0x0060EAE0, 0x0060EB5B); + set_func_start(0x0060EB60, 0x0060EB60); + set_func_end(0x0060EB60, 0x0060EC57); + set_func_start(0x0060EC60, 0x0060EC60); + set_func_end(0x0060EC60, 0x0060ED37); + set_func_start(0x0060ED40, 0x0060ED40); + set_func_end(0x0060ED40, 0x0060EF3B); + set_func_start(0x0060EF40, 0x0060EF40); + set_func_end(0x0060EF40, 0x0060F0F2); + set_func_start(0x0060F100, 0x0060F100); + set_func_end(0x0060F100, 0x0060F34F); + set_func_start(0x0060F350, 0x0060F350); + set_func_end(0x0060F350, 0x0060F3CE); + set_func_start(0x0060F3D0, 0x0060F3D0); + set_func_end(0x0060F3D0, 0x0060F47A); + set_func_start(0x0060F480, 0x0060F480); + set_func_end(0x0060F480, 0x0060F574); + set_func_start(0x0060F580, 0x0060F580); + set_func_end(0x0060F580, 0x0060F675); + set_func_start(0x0060F680, 0x0060F680); + set_func_end(0x0060F680, 0x0060F783); + set_func_start(0x0060F790, 0x0060F790); + set_func_end(0x0060F790, 0x0060F85C); + set_func_start(0x0060F860, 0x0060F860); + set_func_end(0x0060F860, 0x0060F8DE); + set_func_start(0x0060F8E0, 0x0060F8E0); + set_func_end(0x0060F8E0, 0x0060F9D8); + set_func_start(0x0060F9E0, 0x0060F9E0); + set_func_end(0x0060F9E0, 0x0060FB91); + set_func_start(0x0060FBA0, 0x0060FBA0); + set_func_end(0x0060FBA0, 0x0060FC39); + set_func_start(0x0060FC40, 0x0060FC40); + set_func_end(0x0060FC40, 0x0060FCB5); + set_func_start(0x0060FCC0, 0x0060FCC0); + set_func_end(0x0060FCC0, 0x0060FD35); + set_func_start(0x0060FD40, 0x0060FD40); + set_func_end(0x0060FD40, 0x0060FEBC); + set_func_start(0x0060FEC0, 0x0060FEC0); + set_func_end(0x0060FEC0, 0x0061003C); + set_func_start(0x00610040, 0x00610040); + set_func_end(0x00610040, 0x00610198); + set_func_start(0x006101A0, 0x006101A0); + set_func_end(0x006101A0, 0x006102F1); + set_func_start(0x00610300, 0x00610300); + set_func_end(0x00610300, 0x00610441); + set_func_start(0x00610450, 0x00610450); + set_func_end(0x00610450, 0x0061054B); + set_func_start(0x00610550, 0x00610550); + set_func_end(0x00610550, 0x006107C1); + set_func_start(0x006107D0, 0x006107D0); + set_func_end(0x006107D0, 0x0061085D); + set_func_start(0x00610860, 0x00610860); + set_func_end(0x00610860, 0x006109F2); + set_func_start(0x00610A00, 0x00610A00); + set_func_end(0x00610A00, 0x00610B59); + set_func_start(0x00610B60, 0x00610B60); + set_func_end(0x00610B60, 0x00610C93); + set_func_start(0x00610CA0, 0x00610CA0); + set_func_end(0x00610CA0, 0x00610DD3); + set_func_start(0x00610DE0, 0x00610DE0); + set_func_end(0x00610DE0, 0x00610EB4); + set_func_start(0x00610EC0, 0x00610EC0); + set_func_end(0x00610EC0, 0x00610FA6); + set_func_start(0x00610FB0, 0x00610FB0); + set_func_end(0x00610FB0, 0x00611092); + set_func_start(0x00611130, 0x00611130); + set_func_end(0x00611130, 0x006111A9); + set_func_start(0x006111B0, 0x006111B0); + set_func_end(0x006111B0, 0x00611229); + set_func_start(0x00611230, 0x00611230); + set_func_end(0x00611230, 0x006112A9); + set_func_start(0x006112B0, 0x006112B0); + set_func_end(0x006112B0, 0x00611327); + set_func_start(0x00611330, 0x00611330); + set_func_end(0x00611330, 0x006113D9); + set_func_start(0x006113E0, 0x006113E0); + set_func_end(0x006113E0, 0x006115F9); + set_func_start(0x00611600, 0x00611600); + set_func_end(0x00611600, 0x0061166E); + set_func_start(0x00611670, 0x00611670); + set_func_end(0x00611670, 0x00611779); + set_func_start(0x00611780, 0x00611780); + set_func_end(0x00611780, 0x00611812); + set_func_start(0x00611820, 0x00611820); + set_func_end(0x00611820, 0x006118B2); + set_func_start(0x006118C0, 0x006118C0); + set_func_end(0x006118C0, 0x00611A1C); + set_func_start(0x00611A20, 0x00611A20); + set_func_end(0x00611A20, 0x00611ACB); + set_func_start(0x00611AD0, 0x00611AD0); + set_func_end(0x00611AD0, 0x00611B7B); + set_func_start(0x00611B80, 0x00611B80); + set_func_end(0x00611B80, 0x00611C38); + set_func_start(0x00611C40, 0x00611C40); + set_func_end(0x00611C40, 0x00611CA2); + set_func_start(0x00611CB0, 0x00611CB0); + set_func_end(0x00611CB0, 0x00611DE9); + set_func_start(0x00611DF0, 0x00611DF0); + set_func_end(0x00611DF0, 0x0061208A); + set_func_start(0x00612090, 0x00612090); + set_func_end(0x00612090, 0x00612260); + set_func_start(0x00612260, 0x00612260); + set_func_end(0x00612260, 0x006122F4); + set_func_start(0x00612300, 0x00612300); + set_func_end(0x00612300, 0x0061235B); + set_func_start(0x00612360, 0x00612360); + set_func_end(0x00612360, 0x006123BB); + set_func_start(0x006123C0, 0x006123C0); + set_func_end(0x006123C0, 0x00612421); + set_func_start(0x00612430, 0x00612430); + set_func_end(0x00612430, 0x00612497); + set_func_start(0x006124A0, 0x006124A0); + set_func_end(0x006124A0, 0x006124FC); + set_func_start(0x00612500, 0x00612500); + set_func_end(0x00612500, 0x00612592); + set_func_start(0x006125A0, 0x006125A0); + set_func_end(0x006125A0, 0x00612605); + set_func_start(0x00612610, 0x00612610); + set_func_end(0x00612610, 0x0061266F); + set_func_start(0x00612670, 0x00612670); + set_func_end(0x00612670, 0x006127E6); + set_func_start(0x006127F0, 0x006127F0); + set_func_end(0x006127F0, 0x00612870); + set_func_start(0x00612870, 0x00612870); + set_func_end(0x00612870, 0x006128FB); + set_func_start(0x00612900, 0x00612900); + set_func_end(0x00612900, 0x00612980); + set_func_start(0x00612980, 0x00612980); + set_func_end(0x00612980, 0x00612A00); + set_func_start(0x00612A00, 0x00612A00); + set_func_end(0x00612A00, 0x00612A86); + set_func_start(0x00612A90, 0x00612A90); + set_func_end(0x00612A90, 0x00612B38); + set_func_start(0x00612B40, 0x00612B40); + set_func_end(0x00612B40, 0x00612BE6); + set_func_start(0x00612BF0, 0x00612BF0); + set_func_end(0x00612BF0, 0x00612CA4); + set_func_start(0x00612CB0, 0x00612CB0); + set_func_end(0x00612CB0, 0x00612D4B); + set_func_start(0x00612D50, 0x00612D50); + set_func_end(0x00612D50, 0x00612E17); + set_func_start(0x00612E20, 0x00612E20); + set_func_end(0x00612E20, 0x00612F08); + set_func_start(0x00612F10, 0x00612F10); + set_func_end(0x00612F10, 0x00613020); + set_func_start(0x00613020, 0x00613020); + set_func_end(0x00613020, 0x0061313E); + set_func_start(0x00613140, 0x00613140); + set_func_end(0x00613140, 0x006131DB); + set_func_start(0x006131E0, 0x006131E0); + set_func_end(0x006131E0, 0x00613207); + set_func_start(0x00613290, 0x00613290); + set_func_end(0x00613290, 0x0061332B); + set_func_start(0x00613330, 0x00613330); + set_func_end(0x00613330, 0x006133CB); + set_func_start(0x006133D0, 0x006133D0); + set_func_end(0x006133D0, 0x0061349E); + set_func_start(0x006134A0, 0x006134A0); + set_func_end(0x006134A0, 0x0061356E); + set_func_start(0x00613570, 0x00613570); + set_func_end(0x00613570, 0x006135FE); + set_func_start(0x00613700, 0x00613700); + set_func_end(0x00613700, 0x00613740); + set_func_start(0x00613740, 0x00613740); + set_func_end(0x00613740, 0x00613780); + set_func_start(0x00613780, 0x00613780); + set_func_end(0x00613780, 0x006137C1); + set_func_start(0x006137D0, 0x006137D0); + set_func_end(0x006137D0, 0x00613822); + set_func_start(0x00613830, 0x00613830); + set_func_end(0x00613830, 0x006138BC); + set_func_start(0x006138C0, 0x006138C0); + set_func_end(0x006138C0, 0x006139A6); + set_func_start(0x006139B0, 0x006139B0); + set_func_end(0x006139B0, 0x00613A5C); + set_func_start(0x00613A60, 0x00613A60); + set_func_end(0x00613A60, 0x00613B31); + set_func_start(0x00613B40, 0x00613B40); + set_func_end(0x00613B40, 0x00613C85); + set_func_start(0x00613C90, 0x00613C90); + set_func_end(0x00613C90, 0x00613D1C); + set_func_start(0x00613D20, 0x00613D20); + set_func_end(0x00613D20, 0x00613E0F); + set_func_start(0x00613E10, 0x00613E10); + set_func_end(0x00613E10, 0x00613ECD); + set_func_start(0x00613ED0, 0x00613ED0); + set_func_end(0x00613ED0, 0x00613F8C); + set_func_start(0x00613F90, 0x00613F90); + set_func_end(0x00613F90, 0x0061413A); + set_func_start(0x00614140, 0x00614140); + set_func_end(0x00614140, 0x00614187); + set_func_start(0x00614CA0, 0x00614CA0); + set_func_end(0x00614CA0, 0x00614CEF); + set_func_start(0x00614CF0, 0x00614CF0); + set_func_end(0x00614CF0, 0x00614D3F); + set_func_start(0x00614D40, 0x00614D40); + set_func_end(0x00614D40, 0x00614D83); + set_func_start(0x00614E60, 0x00614E60); + set_func_end(0x00614E60, 0x00614EEE); + set_func_start(0x00614EF0, 0x00614EF0); + set_func_end(0x00614EF0, 0x00614FC6); + set_func_start(0x006160B0, 0x006160B0); + set_func_end(0x006160B0, 0x00616211); + set_func_start(0x006162C0, 0x006162C0); + set_func_end(0x006162C0, 0x006163AD); + set_func_start(0x006163B0, 0x006163B0); + set_func_end(0x006163B0, 0x006164A5); + set_func_start(0x00616800, 0x00616800); + set_func_end(0x00616800, 0x0061682E); + set_func_start(0x00616AD0, 0x00616AD0); + set_func_end(0x00616AD0, 0x00616AE8); + set_func_start(0x00632050, 0x00632050); + set_func_start(0x00653A10, 0x00653A10); + set_func_start(0x00681290, 0x00681290); + set_func_end(0x00681290, 0x00681301); + set_func_start(0x006813B0, 0x006813B0); + set_func_end(0x006813B0, 0x006813CD); + set_func_start(0x006813D0, 0x006813D0); + set_func_end(0x006813D0, 0x006813EC); + set_func_start(0x006817E0, 0x006817E0); + set_func_end(0x006817E0, 0x006817F5); + set_func_start(0x00681AB0, 0x00681AB0); + set_func_end(0x00681AB0, 0x00681AFB); + set_func_start(0x00681B00, 0x00681B00); + set_func_start(0x00681BE0, 0x00681BE0); + set_func_end(0x00681BE0, 0x00681CAB); + set_func_start(0x00681CB0, 0x00681CB0); + set_func_end(0x00681CB0, 0x00681D87); + set_func_start(0x00682340, 0x00682340); + set_func_end(0x00682340, 0x0068239E); + set_func_start(0x00682400, 0x00682400); + set_func_end(0x00682400, 0x00682781); + set_func_start(0x006828C0, 0x006828C0); + set_func_end(0x006828C0, 0x006828FE); + set_func_start(0x00682A00, 0x00682A00); + set_func_end(0x00682A00, 0x00682A33); + set_func_start(0x00682CB0, 0x00682CB0); + set_func_end(0x00682CB0, 0x00682CCB); + set_func_start(0x00682D00, 0x00682D00); + set_func_end(0x00682D00, 0x00682D10); + set_func_start(0x00682D20, 0x00682D20); + set_func_end(0x00682D20, 0x00682D27); + set_func_start(0x00682D40, 0x00682D40); + set_func_end(0x00682D40, 0x00682D48); + set_func_start(0x00682D70, 0x00682D70); + set_func_end(0x00682D70, 0x00682D76); + set_func_start(0x00682E50, 0x00682E50); + set_func_end(0x00682E50, 0x00682E66); + set_func_start(0x00682F40, 0x00682F40); + set_func_end(0x00682F40, 0x00682F66); + set_func_start(0x00683080, 0x00683080); + set_func_end(0x00683080, 0x006830A4); + set_func_start(0x006830B0, 0x006830B0); + set_func_end(0x006830B0, 0x006830F9); + set_func_start(0x00683100, 0x00683100); + set_func_end(0x00683100, 0x00683121); + set_func_start(0x00683130, 0x00683130); + set_func_end(0x00683130, 0x00683142); + set_func_start(0x00683150, 0x00683150); + set_func_end(0x00683150, 0x00683171); + set_func_start(0x00683180, 0x00683180); + set_func_end(0x00683180, 0x006831A0); + set_func_start(0x006833A0, 0x006833A0); + set_func_end(0x006833A0, 0x006833DD); + set_func_start(0x006833E0, 0x006833E0); + set_func_end(0x006833E0, 0x00683554); + set_func_start(0x00683560, 0x00683560); + set_func_end(0x00683560, 0x00683577); + set_func_start(0x00683580, 0x00683580); + set_func_end(0x00683580, 0x006835D6); + set_func_start(0x006835E0, 0x006835E0); + set_func_end(0x006835E0, 0x00683602); + set_func_start(0x00683610, 0x00683610); + set_func_end(0x00683610, 0x00683632); + set_func_start(0x00683640, 0x00683640); + set_func_end(0x00683640, 0x00683650); + set_func_start(0x00683650, 0x00683650); + set_func_end(0x00683650, 0x00683657); + set_func_start(0x00683660, 0x00683660); + set_func_end(0x00683660, 0x00683670); + set_func_start(0x006840F0, 0x006840F0); + set_func_end(0x006840F0, 0x0068416C); + set_func_start(0x00684190, 0x00684190); + set_func_end(0x00684190, 0x006841AF); + set_func_start(0x00684360, 0x00684360); + set_func_end(0x00684360, 0x006843B0); + set_func_start(0x00684440, 0x00684440); + set_func_end(0x00684440, 0x006844B9); + set_func_start(0x006847D0, 0x006847D0); + set_func_end(0x006847D0, 0x00684843); + set_func_start(0x00684850, 0x00684850); + set_func_end(0x00684850, 0x0068489F); + set_func_start(0x006848A0, 0x006848A0); + set_func_end(0x006848A0, 0x00684900); + set_func_start(0x00684900, 0x00684900); + set_func_end(0x00684900, 0x0068492D); + set_func_start(0x00684970, 0x00684970); + set_func_end(0x00684970, 0x00684AC8); + set_func_start(0x00684AD0, 0x00684AD0); + set_func_end(0x00684AD0, 0x00684B4A); + set_func_start(0x00684B50, 0x00684B50); + set_func_end(0x00684B50, 0x00684B99); + set_func_start(0x00684C20, 0x00684C20); + set_func_end(0x00684C20, 0x00684C3E); + set_func_start(0x00684C40, 0x00684C40); + set_func_end(0x00684C40, 0x00684D07); + set_func_start(0x00684D10, 0x00684D10); + set_func_end(0x00684D10, 0x00684D6C); + set_func_start(0x00685970, 0x00685970); + set_func_end(0x00685970, 0x006859DB); + set_func_start(0x006859E0, 0x006859E0); + set_func_end(0x006859E0, 0x00685A65); + set_func_start(0x006859E0, 0x006859E0); + set_func_end(0x006859E0, 0x00685A65); + set_func_start(0x00685A70, 0x00685A70); + set_func_end(0x00685A70, 0x00685B4E); + set_func_start(0x00685B50, 0x00685B50); + set_func_end(0x00685B50, 0x00685BFE); + set_func_start(0x00685C60, 0x00685C60); + set_func_end(0x00685C60, 0x00685CCB); + set_func_start(0x00685EB0, 0x00685EB0); + set_func_end(0x00685EB0, 0x00685F33); + set_func_start(0x00685F50, 0x00685F50); + set_func_end(0x00685F50, 0x00685FB0); + set_func_start(0x00685FB0, 0x00685FB0); + set_func_end(0x00685FB0, 0x00686116); + set_func_start(0x00687660, 0x00687660); + set_func_end(0x00687660, 0x006876C9); + set_func_start(0x006876D0, 0x006876D0); + set_func_end(0x006876D0, 0x0068773F); + set_func_start(0x00687A90, 0x00687A90); + set_func_end(0x00687A90, 0x00687FCA); + set_func_start(0x00688340, 0x00688340); + set_func_end(0x00688340, 0x00688372); + set_func_start(0x00688690, 0x00688690); + set_func_end(0x00688690, 0x0068903F); + set_func_start(0x006897C0, 0x006897C0); + set_func_end(0x006897C0, 0x00689A49); + set_func_start(0x00689A50, 0x00689A50); + set_func_end(0x00689A50, 0x00689A6F); + set_func_start(0x00689EF0, 0x00689EF0); + set_func_end(0x00689EF0, 0x00689F14); + set_func_start(0x0068BBC0, 0x0068BBC0); + set_func_end(0x0068BBC0, 0x0068BD15); + set_func_start(0x0068BF20, 0x0068BF20); + set_func_end(0x0068BF20, 0x0068BF44); + set_func_start(0x0068C220, 0x0068C220); + set_func_end(0x0068C220, 0x0068C244); + set_func_start(0x0068E180, 0x0068E180); + set_func_end(0x0068E180, 0x0068E1E8); + set_func_start(0x0068E250, 0x0068E250); + set_func_end(0x0068E250, 0x0068E448); + set_func_start(0x0068E720, 0x0068E720); + set_func_end(0x0068E720, 0x0068E742); + set_func_start(0x0068E750, 0x0068E750); + set_func_end(0x0068E750, 0x0068E7D6); + set_func_start(0x0068E810, 0x0068E810); + set_func_end(0x0068E810, 0x0068E8F2); + set_func_start(0x0068E900, 0x0068E900); + set_func_end(0x0068E900, 0x0068E975); + set_func_start(0x0068EBB0, 0x0068EBB0); + set_func_end(0x0068EBB0, 0x0068ED78); + set_func_start(0x0068ED80, 0x0068ED80); + set_func_end(0x0068ED80, 0x0068EE13); + set_func_start(0x0068EE20, 0x0068EE20); + set_func_end(0x0068EE20, 0x0068F36D); + set_func_start(0x0068F3D0, 0x0068F3D0); + set_func_end(0x0068F3D0, 0x0068F692); + set_func_start(0x0068FA60, 0x0068FA60); + set_func_end(0x0068FA60, 0x0068FADC); + set_func_start(0x0068FAE0, 0x0068FAE0); + set_func_end(0x0068FAE0, 0x0068FB07); + set_func_start(0x0068FB10, 0x0068FB10); + set_func_end(0x0068FB10, 0x0068FCDC); + set_func_start(0x0068FCE0, 0x0068FCE0); + set_func_end(0x0068FCE0, 0x0068FCFE); + set_func_start(0x0068FD00, 0x0068FD00); + set_func_end(0x0068FD00, 0x0068FD49); + set_func_start(0x0068FD50, 0x0068FD50); + set_func_end(0x0068FD50, 0x0068FE80); + set_func_start(0x00690230, 0x00690230); + set_func_end(0x00690230, 0x0069038D); + set_func_start(0x006904D0, 0x006904D0); + set_func_end(0x006904D0, 0x006905E8); + set_func_start(0x00690680, 0x00690680); + set_func_end(0x00690680, 0x00690742); + set_func_start(0x00690750, 0x00690750); + set_func_end(0x00690750, 0x00690821); + set_func_start(0x0069FB00, 0x0069FB00); + set_func_end(0x0069FB00, 0x0069FB68); + set_func_start(0x0069FB70, 0x0069FB70); + set_func_end(0x0069FB70, 0x0069FBB8); + set_func_start(0x006A00C0, 0x006A00C0); + set_func_end(0x006A00C0, 0x006A0102); + set_func_start(0x006A0360, 0x006A0360); + set_func_end(0x006A0360, 0x006A0834); + set_func_start(0x006A1A90, 0x006A1A90); + set_func_end(0x006A1A90, 0x006A1C24); + set_func_start(0x006A2C00, 0x006A2C00); + set_func_end(0x006A2C00, 0x006A2D7E); + set_func_start(0x006A2D80, 0x006A2D80); + set_func_end(0x006A2D80, 0x006A3062); + set_func_start(0x006A3070, 0x006A3070); + set_func_end(0x006A3070, 0x006A30CF); + set_func_start(0x006A3350, 0x006A3350); + set_func_end(0x006A3350, 0x006A3417); + set_func_start(0x006A3420, 0x006A3420); + set_func_end(0x006A3420, 0x006A3449); + set_func_start(0x006A3450, 0x006A3450); + set_func_end(0x006A3450, 0x006A3611); + set_func_start(0x006A3620, 0x006A3620); + set_func_end(0x006A3620, 0x006A3716); + set_func_start(0x006A3810, 0x006A3810); + set_func_end(0x006A3810, 0x006A386E); + set_func_start(0x006A39E0, 0x006A39E0); + set_func_end(0x006A39E0, 0x006A3A59); + set_func_start(0x006A3A60, 0x006A3A60); + set_func_end(0x006A3A60, 0x006A3C34); + set_func_start(0x006A3C40, 0x006A3C40); + set_func_end(0x006A3C40, 0x006A40F2); + set_func_start(0x006A4190, 0x006A4190); + set_func_end(0x006A4190, 0x006A41EC); + set_func_start(0x006A41F0, 0x006A41F0); + set_func_end(0x006A41F0, 0x006A424C); + set_func_start(0x006A4700, 0x006A4700); + set_func_end(0x006A4700, 0x006A4846); + set_func_start(0x006A4850, 0x006A4850); + set_func_end(0x006A4850, 0x006A48FE); + set_func_start(0x006A4900, 0x006A4900); + set_func_end(0x006A4900, 0x006A4AB3); + set_func_start(0x006A4C30, 0x006A4C30); + set_func_end(0x006A4C30, 0x006A5499); + set_func_start(0x006A5540, 0x006A5540); + set_func_end(0x006A5540, 0x006A5677); + set_func_start(0x006A5700, 0x006A5700); + set_func_end(0x006A5700, 0x006A5934); + set_func_start(0x006A5940, 0x006A5940); + set_func_end(0x006A5940, 0x006A59F5); + set_func_start(0x006A5A00, 0x006A5A00); + set_func_end(0x006A5A00, 0x006A5A25); + set_func_start(0x006A5A30, 0x006A5A30); + set_func_end(0x006A5A30, 0x006A5A92); + set_func_start(0x006A5C70, 0x006A5C70); + set_func_end(0x006A5C70, 0x006A5D48); + set_func_start(0x006A5E10, 0x006A5E10); + set_func_end(0x006A5E10, 0x006A5E36); + set_func_start(0x006A5EF0, 0x006A5EF0); + set_func_end(0x006A5EF0, 0x006A5FDF); + set_func_start(0x006A74B0, 0x006A74B0); + set_func_end(0x006A74B0, 0x006A7538); + set_func_start(0x006A9920, 0x006A9920); + set_func_end(0x006A9920, 0x006A99D4); + set_func_start(0x006A9B40, 0x006A9B40); + set_func_end(0x006A9B40, 0x006A9D88); + set_func_start(0x006A9E00, 0x006A9E00); + set_func_end(0x006A9E00, 0x006A9E09); + set_func_start(0x006A9FE0, 0x006A9FE0); + set_func_end(0x006A9FE0, 0x006AA06D); + set_func_start(0x006AA070, 0x006AA070); + set_func_end(0x006AA070, 0x006AA0C5); + set_func_start(0x006AA0D0, 0x006AA0D0); + set_func_end(0x006AA0D0, 0x006AA125); + set_func_start(0x006AA130, 0x006AA130); + set_func_end(0x006AA130, 0x006AA18A); + set_func_start(0x006AA2F0, 0x006AA2F0); + set_func_end(0x006AA2F0, 0x006AA346); + set_func_start(0x006AA350, 0x006AA350); + set_func_end(0x006AA350, 0x006AA379); + set_func_start(0x006AA380, 0x006AA380); + set_func_end(0x006AA380, 0x006AA3B0); + set_func_start(0x006AA3B0, 0x006AA3B0); + set_func_end(0x006AA3B0, 0x006AA3E0); + set_func_start(0x006AA3E0, 0x006AA3E0); + set_func_end(0x006AA3E0, 0x006AA41B); + set_func_start(0x006AA420, 0x006AA420); + set_func_end(0x006AA420, 0x006AA51E); + set_func_start(0x006AA520, 0x006AA520); + set_func_end(0x006AA520, 0x006AA62F); + set_func_start(0x006AA630, 0x006AA630); + set_func_end(0x006AA630, 0x006AA6F2); + set_func_start(0x006AA700, 0x006AA700); + set_func_end(0x006AA700, 0x006AA81D); + set_func_start(0x006AA840, 0x006AA840); + set_func_end(0x006AA840, 0x006AA867); + set_func_start(0x006AA870, 0x006AA870); + set_func_end(0x006AA870, 0x006AA948); + set_func_start(0x006AAF40, 0x006AAF40); + set_func_end(0x006AAF40, 0x006AAFA5); + set_func_start(0x006AAFB0, 0x006AAFB0); + set_func_end(0x006AAFB0, 0x006AB0D4); + set_func_start(0x006AB0E0, 0x006AB0E0); + set_func_end(0x006AB0E0, 0x006AB212); + set_func_start(0x006AB220, 0x006AB220); + set_func_end(0x006AB220, 0x006AB381); + set_func_start(0x006AB390, 0x006AB390); + set_func_end(0x006AB390, 0x006AB447); + set_func_start(0x006AB450, 0x006AB450); + set_func_end(0x006AB450, 0x006AB4A1); + set_func_start(0x006AB4B0, 0x006AB4B0); + set_func_end(0x006AB4B0, 0x006AB5B8); + set_func_start(0x006AB5C0, 0x006AB5C0); + set_func_end(0x006AB5C0, 0x006AB614); + set_func_start(0x006AB620, 0x006AB620); + set_func_end(0x006AB620, 0x006AB6B9); + set_func_start(0x006AB700, 0x006AB700); + set_func_end(0x006AB700, 0x006AB75C); + set_func_start(0x006AB760, 0x006AB760); + set_func_end(0x006AB760, 0x006AB7DF); + set_func_start(0x006AB810, 0x006AB810); + set_func_end(0x006AB810, 0x006AB85E); + set_func_start(0x006AB860, 0x006AB860); + set_func_end(0x006AB860, 0x006ABAAF); + set_func_start(0x006AE8B0, 0x006AE8B0); + set_func_end(0x006AE8B0, 0x006AE8DA); + set_func_start(0x006AE900, 0x006AE900); + set_func_end(0x006AE900, 0x006AE990); + set_func_start(0x006AE990, 0x006AE990); + set_func_end(0x006AE990, 0x006AE9D6); + set_func_start(0x006AE9E0, 0x006AE9E0); + set_func_end(0x006AE9E0, 0x006AEB93); + set_func_start(0x006AEBA0, 0x006AEBA0); + set_func_end(0x006AEBA0, 0x006AEE61); + set_func_start(0x006AEE70, 0x006AEE70); + set_func_end(0x006AEE70, 0x006AF133); + set_func_start(0x006AF140, 0x006AF140); + set_func_end(0x006AF140, 0x006AF33F); + set_func_start(0x006AF340, 0x006AF340); + set_func_end(0x006AF340, 0x006AF65D); + set_func_start(0x006AF6A0, 0x006AF6A0); + set_func_end(0x006AF6A0, 0x006AF6D1); + set_func_start(0x006AF730, 0x006AF730); + set_func_end(0x006AF730, 0x006AF7E9); + set_func_start(0x006AF810, 0x006AF810); + set_func_end(0x006AF810, 0x006AF984); + set_func_start(0x006AFCE0, 0x006AFCE0); + set_func_end(0x006AFCE0, 0x006AFF06); + set_func_start(0x006AFF10, 0x006AFF10); + set_func_end(0x006AFF10, 0x006AFFCF); + set_func_start(0x006AFFD0, 0x006AFFD0); + set_func_end(0x006AFFD0, 0x006B012E); + set_func_start(0x006B0960, 0x006B0960); + set_func_start(0x006B1B80, 0x006B1B80); + set_func_start(0x006B1B90, 0x006B1B90); + set_func_start(0x006B1BA0, 0x006B1BA0); + set_func_start(0x006B33D0, 0x006B33D0); + set_func_end(0x006B33D0, 0x006B3428); + set_func_start(0x006B3430, 0x006B3430); + set_func_end(0x006B3430, 0x006B344C); + set_func_start(0x006B4060, 0x006B4060); + set_func_end(0x006B4060, 0x006B412B); + set_func_start(0x006B4130, 0x006B4130); + set_func_end(0x006B4130, 0x006B43F3); + set_func_start(0x006B4400, 0x006B4400); + set_func_end(0x006B4400, 0x006B44A8); + set_func_start(0x006B44B0, 0x006B44B0); + set_func_end(0x006B44B0, 0x006B44E3); + set_func_start(0x006B44F0, 0x006B44F0); + set_func_end(0x006B44F0, 0x006B455F); + set_func_start(0x006B4560, 0x006B4560); + set_func_end(0x006B4560, 0x006B45BB); + set_func_start(0x006B45C0, 0x006B45C0); + set_func_end(0x006B45C0, 0x006B461B); + set_func_start(0x006B4620, 0x006B4620); + set_func_end(0x006B4620, 0x006B4759); + set_func_start(0x006B4760, 0x006B4760); + set_func_end(0x006B4760, 0x006B4899); + set_func_start(0x006B48A0, 0x006B48A0); + set_func_end(0x006B48A0, 0x006B4943); + set_func_start(0x006B4950, 0x006B4950); + set_func_end(0x006B4950, 0x006B49F3); + set_func_start(0x006B4A00, 0x006B4A00); + set_func_end(0x006B4A00, 0x006B4A33); + set_func_start(0x006B4A40, 0x006B4A40); + set_func_end(0x006B4A40, 0x006B4A73); + set_func_start(0x006B4A80, 0x006B4A80); + set_func_end(0x006B4A80, 0x006B4C7D); + set_func_start(0x006B4EB0, 0x006B4EB0); + set_func_end(0x006B4EB0, 0x006B4EDA); + set_func_start(0x006B6AF0, 0x006B6AF0); + set_func_end(0x006B6AF0, 0x006B6B44); + set_func_start(0x006B6B50, 0x006B6B50); + set_func_end(0x006B6B50, 0x006B6BA0); + set_func_start(0x006B6BA0, 0x006B6BA0); + set_func_end(0x006B6BA0, 0x006B6BCB); + set_func_start(0x006B6BD0, 0x006B6BD0); + set_func_end(0x006B6BD0, 0x006B6BFB); + set_func_start(0x006B6C00, 0x006B6C00); + set_func_end(0x006B6C00, 0x006B6C2B); + set_func_start(0x006B6C30, 0x006B6C30); + set_func_end(0x006B6C30, 0x006B6C5B); + set_func_start(0x006B6C60, 0x006B6C60); + set_func_end(0x006B6C60, 0x006B6CE7); + set_func_start(0x006B6CF0, 0x006B6CF0); + set_func_end(0x006B6CF0, 0x006B6D75); + set_func_start(0x006B6D80, 0x006B6D80); + set_func_end(0x006B6D80, 0x006B6E05); + set_func_start(0x006B7B70, 0x006B7B70); + set_func_end(0x006B7B70, 0x006B7BC4); + set_func_start(0x006B7BD0, 0x006B7BD0); + set_func_end(0x006B7BD0, 0x006B7C8A); + set_func_start(0x006B7C90, 0x006B7C90); + set_func_end(0x006B7C90, 0x006B7D6F); + set_func_start(0x006B7D70, 0x006B7D70); + set_func_end(0x006B7D70, 0x006B7D9B); + set_func_start(0x006B7DA0, 0x006B7DA0); + set_func_end(0x006B7DA0, 0x006B7DCB); + set_func_start(0x006BCE10, 0x006BCE10); + set_func_end(0x006BCE10, 0x006BCE32); + set_func_start(0x006BCE40, 0x006BCE40); + set_func_end(0x006BCE40, 0x006BCE52); + set_func_start(0x006BCE60, 0x006BCE60); + set_func_end(0x006BCE60, 0x006BCE98); + set_func_start(0x006BCEA0, 0x006BCEA0); + set_func_end(0x006BCEA0, 0x006BCEE7); + set_func_start(0x006BD020, 0x006BD020); + set_func_end(0x006BD020, 0x006BD069); + set_func_start(0x006BD0A0, 0x006BD0A0); + set_func_end(0x006BD0A0, 0x006BD0BE); + set_func_start(0x006BD0C0, 0x006BD0C0); + set_func_end(0x006BD0C0, 0x006BD0DF); + set_func_start(0x006BD5A0, 0x006BD5A0); + set_func_end(0x006BD5A0, 0x006BD89D); + set_func_start(0x006BDFC0, 0x006BDFC0); + set_func_end(0x006BDFC0, 0x006BE014); + set_func_start(0x006BE020, 0x006BE020); + set_func_end(0x006BE020, 0x006BE221); + set_func_start(0x006BE2B0, 0x006BE2B0); + set_func_end(0x006BE2B0, 0x006BE390); + set_func_start(0x006BE390, 0x006BE390); + set_func_end(0x006BE390, 0x006BE3AD); + set_func_start(0x006BE3B0, 0x006BE3B0); + set_func_end(0x006BE3B0, 0x006BE3DD); + set_func_start(0x006BE3E0, 0x006BE3E0); + set_func_end(0x006BE3E0, 0x006BEE87); + set_func_start(0x006BF160, 0x006BF160); + set_func_end(0x006BF160, 0x006BF202); + set_func_start(0x006BF370, 0x006BF370); + set_func_end(0x006BF370, 0x006BF4B2); + set_func_start(0x006BF6D0, 0x006BF6D0); + set_func_end(0x006BF6D0, 0x006BFB60); + set_func_start(0x006BFDA0, 0x006BFDA0); + set_func_end(0x006BFDA0, 0x006BFDFE); + set_func_start(0x006BFE00, 0x006BFE00); + set_func_end(0x006BFE00, 0x006BFE5C); + set_func_start(0x006BFE60, 0x006BFE60); + set_func_end(0x006BFE60, 0x006C004D); + set_func_start(0x006C8CC0, 0x006C8CC0); + set_func_end(0x006C8CC0, 0x006C8E6B); + set_func_start(0x00743550, 0x00743550); + set_func_start(0x00743560, 0x00743560); + set_func_start(0x0074D580, 0x0074D580); + set_func_end(0x0074D580, 0x0074D5A8); + set_func_start(0x0074D5B0, 0x0074D5B0); + set_func_end(0x0074D5B0, 0x0074D5FD); + set_func_start(0x0074D600, 0x0074D600); + set_func_end(0x0074D600, 0x0074D6A3); + set_func_start(0x0074D9E0, 0x0074D9E0); + set_func_end(0x0074D9E0, 0x0074D9FF); + set_func_start(0x0074F2B0, 0x0074F2B0); + set_func_end(0x0074F2B0, 0x0074F2CC); + set_func_start(0x0074FA60, 0x0074FA60); + set_func_end(0x0074FA60, 0x0074FA6D); + set_func_start(0x0074FA70, 0x0074FA70); + set_func_end(0x0074FA70, 0x0074FADD); + set_func_start(0x0074FAE0, 0x0074FAE0); + set_func_end(0x0074FAE0, 0x0074FC20); + set_func_start(0x0074FC20, 0x0074FC20); + set_func_end(0x0074FC20, 0x0074FD36); + set_func_start(0x0074FF70, 0x0074FF70); + set_func_end(0x0074FF70, 0x00750206); + set_func_start(0x00751120, 0x00751120); + set_func_end(0x00751120, 0x0075114B); + set_func_start(0x00763730, 0x00763730); + set_func_end(0x00763730, 0x007637CD); + set_func_start(0x007637D0, 0x007637D0); + set_func_end(0x007637D0, 0x0076382B); + set_func_start(0x00763830, 0x00763830); + set_func_end(0x00763830, 0x00763855); + set_func_start(0x00763860, 0x00763860); + set_func_end(0x00763860, 0x00763996); + set_func_start(0x007639A0, 0x007639A0); + set_func_end(0x007639A0, 0x007639CF); + set_func_start(0x007639D0, 0x007639D0); + set_func_end(0x007639D0, 0x00763A54); + set_func_start(0x00763A60, 0x00763A60); + set_func_end(0x00763A60, 0x00763AAA); + set_func_start(0x00763B40, 0x00763B40); + set_func_end(0x00763B40, 0x00763B83); + set_func_start(0x00763B90, 0x00763B90); + set_func_end(0x00763B90, 0x00763BD6); + set_func_start(0x00763BE0, 0x00763BE0); + set_func_end(0x00763BE0, 0x00763C0A); + set_func_start(0x00763C50, 0x00763C50); + set_func_end(0x00763C50, 0x00763C5D); + set_func_start(0x00763D60, 0x00763D60); + set_func_end(0x00763D60, 0x00763D71); + set_func_start(0x00763DF0, 0x00763DF0); + set_func_end(0x00763DF0, 0x00764039); + set_func_start(0x00764040, 0x00764040); + set_func_end(0x00764040, 0x00764196); + set_func_start(0x007641A0, 0x007641A0); + set_func_end(0x007641A0, 0x007643EA); + set_func_start(0x007643F0, 0x007643F0); + set_func_end(0x007643F0, 0x00764413); + set_func_start(0x00764520, 0x00764520); + set_func_end(0x00764520, 0x007645D3); + set_func_start(0x007645E0, 0x007645E0); + set_func_end(0x007645E0, 0x00764788); + set_func_start(0x00764800, 0x00764800); + set_func_end(0x00764800, 0x00764985); + set_func_start(0x00764990, 0x00764990); + set_func_end(0x00764990, 0x00764A03); + set_func_start(0x00764A10, 0x00764A10); + set_func_end(0x00764A10, 0x00764B88); + set_func_start(0x00764B90, 0x00764B90); + set_func_end(0x00764B90, 0x00764E4F); + set_func_start(0x00765270, 0x00765270); + set_func_end(0x00765270, 0x00765359); + set_func_start(0x007653B0, 0x007653B0); + set_func_end(0x007653B0, 0x00765400); + set_func_start(0x007658A0, 0x007658A0); + set_func_end(0x007658A0, 0x007659BF); + set_func_start(0x007659C0, 0x007659C0); + set_func_end(0x007659C0, 0x00765AE5); + set_func_start(0x00765AF0, 0x00765AF0); + set_func_end(0x00765AF0, 0x00765FB2); + set_func_start(0x00765FF0, 0x00765FF0); + set_func_end(0x00765FF0, 0x007660C2); + set_func_start(0x00766140, 0x00766140); + set_func_end(0x00766140, 0x00766295); + set_func_start(0x00766530, 0x00766530); + set_func_end(0x00766530, 0x007665C2); + set_func_start(0x007668C0, 0x007668C0); + set_func_end(0x007668C0, 0x00766936); + set_func_start(0x00767100, 0x00767100); + set_func_end(0x00767100, 0x0076719C); + set_func_start(0x007673F0, 0x007673F0); + set_func_end(0x007673F0, 0x00767434); + set_func_start(0x00767FC0, 0x00767FC0); + set_func_end(0x00767FC0, 0x007681E9); + set_func_start(0x00768340, 0x00768340); + set_func_end(0x00768340, 0x00768402); + set_func_start(0x00768410, 0x00768410); + set_func_end(0x00768410, 0x0076841B); + set_func_start(0x00768440, 0x00768440); + set_func_end(0x00768440, 0x0076845B); + set_func_start(0x007689E0, 0x007689E0); + set_func_end(0x007689E0, 0x00768A19); + set_func_start(0x00769100, 0x00769100); + set_func_end(0x00769100, 0x007691B3); + set_func_start(0x00769230, 0x00769230); + set_func_end(0x00769230, 0x00769236); + set_func_start(0x0076AB80, 0x0076AB80); + set_func_end(0x0076AB80, 0x0076B287); + set_func_start(0x0076E4A0, 0x0076E4A0); + set_func_end(0x0076E4A0, 0x0076E4D2); + set_func_start(0x0076E540, 0x0076E540); + set_func_end(0x0076E540, 0x0076E59A); + set_func_start(0x0076E5A0, 0x0076E5A0); + set_func_end(0x0076E5A0, 0x0076E5C4); + set_func_start(0x0076E5E0, 0x0076E5E0); + set_func_end(0x0076E5E0, 0x0076E6D6); + set_func_start(0x0076E6E0, 0x0076E6E0); + set_func_end(0x0076E6E0, 0x0076E712); + set_func_start(0x0076E720, 0x0076E720); + set_func_end(0x0076E720, 0x0076E756); + set_func_start(0x0076E760, 0x0076E760); + set_func_end(0x0076E760, 0x0076E77B); + set_func_start(0x0076E780, 0x0076E780); + set_func_end(0x0076E780, 0x0076E79B); + set_func_start(0x0076ED20, 0x0076ED20); + set_func_end(0x0076ED20, 0x0076ED98); + set_func_start(0x0076EE30, 0x0076EE30); + set_func_end(0x0076EE30, 0x0076EE5E); + set_func_start(0x0076EF70, 0x0076EF70); + set_func_end(0x0076EF70, 0x0076F001); + set_func_start(0x0076F070, 0x0076F070); + set_func_end(0x0076F070, 0x0076F09E); + set_func_start(0x0076F0A0, 0x0076F0A0); + set_func_end(0x0076F0A0, 0x0076F0CE); + set_func_start(0x0076F1E0, 0x0076F1E0); + set_func_end(0x0076F1E0, 0x0076F331); + set_func_start(0x0076F640, 0x0076F640); + set_func_end(0x0076F640, 0x0076F6B9); + set_func_start(0x00770840, 0x00770840); + set_func_end(0x00770840, 0x007708E9); + set_func_start(0x007709A0, 0x007709A0); + set_func_end(0x007709A0, 0x007709E8); + set_func_start(0x00771870, 0x00771870); + set_func_end(0x00771870, 0x00771886); + set_func_start(0x00771890, 0x00771890); + set_func_end(0x00771890, 0x007718F2); + set_func_start(0x00771900, 0x00771900); + set_func_end(0x00771900, 0x00771957); + set_func_start(0x00771B80, 0x00771B80); + set_func_end(0x00771B80, 0x00771C15); + set_func_start(0x00772B20, 0x00772B20); + set_func_end(0x00772B20, 0x00772B2C); + set_func_start(0x00773590, 0x00773590); + set_func_end(0x00773590, 0x007737C2); + set_func_start(0x00773890, 0x00773890); + set_func_end(0x00773890, 0x00773986); + set_func_start(0x00773990, 0x00773990); + set_func_end(0x00773990, 0x007739AD); + set_func_start(0x007739E0, 0x007739E0); + set_func_end(0x007739E0, 0x007739F4); + set_func_start(0x00773A80, 0x00773A80); + set_func_end(0x00773A80, 0x00773C81); + set_func_start(0x00774620, 0x00774620); + set_func_end(0x00774620, 0x0077462E); + set_func_start(0x00774630, 0x00774630); + set_func_end(0x00774630, 0x00774638); + set_func_start(0x00774640, 0x00774640); + set_func_end(0x00774640, 0x00774648); + set_func_start(0x00774650, 0x00774650); + set_func_end(0x00774650, 0x00774658); + set_func_start(0x00774660, 0x00774660); + set_func_end(0x00774660, 0x00774675); + set_func_start(0x00774690, 0x00774690); + set_func_end(0x00774690, 0x007746A4); + set_func_start(0x00774720, 0x00774720); + set_func_end(0x00774720, 0x0077472A); + set_func_start(0x00774730, 0x00774730); + set_func_end(0x00774730, 0x0077473A); + set_func_start(0x00777940, 0x00777940); + set_func_end(0x00777940, 0x00777971); + set_func_start(0x00777980, 0x00777980); + set_func_end(0x00777980, 0x00777A78); + set_func_start(0x007DAB80, 0x007DAB80); + set_func_end(0x007DAB80, 0x007DAC34); + set_func_start(0x007DAC40, 0x007DAC40); + set_func_end(0x007DAC40, 0x007DACEA); + set_func_start(0x007DACF0, 0x007DACF0); + set_func_end(0x007DACF0, 0x007DADD2); + set_func_start(0x007DAE40, 0x007DAE40); + set_func_end(0x007DAE40, 0x007DAF22); + set_func_start(0x007DAF90, 0x007DAF90); + set_func_end(0x007DAF90, 0x007DAFD7); + set_func_start(0x007DAFE0, 0x007DAFE0); + set_func_end(0x007DAFE0, 0x007DB027); + set_func_start(0x007DB030, 0x007DB030); + set_func_end(0x007DB030, 0x007DB0AA); + set_func_start(0x007DB0B0, 0x007DB0B0); + set_func_end(0x007DB0B0, 0x007DB1E3); + set_func_start(0x007DB1F0, 0x007DB1F0); + set_func_end(0x007DB1F0, 0x007DB277); + set_func_start(0x007DB280, 0x007DB280); + set_func_end(0x007DB280, 0x007DB36C); + set_func_start(0x007DB370, 0x007DB370); + set_func_end(0x007DB370, 0x007DB3FB); + set_func_start(0x007DB8D0, 0x007DB8D0); + set_func_end(0x007DB8D0, 0x007DB9AC); + set_func_start(0x007DC910, 0x007DC910); + set_func_end(0x007DC910, 0x007DC94A); + set_func_start(0x007DEEF0, 0x007DEEF0); + set_func_end(0x007DEEF0, 0x007DF0AF); + set_func_start(0x007DF0B0, 0x007DF0B0); + set_func_end(0x007DF0B0, 0x007DF142); + set_func_start(0x007FDCD0, 0x007FDCD0); + set_func_end(0x007FDCD0, 0x007FDD0A); + set_func_start(0x007FDD10, 0x007FDD10); + set_func_end(0x007FDD10, 0x007FDD56); + set_func_start(0x007FDD60, 0x007FDD60); + set_func_end(0x007FDD60, 0x007FDDA6); + set_func_start(0x008007E0, 0x008007E0); + set_func_end(0x008007E0, 0x008008C7); + set_func_start(0x008021D0, 0x008021D0); + set_func_end(0x008021D0, 0x0080226B); + set_func_start(0x00802270, 0x00802270); + set_func_end(0x00802270, 0x008022C9); + set_func_start(0x00804190, 0x00804190); + set_func_end(0x00804190, 0x0080421D); + set_func_start(0x00804220, 0x00804220); + set_func_end(0x00804220, 0x00804420); + set_func_start(0x00809E30, 0x00809E30); + set_func_end(0x00809E30, 0x00809E96); + set_func_start(0x00809EA0, 0x00809EA0); + set_func_end(0x00809EA0, 0x00809F7E); + set_func_start(0x0080DC00, 0x0080DC00); + set_func_end(0x0080DC00, 0x0080DCE3); + set_func_start(0x00819EA0, 0x00819EA0); + set_func_end(0x00819EA0, 0x0081A2B5); + set_func_start(0x0081B530, 0x0081B530); + set_func_end(0x0081B530, 0x0081B549); + set_func_start(0x0081B720, 0x0081B720); + set_func_end(0x0081B720, 0x0081B7AF); + set_func_start(0x0081B7B0, 0x0081B7B0); + set_func_end(0x0081B7B0, 0x0081B81E); + set_func_start(0x0081B820, 0x0081B820); + set_func_end(0x0081B820, 0x0081B86C); + set_func_start(0x0081B9C0, 0x0081B9C0); + set_func_end(0x0081B9C0, 0x0081BAAA); + set_func_start(0x0081BAB0, 0x0081BAB0); + set_func_end(0x0081BAB0, 0x0081BB15); + set_func_start(0x0081BB20, 0x0081BB20); + set_func_end(0x0081BB20, 0x0081BE68); + set_func_start(0x0081BE70, 0x0081BE70); + set_func_end(0x0081BE70, 0x0081BF4D); + set_func_start(0x0084DBD0, 0x0084DBD0); + set_func_start(0x0084DBF0, 0x0084DBF0); + set_func_start(0x0084DCC0, 0x0084DCC0); + set_func_start(0x0084DEB0, 0x0084DEB0); + set_func_start(0x0084DF20, 0x0084DF20); + set_func_start(0x0084DF60, 0x0084DF60); + set_func_start(0x0084E030, 0x0084E030); + set_func_start(0x0084E0E0, 0x0084E0E0); + set_func_start(0x0084E1C0, 0x0084E1C0); + set_func_start(0x0084E280, 0x0084E280); + set_func_start(0x0084E2A0, 0x0084E2A0); + set_func_start(0x0084E350, 0x0084E350); + set_func_start(0x0084E600, 0x0084E600); + set_func_start(0x0084E670, 0x0084E670); + set_func_start(0x0084E970, 0x0084E970); + set_func_start(0x0084F280, 0x0084F280); + set_func_start(0x0084F7A0, 0x0084F7A0); + set_func_start(0x00850920, 0x00850920); + set_func_start(0x008562E0, 0x008562E0); + set_func_start(0x00856370, 0x00856370); + set_func_start(0x00856760, 0x00856760); + set_func_start(0x00857CA0, 0x00857CA0); + set_func_start(0x008695B0, 0x008695B0); + set_func_end(0x008695B0, 0x008695FB); + set_func_start(0x00869720, 0x00869720); + set_func_end(0x00869720, 0x00869757); + set_func_start(0x00869760, 0x00869760); + set_func_end(0x00869760, 0x008697D3); + set_func_start(0x00869D90, 0x00869D90); + set_func_end(0x00869D90, 0x00869D9D); + set_func_start(0x00869DB0, 0x00869DB0); + set_func_end(0x00869DB0, 0x00869DF6); + set_func_start(0x00869E00, 0x00869E00); + set_func_end(0x00869E00, 0x0086A01A); + set_func_start(0x0086A020, 0x0086A020); + set_func_end(0x0086A020, 0x0086A063); + set_func_start(0x0086A0D0, 0x0086A0D0); + set_func_end(0x0086A0D0, 0x0086A130); + set_func_start(0x0086A130, 0x0086A130); + set_func_end(0x0086A130, 0x0086A194); + set_func_start(0x0086A1A0, 0x0086A1A0); + set_func_end(0x0086A1A0, 0x0086A20C); + set_func_start(0x0086AE20, 0x0086AE20); + set_func_end(0x0086AE20, 0x0086AE2B); + set_func_start(0x0086B0C0, 0x0086B0C0); + set_func_end(0x0086B0C0, 0x0086B0CB); + set_func_start(0x0086B240, 0x0086B240); + set_func_end(0x0086B240, 0x0086B27D); + set_func_start(0x0086BBD0, 0x0086BBD0); + set_func_end(0x0086BBD0, 0x0086BC2F); + set_func_start(0x0086BC30, 0x0086BC30); + set_func_end(0x0086BC30, 0x0086BC9E); + set_func_start(0x0086BE50, 0x0086BE50); + set_func_end(0x0086BE50, 0x0086BE9B); + set_func_start(0x0086BEA0, 0x0086BEA0); + set_func_end(0x0086BEA0, 0x0086BEBE); + set_func_start(0x0086C6A0, 0x0086C6A0); + set_func_end(0x0086C6A0, 0x0086C6CE); + set_func_start(0x0086D0A0, 0x0086D0A0); + set_func_end(0x0086D0A0, 0x0086D0B8); + set_func_start(0x0086D0C0, 0x0086D0C0); + set_func_end(0x0086D0C0, 0x0086D0DF); + set_func_start(0x0086F5A0, 0x0086F5A0); + set_func_end(0x0086F5A0, 0x0086F5EA); + set_func_start(0x0086F760, 0x0086F760); + set_func_end(0x0086F760, 0x0086F875); + set_func_start(0x0086F880, 0x0086F880); + set_func_end(0x0086F880, 0x0086F902); + set_func_start(0x008722A0, 0x008722A0); + set_func_end(0x008722A0, 0x008722BF); + set_func_start(0x008E5250, 0x008E5250); + set_func_end(0x008E5250, 0x008E5253); + set_func_start(0x0095BFB0, 0x0095BFB0); + set_func_end(0x0095BFB0, 0x0095BFB6); + set_func_start(0x0095CEC0, 0x0095CEC0); + set_func_end(0x0095CEC0, 0x0095CF39); + set_func_start(0x0095CF40, 0x0095CF40); + set_func_end(0x0095CF40, 0x0095CFAE); + set_func_start(0x0095CFB0, 0x0095CFB0); + set_func_end(0x0095CFB0, 0x0095D077); + set_func_start(0x0095D110, 0x0095D110); + set_func_start(0x0095D1B0, 0x0095D1B0); + set_func_start(0x009858B0, 0x009858B0); + set_func_end(0x009858B0, 0x0098594B); + set_func_start(0x00985950, 0x00985950); + set_func_end(0x00985950, 0x009859AA); + set_func_start(0x009859B0, 0x009859B0); + set_func_end(0x009859B0, 0x00985A0A); + set_func_start(0x00985A10, 0x00985A10); + set_func_end(0x00985A10, 0x00985A18); + set_func_start(0x00985A20, 0x00985A20); + set_func_end(0x00985A20, 0x00985A4A); + set_func_start(0x00985A50, 0x00985A50); + set_func_end(0x00985A50, 0x00985AD5); + set_func_start(0x00985AE0, 0x00985AE0); + set_func_end(0x00985AE0, 0x00985B0A); + set_func_start(0x00985B10, 0x00985B10); + set_func_end(0x00985B10, 0x00985BAD); + set_func_start(0x00985BB0, 0x00985BB0); + set_func_end(0x00985BB0, 0x00985BDA); + set_func_start(0x00985BE0, 0x00985BE0); + set_func_end(0x00985BE0, 0x00985C65); + set_func_start(0x00985C70, 0x00985C70); + set_func_end(0x00985C70, 0x00985C9A); + set_func_start(0x00985CA0, 0x00985CA0); + set_func_end(0x00985CA0, 0x00985D25); + set_func_start(0x00985D30, 0x00985D30); + set_func_end(0x00985D30, 0x00985D4E); + set_func_start(0x00985D50, 0x00985D50); + set_func_end(0x00985D50, 0x00985D58); + set_func_start(0x00985D60, 0x00985D60); + set_func_end(0x00985D60, 0x00985DC1); + set_func_start(0x00985DD0, 0x00985DD0); + set_func_end(0x00985DD0, 0x00985DD8); + set_func_start(0x00985DE0, 0x00985DE0); + set_func_end(0x00985DE0, 0x00985DE8); + set_func_start(0x00985DF0, 0x00985DF0); + set_func_end(0x00985DF0, 0x00985DF8); + set_func_start(0x00985E00, 0x00985E00); + set_func_end(0x00985E00, 0x00985E2D); + set_func_start(0x00985E30, 0x00985E30); + set_func_end(0x00985E30, 0x00985E5D); + set_func_start(0x00985E60, 0x00985E60); + set_func_end(0x00985E60, 0x00985E8A); + set_func_start(0x00985E90, 0x00985E90); + set_func_end(0x00985E90, 0x00985E98); + set_func_start(0x00985EF0, 0x00985EF0); + set_func_end(0x00985EF0, 0x00985F6B); + set_func_start(0x009D34B0, 0x009D34B0); + set_func_start(0x009D34C0, 0x009D34C0); + set_func_start(0x009D4260, 0x009D4260); + set_func_start(0x009DB620, 0x009DB620); + set_func_start(0x009DB630, 0x009DB630); + set_func_start(0x009DD930, 0x009DD930); + set_func_start(0x009DD940, 0x009DD940); + set_func_start(0x009DD950, 0x009DD950); + set_func_start(0x009DD960, 0x009DD960); + set_func_start(0x009DD970, 0x009DD970); + set_func_start(0x009DD980, 0x009DD980); + set_func_start(0x009DD990, 0x009DD990); + set_func_start(0x009DD9A0, 0x009DD9A0); + set_func_start(0x009DD9B0, 0x009DD9B0); + set_func_start(0x009DD9C0, 0x009DD9C0); + set_func_start(0x009DD9D0, 0x009DD9D0); + set_func_start(0x009DD9E0, 0x009DD9E0); + set_func_start(0x009DD9F0, 0x009DD9F0); + set_func_start(0x009DDA00, 0x009DDA00); + set_func_start(0x009DDA10, 0x009DDA10); + set_func_start(0x009DDA20, 0x009DDA20); + set_func_start(0x009DDA30, 0x009DDA30); + set_func_start(0x009DDA40, 0x009DDA40); + set_func_start(0x009DDA50, 0x009DDA50); + set_func_start(0x009DDA60, 0x009DDA60); + set_func_start(0x009DDA70, 0x009DDA70); + set_func_start(0x009DDA80, 0x009DDA80); + set_func_start(0x009DDA90, 0x009DDA90); + set_func_start(0x009DDAA0, 0x009DDAA0); + set_func_start(0x009DDAB0, 0x009DDAB0); + set_func_start(0x009DDAC0, 0x009DDAC0); + set_func_start(0x009DDAD0, 0x009DDAD0); + set_func_start(0x009DDAE0, 0x009DDAE0); + set_func_start(0x009DDAF0, 0x009DDAF0); + set_func_start(0x009DDB00, 0x009DDB00); + set_func_start(0x009DDB10, 0x009DDB10); + set_func_start(0x009DDB20, 0x009DDB20); + set_func_start(0x009DDB30, 0x009DDB30); + set_func_start(0x009DDB40, 0x009DDB40); + set_func_start(0x009DDB50, 0x009DDB50); + set_func_start(0x009DDB60, 0x009DDB60); + set_func_start(0x009DDB70, 0x009DDB70); + set_func_start(0x009DDB80, 0x009DDB80); + set_func_start(0x009DDB90, 0x009DDB90); + set_func_start(0x009DDBA0, 0x009DDBA0); + set_func_start(0x009DDBB0, 0x009DDBB0); + set_func_start(0x009DDBC0, 0x009DDBC0); + set_func_start(0x009DDBD0, 0x009DDBD0); + set_func_start(0x009DDBE0, 0x009DDBE0); + set_func_start(0x009DDBF0, 0x009DDBF0); + set_func_start(0x009DDC00, 0x009DDC00); + set_func_start(0x009DDC10, 0x009DDC10); + set_func_start(0x009DDC20, 0x009DDC20); + set_func_start(0x009DDC30, 0x009DDC30); + set_func_start(0x009DDC40, 0x009DDC40); + set_func_start(0x009DDC50, 0x009DDC50); + set_func_start(0x009DDC60, 0x009DDC60); + set_func_start(0x009DDC70, 0x009DDC70); + set_func_start(0x009DDC80, 0x009DDC80); + set_func_start(0x009DDC90, 0x009DDC90); + set_func_start(0x009DDCA0, 0x009DDCA0); + set_func_start(0x009DDCB0, 0x009DDCB0); + set_func_start(0x009DDCC0, 0x009DDCC0); + set_func_start(0x009DDCD0, 0x009DDCD0); + set_func_start(0x009DDCE0, 0x009DDCE0); + set_func_start(0x009DDCF0, 0x009DDCF0); + set_func_start(0x009DDD00, 0x009DDD00); + set_func_start(0x009DDD10, 0x009DDD10); + set_func_start(0x009DDD20, 0x009DDD20); + set_func_start(0x009DDD30, 0x009DDD30); + set_func_start(0x009DDD40, 0x009DDD40); + set_func_start(0x009DDD50, 0x009DDD50); + set_func_start(0x009DDD60, 0x009DDD60); + set_func_start(0x009DDD70, 0x009DDD70); + set_func_start(0x009DDD80, 0x009DDD80); + set_func_start(0x009DDD90, 0x009DDD90); + set_func_start(0x009DDDA0, 0x009DDDA0); + set_func_start(0x009DDDB0, 0x009DDDB0); + set_func_start(0x009DDDC0, 0x009DDDC0); + set_func_start(0x009DDDD0, 0x009DDDD0); + set_func_start(0x009DDDE0, 0x009DDDE0); + set_func_start(0x009DDDF0, 0x009DDDF0); + set_func_start(0x009DDE00, 0x009DDE00); + set_func_start(0x009DDE10, 0x009DDE10); + set_func_start(0x009DDE20, 0x009DDE20); + set_func_start(0x009DDE30, 0x009DDE30); + set_func_start(0x009DDE40, 0x009DDE40); + set_func_start(0x009DDE50, 0x009DDE50); + set_func_start(0x009DDE60, 0x009DDE60); + set_func_start(0x009DDE70, 0x009DDE70); + set_func_start(0x009DDE80, 0x009DDE80); + set_func_start(0x009DDE90, 0x009DDE90); + set_func_start(0x009DDEA0, 0x009DDEA0); + set_func_start(0x009DDEB0, 0x009DDEB0); + set_func_start(0x009DDEC0, 0x009DDEC0); + set_func_start(0x009DDED0, 0x009DDED0); + set_func_start(0x009DDEE0, 0x009DDEE0); + set_func_start(0x009DDEF0, 0x009DDEF0); + set_func_start(0x009DDF00, 0x009DDF00); + set_func_start(0x009DDF10, 0x009DDF10); + set_func_start(0x009DDF20, 0x009DDF20); + set_func_start(0x009DDF30, 0x009DDF30); + set_func_start(0x009DDF40, 0x009DDF40); + set_func_start(0x009DDF50, 0x009DDF50); + set_func_start(0x009DDF60, 0x009DDF60); + set_func_start(0x009DDF70, 0x009DDF70); + set_func_start(0x009DDF80, 0x009DDF80); + set_func_start(0x009DDF90, 0x009DDF90); + set_func_start(0x009DDFA0, 0x009DDFA0); + set_func_start(0x009DDFB0, 0x009DDFB0); + set_func_start(0x009DDFC0, 0x009DDFC0); + set_func_start(0x009DDFD0, 0x009DDFD0); + set_func_start(0x009DDFE0, 0x009DDFE0); + set_func_start(0x009DDFF0, 0x009DDFF0); + set_func_start(0x009DE000, 0x009DE000); + set_func_start(0x009DE010, 0x009DE010); + set_func_start(0x009DE020, 0x009DE020); + set_func_start(0x009DE030, 0x009DE030); + set_func_start(0x009DE040, 0x009DE040); + set_func_start(0x009DE050, 0x009DE050); + set_func_start(0x009DE060, 0x009DE060); + set_func_start(0x009DE070, 0x009DE070); + set_func_start(0x009DE080, 0x009DE080); + set_func_start(0x009DE090, 0x009DE090); + set_func_start(0x009DE0A0, 0x009DE0A0); + set_func_start(0x009DE0B0, 0x009DE0B0); + set_func_start(0x009DE0C0, 0x009DE0C0); + set_func_start(0x009DE0D0, 0x009DE0D0); + set_func_start(0x009DE0E0, 0x009DE0E0); + set_func_start(0x009DE0F0, 0x009DE0F0); + set_func_start(0x009DE100, 0x009DE100); + set_func_start(0x009DE110, 0x009DE110); + set_func_start(0x009DE120, 0x009DE120); + set_func_start(0x009DE130, 0x009DE130); + set_func_start(0x009DE140, 0x009DE140); + set_func_start(0x009DE150, 0x009DE150); + set_func_start(0x009DE160, 0x009DE160); + set_func_start(0x009DE170, 0x009DE170); + set_func_start(0x009DE180, 0x009DE180); + set_func_start(0x009DE190, 0x009DE190); + set_func_start(0x009DE1A0, 0x009DE1A0); + set_func_start(0x009DE1B0, 0x009DE1B0); + set_func_start(0x009DE1C0, 0x009DE1C0); + set_func_start(0x009DE1D0, 0x009DE1D0); + // Apply data types + import_data_types(); +} diff --git a/profile/3.3.5a-windows/include/common/datarecycler.h b/profile/3.3.5a-windows/include/common/datarecycler.h new file mode 100644 index 0000000..4879cae --- /dev/null +++ b/profile/3.3.5a-windows/include/common/datarecycler.h @@ -0,0 +1,39 @@ +#ifndef COMMON_DATA_RECYCLER_H +#define COMMON_DATA_RECYCLER_H + +#include "system/types.h" + +DECLARE_STRUCT(CDataRecycler); +DECLARE_STRUCT(CDataRecycler__vtable); +DECLARE_STRUCT(CDataRecycler__NodeBlock); +DECLARE_STRUCT(CDataRecycler__Node); + +struct CDataRecycler__vtable { + void* v_fn_00; + void* v_fn_01; + void* v_fn_02; + void* v_fn_03; + void* v_fn_04; +}; + +struct CDataRecycler__Node { + CDataRecycler__Node* m_next; + void* m_data; + uint32_t m_bytes; +}; + +struct CDataRecycler__NodeBlock { + CDataRecycler__NodeBlock* m_next; + CDataRecycler__Node m_nodes[1]; +}; + +struct CDataRecycler { + CDataRecycler__vtable* v_vtable; + int32_t m_nodesRecyclable; + uint32_t m_nodesPerBlock; + CDataRecycler__NodeBlock* m_nodeBlockList; + CDataRecycler__Node* m_nodeFullList; + CDataRecycler__Node* m_nodeEmptyList; +}; + +#endif diff --git a/profile/3.3.5a-windows/include/common/handle.h b/profile/3.3.5a-windows/include/common/handle.h new file mode 100644 index 0000000..2e3fb4a --- /dev/null +++ b/profile/3.3.5a-windows/include/common/handle.h @@ -0,0 +1,13 @@ +#ifndef COMMON_HANDLE_H +#define COMMON_HANDLE_H + +#include "system/types.h" + +#if !defined(DECLARE_HANDLE) +#define DECLARE_HANDLE(name) \ +typedef struct name##__ { \ + int32_t unused; \ +}* name +#endif + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/common/instance.h b/profile/3.3.5a-windows/include/common/instance.h new file mode 100644 index 0000000..d7d1748 --- /dev/null +++ b/profile/3.3.5a-windows/include/common/instance.h @@ -0,0 +1,43 @@ +#ifndef COMMON_INSTANCE_H +#define COMMON_INSTANCE_H + +#include "system/types.h" + +#include "storm/list.h" +#include "storm/thread.h" + +// TSList +// TSLinkedNode +// TInstanceId +// TSingletonInstanceId +#define COMMON_INSTANCE_ID(T) \ +STORM_TS_LIST(T) \ +typedef struct TInstanceId_##T TInstanceId_##T; \ +typedef struct TSingletonInstanceId_##T TSingletonInstanceId_##T; \ +struct TInstanceId_##T { \ + TSLinkedNode_##T b_base; \ + uint32_t m_id; \ +}; \ +struct TSingletonInstanceId_##T { \ + TInstanceId_##T b_base; \ +}; + +#define COMMON_INSTANCE_ID_TABLE(T) \ +STORM_TS_LIST(T) \ +typedef struct TInstanceIdTable_##T TInstanceIdTable_##T; \ +struct TInstanceIdTable_##T { \ + SCritSect m_idCritSect; \ + uint32_t m_id; \ + int32_t m_idWrapped; \ + CSRWLock m_idLock[8]; \ + TSList_##T m_idList[8]; \ +}; + +// template +// class TExtraInstanceRecyclable +typedef struct TExtraInstanceRecyclable TExtraInstanceRecyclable; +struct TExtraInstanceRecyclable { + uint32_t m_recycleBytes; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/common/status.h b/profile/3.3.5a-windows/include/common/status.h new file mode 100644 index 0000000..27607e9 --- /dev/null +++ b/profile/3.3.5a-windows/include/common/status.h @@ -0,0 +1,36 @@ +#ifndef COMMON_STATUS_H +#define COMMON_STATUS_H + +#include "storm/list.h" + +DECLARE_ENUM(STATUS_TYPE); +DECLARE_STRUCT(CStatus); +DECLARE_STRUCT(CStatus__STATUSENTRY); + +enum STATUS_TYPE { + STATUS_INFO = 0x0, + STATUS_WARNING = 0x1, + STATUS_ERROR = 0x2, + STATUS_FATAL = 0x3, + STATUS_NUMTYPES = 0x4 +}; + +STORM_TS_LIST(CStatus__STATUSENTRY); + +struct CStatus__STATUSENTRY { + char* text; + STATUS_TYPE severity; + TSLink_CStatus__STATUSENTRY link; +}; + +struct CStatus { + TSExplicitList_CStatus__STATUSENTRY statusList; +}; + +// class CWOWClientStatus : public CStatus { +// public: +// HSLOG m_logFile = nullptr; +// }; + + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/cursor/types.h b/profile/3.3.5a-windows/include/cursor/types.h new file mode 100644 index 0000000..41594fb --- /dev/null +++ b/profile/3.3.5a-windows/include/cursor/types.h @@ -0,0 +1,69 @@ +#ifndef CURSOR_TYPES_H +#define CURSOR_TYPES_H + +enum CURSORITEMTYPE { + CURSOR_EMPTY = 0, + CURSOR_ITEM = 1, + CURSOR_MONEY = 2, + CURSOR_SPELL = 3, + NUM_CURSOR_ITEM_TYPES = 4 +}; + +enum CURSORMODE { + NO_CURSOR = 0, + POINT_CURSOR = 1, + CAST_CURSOR = 2, + BUY_CURSOR = 3, + ATTACK_CURSOR = 4, + INTERACT_CURSOR = 5, + SPEAK_CURSOR = 6, + INSPECT_CURSOR = 7, + PICKUP_CURSOR = 8, + TAXI_CURSOR = 9, + TRAINER_CURSOR = 10, + MINE_CURSOR = 11, + SKIN_CURSOR = 12, + GATHER_CURSOR = 13, + LOCK_CURSOR = 14, + MAIL_CURSOR = 15, + LOOT_ALL_CURSOR = 16, + REPAIR_CURSOR = 17, + REPAIRNPC_CURSOR = 18, + ITEM_CURSOR = 19, + SKIN_HORDE_CURSOR = 20, + SKIN_ALLIANCE_CURSOR = 21, + INNKEEPER_CURSOR = 22, + QUEST_CURSOR = 23, + QUEST_REPEATABLE_CURSOR = 24, + QUEST_TURNIN_CURSOR = 25, + VEHICLE_CURSOR = 26, + POINT_ERROR_CURSOR = 27, + CAST_ERROR_CURSOR = 28, + BUY_ERROR_CURSOR = 29, + ATTACK_ERROR_CURSOR = 30, + INTERACT_ERROR_CURSOR = 31, + SPEAK_ERROR_CURSOR = 32, + INSPECT_ERROR_CURSOR = 33, + PICKUP_ERROR_CURSOR = 34, + TAXI_ERROR_CURSOR = 35, + TRAINER_ERROR_CURSOR = 36, + MINE_ERROR_CURSOR = 37, + SKIN_ERROR_CURSOR = 38, + GATHER_ERROR_CURSOR = 39, + LOCK_ERROR_CURSOR = 40, + MAIL_ERROR_CURSOR = 41, + LOOT_ALL_ERROR_CURSOR = 42, + REPAIR_ERROR_CURSOR = 43, + REPAIRNPC_ERROR_CURSOR = 44, + ITEM_ERROR_CURSOR = 45, + SKIN_HORDE_ERROR_CURSOR = 46, + SKIN_ALLIANCE_ERROR_CURSOR = 47, + INNKEEPER_ERROR_CURSOR = 48, + QUEST_ERROR_CURSOR = 49, + QUEST_REPEATABLE_ERROR_CURSOR = 50, + QUEST_TURNIN_ERROR_CURSOR = 51, + VEHICLE_ERROR_CURSOR = 52, + NUM_CURSOR_MODES = 53 +}; + +#endif diff --git a/profile/3.3.5a-windows/include/d3d9/caps.h b/profile/3.3.5a-windows/include/d3d9/caps.h new file mode 100644 index 0000000..becadc2 --- /dev/null +++ b/profile/3.3.5a-windows/include/d3d9/caps.h @@ -0,0 +1,125 @@ +#ifndef D3D9_CAPS_H +#define D3D9_CAPS_H + +#include "system/types.h" + +typedef enum D3DDEVTYPE D3DDEVTYPE; +typedef struct D3DVSHADERCAPS2_0 D3DVSHADERCAPS2_0; +typedef struct D3DPSHADERCAPS2_0 D3DPSHADERCAPS2_0; +typedef struct D3DCAPS9 D3DCAPS9; + +enum D3DDEVTYPE { + D3DDEVTYPE_HAL = 1, + D3DDEVTYPE_REF = 2, + D3DDEVTYPE_SW = 3, + D3DDEVTYPE_NULLREF = 4, + + D3DDEVTYPE_FORCE_uint32_t = 0xffffffff +}; + +struct D3DVSHADERCAPS2_0 { + uint32_t Caps; + int32_t DynamicFlowControlDepth; + int32_t NumTemps; + int32_t StaticFlowControlDepth; +}; + +struct D3DPSHADERCAPS2_0 { + uint32_t Caps; + int32_t DynamicFlowControlDepth; + int32_t NumTemps; + int32_t StaticFlowControlDepth; + int32_t NumInstructionSlots; +}; + +struct D3DCAPS9 { + D3DDEVTYPE DeviceType; + uint32_t AdapterOrdinal; + + uint32_t Caps; + uint32_t Caps2; + uint32_t Caps3; + uint32_t PresentationIntervals; + + uint32_t CursorCaps; + + uint32_t DevCaps; + + uint32_t PrimitiveMiscCaps; + uint32_t RasterCaps; + uint32_t ZCmpCaps; + uint32_t SrcBlendCaps; + uint32_t DestBlendCaps; + uint32_t AlphaCmpCaps; + uint32_t ShadeCaps; + uint32_t TextureCaps; + uint32_t TextureFilterCaps; + uint32_t CubeTextureFilterCaps; + uint32_t VolumeTextureFilterCaps; + uint32_t TextureAddressCaps; + uint32_t VolumeTextureAddressCaps; + + uint32_t LineCaps; + + uint32_t MaxTextureWidth, MaxTextureHeight; + uint32_t MaxVolumeExtent; + + uint32_t MaxTextureRepeat; + uint32_t MaxTextureAspectRatio; + uint32_t MaxAnisotropy; + float MaxVertexW; + + float GuardBandLeft; + float GuardBandTop; + float GuardBandRight; + float GuardBandBottom; + + float ExtentsAdjust; + uint32_t StencilCaps; + + uint32_t FVFCaps; + uint32_t TextureOpCaps; + uint32_t MaxTextureBlendStages; + uint32_t MaxSimultaneousTextures; + + uint32_t VertexProcessingCaps; + uint32_t MaxActiveLights; + uint32_t MaxUserClipPlanes; + uint32_t MaxVertexBlendMatrices; + uint32_t MaxVertexBlendMatrixIndex; + + float MaxPointSize; + + uint32_t MaxPrimitiveCount; + uint32_t MaxVertexIndex; + uint32_t MaxStreams; + uint32_t MaxStreamStride; + + uint32_t VertexShaderVersion; + uint32_t MaxVertexShaderConst; + + uint32_t PixelShaderVersion; + float PixelShader1xMaxValue; + + /* DX 9 */ + uint32_t DevCaps2; + + float MaxNpatchTessellationLevel; + uint32_t Reserved5; + + uint32_t MasterAdapterOrdinal; + uint32_t AdapterOrdinalInGroup; + uint32_t NumberOfAdaptersInGroup; + uint32_t DeclTypes; + uint32_t NumSimultaneousRTs; + uint32_t StretchRectFilterCaps; + D3DVSHADERCAPS2_0 VS20Caps; + D3DPSHADERCAPS2_0 PS20Caps; + uint32_t VertexTextureFilterCaps; + uint32_t MaxVShaderInstructionsExecuted; + uint32_t MaxPShaderInstructionsExecuted; + uint32_t MaxVertexShader30InstructionSlots; + uint32_t MaxPixelShader30InstructionSlots; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/d3d9/device.h b/profile/3.3.5a-windows/include/d3d9/device.h new file mode 100644 index 0000000..ba6dd7f --- /dev/null +++ b/profile/3.3.5a-windows/include/d3d9/device.h @@ -0,0 +1,60 @@ +#ifndef D3D9_DEVICE_H +#define D3D9_DEVICE_H + +#include "system/types.h" + +#include "d3d9/caps.h" + +typedef int32_t D3DFORMAT; +typedef struct D3DDISPLAYMODE D3DDISPLAYMODE; +typedef struct IDirect3D9 IDirect3D9; +typedef struct IDirect3DDevice9 IDirect3DDevice9; +typedef struct IDirect3DVertexDeclaration9 IDirect3DVertexDeclaration9; +typedef struct IDirect3DSurface9 IDirect3DSurface9; +typedef struct IDirect3DIndexBuffer9 IDirect3DIndexBuffer9; +typedef struct IDirect3DVertexBuffer9 IDirect3DVertexBuffer9; +typedef struct IDirect3DTexture9 IDirect3DTexture9; + +typedef struct D3DLOCKED_RECT D3DLOCKED_RECT; + +struct D3DDISPLAYMODE { + uint32_t Width; + uint32_t Height; + uint32_t RefreshRate; + D3DFORMAT Format; +}; + +struct IDirect3D9 { + void** v_vtable; +}; + +struct IDirect3DDevice9 { + void** v_vtable; +}; + +struct IDirect3DVertexDeclaration9 { + void** v_vtable; +}; + +struct IDirect3DSurface9 { + void** v_vtable; +}; + +struct IDirect3DIndexBuffer9 { + void** v_vtable; +}; + +struct IDirect3DVertexBuffer9 { + void** v_vtable; +}; + +struct IDirect3DTexture9 { + void** v_vtable; +}; + +struct D3DLOCKED_RECT { + int32_t Pitch; + void* pBits; +}; + +#endif diff --git a/profile/3.3.5a-windows/include/event/context.h b/profile/3.3.5a-windows/include/event/context.h new file mode 100644 index 0000000..255c7b7 --- /dev/null +++ b/profile/3.3.5a-windows/include/event/context.h @@ -0,0 +1,66 @@ +#ifndef EVENT_CONTEXT_H +#define EVENT_CONTEXT_H + +#include "storm/thread.h" + +#include "common/instance.h" +#include "storm/queue/timer_priority_uint32_t.h" + +#include "event/message.h" +#include "event/handler.h" +#include "event/keydown.h" +#include "event/types.h" +#include "event/timer.h" +#include "event/id_table.h" + +DECLARE_ENUM(SCHEDSTATE); +DECLARE_STRUCT(EvtContext); +DECLARE_STRUCT(EvtTimer); +DECLARE_HANDLE(HPROPCONTEXT); + +// EvtContext::SCHEDSTATE +enum SCHEDSTATE { + SCHEDSTATE_ACTIVE = 0x0, + SCHEDSTATE_CLOSED = 0x1, + SCHEDSTATE_DESTROYED = 0x2, + _UNIQUE_SYMBOL_SCHEDSTATE_96 = 0xFFFFFFFF +}; + +COMMON_INSTANCE_ID(EvtContext); + +// class EvtContext : public TSingletonInstanceId, m_id)> +struct EvtContext { + TSingletonInstanceId_EvtContext b_base; + uint32_t unkA; + // Member variables + SCritSect m_critsect; + uint32_t m_currTime; + SCHEDSTATE m_schedState; + TSTimerPriority_uint32_t m_schedNextWakeTime; + uint32_t m_schedLastIdle; + uint32_t m_schedFlags; + uint32_t m_schedIdleTime; + uint32_t m_schedInitialIdleTime; + uint32_t m_schedWeight; + uint32_t m_schedSmoothWeight; + int32_t m_schedRebalance; + int32_t unkXX; + int32_t unkXY; + int32_t unkXZ; + int32_t unkYY; + int32_t unkYZ; + // TSExplicitList m_queueHandlerList[EVENTIDS]; + TSExplicitList_EvtHandler m_queueHandlerList[36]; + // TSExplicitList m_queueMessageList; + TSExplicitList_EvtMessage m_queueMessageList; + uint32_t m_queueSyncButtonState; + // TSExplicitList m_queueSyncKeyDownList; + TSExplicitList_EvtKeyDown m_queueSyncKeyDownList; + EvtIdTable_pointer_to_EvtTimer m_timerIdTable; + EvtTimerQueue m_timerQueue; + HPROPCONTEXT m_propContext; + void* m_callContext; + uint32_t m_startWatchdog; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/event/handler.h b/profile/3.3.5a-windows/include/event/handler.h new file mode 100644 index 0000000..5fb2e50 --- /dev/null +++ b/profile/3.3.5a-windows/include/event/handler.h @@ -0,0 +1,20 @@ +#ifndef EVENT_HANDLER_H +#define EVENT_HANDLER_H + +#include "system/types.h" + +#include "storm/list.h" + +DECLARE_STRUCT(EvtHandler); + +STORM_TS_LIST(EvtHandler); + +struct EvtHandler { + TSLink_EvtHandler link; + int32_t (*func)(const void*, void*); + void* param; + float priority; + int32_t marker; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/event/id_table.h b/profile/3.3.5a-windows/include/event/id_table.h new file mode 100644 index 0000000..a6b8c2d --- /dev/null +++ b/profile/3.3.5a-windows/include/event/id_table.h @@ -0,0 +1,15 @@ +#ifndef EVENT_ID_TABLE_H +#define EVENT_ID_TABLE_H + +#include "storm/array.h" +#include "storm/array/uint32_t.h" +#include "event/timer.h" + +DECLARE_STRUCT(EvtIdTable_pointer_to_EvtTimer); + +struct EvtIdTable_pointer_to_EvtTimer { + TSGrowableArray_pointer_to_EvtTimer m_allocArray; + TSGrowableArray_uint32_t m_freeArray; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/event/keydown.h b/profile/3.3.5a-windows/include/event/keydown.h new file mode 100644 index 0000000..d99887f --- /dev/null +++ b/profile/3.3.5a-windows/include/event/keydown.h @@ -0,0 +1,16 @@ +#ifndef EVENT_KEY_DOWN_H +#define EVENT_KEY_DOWN_H + +#include "storm/list.h" +#include "event/types.h" + +typedef struct EvtKeyDown EvtKeyDown; + +STORM_TS_LIST(EvtKeyDown); + +struct EvtKeyDown { + TSLink_EvtKeyDown link; + KEY key; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/event/message.h b/profile/3.3.5a-windows/include/event/message.h new file mode 100644 index 0000000..787ed27 --- /dev/null +++ b/profile/3.3.5a-windows/include/event/message.h @@ -0,0 +1,23 @@ +#ifndef EVENT_MESSAGE_H +#define EVENT_MESSAGE_H + +#include "system/types.h" + +#include "common/instance.h" +#include "storm/list.h" + +#include "event/types.h" + +typedef struct EvtMessage EvtMessage; + +STORM_TS_LIST(EvtMessage); + +// class EvtMessage : public TExtraInstanceRecyclable +struct EvtMessage { + TExtraInstanceRecyclable b_base; + TSLink_EvtMessage link; + EVENTID id; + char data[4]; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/event/timer.h b/profile/3.3.5a-windows/include/event/timer.h new file mode 100644 index 0000000..6bc891e --- /dev/null +++ b/profile/3.3.5a-windows/include/event/timer.h @@ -0,0 +1,32 @@ +#ifndef EVENT_TIMER_H +#define EVENT_TIMER_H + +#include "system/types.h" + +#include "storm/queue/timer_priority_uint32_t.h" + +DECLARE_STRUCT(EvtTimer); +DECLARE_STRUCT(EvtTimerQueue); + +// class EvtTimer +struct EvtTimer { + // Member variables + uint32_t id; + TSTimerPriority_uint32_t targetTime; + float timeout; + int32_t (*handler)(const void*, void*); + void* param; + int32_t (*guidHandler)(const void*, uint64_t, void*); + uint64_t guidParam; + void* guidParam2; +}; + +STORM_TS_PRIORITY_QUEUE(EvtTimer); +STORM_TS_GROWABLE_ARRAY_POINTER_TO(EvtTimer); + +// class EvtTimerQueue : public TSPriorityQueue +struct EvtTimerQueue { + TSPriorityQueue_EvtTimer b_base; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/event/types.h b/profile/3.3.5a-windows/include/event/types.h new file mode 100644 index 0000000..76dae16 --- /dev/null +++ b/profile/3.3.5a-windows/include/event/types.h @@ -0,0 +1,277 @@ +#ifndef EVENT_TYPES_H +#define EVENT_TYPES_H + +#include "system/types.h" + +DECLARE_ENUM(EVENTID); +DECLARE_ENUM(KEY); +DECLARE_ENUM(MOUSEBUTTON); +DECLARE_ENUM(MOUSEMODE); +DECLARE_ENUM(OSINPUT); +DECLARE_ENUM(OS_MOUSE_MODE); + +DECLARE_STRUCT(OSEVENT); +DECLARE_STRUCT(EVENT_DATA_CHAR); +DECLARE_STRUCT(EVENT_DATA_FOCUS); +DECLARE_STRUCT(EVENT_DATA_IDLE); +DECLARE_STRUCT(EVENT_DATA_KEY); +DECLARE_STRUCT(EVENT_DATA_MOUSE); +DECLARE_STRUCT(EVENT_DATA_SIZE); + +typedef void* HEVENTCONTEXT; +typedef int32_t (*EVENTHANDLERFUNC)(const void*, void*); + +enum EVENTID { + EVENT_ID_0 = 0, + EVENT_ID_CHAR = 1, + EVENT_ID_FOCUS = 2, + EVENT_ID_3 = 3, + EVENT_ID_DESTROY = 4, + EVENT_ID_5 = 5, + EVENT_ID_IDLE = 6, + EVENT_ID_POLL = 7, + EVENT_ID_INITIALIZE = 8, + EVENT_ID_KEYDOWN = 9, + EVENT_ID_KEYUP = 10, + EVENT_ID_KEYDOWN_REPEATING = 11, + EVENT_ID_MOUSEDOWN = 12, + EVENT_ID_MOUSEMOVE = 13, + EVENT_ID_MOUSEMOVE_RELATIVE = 14, + EVENT_ID_MOUSEUP = 15, + EVENT_ID_MOUSEMODE_CHANGED = 16, + EVENT_ID_MOUSEWHEEL = 17, + EVENT_ID_18 = 18, + EVENT_ID_19 = 19, + EVENT_ID_20 = 20, + EVENT_ID_21 = 21, + EVENT_ID_22 = 22, + EVENT_ID_PAINT = 23, + EVENT_ID_NET_DATA = 24, + EVENT_ID_NET_CONNECT = 25, + EVENT_ID_NET_DISCONNECT = 26, + EVENT_ID_NET_CANTCONNECT = 27, + EVENT_ID_NET_DESTROY = 28, + EVENT_ID_NET_AUTH_CHALLENGE = 29, + EVENT_ID_30 = 30, + EVENT_ID_31 = 31, + EVENT_ID_32 = 32, + EVENT_ID_33 = 33, + EVENT_ID_IME = 34, + EVENT_ID_SIZE = 35, + EVENTIDS = 36 +}; + +enum KEY { + KEY_NONE = 0xFFFFFFFF, + KEY_LSHIFT = 0x0, + KEY_RSHIFT = 0x1, + KEY_LCONTROL = 0x2, + KEY_RCONTROL = 0x3, + KEY_LALT = 0x4, + KEY_RALT = 0x5, + KEY_LASTMETAKEY = 0x5, + KEY_SPACE = 0x20, + KEY_0 = 0x30, + KEY_1 = 0x31, + KEY_2 = 0x32, + KEY_3 = 0x33, + KEY_4 = 0x34, + KEY_5 = 0x35, + KEY_6 = 0x36, + KEY_7 = 0x37, + KEY_8 = 0x38, + KEY_9 = 0x39, + KEY_A = 0x41, + KEY_B = 0x42, + KEY_C = 0x43, + KEY_D = 0x44, + KEY_E = 0x45, + KEY_F = 0x46, + KEY_G = 0x47, + KEY_H = 0x48, + KEY_I = 0x49, + KEY_J = 0x4A, + KEY_K = 0x4B, + KEY_L = 0x4C, + KEY_M = 0x4D, + KEY_N = 0x4E, + KEY_O = 0x4F, + KEY_P = 0x50, + KEY_Q = 0x51, + KEY_R = 0x52, + KEY_S = 0x53, + KEY_T = 0x54, + KEY_U = 0x55, + KEY_V = 0x56, + KEY_W = 0x57, + KEY_X = 0x58, + KEY_Y = 0x59, + KEY_Z = 0x5A, + KEY_TILDE = 0x60, + KEY_NUMPAD0 = 0x100, + KEY_NUMPAD1 = 0x101, + KEY_NUMPAD2 = 0x102, + KEY_NUMPAD3 = 0x103, + KEY_NUMPAD4 = 0x104, + KEY_NUMPAD5 = 0x105, + KEY_NUMPAD6 = 0x106, + KEY_NUMPAD7 = 0x107, + KEY_NUMPAD8 = 0x108, + KEY_NUMPAD9 = 0x109, + KEY_NUMPAD_PLUS = 0x10A, + KEY_NUMPAD_MINUS = 0x10B, + KEY_NUMPAD_MULTIPLY = 0x10C, + KEY_NUMPAD_DIVIDE = 0x10D, + KEY_NUMPAD_DECIMAL = 0x10E, + KEY_NUMPAD_EQUALS = 0x30C, + KEY_PLUS = 0x3D, + KEY_MINUS = 0x2D, + KEY_BRACKET_OPEN = 0x5B, + KEY_BRACKET_CLOSE = 0x5D, + KEY_SLASH = 0x2F, + KEY_BACKSLASH = 0x5C, + KEY_SEMICOLON = 0x3B, + KEY_APOSTROPHE = 0x27, + KEY_COMMA = 0x2C, + KEY_PERIOD = 0x2E, + KEY_ESCAPE = 0x200, + KEY_ENTER = 0x201, + KEY_BACKSPACE = 0x202, + KEY_TAB = 0x203, + KEY_LEFT = 0x204, + KEY_UP = 0x205, + KEY_RIGHT = 0x206, + KEY_DOWN = 0x207, + KEY_INSERT = 0x208, + KEY_DELETE = 0x209, + KEY_HOME = 0x20A, + KEY_END = 0x20B, + KEY_PAGEUP = 0x20C, + KEY_PAGEDOWN = 0x20D, + KEY_CAPSLOCK = 0x20E, + KEY_NUMLOCK = 0x20F, + KEY_SCROLLLOCK = 0x210, + KEY_PAUSE = 0x211, + KEY_PRINTSCREEN = 0x212, + KEY_F1 = 0x300, + KEY_F2 = 0x301, + KEY_F3 = 0x302, + KEY_F4 = 0x303, + KEY_F5 = 0x304, + KEY_F6 = 0x305, + KEY_F7 = 0x306, + KEY_F8 = 0x307, + KEY_F9 = 0x308, + KEY_F10 = 0x309, + KEY_F11 = 0x30A, + KEY_F12 = 0x30B, + KEY_F13 = 0x212, + KEY_F14 = 0x30D, + KEY_F15 = 0x30E, + KEY_F16 = 0x30F, + KEY_F17 = 0x310, + KEY_F18 = 0x311, + KEY_F19 = 0x312, + KEY_LAST = 0x313 +}; + +enum MOUSEBUTTON { + MOUSE_BUTTON_NONE = 0x0, + MOUSE_BUTTON_LEFT = 0x1, + MOUSE_BUTTON_MIDDLE = 0x2, + MOUSE_BUTTON_RIGHT = 0x4, + MOUSE_BUTTON_XBUTTON1 = 0x8, + MOUSE_BUTTON_XBUTTON2 = 0x10, + MOUSE_BUTTON_XBUTTON3 = 0x20, + MOUSE_BUTTON_XBUTTON4 = 0x40, + MOUSE_BUTTON_XBUTTON5 = 0x80, + MOUSE_BUTTON_XBUTTON6 = 0x100, + MOUSE_BUTTON_XBUTTON7 = 0x200, + MOUSE_BUTTON_XBUTTON8 = 0x400, + MOUSE_BUTTON_XBUTTON9 = 0x800, + MOUSE_BUTTON_XBUTTON10 = 0x1000, + MOUSE_BUTTON_XBUTTON11 = 0x2000, + MOUSE_BUTTON_XBUTTON12 = 0x4000, + MOUSE_BUTTON_ALL = 0xFFFFFFFF +}; + +enum MOUSEMODE { + MOUSE_MODE_NORMAL = 0x0, + MOUSE_MODE_RELATIVE = 0x1, + MOUSE_MODES = 0x2 +}; + +enum OSINPUT { + OS_INPUT_CAPTURE_CHANGED = 0, + OS_INPUT_CHAR = 1, + OS_INPUT_STRING = 2, + OS_INPUT_IME = 3, + OS_INPUT_SIZE = 4, + OS_INPUT_CLOSE = 5, + OS_INPUT_FOCUS = 6, + OS_INPUT_KEY_DOWN = 7, + OS_INPUT_KEY_UP = 8, + OS_INPUT_MOUSE_DOWN = 9, + OS_INPUT_MOUSE_MOVE = 10, + OS_INPUT_MOUSE_WHEEL = 11, + OS_INPUT_MOUSE_MOVE_RELATIVE = 12, + OS_INPUT_MOUSE_UP = 13, + OS_INPUT_14 = 14, + OS_INPUT_15 = 15, + OS_INPUT_16 = 16, + OS_INPUT_17 = 17, + OS_INPUT_18 = 18, + OS_INPUT_SHUTDOWN = 19 +}; + +enum OS_MOUSE_MODE { + OS_MOUSE_MODE_NORMAL = 0, + OS_MOUSE_MODE_RELATIVE = 1, + OS_MOUSE_MODES = 2, +}; + +struct OSEVENT { + OSINPUT id; + int32_t param[4]; +}; + +struct EVENT_DATA_CHAR { + int32_t ch; + uint32_t metaKeyState; + uint32_t repeat; +}; + +struct EVENT_DATA_FOCUS { + int32_t focus; +}; + +struct EVENT_DATA_IDLE { + float elapsedSec; + uint32_t time; +}; + +struct EVENT_DATA_KEY { + KEY key; + uint32_t metaKeyState; + uint32_t repeat; + uint32_t time; +}; + +struct EVENT_DATA_MOUSE { + MOUSEMODE mode; + MOUSEBUTTON button; + uint32_t buttonState; + uint32_t metaKeyState; + uint32_t flags; + float x; + float y; + int32_t wheelDistance; + uint32_t time; +}; + +struct EVENT_DATA_SIZE { + int32_t w; + int32_t h; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/framescript/event_object.h b/profile/3.3.5a-windows/include/framescript/event_object.h new file mode 100644 index 0000000..78a2ed3 --- /dev/null +++ b/profile/3.3.5a-windows/include/framescript/event_object.h @@ -0,0 +1,35 @@ +#ifndef FRAMESCRIPT_EVENT_OBJECT_H +#define FRAMESCRIPT_EVENT_OBJECT_H + +#include "storm/hash.h" + +#include "framescript/object.h" + +#include "ui/simpleframe.h" + +DECLARE_STRUCT(FrameScript_EventObject); +DECLARE_STRUCT(SIMPLEFRAMENODE); +DECLARE_STRUCT(EVENTLISTENERNODE); + +STORM_TS_LIST(SIMPLEFRAMENODE); +STORM_TS_LIST(EVENTLISTENERNODE); + +// struct SIMPLEFRAMENODE : TSLinkedNode +struct SIMPLEFRAMENODE { + TSLinkedNode_SIMPLEFRAMENODE b_base; + CSimpleFrame* frame; +}; + +// struct EVENTLISTENERNODE : TSLinkedNode { +struct EVENTLISTENERNODE { + TSLinkedNode_EVENTLISTENERNODE b_base; + FrameScript_Object* listener; +}; + +STORM_TS_HASH(FrameScript_EventObject, HASHKEY_STRI) + +struct FrameScript_EventObject { + TSHashObject_FrameScript_EventObject_HASHKEY_STRI b_base; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/framescript/object.h b/profile/3.3.5a-windows/include/framescript/object.h new file mode 100644 index 0000000..05e6821 --- /dev/null +++ b/profile/3.3.5a-windows/include/framescript/object.h @@ -0,0 +1,15 @@ +#ifndef FRAMESCRIPT_OBJECT_H +#define FRAMESCRIPT_OBJECT_H + +#include "system/types.h" + +DECLARE_STRUCT(FrameScript_Object); + +struct FrameScript_Object { + void** v_vtable; + int32_t lua_registered; + int32_t lua_objectRef; + int32_t m_onEvent; +}; + +#endif diff --git a/profile/3.3.5a-windows/include/gx/batch.h b/profile/3.3.5a-windows/include/gx/batch.h new file mode 100644 index 0000000..ef25737 --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/batch.h @@ -0,0 +1,17 @@ +#ifndef GX_BATCH_H +#define GX_BATCH_H + +#include "gx/types.h" + +typedef struct CGxBatch CGxBatch; + +struct CGxBatch { + // Member variables + EGxPrim m_primType; + uint32_t m_start; + uint32_t m_count; + uint16_t m_minIndex; + uint16_t m_maxIndex; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/gx/buffer.h b/profile/3.3.5a-windows/include/gx/buffer.h new file mode 100644 index 0000000..3506ecc --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/buffer.h @@ -0,0 +1,136 @@ +#ifndef GX_BUFFER_H +#define GX_BUFFER_H + +#include "system/types.h" + +#include "storm/list.h" +#include "tempest/vector.h" + +typedef enum EGxPoolHintBits EGxPoolHintBits; +typedef enum EGxPoolTarget EGxPoolTarget; +typedef enum EGxPoolUsage EGxPoolUsage; +typedef enum EGxVertexAttrib EGxVertexAttrib; +typedef enum EGxVertexBufferFormat EGxVertexBufferFormat; +typedef struct ubyte4 ubyte4; +typedef struct CGxVertexAttrib CGxVertexAttrib; +typedef struct CGxVertexPBNT2 CGxVertexPBNT2; +typedef struct CGxVertexPCT CGxVertexPCT; +typedef struct CGxPool CGxPool; +typedef struct CGxBuf CGxBuf; + +enum EGxPoolHintBits { + GxPoolHintBit_Unk0 = 0, + GxPoolHintBit_Unk1 = 1, + GxPoolHintBit_Unk2 = 2, + GxPoolHintBit_Unk3 = 3 +}; + +enum EGxPoolTarget { + GxPoolTarget_Vertex = 0, + GxPoolTarget_Index = 1, + GxPoolTargets_Last = 2 +}; + +enum EGxPoolUsage { + GxPoolUsage_Static = 0, + GxPoolUsage_Dynamic = 1, + GxPoolUsage_Stream = 2, + GxPoolUsages_Last = 3 +}; + +enum EGxVertexAttrib { + GxVA_Position = 0, + GxVA_BlendWeight = 1, + GxVA_BlendIndices = 2, + GxVA_Normal = 3, + GxVA_Color0 = 4, + GxVA_Color1 = 5, + GxVA_TexCoord0 = 6, + GxVA_TexCoord1 = 7, + GxVA_TexCoord2 = 8, + GxVA_TexCoord3 = 9, + GxVA_TexCoord4 = 10, + GxVA_TexCoord5 = 11, + GxVA_TexCoord6 = 12, + GxVA_TexCoord7 = 13, + GxVAs_Last = 14 +}; + +enum EGxVertexBufferFormat { + GxVBF_P = 0, + GxVBF_PN = 1, + GxVBF_PNC = 2, + GxVBF_PNT = 3, + GxVBF_PNCT = 4, + GxVBF_PNT2 = 5, + GxVBF_PNCT2 = 6, + GxVBF_PC = 7, + GxVBF_PCT = 8, + GxVBF_PCT2 = 9, + GxVBF_PT = 10, + GxVBF_PT2 = 11, + GxVBF_PBNT2 = 12, + GxVBF_PNC2T2 = 13, + GxVertexBufferFormats_Last = 14 +}; + +struct ubyte4 { + union { + uint8_t b[4]; + uint32_t u; + }; +}; + +struct CGxVertexAttrib { + EGxVertexAttrib attrib; + uint32_t type; + uint32_t offset; + uint32_t bufSize; +}; + +struct CGxVertexPBNT2 { + C3Vector p; + ubyte4 bw; + ubyte4 bi; + C3Vector n; + C2Vector tc[2]; +}; + +struct CGxVertexPCT { + C3Vector p; + CImVector c; + C2Vector tc[1]; +}; + +STORM_TS_LIST(CGxBuf); +STORM_TS_LIST(CGxPool); + +// class CGxPool : public TSLinkedNode +struct CGxPool { + TSLinkedNode_CGxPool b_base; + EGxPoolTarget m_target; + EGxPoolUsage m_usage; + int32_t m_size; + void* m_apiSpecific; + void* m_mem; + int32_t unk1C; // TODO + TSList_CGxBuf m_bufList; + EGxPoolHintBits m_hint; + const char* m_name; +}; + +// class CGxBuf : public TSLinkedNode +struct CGxBuf { + TSLinkedNode_CGxBuf b_base; + CGxPool* m_pool; + uint32_t m_itemSize; + uint32_t m_itemCount; + uint32_t m_size; + uint32_t m_index; + uint8_t unk1C; // TODO + uint8_t unk1D; // TODO + uint8_t unk1E; // TODO + uint8_t unk1F; // TODO +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/gx/caps.h b/profile/3.3.5a-windows/include/gx/caps.h new file mode 100644 index 0000000..685e395 --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/caps.h @@ -0,0 +1,61 @@ +#ifndef GX_CAPS_H +#define GX_CAPS_H + +#include "system/types.h" + +#include "gx/types.h" + +typedef struct CGxCaps CGxCaps; + +struct CGxCaps { + int32_t m_numTmus; + int32_t m_pixelCenterOnEdge; + int32_t m_texelCenterOnEdge; + int32_t m_numStreams; + int32_t int10; + EGxColorFormat m_colorFormat; + uint32_t unk18; + uint32_t m_maxIndex; + int32_t m_generateMipMaps; + // int32_t m_texFmt[GxTexFormats_Last]; + int32_t m_texFmt[13]; + // int32_t m_texTarget[GxTexTargets_Last]; + int32_t m_texTarget[4]; + uint32_t unk68; + // uint32_t m_texMaxSize[GxTexTargets_Last]; + uint32_t m_texMaxSize[4]; + uint32_t unk7C; + uint32_t unk80; + uint32_t unk84; + uint32_t unk88; + uint32_t unk8C; + uint32_t unk90; + uint32_t unk94; + uint32_t unk98; + uint32_t unk9C; + uint32_t unkA0; + uint32_t unkA4; + uint32_t unkA8; + int32_t hwPcf; + uint32_t unkB0; + // int32_t m_shaderTargets[GxShTargets_Last]; + int32_t m_shaderTargets[6]; + // Evidence for this: go to 0x00684CD8 + uint32_t m_shaderConstants[6]; + int32_t m_texFilterTrilinear; + int32_t m_texFilterAnisotropic; + uint32_t m_maxTexAnisotropy; + int32_t m_depthBias; + uint32_t unkF4; + int32_t m_maxClipPlanes; + // CGxDeviceD3d::ISetCaps + int32_t m_hardwareCursor; + uint32_t unk100[5]; + uint32_t unk114[6]; + int32_t m_stereoAvailable; + int32_t int130; + int32_t int134; + int32_t int138; +}; + +#endif diff --git a/profile/3.3.5a-windows/include/gx/d3d9.h b/profile/3.3.5a-windows/include/gx/d3d9.h new file mode 100644 index 0000000..a362322 --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/d3d9.h @@ -0,0 +1,46 @@ +#ifndef GX_D3D9_H +#define GX_D3D9_H + +#include "gx/device.h" + +#include "d3d9/device.h" + +typedef struct CGxDeviceD3d CGxDeviceD3d; + +struct CGxDeviceD3d { + CGxDevice b_base; + void* m_hwnd; + uint16_t m_hwndClass; + uint16_t unk396E; + int32_t m_ownhwnd; + void* m_d3dLib; + IDirect3D9* m_d3d; + IDirect3DDevice9* m_d3dDevice; + D3DCAPS9 m_d3dCaps; + int32_t m_d3dIsHwDevice; + uint32_t unk3AB4[11]; + IDirect3DVertexDeclaration9* m_d3dVertexDecl[14]; + D3DDISPLAYMODE m_desktopDisplayMode; + int32_t m_inScene; + uint32_t unk3B2C; + D3DFORMAT m_devDepthFormat; + D3DFORMAT m_devAdapterFormat; + uint32_t unk3B38; + IDirect3DSurface9* m_defColorSurface; + IDirect3DSurface9* m_defDepthSurface; + uint32_t unk3B44; + uint32_t unk3B48; + int32_t m_hwCursorNeedsUpdate; + IDirect3DTexture9* m_hwCursorTexture; + IDirect3DSurface9* m_hwCursorBitmap; + uint32_t unk3B58; + IDirect3DVertexDeclaration9* m_d3dCurrentVertexDecl; + IDirect3DIndexBuffer9* m_d3dCurrentIndexBuf; + IDirect3DVertexBuffer9* m_d3dVertexStreamBuf[8]; + uint32_t m_d3dVertexStreamOfs[8]; + uint32_t m_d3dVertexStreamStride[8]; + uint32_t m_deviceStates[182]; + bool m_texEnabled[8]; +}; + +#endif diff --git a/profile/3.3.5a-windows/include/gx/device.h b/profile/3.3.5a-windows/include/gx/device.h new file mode 100644 index 0000000..90bad4c --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/device.h @@ -0,0 +1,254 @@ +#ifndef GX_DEVICE_H +#define GX_DEVICE_H + +#include "system/types.h" + +#include "storm/array.h" +#include "storm/array/uint32_t.h" + +#include "tempest/box.h" +#include "tempest/matrix.h" +#include "tempest/rect.h" +#include "tempest/vector.h" + +#include "gx/types.h" +#include "gx/caps.h" +#include "gx/format.h" +#include "gx/state_bom.h" +#include "gx/shader.h" +#include "gx/matrix_stack.h" +#include "gx/buffer.h" +#include "gx/texture.h" + +typedef struct CGxAppRenderState CGxAppRenderState; +typedef struct CGxPushedRenderState CGxPushedRenderState; +typedef struct ShaderConstants ShaderConstants; +typedef struct CGxDevice CGxDevice; +typedef struct CGxDevice__vtable CGxDevice__vtable; + +struct CGxAppRenderState { + CGxStateBom m_value; + uint32_t m_stackDepth; + int32_t m_dirty; +}; +STORM_TS_FIXED_ARRAY(CGxAppRenderState); + +struct CGxPushedRenderState { + EGxRenderState m_which; + CGxStateBom m_value; + uint32_t m_stackDepth; +}; +STORM_TS_GROWABLE_ARRAY(CGxPushedRenderState); + +struct ShaderConstants { + C4Vector constants[256]; + uint32_t unk1; + uint32_t unk2; +}; + +// 84 functions +struct CGxDevice__vtable { + // void ITexMarkAsUpdated(CGxTex*, uint32_t); + void* v_fn_0_ITexMarkAsUpdated; + // void IRsSendToHw(EGxRenderState); + void* v_fn_1_IRsSendToHw; + // void ICursorCreate(const CGxFormat&); + void* v_fn_2_ICursorCreate; + // void ICursorDestroy(); + void* v_fn_3_ICursorDestroy; + // void ICursorDraw(); + void* v_fn_4_ICursorDraw; + // don't know if this ever gets called (IStateSync something?) + void* v_fn_5; + // don't know if this ever gets called (IStateSync something?) + void* v_fn_6; + // don't know if this ever gets called (IStateSync something?) + void* v_fn_7; + // don't know if this ever gets called (something deleted?) + void* v_fn_8; + void* v_fn_9; + // int32_t DeviceCreate(long (*)(void*, uint32_t, uint32_t, int32_t), CGxFormat const&); + void* v_fn_10_DeviceCreate; + // void DeviceDestroy(); + void* v_fn_11_DeviceDestroy; + void* v_fn_12; + // int32_t DeviceSetFormat(struct CGxFormat const &); + void* v_fn_13_DeviceSetFormat; + // void DeviceSetBaseMipLevel(uint32_t); + void* v_fn_14_DeviceSetBaseMipLevel; + // void DeviceSetGamma(CGxGammaRamp const&); + void* v_fn_15_DeviceSetGamma; + void* v_fn_16; + void* v_fn_17; + void* v_fn_18; + void* v_fn_19; + void* v_fn_20; + void* v_fn_21; + // void DeviceWM(EGxWM, int32_t, int32_t); + void* v_fn_22_DeviceWM; + void* v_fn_23; + void* v_fn_24; + void* v_fn_25; + void* v_fn_26; + void* v_fn_27; + // void DeviceOverride(EGxOverride, uint32_t); + void* v_fn_28_DeviceOverride; + void* v_fn_29; + void* v_fn_30; + void* v_fn_31; + void* v_fn_32; + void* v_fn_33; + void* v_fn_34; + // void CapsWindowSize(CRect&); + void* v_fn_35_CapsWindowSize; + // void CapsWindowSize(CRect&); + void* v_fn_36_CapsWindowSizeInScreenCoords; + void* v_fn_37; + // void ScenePresent(uint32_t); + void* v_fn_38_ScenePresent; + // void SceneClear(uint32_t, CImVector); + void* v_fn_39_SceneClear; + // void XformSetProjection(const C44Matrix&); + void* v_fn_40_XformSetProjection; + // void XformSetView(const C44Matrix&); + void* v_fn_41_XformSetView; + // void Draw(CGxBatch*, int32_t); + void* v_fn_42_Draw; + void* v_fn_43; + void* v_fn_44; + void* v_fn_45; + void* v_fn_46; + void* v_fn_47; + void* v_fn_48; + void* v_fn_49; + void* v_fn_50; + // void MasterEnableSet(EGxMasterEnables, int); + void* v_fn_51_MasterEnableSet; + // void PoolSizeSet(CGxPool*, uint32_t); + void* v_fn_52_PoolSizeSet; + // void PoolDestroy(CGxPool*); + void* v_fn_53_PoolDestroy; + // char* BufLock(CGxBuf*); + void* v_fn_54_BufLock; + // int32_t BufUnlock(CGxBuf*, uint32_t); + void* v_fn_55_BufUnlock; + // void BufData(CGxBuf*, void const*, uint32_t, uint32_t); + void* v_fn_56_BufData; + // int32_t TexCreate(EGxTexTarget, uint32_t, uint32_t, uint32_t, EGxTexFormat, EGxTexFormat, CGxTexFlags, void*, void (*)(EGxTexCommand, uint32_t, uint32_t, uint32_t, uint32_t, void*, uint32_t&, void const*&), char const*, CGxTex*&); + void* v_fn_57_TexCreate; + // void TexDestroy(CGxTex*); + void* v_fn_58_TexDestroy; + // int32_t TexCopy(CGxTex*, CGxTex*, const C2iVector&, const C2iVector&, const C2iVector&, uint32_t); + void* v_fn_59_TexCopy; + void* v_fn_60; + void* v_fn_61; + void* v_fn_62; + void* v_fn_63; + void* v_fn_64; + void* v_fn_65; + void* v_fn_66; + void* v_fn_67; + // void ShaderCreate(CGxShader*[], EGxShTarget, const char*, const char*, int32_t); + void* v_fn_68_ShaderCreate; + void* v_fn_69; + // void ShaderConstantsSet(EGxShTarget, uint32_t, const float*, uint32_t); + void* v_fn_70_ShaderConstantsSet; + void* v_fn_71; + // void IShaderCreate(CGxShader*); + void* v_fn_72_IShaderCreate; + // void CursorSetVisible(int32_t); + void* v_fn_73_CursorSetVisible; + // void* CursorLock(); + void* v_fn_74_CursorLock; + // void CursorUnlock(uint32_t, uint32_t); + void* v_fn_75_CursorUnlock; + void* v_fn_76; + void* v_fn_77; + void* v_fn_78; + void* v_fn_79; + // bool StereoEnabled(); + void* v_fn_80_StereoEnabled; + void* v_fn_81; + void* v_fn_82; + void* v_fn_83; +}; + +// this class is at least 14688 bytes in size +struct CGxDevice { + // pointer to struct CGxDevice__vtable + CGxDevice__vtable* v_vtable; // 0x0 (size: 0x4) + TSGrowableArray_CGxPushedRenderState m_pushedStates; // 0x4 (size: 0x14) + TSGrowableArray_uint32_t m_stackOffsets; // 0x18 (size: 0x14) + TSGrowableArray_EGxRenderState m_dirtyStates; // 0x2C (size: 0x14) + uint32_t m_unk34[76]; + CRect m_defWindowRect; // 0x164 (size: 0x10) + CRect m_curWindowRect; // 0x174 (size: 0x10) + uint32_t m_unk184[12]; + EGxApi m_api; // 0x1b4 + uint32_t m_cpuFeatures; + CGxFormat m_format; + CGxCaps m_caps; + uint32_t m_baseMipLevel; + CGxGammaRamp m_gammaRamp; + CGxGammaRamp m_systemGammaRamp; + // TSHashTable_CGxShader_HASHKEY_STRI m_shaderList[GxShTargets_Last]; + // TSHashTable_CGxShader_HASHKEY_STRI m_shaderList[6]; + int32_t (*m_windowProc)(void* window, uint32_t message, uintptr_t wparam, intptr_t lparam); + int32_t m_context; + int32_t intF5C; + int32_t m_windowVisible; + int32_t intF64; + int32_t intF68; + int32_t intF6C; + CBoundingBox m_viewport; + C44Matrix m_projection; + C44Matrix m_projNative; + // CGxMatrixStack m_xforms[GxXforms_Last]; + CGxMatrixStack m_xforms[11]; + CGxMatrixStack m_texGen[8]; + uint32_t unk24D0[162]; + uint32_t m_appMasterEnables; + uint32_t m_hwMasterEnables; + TSList_CGxPool m_poolList; + uint32_t unk276C[3]; + // CGxBuf* m_bufLocked[GxPoolTargets_Last]; + CGxBuf* m_bufLocked[2]; + CGxPool* m_vertexPool; + CGxPool* m_indexPool; + // CGxBuf* m_streamBufs[GxPoolTargets_Last]; + CGxBuf* m_streamBufs[2]; + // CGxVertexAttrib m_primVertexFormatAttrib[GxVertexBufferFormats_Last]; + CGxVertexAttrib m_primVertexFormatAttrib[14]; + // CGxBuf* m_primVertexFormatBuf[GxVertexBufferFormats_Last]; + CGxBuf* m_primVertexFormatBuf[14]; + uint32_t m_primVertexMask; + uint32_t m_primVertexDirty; + EGxVertexBufferFormat m_primVertexFormat; + CGxBuf* m_primVertexBuf; + uint32_t m_primVertexSize; + CGxBuf* m_primIndexBuf; + int32_t m_primIndexDirty; + uint32_t unk28C4; + uint32_t unk28C8; + uint32_t unk28CC; + uint32_t unk28D0; + uint32_t unk28D4; + uint32_t unk28D8; + uint32_t unk28DC; + uint32_t unk28E0; + uint32_t unk28E4; + uint32_t unk28E8; + TSFixedArray_CGxAppRenderState m_appRenderStates; + TSFixedArray_CGxStateBom m_hwRenderStates; + uint32_t unk2904[19]; // 0x2904 (size 0x4C) + int32_t m_cursorVisible; + int32_t m_hardwareCursor; // 0x2954 (size 0x4) + uint32_t m_cursorHotspotX; + uint32_t m_cursorHotspotY; + CImVector m_cursor[1024]; // 0x2960 (size 0x4) + CGxTex* m_cursorTexture; // 0x3960 (size 0x4) + float m_cursorDepth; // 0x3964 (size 0x4) + // 0x3968 == 14692 (the complete size of CGxDevice) +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/gx/format.h b/profile/3.3.5a-windows/include/gx/format.h new file mode 100644 index 0000000..9302ff4 --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/format.h @@ -0,0 +1,50 @@ +#ifndef GX_FORMAT_H +#define GX_FORMAT_H + +#include "system/types.h" + +#include "tempest/vector.h" + +typedef enum CGxFormat__Format CGxFormat__Format; +typedef struct CGxFormat CGxFormat; + +enum CGxFormat__Format { + Fmt_Rgb565 = 0, + Fmt_ArgbX888 = 1, + Fmt_Argb8888 = 2, + Fmt_Argb2101010 = 3, + Fmt_Ds160 = 4, + Fmt_Ds24X = 5, + Fmt_Ds248 = 6, + Fmt_Ds320 = 7, + Formats_Last = 8 +}; + +struct CGxFormat { + uint32_t unk0; + bool hwTnL; + // TODO: verify this name + bool hwCursor; // 0x5 + int8_t fixLag; + int8_t window; + uint32_t unk8; + int32_t maximize; + CGxFormat__Format depthFormat; + C2iVector size; + uint32_t unk1C; + uint32_t sampleCount; + float float24; + CGxFormat__Format colorFormat; + uint32_t refreshRate; + uint32_t vsync; + uint32_t unk34; + uint32_t unk38; + uint32_t unk3C; + uint32_t unk40; + uint32_t unk44; + uint32_t unk48; + uint32_t unk4C; + C2iVector pos; +}; + +#endif diff --git a/profile/3.3.5a-windows/include/gx/matrix_stack.h b/profile/3.3.5a-windows/include/gx/matrix_stack.h new file mode 100644 index 0000000..6026954 --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/matrix_stack.h @@ -0,0 +1,22 @@ +#ifndef GX_MATRIX_STACK_H +#define GX_MATRIX_STACK_H + +#include "system/types.h" + +#include "tempest/matrix.h" + +typedef enum CGxMatrixStack__EMatrixFlags CGxMatrixStack__EMatrixFlags; +typedef struct CGxMatrixStack CGxMatrixStack; + +enum CGxMatrixStack__EMatrixFlags { + F_Identity = 0x1 +}; + +struct CGxMatrixStack { + uint32_t m_level; + int8_t m_dirty; + C44Matrix m_mtx[4]; + uint32_t m_flags[4]; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/gx/shader.h b/profile/3.3.5a-windows/include/gx/shader.h new file mode 100644 index 0000000..8f58f89 --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/shader.h @@ -0,0 +1,30 @@ +#ifndef GX_SHADER_H +#define GX_SHADER_H + +#include "storm/hash.h" +#include "storm/array/uint8_t.h" + +typedef struct CGxShader CGxShader; + +STORM_TS_HASH(CGxShader, HASHKEY_STRI); + +// class CGxShader : public TSHashObject +struct CGxShader { + TSHashObject_CGxShader_HASHKEY_STRI b_base; + uint32_t refCount; + void* apiSpecific; + int32_t target; + int32_t int28; + int32_t valid; + int32_t loaded; + int32_t int34; + int32_t patched; + int32_t int3C; + int32_t int40; + int16_t int44; + int16_t int46; + TSGrowableArray_uint8_t code; +}; + +#endif + diff --git a/profile/3.3.5a-windows/include/gx/state_bom.h b/profile/3.3.5a-windows/include/gx/state_bom.h new file mode 100644 index 0000000..d841a5e --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/state_bom.h @@ -0,0 +1,21 @@ +#ifndef GX_STATE_BOM_H +#define GX_STATE_BOM_H + +#include "system/types.h" +#include "storm/array.h" + +typedef struct CGxStateBom CGxStateBom; + +struct CGxStateBom { + union { + int32_t i[3]; + uint32_t u[3]; + float f[3]; + void* p; + } m_data; + + int32_t filler; +}; +STORM_TS_FIXED_ARRAY(CGxStateBom); + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/gx/texture.h b/profile/3.3.5a-windows/include/gx/texture.h new file mode 100644 index 0000000..39c93b4 --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/texture.h @@ -0,0 +1,50 @@ +#ifndef GX_TEXTURE_H +#define GX_TEXTURE_H + +#include "tempest/rect.h" + +typedef struct CGxTexFlags CGxTexFlags; +typedef struct CGxTex CGxTex; + +struct CGxTexFlags { + // unsigned __int32 m_filter : 3; + // unsigned __int32 m_wrapU : 1; + // unsigned __int32 m_wrapV : 1; + // unsigned __int32 m_forceMipTracking : 1; + // unsigned __int32 m_generateMipMaps : 1; + // unsigned __int32 m_renderTarget : 1; + // unsigned __int32 m_maxAnisotropy : 5; + uint32_t m_flags; +}; + +struct CGxTex { + CiRect m_updateRect; + int16_t m_updatePlaneMin; + int16_t m_updatePlaneMax; + uint32_t m_width; + uint32_t m_height; + uint32_t m_depth; + uint32_t m_target; + uint32_t m_format; + uint32_t m_dataFormat; + CGxTexFlags m_flags; + void* m_userArg; + void* m_userFunc; + void* m_apiSpecificData; + void* m_apiSpecificData2; + uint32_t unk40; + uint32_t unk44; + uint32_t unk48; + uint32_t unk4C; + uint32_t unk50; + uint32_t unk54; + int8_t char58; + int8_t char59; + int8_t m_needsUpdate; + int8_t m_needsCreation; + int8_t m_needsFlagUpdate; + int8_t char5D; + uint16_t m_pad; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/gx/types.h b/profile/3.3.5a-windows/include/gx/types.h new file mode 100644 index 0000000..52074ea --- /dev/null +++ b/profile/3.3.5a-windows/include/gx/types.h @@ -0,0 +1,397 @@ +#ifndef GX_TYPES_H +#define GX_TYPES_H + +#include "system/types.h" + +#include "storm/array.h" + +DECLARE_ENUM(BlitAlpha); +DECLARE_ENUM(BlitFormat); +DECLARE_ENUM(EGxApi); +DECLARE_ENUM(EGxBlend); +DECLARE_ENUM(EGxColorFormat); +DECLARE_ENUM(EGxFontHJusts); +DECLARE_ENUM(EGxFontVJusts); +DECLARE_ENUM(EGxMasterEnables); +DECLARE_ENUM(EGxPrim); +DECLARE_ENUM(EGxPrimMask); +DECLARE_ENUM(EGxRenderState); +DECLARE_ENUM(EGxShPS); +DECLARE_ENUM(EGxShTarget); +DECLARE_ENUM(EGxShVS); +DECLARE_ENUM(EGxTexCommand); +DECLARE_ENUM(EGxTexFilter); +DECLARE_ENUM(EGxTexFormat); +DECLARE_ENUM(EGxTexTarget); +DECLARE_ENUM(EGxTexWrapMode); +DECLARE_ENUM(EGxXform); +DECLARE_ENUM(EGxuDrawListCategory); +DECLARE_ENUM(EGxWM); +DECLARE_ENUM(COLOR_FILE_FORMAT); +DECLARE_ENUM(PIXEL_FORMAT); + +DECLARE_STRUCT(C4Pixel); +DECLARE_STRUCT(C4LargePixel); +DECLARE_STRUCT(MipBits); +DECLARE_STRUCT(CGxGammaRamp); + +enum BlitAlpha { + BlitAlpha_0 = 0, + BlitAlpha_1 = 1, + BlitAlpha_8 = 2, + BlitAlpha_Filler = 3, + BlitAlphas_Last = 4 +}; + +enum BlitFormat { + BlitFormat_Unknown = 0, + BlitFormat_Abgr8888 = 1, + BlitFormat_Argb8888 = 2, + BlitFormat_Argb4444 = 3, + BlitFormat_Argb1555 = 4, + BlitFormat_Rgb565 = 5, + BlitFormat_Dxt1 = 6, + BlitFormat_Dxt3 = 7, + BlitFormat_Dxt5 = 8, + BlitFormat_Uv88 = 9, + BlitFormat_Gr1616F = 10, + BlitFormat_R32F = 11, + BlitFormat_D24X8 = 12, + BlitFormats_Last = 13 +}; + +enum EGxApi { + GxApi_OpenGl = 0, + GxApi_D3d9 = 1, + GxApi_D3d9Ex = 2, + GxApi_D3d10 = 3, + GxApi_D3d11 = 4, + GxApi_GLL = 5, + GxApis_Last = 6 +}; + +enum EGxBlend { + GxBlend_Opaque = 0, + GxBlend_AlphaKey = 1, + GxBlend_Alpha = 2, + GxBlend_Add = 3, + GxBlend_Mod = 4, + GxBlend_Mod2x = 5, + GxBlend_ModAdd = 6, + GxBlend_InvSrcAlphaAdd = 7, + GxBlend_InvSrcAlphaOpaque = 8, + GxBlend_SrcAlphaOpaque = 9, + GxBlend_NoAlphaAdd = 10, + GxBlend_ConstantAlpha = 11, + GxBlends_Last = 12 +}; + +enum EGxColorFormat { + GxCF_argb = 0, + GxCF_rgba = 1, + GxColorFormats_Last = 2, +}; + +enum EGxFontHJusts { + GxHJ_Left = 0, + GxHJ_Center = 1, + GxHJ_Right = 2, + GxHJ_Last = 3 +}; + +enum EGxFontVJusts { + GxVJ_Top = 0, + GxVJ_Middle = 1, + GxVJ_Bottom = 2, + GxVJ_Last = 3 +}; + +enum EGxMasterEnables { + GxMasterEnable_Lighting = 0, + GxMasterEnable_Fog = 1, + GxMasterEnable_DepthTest = 2, + GxMasterEnable_DepthWrite = 3, + GxMasterEnable_ColorWrite = 4, + GxMasterEnable_Culling = 5, + GxMasterEnable_DoubleBuffering = 6, + GxMasterEnable_NormalProjection = 7, + GxMasterEnable_PolygonFill = 8, + GxMasterEnables_Last = 9 +}; + +enum EGxPrim { + GxPrim_Points = 0, + GxPrim_Lines = 1, + GxPrim_LineStrip = 2, + GxPrim_Triangles = 3, + GxPrim_TriangleStrip = 4, + GxPrim_TriangleFan = 5, + GxPrims_Last = 6 +}; + +enum EGxPrimMask { + GxPrim_Position = 0x1, + GxPrim_BlendWeight = 0x2, + GxPrim_BlendIndices = 0x4, + GxPrim_Normal = 0x8, + GxPrim_Color0 = 0x10, + GxPrim_Color1 = 0x20, + GxPrim_TexCoord0 = 0x40, + GxPrim_TexCoord1 = 0x80 +}; + +enum EGxRenderState { + GxRs_PolygonOffset = 0, + GxRs_MatDiffuse = 1, + GxRs_MatEmissive = 2, + GxRs_MatSpecular = 3, + GxRs_MatSpecularExp = 4, + GxRs_NormalizeNormals = 5, + GxRs_BlendingMode = 6, + GxRs_AlphaRef = 7, + GxRs_FogStart = 8, + GxRs_FogEnd = 9, + GxRs_FogColor = 10, + GxRs_Lighting = 11, + GxRs_Fog = 12, + GxRs_DepthTest = 13, + GxRs_DepthFunc = 14, + GxRs_DepthWrite = 15, + GxRs_ColorWrite = 16, + GxRs_Culling = 17, + GxRs_ClipPlaneMask = 18, + GxRs_Multisample = 19, + GxRs_ScissorTest = 20, + GxRs_Texture0 = 21, + GxRs_Texture1 = 22, + GxRs_Texture2 = 23, + GxRs_Texture3 = 24, + GxRs_Texture4 = 25, + GxRs_Texture5 = 26, + GxRs_Texture6 = 27, + GxRs_Texture7 = 28, + GxRs_Texture8 = 29, + GxRs_Texture9 = 30, + GxRs_Texture10 = 31, + GxRs_Texture11 = 32, + GxRs_Texture12 = 33, + GxRs_Texture13 = 34, + GxRs_Texture14 = 35, + GxRs_Texture15 = 36, + GxRs_ColorOp0 = 37, + GxRs_ColorOp1 = 38, + GxRs_ColorOp2 = 39, + GxRs_ColorOp3 = 40, + GxRs_ColorOp4 = 41, + GxRs_ColorOp5 = 42, + GxRs_ColorOp6 = 43, + GxRs_ColorOp7 = 44, + GxRs_AlphaOp0 = 45, + GxRs_AlphaOp1 = 46, + GxRs_AlphaOp2 = 47, + GxRs_AlphaOp3 = 48, + GxRs_AlphaOp4 = 49, + GxRs_AlphaOp5 = 50, + GxRs_AlphaOp6 = 51, + GxRs_AlphaOp7 = 52, + GxRs_TexGen0 = 53, + GxRs_TexGen1 = 54, + GxRs_TexGen2 = 55, + GxRs_TexGen3 = 56, + GxRs_TexGen4 = 57, + GxRs_TexGen5 = 58, + GxRs_TexGen6 = 59, + GxRs_TexGen7 = 60, + GxRs_Unk61 = 61, + GxRs_Unk62 = 62, + GxRs_Unk63 = 63, + GxRs_Unk64 = 64, + GxRs_Unk65 = 65, + GxRs_Unk66 = 66, + GxRs_Unk67 = 67, + GxRs_Unk68 = 68, + GxRs_Unk69 = 69, + GxRs_Unk70 = 70, + GxRs_Unk71 = 71, + GxRs_Unk72 = 72, + GxRs_Unk73 = 73, + GxRs_Unk74 = 74, + GxRs_Unk75 = 75, + GxRs_Unk76 = 76, + GxRs_VertexShader = 77, + GxRs_PixelShader = 78, + GxRs_PointScale = 79, + GxRs_PointScaleAttenuation = 80, + GxRs_PointScaleMin = 81, + GxRs_PointScaleMax = 82, + GxRs_PointSprite = 83, + GxRs_Unk84 = 84, + GxRs_ColorMaterial = 85, + GxRenderStates_Last = 86 +}; +STORM_TS_GROWABLE_ARRAY(EGxRenderState); + +enum EGxShPS { + GxShPS_none = 0, + GxShPS_ps_1_1 = 1, + GxShPS_ps_1_4 = 2, + GxShPS_ps_2_0 = 3, + GxShPS_ps_3_0 = 4, + GxShPS_ps_4_0 = 5, + GxShPS_ps_5_0 = 6, + GxShPS_nvrc = 7, + GxShPS_nvts = 8, + GxShPS_nvts2 = 9, + GxShPS_nvts3 = 10, + GxShPS_nvfp2 = 11, + GxShPS_arbfp1 = 12, + GxShPS_glsl = 13, +}; + +enum EGxShTarget { + GxSh_Vertex = 0, + GxSh_Hull = 1, + GxSh_Domain = 2, + GxSh_Geometry = 3, + GxSh_Pixel = 4, + GxSh_Compute = 5, + GxShTargets_Last = 6 +}; + +enum EGxShVS { + GxShVS_none = 0, + GxShVS_vs_1_1 = 1, + GxShVS_vs_2_0 = 2, + GxShVS_vs_3_0 = 3, + GxShVS_vs_4_0 = 4, + GxShVS_vs_5_0 = 5, + GxShVS_arbvp1 = 6, + GxShVS_arbvp1_cg12 = 7, + GxShVS_nvvp = 8, + GxShVS_nvvp2 = 9, + GxShVS_nvvp3 = 10, + GxShVS_glsl = 11 +}; + +enum EGxTexCommand { + GxTex_Lock = 0, + GxTex_Latch = 1, + GxTex_Unlock = 2, + GxTexCommands_Last = 3 +}; + +enum EGxTexFilter { + GxTex_Nearest = 0x0, + GxTex_Linear = 0x1, + GxTex_NearestMipNearest = 0x2, + GxTex_LinearMipNearest = 0x3, + GxTex_LinearMipLinear = 0x4, + GxTex_Anisotropic = 0x5, + GxTexFilters_Last = 0x6, +}; + +enum EGxTexFormat { + GxTex_Unknown = 0x0, + GxTex_Abgr8888 = 0x1, + GxTex_Argb8888 = 0x2, + GxTex_Argb4444 = 0x3, + GxTex_Argb1555 = 0x4, + GxTex_Rgb565 = 0x5, + GxTex_Dxt1 = 0x6, + GxTex_Dxt3 = 0x7, + GxTex_Dxt5 = 0x8, + GxTex_Uv88 = 0x9, + GxTex_Gr1616F = 0xA, + GxTex_R32F = 0xB, + GxTex_D24X8 = 0xC, + GxTexFormats_Last = 0xD, +}; + +enum EGxTexTarget { + GxTex_2d = 0x0, + GxTex_CubeMap = 0x1, + GxTex_Rectangle = 0x2, + GxTex_NonPow2 = 0x3, + GxTexTargets_Last = 0x4 +}; + +enum EGxTexWrapMode { + GxTex_Clamp = 0, + GxTex_Wrap = 1 +}; + +enum EGxXform { + GxXform_Tex0 = 0, + GxXform_Tex1 = 1, + GxXform_Tex2 = 2, + GxXform_Tex3 = 3, + GxXform_Tex4 = 4, + GxXform_Tex5 = 5, + GxXform_Tex6 = 6, + GxXform_Tex7 = 7, + GxXform_World = 8, + GxXform_Projection = 9, + GxXform_View = 10, + GxXforms_Last = 11 +}; + +enum EGxuDrawListCategory { + GxuCat_0 = 0, + GxuCat_1 = 1, + GxuCat_2 = 2 +}; + +enum EGxWM { + GxWM_Size = 0, + GxWM_DisplayChange = 1, + GxWM_Destroy = 2, + GxWM_SetFocus = 3, + GxWM_KillFocus = 4, +}; + +enum COLOR_FILE_FORMAT { + COLOR_JPEG = 0, + COLOR_PAL = 1, + COLOR_DXT = 2, + COLOR_3 = 3 +}; + +enum PIXEL_FORMAT { + PIXEL_DXT1 = 0x0, + PIXEL_DXT3 = 0x1, + PIXEL_ARGB8888 = 0x2, + PIXEL_ARGB1555 = 0x3, + PIXEL_ARGB4444 = 0x4, + PIXEL_RGB565 = 0x5, + PIXEL_A8 = 0x6, + PIXEL_DXT5 = 0x7, + PIXEL_UNSPECIFIED = 0x8, + PIXEL_ARGB2565 = 0x9, + NUM_PIXEL_FORMATS = 0xA +}; + +struct C4Pixel { + uint8_t b; + uint8_t g; + uint8_t r; + uint8_t a; +}; + +struct C4LargePixel { + uint64_t b; + uint64_t g; + uint64_t r; + uint64_t a; +}; + +struct MipBits { + C4Pixel* mip[1]; +}; + +struct CGxGammaRamp { + uint16_t red[256]; + uint16_t green[256]; + uint16_t blue[256]; +}; + +#endif diff --git a/profile/3.3.5a-windows/include/main.h b/profile/3.3.5a-windows/include/main.h new file mode 100644 index 0000000..0c053a2 --- /dev/null +++ b/profile/3.3.5a-windows/include/main.h @@ -0,0 +1,68 @@ +// Defines + +#include "system/detect.h" + +// Types + +#include "common/handle.h" +#include "common/instance.h" +#include "common/datarecycler.h" +#include "common/status.h" + +#include "cursor/types.h" + +#include "d3d9/caps.h" +#include "d3d9/device.h" + +#include "event/types.h" +#include "event/context.h" +#include "event/handler.h" +#include "event/id_table.h" +#include "event/keydown.h" +#include "event/message.h" +#include "event/timer.h" + +#include "framescript/object.h" +#include "framescript/event_object.h" + +#include "gx/buffer.h" +#include "gx/caps.h" +#include "gx/device.h" +#include "gx/format.h" +#include "gx/matrix_stack.h" +#include "gx/shader.h" +#include "gx/state_bom.h" +#include "gx/types.h" +#include "gx/batch.h" +#include "gx/d3d9.h" + +#include "storm/array.h" +#include "storm/list.h" +#include "storm/hash.h" + +#include "tempest/box.h" +#include "tempest/matrix.h" +#include "tempest/plane.h" +#include "tempest/quaternion.h" +#include "tempest/range.h" +#include "tempest/rect.h" +#include "tempest/sphere.h" +#include "tempest/vector.h" + +#include "texture/blp.h" +#include "texture/tga.h" + +#include "ui/simpleframe.h" + +// include files that define the use of template classes for standard library types +// template classes for whoa types should be entered immediately after where the type is + +#include "storm/array/pointer_to_void.h" +#include "storm/array/uint8_t.h" +#include "storm/array/uint32_t.h" + +#include "storm/queue/timer_priority_uint32_t.h" + +// template types that are defined in our headers, should be declared immediately after the base type +// and not used anywhere else + diff --git a/profile/3.3.5a-windows/include/storm/array.h b/profile/3.3.5a-windows/include/storm/array.h new file mode 100644 index 0000000..41e5e47 --- /dev/null +++ b/profile/3.3.5a-windows/include/storm/array.h @@ -0,0 +1,52 @@ +#ifndef STORM_ARRAY_H +#define STORM_ARRAY_H + +#include "system/types.h" + +#define STORM_TS_BASE_ARRAY(T) typedef struct TSBaseArray_##T TSBaseArray_##T; \ +struct TSBaseArray_##T { \ + uint32_t m_alloc; \ + uint32_t m_count; \ + T* m_data; \ +}; + +#define STORM_TS_FIXED_ARRAY(T) typedef struct TSFixedArray_##T TSFixedArray_##T; \ +struct TSFixedArray_##T { \ + uint32_t m_alloc; \ + uint32_t m_count; \ + T* m_data; \ +}; + +#define STORM_TS_GROWABLE_ARRAY(T) typedef struct TSGrowableArray_##T TSGrowableArray_##T; \ +struct TSGrowableArray_##T { \ + uint32_t m_alloc; \ + uint32_t m_count; \ + T* m_data; \ + uint32_t m_chunk; \ +}; + +// "pointer-to" types hack + +#define STORM_TS_BASE_ARRAY_POINTER_TO(T) typedef struct TSBaseArray_pointer_to_##T TSBaseArray_pointer_to_##T; \ +struct TSBaseArray_pointer_to_##T { \ + uint32_t m_alloc; \ + uint32_t m_count; \ + T** m_data; \ +}; + +#define STORM_TS_FIXED_ARRAY_POINTER_TO(T) typedef struct TSFixedArray_pointer_to_##T TSFixedArray_pointer_to_##T; \ +struct TSFixedArray_pointer_to_##T { \ + uint32_t m_alloc; \ + uint32_t m_count; \ + T** m_data; \ +}; + +#define STORM_TS_GROWABLE_ARRAY_POINTER_TO(T) typedef struct TSGrowableArray_pointer_to_##T TSGrowableArray_pointer_to_##T; \ +struct TSGrowableArray_pointer_to_##T { \ + uint32_t m_alloc; \ + uint32_t m_count; \ + T** m_data; \ + uint32_t m_chunk; \ +}; + +#endif diff --git a/profile/3.3.5a-windows/include/storm/array/pointer_to_void.h b/profile/3.3.5a-windows/include/storm/array/pointer_to_void.h new file mode 100644 index 0000000..f07eedd --- /dev/null +++ b/profile/3.3.5a-windows/include/storm/array/pointer_to_void.h @@ -0,0 +1,10 @@ +#ifndef STORM_ARRAY_POINTER_TO_VOID_H +#define STORM_ARRAY_POINTER_TO_VOID_H + +#include "system/types.h" + +#include "storm/array.h" + +STORM_TS_GROWABLE_ARRAY_POINTER_TO(void); + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/storm/array/uint32_t.h b/profile/3.3.5a-windows/include/storm/array/uint32_t.h new file mode 100644 index 0000000..38e2920 --- /dev/null +++ b/profile/3.3.5a-windows/include/storm/array/uint32_t.h @@ -0,0 +1,10 @@ +#ifndef STORM_ARRAY_UINT32_T_H +#define STORM_ARRAY_UINT32_T_H + +#include "system/types.h" + +#include "storm/array.h" + +STORM_TS_GROWABLE_ARRAY(uint32_t); + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/storm/array/uint8_t.h b/profile/3.3.5a-windows/include/storm/array/uint8_t.h new file mode 100644 index 0000000..cd35f94 --- /dev/null +++ b/profile/3.3.5a-windows/include/storm/array/uint8_t.h @@ -0,0 +1,10 @@ +#ifndef STORM_ARRAY_UINT8_T_H +#define STORM_ARRAY_UINT8_T_H + +#include "system/types.h" + +#include "storm/array.h" + +STORM_TS_GROWABLE_ARRAY(uint8_t); + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/storm/file.h b/profile/3.3.5a-windows/include/storm/file.h new file mode 100644 index 0000000..5a2e36b --- /dev/null +++ b/profile/3.3.5a-windows/include/storm/file.h @@ -0,0 +1,9 @@ +#ifndef STORM_FILE_H +#define STORM_FILE_H + +DECLARE_STRUCT(SFile); + +struct SFile { +}; + +#endif diff --git a/profile/3.3.5a-windows/include/storm/hash.h b/profile/3.3.5a-windows/include/storm/hash.h new file mode 100644 index 0000000..1952edc --- /dev/null +++ b/profile/3.3.5a-windows/include/storm/hash.h @@ -0,0 +1,48 @@ +#ifndef STORM_HASH_H +#define STORM_HASH_H + +#include "system/types.h" + +#include "storm/array.h" +#include "storm/list.h" + +#define STORM_TS_HASH(T, K) \ +STORM_TS_LIST(T) \ +STORM_TS_GROWABLE_ARRAY(TSList_##T) \ +typedef struct TSHashTable_##T##_##K TSHashTable_##T##_##K; \ +typedef struct TSHashObject_##T##_##K TSHashObject_##T##_##K; \ +struct TSHashTable_##T##_##K { \ + TSList_##T m_fulllist; \ + uint32_t m_fullnessIndicator; \ + TSGrowableArray_TSList_##T m_slotlistarray; \ + uint32_t m_slotmask; \ +}; \ +struct TSHashObject_##T##_##K { \ + uint32_t m_hashval; \ + TSLink_##T m_linktoslot; \ + TSLink_##T m_linktofull; \ + K m_key; \ +}; + +DECLARE_STRUCT(HASHKEY_PTR); +DECLARE_STRUCT(HASHKEY_STR); +DECLARE_STRUCT(HASHKEY_STRI); +DECLARE_STRUCT(HASHKEY_NONE); + +struct HASHKEY_PTR { + void* m_key; +}; + +struct HASHKEY_STR { + char* m_str; +}; + +struct HASHKEY_STRI { + char* m_str; +}; + +struct HASHKEY_NONE { + int32_t m_unused; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/storm/list.h b/profile/3.3.5a-windows/include/storm/list.h new file mode 100644 index 0000000..7c64d20 --- /dev/null +++ b/profile/3.3.5a-windows/include/storm/list.h @@ -0,0 +1,33 @@ +#ifndef STORM_LIST_H +#define STORM_LIST_H + +#include "system/types.h" + +// to make an object self referential +// forward-declare 'struct Object_type' as 'Object_type' +// then define 'struct Object_type' + +// TSLink +#define STORM_TS_LINK(T) typedef struct TSLink_##T TSLink_##T; \ +struct TSLink_##T { \ + TSLink_##T* m_prevlink; \ + T* m_next; \ +}; + +// TSList +// TSExplicitList +// TSLinkedNode +#define STORM_TS_LIST(T) \ +STORM_TS_LINK(T) \ +typedef struct TSList_##T TSList_##T; \ +typedef struct TSList_##T TSExplicitList_##T; \ +typedef struct TSLinkedNode_##T TSLinkedNode_##T; \ +struct TSList_##T { \ + ptrdiff_t m_linkoffset; \ + TSLink_##T m_terminator; \ +}; \ +struct TSLinkedNode_##T { \ + TSLink_##T m_link; \ +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/storm/queue.h b/profile/3.3.5a-windows/include/storm/queue.h new file mode 100644 index 0000000..a4cd764 --- /dev/null +++ b/profile/3.3.5a-windows/include/storm/queue.h @@ -0,0 +1,31 @@ +#ifndef STORM_QUEUE_H +#define STORM_QUEUE_H + +#include "system/types.h" + +#include "storm/array/pointer_to_void.h" + +DECLARE_STRUCT(CSBasePriorityQueue); +DECLARE_STRUCT(CSBasePriority); + +struct CSBasePriorityQueue { + TSGrowableArray_pointer_to_void b_base; + uint32_t m_linkOffset; +}; + +struct CSBasePriority { + CSBasePriorityQueue* m_queue; + uint32_t m_index; +}; + +#define STORM_TS_TIMER_PRIORITY(T) \ +typedef struct TSTimerPriority_##T TSTimerPriority_##T; \ +struct TSTimerPriority_##T { \ + CSBasePriority b_base; \ + T m_val; \ +}; + +#define STORM_TS_PRIORITY_QUEUE(T) \ +typedef CSBasePriorityQueue TSPriorityQueue_##T; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/storm/queue/timer_priority_uint32_t.h b/profile/3.3.5a-windows/include/storm/queue/timer_priority_uint32_t.h new file mode 100644 index 0000000..2c160b7 --- /dev/null +++ b/profile/3.3.5a-windows/include/storm/queue/timer_priority_uint32_t.h @@ -0,0 +1,10 @@ +#ifndef STORM_QUEUE_TIMER_PRIORITY_UINT32_T_H +#define STORM_QUEUE_TIMER_PRIORITY_UINT32_T_H + +#include "system/types.h" + +#include "storm/queue.h" + +STORM_TS_TIMER_PRIORITY(uint32_t); + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/storm/thread.h b/profile/3.3.5a-windows/include/storm/thread.h new file mode 100644 index 0000000..fe05e3d --- /dev/null +++ b/profile/3.3.5a-windows/include/storm/thread.h @@ -0,0 +1,17 @@ +#ifndef STORM_THREAD_H +#define STORM_THREAD_H + +#include "system/types.h" + +DECLARE_STRUCT(SCritSect); +typedef struct CSRWLock CSRWLock; + +struct SCritSect { + uint8_t m_critsect[24]; +}; + +struct CSRWLock { + uint8_t m_opaqueData[12]; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/system/detect.h b/profile/3.3.5a-windows/include/system/detect.h new file mode 100644 index 0000000..5b11d1d --- /dev/null +++ b/profile/3.3.5a-windows/include/system/detect.h @@ -0,0 +1,23 @@ +#ifndef SYSTEM_DETECT_H +#define SYSTEM_DETECT_H + +#if !defined(IDA) && !defined(GHIDRA) && !defined(BINANA_GENERATOR) + +#error "Preprocessor mode not detected! You must define either IDA or GHIDRA or BINANA_GENERATOR" + +#endif + +#if defined(IDA) + +// why does this work? +#define DECLARE_ENUM(E) typedef enum E##__ E + +#else + +#define DECLARE_ENUM(E) typedef enum E E + +#endif + +#define DECLARE_STRUCT(T) typedef struct T T + +#endif diff --git a/profile/3.3.5a-windows/include/system/types.h b/profile/3.3.5a-windows/include/system/types.h new file mode 100644 index 0000000..1194c07 --- /dev/null +++ b/profile/3.3.5a-windows/include/system/types.h @@ -0,0 +1,40 @@ +#ifndef SYSTEM_TYPES_H +#define SYSTEM_TYPES_H + +// stdint +#if defined(IDA) || defined(BINANA_GENERATOR) + +typedef signed char int8_t; +typedef short int16_t; +typedef int int32_t; +typedef long long int64_t; +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; +typedef unsigned int uint32_t; +typedef unsigned long long uint64_t; + +typedef int32_t ptrdiff_t; +typedef uint32_t uintptr_t; +typedef int32_t intptr_t; + +#else + +#include + +#endif + +// stdbool + +#if defined(BINANA_GENERATOR) + +typedef char bool; + +#endif + +#if defined(GHIDRA) + +#include + +#endif + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/tempest/box.h b/profile/3.3.5a-windows/include/tempest/box.h new file mode 100644 index 0000000..664b7cd --- /dev/null +++ b/profile/3.3.5a-windows/include/tempest/box.h @@ -0,0 +1,21 @@ +#ifndef TEMPEST_BOX_H +#define TEMPEST_BOX_H + +#include "tempest/vector.h" +#include "tempest/range.h" + +DECLARE_STRUCT(CAaBox); +DECLARE_STRUCT(CBoundingBox); + +struct CAaBox { + C3Vector b; + C3Vector t; +}; + +struct CBoundingBox { + CRange x; + CRange y; + CRange z; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/tempest/matrix.h b/profile/3.3.5a-windows/include/tempest/matrix.h new file mode 100644 index 0000000..f0a5fcc --- /dev/null +++ b/profile/3.3.5a-windows/include/tempest/matrix.h @@ -0,0 +1,55 @@ +#ifndef TEMPEST_MATRIX_H +#define TEMPEST_MATRIX_H + +DECLARE_STRUCT(C33Matrix); +DECLARE_STRUCT(C34Matrix); +DECLARE_STRUCT(C44Matrix); + +struct C33Matrix { + float a0; + float a1; + float a2; + float b0; + float b1; + float b2; + float c0; + float c1; + float c2; +}; + +struct C34Matrix { + float a0; + float a1; + float a2; + float b0; + float b1; + float b2; + float c0; + float c1; + float c2; + float d0; + float d1; + float d2; +}; + +struct C44Matrix { + float a0; + float a1; + float a2; + float a3; + float b0; + float b1; + float b2; + float b3; + float c0; + float c1; + float c2; + float c3; + float d0; + float d1; + float d2; + float d3; +}; + + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/tempest/plane.h b/profile/3.3.5a-windows/include/tempest/plane.h new file mode 100644 index 0000000..faebe16 --- /dev/null +++ b/profile/3.3.5a-windows/include/tempest/plane.h @@ -0,0 +1,13 @@ +#ifndef TEMPEST_PLANE_H +#define TEMPEST_PLANE_H + +#include "tempest/vector.h" + +DECLARE_STRUCT(C4Plane); + +struct C4Plane { + C3Vector n; + float d; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/tempest/quaternion.h b/profile/3.3.5a-windows/include/tempest/quaternion.h new file mode 100644 index 0000000..47ab7db --- /dev/null +++ b/profile/3.3.5a-windows/include/tempest/quaternion.h @@ -0,0 +1,13 @@ +#ifndef TEMPEST_QUATERNION_H +#define TEMPEST_QUATERNION_H + +DECLARE_STRUCT(C4Quaternion); + +struct C4Quaternion { + float x; + float y; + float z; + float w; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/tempest/range.h b/profile/3.3.5a-windows/include/tempest/range.h new file mode 100644 index 0000000..fe076e2 --- /dev/null +++ b/profile/3.3.5a-windows/include/tempest/range.h @@ -0,0 +1,19 @@ +#ifndef TEMPEST_RANGE_H +#define TEMPEST_RANGE_H + +#include "system/types.h" + +DECLARE_STRUCT(CRange); +DECLARE_STRUCT(CiRange); + +struct CRange { + float l; + float h; +}; + +struct CiRange { + int32_t l; + int32_t h; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/tempest/rect.h b/profile/3.3.5a-windows/include/tempest/rect.h new file mode 100644 index 0000000..f88251a --- /dev/null +++ b/profile/3.3.5a-windows/include/tempest/rect.h @@ -0,0 +1,23 @@ +#ifndef TEMPEST_RECT_H +#define TEMPEST_RECT_H + +#include "system/types.h" + +DECLARE_STRUCT(CRect); +DECLARE_STRUCT(CiRect); + +struct CRect { + float minY; // t + float minX; // l + float maxY; // b + float maxX; // r +}; + +struct CiRect { + int32_t minY; + int32_t minX; + int32_t maxY; + int32_t maxX; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/tempest/sphere.h b/profile/3.3.5a-windows/include/tempest/sphere.h new file mode 100644 index 0000000..e7b152f --- /dev/null +++ b/profile/3.3.5a-windows/include/tempest/sphere.h @@ -0,0 +1,13 @@ +#ifndef TEMPEST_SPHERE_H +#define TEMPEST_SPHERE_H + +#include "tempest/vector.h" + +DECLARE_STRUCT(CAaSphere); + +struct CAaSphere { + C3Vector n; + float d; +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/tempest/vector.h b/profile/3.3.5a-windows/include/tempest/vector.h new file mode 100644 index 0000000..233d790 --- /dev/null +++ b/profile/3.3.5a-windows/include/tempest/vector.h @@ -0,0 +1,43 @@ +#ifndef TEMPEST_VECTOR_H +#define TEMPEST_VECTOR_H + +#include "system/types.h" + +DECLARE_STRUCT(C2Vector); +DECLARE_STRUCT(C2iVector); +DECLARE_STRUCT(C3Vector); +DECLARE_STRUCT(C4Vector); +DECLARE_STRUCT(CImVector); + +struct C2Vector { + float x; + float y; +}; + +struct C2iVector { + int32_t x; + int32_t y; +}; + +struct C3Vector { + float x; + float y; + float z; +}; + +struct C4Vector { + float x; + float y; + float z; + float w; +}; + +struct CImVector { + uint8_t b; + uint8_t g; + uint8_t r; + uint8_t a; +}; + + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/include/texture/blp.h b/profile/3.3.5a-windows/include/texture/blp.h new file mode 100644 index 0000000..54138ac --- /dev/null +++ b/profile/3.3.5a-windows/include/texture/blp.h @@ -0,0 +1,70 @@ +#ifndef TEXTURE_BLP_H +#define TEXTURE_BLP_H + +#include "system/types.h" + +#include "storm/file.h" + +#include "gx/types.h" + +DECLARE_HANDLE(HCOLORMAP); + +DECLARE_ENUM(MipMapAlgorithm); + +DECLARE_STRUCT(CBLPFile); +DECLARE_STRUCT(BlpPalPixel); +DECLARE_STRUCT(BLPHeader); +DECLARE_STRUCT(BLPJPEGHeader); + +enum MipMapAlgorithm { + MMA_BOX = 0x0, + MMA_CUBIC = 0x1, + MMA_FULLDFT = 0x2, + MMA_KAISER = 0x3, + MMA_LINEARLIGHTKAISER = 0x4 +}; + +struct BlpPalPixel { + uint8_t b; + uint8_t g; + uint8_t r; + uint8_t pad; +}; + +struct BLPJPEGHeader { + uint32_t headerSize; + uint8_t headerData[1020]; +}; + +struct BLPHeader { + uint32_t magic; + uint32_t formatVersion; + uint8_t colorEncoding; + uint8_t alphaSize; + uint8_t preferredFormat; + uint8_t hasMips; + uint32_t width; + uint32_t height; + uint32_t mipOffsets[16]; + uint32_t mipSizes[16]; + + union { + BlpPalPixel palette[256]; + + BLPJPEGHeader jpeg; + } extended; +}; + +struct CBLPFile { + MipBits* m_images; + BLPHeader m_header; + void* m_inMemoryImage; + int32_t m_inMemoryNeedsFree; + uint32_t m_numLevels; + uint32_t m_quality; + HCOLORMAP m_colorMapping; + MipMapAlgorithm m_mipMapAlgorithm; + uint8_t* m_lockDecompMem; +}; + +#endif diff --git a/profile/3.3.5a-windows/include/texture/tga.h b/profile/3.3.5a-windows/include/texture/tga.h new file mode 100644 index 0000000..5280c00 --- /dev/null +++ b/profile/3.3.5a-windows/include/texture/tga.h @@ -0,0 +1,66 @@ +#ifndef TEXTURE_TGA_H +#define TEXTURE_TGA_H + +#include "system/types.h" + +#include "storm/file.h" + +DECLARE_STRUCT(TGAFooter); +DECLARE_STRUCT(TGAHeader); +DECLARE_STRUCT(TGA32Pixel); +DECLARE_STRUCT(TGAImageDesc); +DECLARE_STRUCT(CTgaFile); + +struct TGAFooter { + uint32_t dwExtensionOffset; + uint32_t dwDeveloperOffset; + uint8_t szSigniture[18]; +}; + +#pragma pack(push, 1) + +struct TGAImageDesc { + uint8_t bAlphaChannelBits : 4; + uint8_t bLeftRightOrder : 1; + uint8_t bTopBottomOrder : 1; + uint8_t bReserved : 2; +}; + +struct TGAHeader { + uint8_t bIDLength; + uint8_t bColorMapType; + uint8_t bImageType; + // byte packed + uint16_t wColorMapStartIndex; + uint16_t wColorMapEntries; + uint8_t bColorMapEntrySize; + uint16_t wXOrigin; + uint16_t wYOrigin; + uint16_t wWidth; + uint16_t wHeight; + uint8_t bPixelDepth; + union { + uint8_t bImageDescriptor; + TGAImageDesc desc; + }; +}; +#pragma pack(pop) + +struct TGA32Pixel { + uint8_t b; + uint8_t g; + uint8_t r; + uint8_t a; +}; + +struct CTgaFile { + SFile* m_file; + uint8_t* m_image; + TGAHeader m_header; + uint8_t* m_addlHeaderData; + TGAFooter m_footer; + uint32_t m_imageBytes; + uint8_t* m_colorMap; +}; + +#endif diff --git a/profile/3.3.5a-windows/include/ui/simpleframe.h b/profile/3.3.5a-windows/include/ui/simpleframe.h new file mode 100644 index 0000000..1f0357e --- /dev/null +++ b/profile/3.3.5a-windows/include/ui/simpleframe.h @@ -0,0 +1,9 @@ +#ifndef UI_SIMPLE_FRAME_H +#define UI_SIMPLE_FRAME_H + +DECLARE_STRUCT(CSimpleFrame); + +struct CSimpleFrame { +}; + +#endif \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/camera/func.sym b/profile/3.3.5a-windows/symbol/camera/func.sym new file mode 100644 index 0000000..ab077e7 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/camera/func.sym @@ -0,0 +1,5 @@ +CCamera__SetupWorldProjection 004BECF0 f end=004BEE5E +CameraSetupScreenProjection 004BEE60 f end=004BF0B9 +CameraSetupWorldProjection 004BF0C0 f end=004BF0E2 +CCamera__CCamera 004BF770 f end=004BFA4E +CameraCreate 004BFCA0 f end=004BFCD4 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/client/func.sym b/profile/3.3.5a-windows/symbol/client/func.sym new file mode 100644 index 0000000..dc67763 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/client/func.sym @@ -0,0 +1,9 @@ +SetPaths 00402B20 f end=00402B8B +CommonMain 00406C70 f end=00406D64 +InitializeGlobal 004067F0 f end=00406B67 +DestroyGlobal 00406B70 f end=00406C65 +CmdLineProcess 0047B720 f end=0047B736 +ConvertPosition 0047FC90 f end=0047FDD4 +ScrnLayerCreate 004A8BB0 f end=004A8C83 +ScrnLayerSetRect 004A8500 f end=004A8522 +ClientKillTimer 004033B0 f end=004033B9 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/console/func.sym b/profile/3.3.5a-windows/symbol/console/func.sym new file mode 100644 index 0000000..0622b67 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/console/func.sym @@ -0,0 +1,42 @@ +CVar__Set 007668C0 f end=00766936 +CVar__Destroy 007673F0 f end=00767434 +CVar__Register 00767FC0 f end=007681E9 +CVar__Initialize 00768340 f end=00768402 +CVarSaveFile 00767100 f end=0076719C +CVarLoadFile 00766530 f end=007665C2 +ConsoleAccessGetEnabled 00769230 f end=00769236 +ConsoleCommand_Quit 00768410 f end=0076841B +ConsoleCommandExecute 007658A0 f end=007659BF +ConsoleCommandHistory 00768440 f end=0076845B +ConsoleCommandHistoryDepth 0095BFB0 f end=0095BFB6 +ConsoleCommandHistoryPrev 00763B40 f end=00763B83 ; UC +ConsoleCommandHistoryNext 00763B90 f end=00763BD6 ; UC +ConsoleCommandRegister 00769100 f end=007691B3 +ConsoleCommandUnregister 007689E0 f end=00768A19 +ConsoleDeviceInitialize 0076AB80 f end=0076B287 +ConsolePostClose 00763C50 f end=00763C5D +ConsoleScreenInitialize 00766140 f end=00766295 +RegisterHandlers 00765FF0 f end=007660C2 +ConsoleWrite 00765270 f end=00765359 +ConsoleWriteA 007653B0 f end=00765400 +EventCloseCallback 00763D60 f end=00763D71 +PaintBackground 007643F0 f end=00764413 +PaintText 007645E0 f end=00764788 +OnChar 00764990 f end=00764A03 +OnIdle 007659C0 f end=00765AE5 +OnKeyDown 00765AF0 f end=00765FB2 +OnKeyUp 00763BE0 f end=00763C0A +OnKeyDownRepeat 00764B90 f end=00764E4F +OnMouseDown 00764A10 f end=00764B88 +OnMouseUp 007639A0 f end=007639CF +OnMouseMove 007639D0 f end=00763A54 +MakeCommandCurrent 00763A60 f end=00763AAA +ReserveInputSpace 007637D0 f end=0076382B +GetInputLine 00764520 f end=007645D3 +PasteInInputLine 00764800 f end=00764985 +SetInputString 00763730 f end=007637CD ; UC +ResetHighlight 00763830 f end=00763855 +UpdateHighlight 00763860 f end=00763996 +DrawBackground 00763DF0 f end=00764039 +DrawHighLight 00764040 f end=00764196 +DrawCaret 007641A0 f end=007643EA \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/console/label.sym b/profile/3.3.5a-windows/symbol/console/label.sym new file mode 100644 index 0000000..a921a59 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/console/label.sym @@ -0,0 +1,35 @@ +g_commandHistory 00ca3a28 l ; char[10394] +g_commandHistoryIndex 00caba28 l ; uint32 +g_consoleCommandHash 00caba30 l ; TSHashTable +g_defaultCommand 00caba2c l ; command function pointer +s_active 007649af l ; int32 as boolean +s_baseTextFlags 00adbae4 l ; uint32 +s_batch 00ca1874 l ; CGxStringBatch* +s_caret 00ca1694 l ; int32 +s_caretpixwidth 00ca1718 l +s_caretpixheight 00ca1690 l +s_charSpacing 00ca19a8 l ; float +s_completedCmd 00ca1984 l ; int32 +s_completionMode 00ca1980 l +s_consoleAccessEnabled 00cabcc4 l ; int32 as boolean +s_consoleHeight 00ca19b0 l ; float +s_consoleHotKey 00adbac4 l ; KEY +s_consoleResizeState 00ca1990 l ; CONSOLERESIZESTATE +s_currlineptr 00ca1720 l ; CONSOLELINE* +s_fontHeight 00adbacc l ; float +s_fontName 00ca1768 l ; char[260] +s_highlightState 00ca1994 l ; HIGHLIGHTSTATE +s_highlightLeftCharIndex 00ca19a0 l ; uint32 +s_highlightRightCharIndex 00ca19a4 l ; uint32 +s_historyIndex 00adbac8 l ; int32 +s_hRect 00adbad4 l ; RECTF +s_inputString 00ca171c l ; CGxString* +s_layerBackground 00ca1724 l ; HLAYER +s_layerText 00ca1870 l ; HLAYER +s_partial 00ca1878 l ; char[100] +s_rect 00adbab4 l ; RECTF +s_repeatCount 00ca186c l ; uint32 +s_repeatBuffer 00ca1728 l ; char[64] +carettime 00ca19f0 l ; float +s_NumLines 00ca197c l ; int32 +s_textFont 00ca198c l ; HTEXTFONT \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/coordinate/func.sym b/profile/3.3.5a-windows/symbol/coordinate/func.sym new file mode 100644 index 0000000..8ea29a1 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/coordinate/func.sym @@ -0,0 +1,9 @@ +DDCToNDCWidth 0047C050 f end=0047C05E +DDCToNDCHeight 0047C060 f end=0047C06E +NDCToDDCWidth 0047C070 f end=0047C07E +NDCToDDCHeight 0047C080 f end=0047C08E +NDCToDDC 0047BFF0 f end=0047C019 +DDCToNDC 0047C020 f end=0047C049 +CoordinateSetAspectRatio 0047BF90 f end=0047BFC8 +CoordinateGetAspectRatio 0047BFD0 f end=0047BFD7 +CoordinateGetAspectCompensation 0047BFE0 f end=0047BFE7 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/cursor/func.sym b/profile/3.3.5a-windows/symbol/cursor/func.sym new file mode 100644 index 0000000..c1d8bf7 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/cursor/func.sym @@ -0,0 +1,4 @@ +CursorInitialize 006163B0 f end=006164A5 +CopyCursorImage 006160B0 f end=00616211 type="int32_t __usercall func@(uint32_t** image@, MipBits* mipImages@, uint32_t width@, uint32_t height)" +UpdateCursor 006162C0 f end=006163AD +CursorSetMode 00616800 f end=0061682E type="void __stdcall func(CURSORMODE mode)" diff --git a/profile/3.3.5a-windows/symbol/cursor/label.sym b/profile/3.3.5a-windows/symbol/cursor/label.sym new file mode 100644 index 0000000..a9c2bb4 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/cursor/label.sym @@ -0,0 +1,10 @@ +s_cursorNames 00AD2808 l type="char*[53]" +s_cursorFile 00C25CD0 l type="int8_t" ; wonder why it's this type +s_cursorItemMipsWidth 00C25DD4 l +s_cursorItemMipsHeight 00C25DD8 l +s_cursorItemMips 00C25DDC l +s_cursorItemType 00C25DE0 l +s_cursorResetMode 00C25DE4 l +s_cursorItem 00C25DE8 l type="uint32_t[1024]" +s_cursorMode 00C26DE8 l type="CURSORMODE" +s_cursorImages 00C26DF0 l type="uint32_t[53][1024]" \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/dataallocator/func.sym b/profile/3.3.5a-windows/symbol/dataallocator/func.sym new file mode 100644 index 0000000..8aad0de --- /dev/null +++ b/profile/3.3.5a-windows/symbol/dataallocator/func.sym @@ -0,0 +1,2 @@ +CDataAllocator__GetData 0095D110 f ; CDataAllocator::GetData(int, char const*, int) +CDataAllocator__PutData 0095D1B0 f ; CDataAllocator::PutData(void*, char const*, int) \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/datarecycler/func.sym b/profile/3.3.5a-windows/symbol/datarecycler/func.sym new file mode 100644 index 0000000..52f5338 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/datarecycler/func.sym @@ -0,0 +1,3 @@ +CDataRecycler__Clear 0095CEC0 f end=0095CF39 +CDataRecycler__PutData 0095CFB0 f end=0095D077 +CDataRecycler__GetData 0095CF40 f end=0095CFAE \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/datastore/func.sym b/profile/3.3.5a-windows/symbol/datastore/func.sym new file mode 100644 index 0000000..1ab2290 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/datastore/func.sym @@ -0,0 +1,26 @@ +CDataStore__FetchWrite 00401070 f ; protected: int __thiscall CDataStore::FetchWrite(unsigned int,unsigned int,char const *,int) +CDataStore__IsRead 004010D0 f ; CDataStore::IsRead() const +CDataStore__Reset 004010E0 f ; CDataStore::Reset() +CDataStore__Finalize 00401130 f ; CDataStore::Finalize() +CDataStore__destructor 004038A0 f ; CDataStore::~CDataStore() +CDataStore__GetBufferParams 0047ADE0 f ; CDataStore::GetBufferParams(void const**, unsigned int*, unsigned int*) +CDataStore__DetachBuffer 0047AE10 f ; CDataStore::DetachBuffer(void**, unsigned int*, unsigned int*) +CDataStore__InternalDestroy 0047AE50 f ; virtual void __thiscall CDataStore::InternalDestroy(unsigned char * &,unsigned int &,unsigned int &) +CDataStore__InternalFetchWrite 0047AEA0 f ; CDataStore::InternalFetchWrite(unsigned int, unsigned int, unsigned char*&, unsigned int&, unsigned int&, char const*, int) +CDataStore__Set 0047AF40 f ; CDataStore::Set(unsigned int, unsigned short) +CDataStore__Put_uint8_t 0047AFE0 f ; CDataStore::Put(unsigned char) +CDataStore__Put_uint16_t 0047B040 f ; CDataStore::Put(unsigned short) +CDataStore__Put_uint32_t 0047B0A0 f ; CDataStore::Put(unsigned int) +CDataStore__Put_uint64_t 0047B100 f ; CDataStore::Put(unsigned long long) +CDataStore__PutArray 0047B1C0 f ; CDataStore::PutArray(unsigned char const*, unsigned int) +CDataStore__PutData 0047B280 f ; CDataStore::PutData(void const*, unsigned long) +CDataStore__FetchRead 0047B290 f ; CDataStore::FetchRead(unsigned int, unsigned int) +CDataStore__PutString 0047B300 f ; CDataStore::PutString(char const*) +CDataStore__Get_uint8_t 0047B340 f end=0047B371 ; CDataStore::Get(unsigned char&) +CDataStore__Get_uint16_t 0047B380 f end=0047B3B3 ; CDataStore::Get(unsigned short&) +CDataStore__Get_uint32_t 0047B3C0 f end=0047B3F1 ; CDataStore::Get(unsigned int&) +CDataStore__Get_uint64_t 0047B400 f end=0047B43A ; CDataStore::Get(unsigned long long&) +CDataStore__Get_float 0047B440 f end=0047B471 ; CDataStore::Get(float&) +CDataStore__GetString 0047B480 f end=0047B560 ; CDataStore::GetString(char*, unsigned int) +CDataStore__GetArray 0047B560 f end=0047B5ED ; CDataStore::GetArray(unsigned char*, unsigned int) +CDataStore__GetDataInSitu 0047B6B0 f end=0047B6E9 ; CDataStore::GetDataInSitu(void*&, unsigned int) \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/event/func.sym b/profile/3.3.5a-windows/symbol/event/func.sym new file mode 100644 index 0000000..44c3942 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/event/func.sym @@ -0,0 +1,50 @@ +EventDestroy 0047D030 f end=0047D04E +EventDestroy_cleanup 00480EA0 f end=00480ED9 +EventInitialize 0047CFF0 f end=0047D02D +EventCreateContextEx 0047D080 f end=0047D089 +EventSetConfirmCloseCallback 0047D090 f end=0047D099 +EventIsButtonDown 0047D1D0 f end=0047D230 +EventIsKeyDown 0047D230 f end=0047D290 +EventPostCloseEx 0047D290 f end=0047D305 +EventRegisterEx 0047D3C0 f end=0047D443 +EventSetMouseMode 0047D690 f end=0047D6FD +EventSetTimer 0047D530 f end=0047D59C +EventRegister 0047D770 f end=0047D78D +EventUnregister 0047D790 f end=0047D7A9 +EventUnregisterEx 0047D450 f end=0047D4B7 +EventDoMessageLoop 0047F2D0 f end=0047F2EC +EventForceIdleProcessing 0047DCA0 f end=0047DE09 +EventKillTimer 0047D620 f end=0047D683 +EventQueuePost 0047D310 f end=0047D3AF +IEvtInputProcess 00480410 f end=004804A8 +IEvtInputGetMousePosition 004800A0 f end=004800EF +IEvtInputSetConfirmCloseCallback 0047FC20 f end=0047FC36 +IEvtInputSetMouseMode 0047FBB0 f end=0047FC17 +IEvtInputDestroy 0047FB80 f end=0047FB92 +IEvtQueueCheckSyncKeyState 00480A50 f end=00480AC2 +IEvtQueueCheckSyncMouseState 004804C0 f end=004804E6 +IEvtQueueDestroy 004804B0 f end=004804BA +IEvtQueueDispatch 00480AD0 f end=00480BCB +IEvtQueueDispatchAll 00480BD0 f end=00480D28 +IEvtQueueRegister 004804F0 f end=004805F4 type="void __cdecl func(EvtContext* context, EVENTID id, void* handler, void* param, float priority)" +IEvtQueueUnregister 00480D30 f end=00480DD1 +IEvtQueuePost 004806A0 f end=0048071F type="int32_t __cdecl func(EvtContext* context, EVENTID id, void *data, size_t bytes)" +IEvtSchedulerCreateContext 0047F5C0 f end=0047F6B9 +IEvtSchedulerInitialize 0047F2F0 f end=0047F5BA +IEvtSchedulerDestroy 0047DEA0 f end=0047E117 +IEvtSchedulerShutdown 0047D990 f end=0047D9EB +SchedulerThreadProc 0047F230 f end=0047F2C1 ; IEvtSchedulerProcess as an independent function appears to be optimized out +SchedulerThreadProcProcess 0047EFF0 f end=0047F225 +IEvtTimerDispatch 00481100 f end=00481289 +IEvtTimerGetNextTime 00480F70 f end=00480FCA +IEvtTimerKill 00481290 f end=0048138F +IEvtTimerSet 00481390 f end=004814E4 +PostMouseModeChanged 0047FAC0 f end=0047FB22 +PropSelectContext 0047CBF0 f end=0047CC08 +PropSet 0047CC50 f end=0047CC70 +PropGet 0047CC20 f end=0047CC41 +InitializeSchedulerThread 0047E910 f end=0047EA69 +SynthesizeIdle 0047DBC0 f end=0047DC14 +SynthesizePaint 0047DC50 f end=0047DC8D +SynthesizePoll 0047DC20 f end=0047DC50 +AttachContextToThread 0047EC10 f \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/event/label.sym b/profile/3.3.5a-windows/symbol/event/label.sym new file mode 100644 index 0000000..2b63664 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/event/label.sym @@ -0,0 +1,3 @@ +s_mainThread 00b417c8 l type="uint32_t" +s_messageRecycler 00B41850 l type="CDataRecycler" +s_interactiveCount 00B417D0 l type="int32_t" \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/file/func.sym b/profile/3.3.5a-windows/symbol/file/func.sym new file mode 100644 index 0000000..2a8cd95 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/file/func.sym @@ -0,0 +1,12 @@ +SFile__Open 00424F80 f end=00424F98 +SFile__OpenEx 00424B50 f end=00424E44 +SFile__Close 00422910 f end=004229AB +SFile__Load 00424E80 f end=00424F46 +SFile__Read 00422530 f end=004227D4 +SFile__FileIsLocal 004217C0 f end=004217DA +SFile__GetFileSize 004218C0 f end=00421948 +SFile__SetDataPath 00421AF0 f end=00421B4A +SFile__Unload 00421CA0 f end=00421CB8 +SFile__IsStreamingMode 00422130 f end=00422139 +SFile__SetFilePointer 00421BB0 f end=00421C98 +SFile__FileExistsEx 00424B10 f end=00424B41 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/framescript/func.sym b/profile/3.3.5a-windows/symbol/framescript/func.sym new file mode 100644 index 0000000..78f527c --- /dev/null +++ b/profile/3.3.5a-windows/symbol/framescript/func.sym @@ -0,0 +1,2 @@ +FrameScript_Execute 00819EA0 f end=0081A2B5 type="void __stdcall func(int32_t function, FrameScript_Object* object, int32_t args, char* args_fmt, FrameScript_EventObject* eventObject)" +FrameScript_SignalEvent 0081B530 f end=0081B549 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gameui/func.sym b/profile/3.3.5a-windows/symbol/gameui/func.sym new file mode 100644 index 0000000..a508bf7 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gameui/func.sym @@ -0,0 +1 @@ +CGameUI__Initialize 0052A980 f end=0052AEC6 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gluemgr/func.sym b/profile/3.3.5a-windows/symbol/gluemgr/func.sym new file mode 100644 index 0000000..3a3327b --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gluemgr/func.sym @@ -0,0 +1,18 @@ +CGlueMgr__SetCurrentAccount 004D7F60 f end=004D7F82 +CGlueMgr__DisplayLoginStatus 004D80C0 f end=004D8200 +CGlueMgr__SetScreen 004D82A0 f end=004D82B8 +CGlueMgr__UpdateCurrentScreen 004D82C0 f end=004D834D +CGlueMgr__HandleDisplaySizeChanged 004D8860 f end=004D8924 +CGlueMgr__Suspend 004D8930 f end=004D8A2D +CGlueMgr__LoginServerLogin 004D8A30 f end=004D8B9C +CGlueMgr__ChangeRealm 004D8BD0 f end=004D8C56 +CGlueMgr__OnKickReasonMsg 004D9500 f end=004D9582 +CGlueMgr__GetCharacterList 004D95C0 f end=004D960D +CGlueMgr__StatusDialogClick 004D98D0 f end=004D99D4 +CGlueMgr__LogConnectionStatus 004DA3D0 f end=004DA4A8 +CGlueMgr__SetLoginStateAndResult 004DA4B0 f end=004DA50D +CGlueMgr__Resume 004DA5F0 f end=004DA9C4 +CGlueMgr__NetDisconnectHandler 004DA9D0 f end=004DAB3D +CGlueMgr__Idle 004DAB40 f end=004DB9E4 +CGlueMgr__Initialize 004DB9F0 f end=004DBBBF +CGlueMgr__SurveyDownloadCancel 004E4A40 f end=004E4A9E diff --git a/profile/3.3.5a-windows/symbol/gluemgr/label.sym b/profile/3.3.5a-windows/symbol/gluemgr/label.sym new file mode 100644 index 0000000..844b533 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gluemgr/label.sym @@ -0,0 +1 @@ +CGlueMgr__m_cursorMipBits 00B6A9DC l type="MipBits*" \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gx/func.sym b/profile/3.3.5a-windows/symbol/gx/func.sym new file mode 100644 index 0000000..24dfdd0 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gx/func.sym @@ -0,0 +1,22 @@ +GxDevCreate 00681290 f end=00681301 +GxDrawLockedElements 00682340 f end=0068239E +GxLog 006817E0 f end=006817F5 +OnPaint 004A8720 f end=004A8B58 +GxCapsWindowSizeInScreenCoords 00493BF0 f end=00493C09 +GxTexCreate 00681CB0 f end=00681D87 +GxTexUpdate 006813D0 f end=006813EC +GxXformProjection 004BEC70 f end=004BEC88 +GxXformSetProjection 00408030 f end=00408049 +GxXformViewport 00408070 f end=004080D9 +GxXformProjNativeTranspose 00408110 f end=0040820F +GxXformPush_EGxXform_C44Matrix 00616AD0 f end=00616AE8 +GxXformPop 0057C420 f end=0057C44A +GxRsSet_int32_t 00408BF0 f end=00408C27 +GxRsSet_CGxShader 00408240 f end=00408258 +GxDraw 00482A40 f end=00482A5D +GxShaderConstantsSet 00408210 f end=0040823B +GxBufLock 004829D0 f end=004829E9 +GxBufUnlock 004829F0 f end=00482A13 +GxBufStream 00482A20 f end=00482A3C +GxScenePresent 00682A00 f end=00682A33 +GxSceneClear 006813B0 f end=006813CD \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxdevice/func.sym b/profile/3.3.5a-windows/symbol/gxdevice/func.sym new file mode 100644 index 0000000..a915a5b --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxdevice/func.sym @@ -0,0 +1,57 @@ +CGxDevice__CGxDevice 00688690 f end=0068903F +CGxDevice__MasterEnableSet 00685EB0 f end=00685F33 +CGxDevice__IRsForceUpdate 006859E0 f end=00685A65 +CGxDevice__NewOpenGl 0068BF20 f end=0068BF44 +CGxDevice__NewD3d 00689EF0 f end=00689F14 +CGxDevice__NewD3d9Ex 0068C220 f end=0068C244 +CGxDevice__Caps 00532AF0 f end=00532AF7 ; public: class CGxCaps const & __thiscall CGxDevice::Caps(void)const +CGxDevice__DeviceCreate_WindowProc_CGxFormat 00682CB0 f end=00682CCB +CGxDevice__DeviceApi 00682D20 f end=00682D27 +CGxDevice__IDevIsWindowed 00682D40 f end=00682D48 +CGxDevice__DeviceCurWindow 00682D70 f end=00682D76 +CGxDevice__ScenePresent 00682E50 f end=00682E66 +CGxDevice__PrimCalcCount 00682F40 f end=00682F66 +CGxDevice__LightEnable 00683080 f end=006830A4 +CGxDevice__NeedsUpdate 006830B0 f end=006830F9 +CGxDevice__MasterEnable 00683100 f end=00683121 +CGxDevice__ShaderConstantsClear 006833A0 f end=006833DD +CGxDevice__ShaderConstantsLock 00683560 f end=00683577 +CGxDevice__ShaderConstantsUnlock 00683580 f end=006835D6 +CGxDevice__ICursorUpdate 00683610 f end=00683632 +CGxDevice__DeviceSetFormat 006840F0 f end=0068416C +CGxDevice__DeviceSetDefWindow 00684360 f end=006843B0 +CGxDevice__ClipPlaneSet 00684440 f end=006844B9 +CGxDevice__LightSet 006847D0 f end=00684843 +CGxDevice__BufStream 00684850 f end=0068489F +CGxDevice__IShaderLoad 00684970 f end=00684AC8 +CGxDevice__Log 00684C20 f end=00684C3E +CGxDevice__Log_CGxCaps 00684C40 f end=00684D07 ; CGxDevice::Log(CGxCaps const&) const +CGxDevice__Log 00684D10 f end=00684D6C +CGxDevice__IRsDirty 00685970 f end=006859DB +CGxDevice__IRsForceUpdate_EGxRenderState 006859E0 f end=00685A65 ; CGxDevice::IRsForceUpdate(EGxRenderState) +CGxDevice__IRsForceUpdate 00685A70 f end=00685B4E ; CGxDevice::IRsForceUpdate() +CGxDevice__IRsSync 00685B50 f end=00685BFE +CGxDevice__RsPush 00409670 f end=004096CC +CGxDevice__RsSet 00685F50 f end=00685FB0 +CGxDevice__RsPop 00685FB0 f end=00686116 +CGxDevice__BufCreate 00687660 f end=006876C9 +CGxDevice__PoolCreate 006876D0 f end=0068773F +CGxDevice__ITexWHDStartEnd 006A5EF0 f end=006A5FDF +CGxDevice__TexMarkForUpdate 006848A0 f end=000684900 +CGxDevice__ITexMarkAsUpdated 00684900 f end=0068492D +CGxDevice__ICursorCreate 00684AD0 f end=00684B4A +CGxDevice__ICursorDestroy 006835E0 f end=00683602 +CGxDevice__ICursorDraw 00687A90 f end=00687FCA +CGxDevice__DeviceSetBaseMipLevel 00682D00 f end=00682D10 +CGxDevice__DeviceSetGamma 00684190 f end=006841AF +CGxDevice__PoolDestroy 00688340 f end=00688372 +CGxDevice__BufLock 00683150 f end=00683171 +CGxDevice__BufUnlock 00683180 f end=006831A0 +CGxDevice__BufData 00683130 f end=00683142 +CGxDevice__TexCreate 00685C60 f end=00685CCB +CGxDevice__ShaderCreate 006897C0 f end=00689A49 +CGxDevice__ShaderConstantsSet 006833E0 f end=00683554 +CGxDevice__CursorSetVisible 00683640 f end=00683650 +CGxDevice__CursorLock 00683650 f end=00683657 +CGxDevice__CursorSetDepth 00683660 f end=00683670 +CGxDevice__CursorUnlock 00684B50 f end=00684B99 diff --git a/profile/3.3.5a-windows/symbol/gxdevice/label.sym b/profile/3.3.5a-windows/symbol/gxdevice/label.sym new file mode 100644 index 0000000..6fa5e29 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxdevice/label.sym @@ -0,0 +1,5 @@ +g_theGxDevicePtr 00C5DF88 l type="CGxDevice*" +CGxDevice__vtable 00A2DDC0 l type="CGxDevice__vtable" +CGxDevice__s_shadowConstants 00C5DFE0 l +CGxDevice__s_uiVertexShader 00C5DFDC l +CGxDevice__s_uiPixelShader 00C5FFFC l \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxdeviced3d/func.sym b/profile/3.3.5a-windows/symbol/gxdeviced3d/func.sym new file mode 100644 index 0000000..e7db3c3 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxdeviced3d/func.sym @@ -0,0 +1,57 @@ +CGxDeviceD3d__ICreateD3dIB 0068E180 f end=0068E1E8 +CGxDeviceD3d__ISetPresentParms 0068E250 f end=0068E448 +CGxDeviceD3d__PoolDestroy 0068E720 f end=0068E742 +CGxDeviceD3d__CursorSetVisible 0068E750 f end=0068E7D6 +CGxDeviceD3d__ICursorDraw 0068E810 f end=0068E8F2 +CGxDeviceD3d__ICursorCreate 0068E900 f end=0068E975 +CGxDeviceD3d__ICreateWindow 0068EBB0 f end=0068ED78 +CGxDeviceD3d__ILoadD3dLib 0068ED80 f end=0068EE13 +CGxDeviceD3d__ISetCaps 0068EE20 f end=0068F36D +CGxDeviceD3d__ICreateD3dDevice 0068F3D0 f end=0068F692 +CGxDeviceD3d__IBufUnlock 0068FA60 f end=0068FADC +CGxDeviceD3d__BufUnlock 0068FAE0 f end=0068FB07 +CGxDeviceD3d__IBufLock 0068FB10 f end=0068FCDC +CGxDeviceD3d__BufLock 0068FCE0 f end=0068FCFE +CGxDeviceD3d__BufData 0068FD00 f end=0068FD49 +CGxDeviceD3d__CGxDeviceD3d 0068FD50 f end=0068FE80 +CGxDeviceD3d__DeviceWM 00690230 f end=0069038D +CGxDeviceD3d__DeviceSetFormat 006904D0 f end=006905E8 +CGxDeviceD3d__ICreateD3d 00690680 f end=00690742 +CGxDeviceD3d__DeviceCreate_WindowProc_CGxFormat 00690750 f end=00690821 +CGxDeviceD3d__ICreateD3dVB 0069FB00 f end=0069FB68 +CGxDeviceD3d__CreatePoolAPI 0069FB70 f end=0069FBB8 +CGxDeviceD3d__ICursorDestroy 006A00C0 f end=006A0102 +CGxDeviceD3d__WindowProcD3d 006A0360 f end=006A0834 +CGxDeviceD3d__ITexCreate 006A2C00 f end=006A2D7E +CGxDeviceD3d__ITexUpload 006A2D80 f end=006A3062 +CGxDeviceD3d__ITexMarkAsUpdated 006A3070 f end=006A30CF +CGxDeviceD3d__ISceneBegin 006A3350 f end=006A3417 +CGxDeviceD3d__ISceneEnd 006A3420 f end=006A3449 +CGxDeviceD3d__ScenePresent 006A3450 f end=006A3611 +CGxDeviceD3d__Draw 006A3620 f end=006A3716 +CGxDeviceD3d__IStateSyncEnables 006A3810 f end=006A386E +CGxDeviceD3d__ISetVertexBuffer 006A39E0 f end=006A3A59 +CGxDeviceD3d__IStateSetD3DDefaults 006A3A60 f end=006A3C34 +CGxDeviceD3d__DsSet 006A3C40 f end=006A40F2 +CGxDeviceD3d__ISetColorOp 006A4190 f end=006A41EC +CGxDeviceD3d__ISetAlphaOp 006A41F0 f end=006A424C +CGxDeviceD3d__IStateSyncMaterial 006A4700 f end=006A4846 +CGxDeviceD3d__IStateSyncXforms 006A4850 f end=006A48FE +CGxDeviceD3d__ISetTexture 006A4900 f end=006A4AB3 +CGxDeviceD3d__IRsSendToHw 006A4C30 f end=006A5499 +CGxDeviceD3d__ICreateD3dVertexDecl 006A5540 f end=006A5677 +CGxDeviceD3d__IStateSyncVertexPtrs 006A5700 f end=006A5934 +CGxDeviceD3d__IStateSync 006A5940 f end=006A59f5 +CGxDeviceD3d__CapsWindowSize 006A5A00 f end=006A5A25 +CGxDeviceD3d__IXformSetWorld 006A5A30 f end=006A5A92 type="void __thiscall func(CGxDeviceD3d* this)" +CGxDeviceD3d__IBindPixelShader 006A5C70 f end=006A5D48 +CGxDeviceD3d__IShaderCreate 006A5E10 f end=006A5E36 +CGxDeviceD3d__SceneClear 006A74B0 f end=006A7538 +CGxDeviceD3d__CapsWindowSizeInScreenCoords 006A9920 f end=006A99D4 +CGxDeviceD3d__XformSetProjection 006A9B40 f end=006A9D88 +CGxDeviceD3d__XformSetView 006A9E00 f end=006A9E09 +CGxDeviceD3d__IShaderConstantsFlush 006A9FE0 f end=006AA06D +CGxDeviceD3d__IShaderCreatePixel 006AA070 f end=006AA0C5 +CGxDeviceD3d__IShaderCreateVertex 006AA0D0 f end=006AA125 +CGxDeviceD3d__ShaderCreate 006AA130 f end=006AA18A +CGxDeviceD3d__IBindVertexShader 006AA2F0 f end=006AA346 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxdeviced3d/label.sym b/profile/3.3.5a-windows/symbol/gxdeviced3d/label.sym new file mode 100644 index 0000000..73e97c2 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxdeviced3d/label.sym @@ -0,0 +1,2 @@ +CGxDeviceD3d__vtable 00a2e718 l +isIdent 00C60760 l \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxdeviced3d9ex/func.sym b/profile/3.3.5a-windows/symbol/gxdeviced3d9ex/func.sym new file mode 100644 index 0000000..6b121fd --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxdeviced3d9ex/func.sym @@ -0,0 +1 @@ +CGxDeviceD3d9Ex__CGxDeviceD3d9Ex 006A1A90 f end=006A1C24 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxdeviced3d9ex/label.sym b/profile/3.3.5a-windows/symbol/gxdeviced3d9ex/label.sym new file mode 100644 index 0000000..b99cac5 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxdeviced3d9ex/label.sym @@ -0,0 +1 @@ +CGxDeviceD3d9Ex__vtable 00a2f500 l \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxdeviceopengl/func.sym b/profile/3.3.5a-windows/symbol/gxdeviceopengl/func.sym new file mode 100644 index 0000000..beef17c --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxdeviceopengl/func.sym @@ -0,0 +1 @@ +CGxDeviceOpenGl__CGxDeviceOpenGl 0068BBC0 f end=0068BD15 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxdeviceopengl/label.sym b/profile/3.3.5a-windows/symbol/gxdeviceopengl/label.sym new file mode 100644 index 0000000..e025e58 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxdeviceopengl/label.sym @@ -0,0 +1 @@ +CGxDeviceOpenGl__vtable 00A2E198 l \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxprim/func.sym b/profile/3.3.5a-windows/symbol/gxprim/func.sym new file mode 100644 index 0000000..a4443c3 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxprim/func.sym @@ -0,0 +1,4 @@ +GxPrimIndexPtr 00681AB0 f end=00681AFB +GxPrimVertexPtr 00681B00 f +GxPrimVertexPtr_FFP 00682400 f end=00682781 ; this is one of the functions named 'GxPrimVertexPtr' that uses the fixed-function pipeline +GxPrimLockVertexPtrs 006828C0 f end=006828FE \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxshader/func.sym b/profile/3.3.5a-windows/symbol/gxshader/func.sym new file mode 100644 index 0000000..1df389c --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxshader/func.sym @@ -0,0 +1 @@ +CGxShader__Valid 00689A50 f end=00689A6F \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxtexture/func.sym b/profile/3.3.5a-windows/symbol/gxtexture/func.sym new file mode 100644 index 0000000..2369ea2 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxtexture/func.sym @@ -0,0 +1 @@ +CGxTexFlags__CGxTexFlags 00681BE0 f end=00681CAB ; UC \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/gxu/func.sym b/profile/3.3.5a-windows/symbol/gxu/func.sym new file mode 100644 index 0000000..8df9947 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/gxu/func.sym @@ -0,0 +1,22 @@ +GxuFontShutdown 004A8D10 f end=004A8DBF +GxuFontGetOneToOneHeight 006BD020 f end=006BD069 +GxuFontAddToBatch 006BCE10 f end=006BCE32 +GxuFontRenderBatch 006BCE40 f end=006BCE52 +GxuFontGetTextExtent 006BCE60 f end=006BCE98 +GxuFontGetMaxCharsWithinWidth 006BCEA0 f end=006BCEE7 +GxuFontSetStringPosition 006BD0A0 f end=006BD0BE +GxuFontAddShadow 006BD0C0 f end=006BD0DF +GxuDetermineQuotedCode 006BD5A0 f end=006BD89D +GxuFontDestroyString 006BDFC0 f end=006BE014 +GxuFontDestroyBatch 006BE3B0 f end=006BE3DD +GxuFontUpdate 006BE3E0 f end=006BEE87 +GxuFontWindowSizeChanged 006BE020 f end=006BE221 +GxuFontCreateString 006BE2B0 f end=006BE390 +GxuFontClearBatch 006BE390 f end=006BE3AD +GxuFontCreateBatch 006BF160 f end=006BF202 +GxuXformCreateProjection_Exact 006BF370 f end=006BF4B2 +GxuXformCalcFrustumCorners 006BF6D0 f end=006BFB60 +GxuUpdateSingleColorTexture 006BFDA0 f end=006BFDFE +GxuXformCreateProjection_SG 006BFE00 f end=006BFE5C +GxuXformCreateLookAtSgCompat 006BFE60 f end=006C004D +IGxuFontGlyphRenderGlyph 006C8CC0 f end=006C8E6B \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/handle/func.sym b/profile/3.3.5a-windows/symbol/handle/func.sym new file mode 100644 index 0000000..058c1b6 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/handle/func.sym @@ -0,0 +1,3 @@ +HandleClose 0047BF30 f end=0047BF46 +HandleCreate 0047BF50 f end=0047BF6B +HandleDuplicate 0047BF70 f end=0047BF82 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/lock/func.sym b/profile/3.3.5a-windows/symbol/lock/func.sym new file mode 100644 index 0000000..d252e81 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/lock/func.sym @@ -0,0 +1,2 @@ +CSRWLock__Enter 0047D0E0 f end=0047D16A +CSRWLock__Leave 00774660 f end=00774675 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/lua/func.sym b/profile/3.3.5a-windows/symbol/lua/func.sym new file mode 100644 index 0000000..90e98e0 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/lua/func.sym @@ -0,0 +1,22 @@ +_lua_gettop 0084DBD0 f +_lua_settop 0084DBF0 f +_lua_insert 0084DCC0 f +_lua_type 0084DEB0 f +_lua_isnumber 0084DF20 f +_lua_isstring 0084DF60 f +_lua_tonumber 0084E030 f +_lua_tolstring 0084E0E0 f +_lua_touserdata 0084E1C0 f +_lua_pushnil 0084E280 f +_lua_pushnumber 0084E2A0 f +_lua_pushstring 0084E350 f +_lua_rawget 0084E600 f +_lua_rawgeti 0084E670 f +_lua_rawset 0084E970 f +_luaL_error 0084F280 f +_luaL_unref 0084F7A0 f +_luaG_runerror 00850920 f +_luaD_throw 008562E0 f +_luaD_precall 00856370 f +luaD_call 00856760 f +_luaV_execute 00857CA0 f \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/main.sym b/profile/3.3.5a-windows/symbol/main.sym new file mode 100644 index 0000000..da79627 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/main.sym @@ -0,0 +1,2707 @@ +CDataStore__FetchWrite 00401070 f ; protected: int __thiscall CDataStore::FetchWrite(unsigned int,unsigned int,char const *,int) +CDataStore__IsRead 004010D0 f ; CDataStore::IsRead() const +CDataStore__Reset 004010E0 f ; CDataStore::Reset() +CDataStore__Finalize 00401130 f ; CDataStore::Finalize() +SetPaths 00402B20 f end=00402B8B +ClientKillTimer 004033B0 f end=004033B9 +CDataStore__destructor 004038A0 f ; CDataStore::~CDataStore() +InitializeGlobal 004067F0 f end=00406B67 +DestroyGlobal 00406B70 f end=00406C65 +CommonMain 00406C70 f end=00406D64 +C44Matrix__C44Matrix 00407F40 f end=00407F76 +C44Matrix__operator_assign_C44Matrix 00407F80 f end=00407FEA +GxXformSetProjection 00408030 f end=00408049 +GxXformViewport 00408070 f end=004080D9 +GxXformProjNativeTranspose 00408110 f end=0040820F +GxShaderConstantsSet 00408210 f end=0040823B +GxRsSet_CGxShader 00408240 f end=00408258 +GxRsSet_int32_t 00408BF0 f end=00408C27 +CGxDevice__RsPush 00409670 f end=004096CC +purecall 0040BAA5 f end=0040BACF +nullsub_1 0040D3B5 f +SFile__FileIsLocal 004217C0 f end=004217DA +SFile__GetFileSize 004218C0 f end=00421948 +SFile__SetDataPath 00421AF0 f end=00421B4A +SFile__SetFilePointer 00421BB0 f end=00421C98 +SFile__Unload 00421CA0 f end=00421CB8 +SFile__IsStreamingMode 00422130 f end=00422139 +SFile__Read 00422530 f end=004227D4 +SFile__Close 00422910 f end=004229AB +SFile__FileExistsEx 00424B10 f end=00424B41 +SFile__OpenEx 00424B50 f end=00424E44 +SFile__Load 00424E80 f end=00424F46 +SFile__Open 00424F80 f end=00424F98 +OsCloseFile 00461B00 f end=00461B09 +OsReadFile 00461B50 f end=00461B88 +OsGetFileSize 00461BD0 f end=00461BF4 +OsSetCurrentDirectory 00461DB0 f end=00461DD7 +OsCreateFile 00461FA0 f end=00461FFA +nullsub_2 0047ADD0 f +CDataStore__GetBufferParams 0047ADE0 f ; CDataStore::GetBufferParams(void const**, unsigned int*, unsigned int*) +CDataStore__DetachBuffer 0047AE10 f ; CDataStore::DetachBuffer(void**, unsigned int*, unsigned int*) +CDataStore__InternalDestroy 0047AE50 f ; virtual void __thiscall CDataStore::InternalDestroy(unsigned char * &,unsigned int &,unsigned int &) +CDataStore__InternalFetchWrite 0047AEA0 f ; CDataStore::InternalFetchWrite(unsigned int, unsigned int, unsigned char*&, unsigned int&, unsigned int&, char const*, int) +CDataStore__Set 0047AF40 f ; CDataStore::Set(unsigned int, unsigned short) +CDataStore__Put_uint8_t 0047AFE0 f ; CDataStore::Put(unsigned char) +CDataStore__Put_uint16_t 0047B040 f ; CDataStore::Put(unsigned short) +CDataStore__Put_uint32_t 0047B0A0 f ; CDataStore::Put(unsigned int) +CDataStore__Put_uint64_t 0047B100 f ; CDataStore::Put(unsigned long long) +CDataStore__PutArray 0047B1C0 f ; CDataStore::PutArray(unsigned char const*, unsigned int) +CDataStore__PutData 0047B280 f ; CDataStore::PutData(void const*, unsigned long) +CDataStore__FetchRead 0047B290 f ; CDataStore::FetchRead(unsigned int, unsigned int) +CDataStore__PutString 0047B300 f ; CDataStore::PutString(char const*) +CDataStore__Get_uint8_t 0047B340 f end=0047B371 ; CDataStore::Get(unsigned char&) +CDataStore__Get_uint16_t 0047B380 f end=0047B3B3 ; CDataStore::Get(unsigned short&) +CDataStore__Get_uint32_t 0047B3C0 f end=0047B3F1 ; CDataStore::Get(unsigned int&) +CDataStore__Get_uint64_t 0047B400 f end=0047B43A ; CDataStore::Get(unsigned long long&) +CDataStore__Get_float 0047B440 f end=0047B471 ; CDataStore::Get(float&) +CDataStore__GetString 0047B480 f end=0047B560 ; CDataStore::GetString(char*, unsigned int) +CDataStore__GetArray 0047B560 f end=0047B5ED ; CDataStore::GetArray(unsigned char*, unsigned int) +CDataStore__GetDataInSitu 0047B6B0 f end=0047B6E9 ; CDataStore::GetDataInSitu(void*&, unsigned int) +CmdLineProcess 0047B720 f end=0047B736 +j_nullsub_3 0047B760 f +HandleClose 0047BF30 f end=0047BF46 +HandleCreate 0047BF50 f end=0047BF6B +HandleDuplicate 0047BF70 f end=0047BF82 +CoordinateSetAspectRatio 0047BF90 f end=0047BFC8 +CoordinateGetAspectRatio 0047BFD0 f end=0047BFD7 +CoordinateGetAspectCompensation 0047BFE0 f end=0047BFE7 +NDCToDDC 0047BFF0 f end=0047C019 +DDCToNDC 0047C020 f end=0047C049 +DDCToNDCWidth 0047C050 f end=0047C05E +DDCToNDCHeight 0047C060 f end=0047C06E +NDCToDDCWidth 0047C070 f end=0047C07E +NDCToDDCHeight 0047C080 f end=0047C08E +PropSelectContext 0047CBF0 f end=0047CC08 +PropGet 0047CC20 f end=0047CC41 +PropSet 0047CC50 f end=0047CC70 +RCString__Copy 0047CF80 f end=0047CFEC +EventInitialize 0047CFF0 f end=0047D02D +EventDestroy 0047D030 f end=0047D04E +EventCreateContextEx 0047D080 f end=0047D089 +EventSetConfirmCloseCallback 0047D090 f end=0047D099 +CSRWLock__Enter 0047D0E0 f end=0047D16A +EventIsButtonDown 0047D1D0 f end=0047D230 +EventIsKeyDown 0047D230 f end=0047D290 +EventPostCloseEx 0047D290 f end=0047D305 +EventQueuePost 0047D310 f end=0047D3AF +EventRegisterEx 0047D3C0 f end=0047D443 +EventUnregisterEx 0047D450 f end=0047D4B7 +EventSetTimer 0047D530 f end=0047D59C +EventKillTimer 0047D620 f end=0047D683 +EventSetMouseMode 0047D690 f end=0047D6FD +EventRegister 0047D770 f end=0047D78D +EventUnregister 0047D790 f end=0047D7A9 +IEvtSchedulerShutdown 0047D990 f end=0047D9EB +SynthesizeIdle 0047DBC0 f end=0047DC14 +SynthesizePoll 0047DC20 f end=0047DC50 +SynthesizePaint 0047DC50 f end=0047DC8D +EventForceIdleProcessing 0047DCA0 f end=0047DE09 +IEvtSchedulerDestroy 0047DEA0 f end=0047E117 +InitializeSchedulerThread 0047E910 f end=0047EA69 +AttachContextToThread 0047EC10 f +SchedulerThreadProcProcess 0047EFF0 f end=0047F225 +SchedulerThreadProc 0047F230 f end=0047F2C1 ; IEvtSchedulerProcess as an independent function appears to be optimized out +EventDoMessageLoop 0047F2D0 f end=0047F2EC +IEvtSchedulerInitialize 0047F2F0 f end=0047F5BA +IEvtSchedulerCreateContext 0047F5C0 f end=0047F6B9 +PostMouseModeChanged 0047FAC0 f end=0047FB22 +IEvtInputDestroy 0047FB80 f end=0047FB92 +IEvtInputSetMouseMode 0047FBB0 f end=0047FC17 +IEvtInputSetConfirmCloseCallback 0047FC20 f end=0047FC36 +ConvertPosition 0047FC90 f end=0047FDD4 +IEvtInputGetMousePosition 004800A0 f end=004800EF +IEvtInputProcess 00480410 f end=004804A8 +IEvtQueueDestroy 004804B0 f end=004804BA +IEvtQueueCheckSyncMouseState 004804C0 f end=004804E6 +IEvtQueueRegister 004804F0 f end=004805F4 type="void __cdecl func(EvtContext* context, EVENTID id, void* handler, void* param, float priority)" +IEvtQueuePost 004806A0 f end=0048071F type="int32_t __cdecl func(EvtContext* context, EVENTID id, void *data, size_t bytes)" +IEvtQueueCheckSyncKeyState 00480A50 f end=00480AC2 +IEvtQueueDispatch 00480AD0 f end=00480BCB +IEvtQueueDispatchAll 00480BD0 f end=00480D28 +IEvtQueueUnregister 00480D30 f end=00480DD1 +EventDestroy_cleanup 00480EA0 f end=00480ED9 +IEvtTimerGetNextTime 00480F70 f end=00480FCA +IEvtTimerDispatch 00481100 f end=00481289 +IEvtTimerKill 00481290 f end=0048138F +IEvtTimerSet 00481390 f end=004814E4 +GxBufLock 004829D0 f end=004829E9 +GxBufUnlock 004829F0 f end=00482A13 +GxBufStream 00482A20 f end=00482A3C +GxDraw 00482A40 f end=00482A5D +GxCapsWindowSizeInScreenCoords 00493BF0 f end=00493C09 +ScrnLayerSetRect 004A8500 f end=004A8522 +OnPaint 004A8720 f end=004A8B58 +ScrnLayerCreate 004A8BB0 f end=004A8C83 +GxuFontShutdown 004A8D10 f end=004A8DBF +TextureCalcMipCount 004B5510 f end=004B5549 type="int32_t __stdcall func(uint32_t width, uint32_t height)" +TextureGenerateMips 004B5550 f end=004B55D7 +LoadPredrawnMips 004B5A00 f end=004B5BA2 +TextureAllocMippedImg 004B7220 f end=004B72F4 type="MipBits* __stdcall func(PIXEL_FORMAT format, uint32_t width, uint32_t height)" +TextureFreeMippedImg 004B7300 f end=004B73D9 type="void func(MipBits* image)" +LoadTgaMips 004B78A0 f end=004B7AA0 type="int32_t __usercall func@(char* ext@, char* filename, int32_t a3, MipBits** mipBits, uint32_t* width, uint32_t* height, PIXEL_FORMAT* texFormat, int32_t* isOpaque@, uint32_t* alphaBits, PIXEL_FORMAT* dataFormat)" +LoadBlpMips 004B8070 f end=004B81CE type="int32_t __usercall func@(char* ext@, char* filename@, int32_t a3, MipBits** mipBits, uint32_t* width, uint32_t* height, uint32_t* isOpaque, uint32_t* alphaBits, PIXEL_FORMAT* dataFormat)" +TextureLoadImage 004B81D0 f end=004B8385 type="MipBits* func(const char* filename, uint32_t* width, uint32_t* height, PIXEL_FORMAT* dataFormat, int32_t* isOpaque, CStatus* status, uint32_t* alphaBits, int32_t a8)" +TextBlockGetFontPtr 004BD9D0 f end=004BD9EA +TextBlockCreate 004BDAA0 f end=004BDBE4 +TextBlockSetStringPos 004BDBF0 f end=004BDC4C +TextBlockGetWrappedTextHeight 004BDD80 f +TextBlockGenerateFont 004BE9C0 f end=004BEB8C +GxXformProjection 004BEC70 f end=004BEC88 +CCamera__SetupWorldProjection 004BECF0 f end=004BEE5E +CameraSetupScreenProjection 004BEE60 f end=004BF0B9 +CameraSetupWorldProjection 004BF0C0 f end=004BF0E2 +CCamera__CCamera 004BF770 f end=004BFA4E +CameraCreate 004BFCA0 f end=004BFCD4 +CRndSeed__SetSeed 004C1510 f +C44Matrix__Determinant 004C1930 f +C44Matrix__Translate 004C1B30 f +C44Matrix__Scale_C3Vector 004C1B90 f +C44Matrix__Scale_float 004C1BF0 f +C44Matrix__C44Matrix_C4Quaternion 004C1DE0 f +operator_multiply_C44Matrix_C44Matrix 004C1F00 f +operator_multiply_C3Vector_C44Matrix 004C21B0 f +C44Matrix__operator_assignment_multiply 004C2370 f +C44Matrix__Transpose 004C23D0 f +C44Matrix__Inverse 004C2F90 f +C44Matrix__AffineInverse 004C2FC0 f +C44Matrix__AffineInvertInPlace 004C30A0 f +C44Matrix__RotationAroundZ 004C3290 f +C44Matrix__RotateAroundX 004C3300 f +C44Matrix__RotateAroundY 004C3340 f +C44Matrix__RotateAroundZ 004C3380 f +C44Matrix__Rotate 004C33C0 f +C3Vector__Normalize_1 004C3420 f +C3Vector__Normalize_2 004C3600 f +C33Matrix__operator_assign_C33Matrix 004C51B0 f +CGlueMgr__SetCurrentAccount 004D7F60 f end=004D7F82 +CGlueMgr__DisplayLoginStatus 004D80C0 f end=004D8200 +CGlueMgr__SetScreen 004D82A0 f end=004D82B8 +CGlueMgr__UpdateCurrentScreen 004D82C0 f end=004D834D +CGlueMgr__HandleDisplaySizeChanged 004D8860 f end=004D8924 +CGlueMgr__Suspend 004D8930 f end=004D8A2D +CGlueMgr__LoginServerLogin 004D8A30 f end=004D8B9C +CGlueMgr__ChangeRealm 004D8BD0 f end=004D8C56 +CGlueMgr__OnKickReasonMsg 004D9500 f end=004D9582 +CGlueMgr__GetCharacterList 004D95C0 f end=004D960D +CGlueMgr__StatusDialogClick 004D98D0 f end=004D99D4 +CGlueMgr__LogConnectionStatus 004DA3D0 f end=004DA4A8 +CGlueMgr__SetLoginStateAndResult 004DA4B0 f end=004DA50D +CGlueMgr__Resume 004DA5F0 f end=004DA9C4 +CGlueMgr__NetDisconnectHandler 004DA9D0 f end=004DAB3D +CGlueMgr__Idle 004DAB40 f end=004DB9E4 +CGlueMgr__Initialize 004DB9F0 f end=004DBBBF +Script_GetLocale 004DBFD0 f end=004DBFF3 ; thanks namreeb :^) +Script_IsWindowsClient 004DCE40 f end=004DCE5E +Script_RestartGx 004DD400 f end=004DD412 +Script_RestoreVideoStereoDefaults 004DD420 f end=004DD42D +Script_GetMovieResolution 004DD610 f end=004DD671 +Script_GetExpansionLevel 004DDC20 f end=004DDC51 +CGlueMgr__SurveyDownloadCancel 004E4A40 f end=004E4A9E +TSList__LinkNode 004F71A0 f end=004F724D +Script_LoggingChat 004FBD00 f end=004FBD13 +Script_LoggingCombat 004FBD20 f end=004FBD36 +Script_GetActiveVoiceChannel 004FBD40 f end=004FBD90 +Script_GetChatWindowInfo 004FBD90 f end=004FBF5D +Script_GetChatWindowSavedPosition 004FBF60 f end=004FC018 +Script_GetChatWindowSavedDimensions 004FC020 f end=004FC0B4 +Script_GetChatWindowMessages 004FC0C0 f end=004FC169 +Script_AddChatWindowMessages 004FC170 f end=004FC249 +Script_RemoveChatWindowMessages 004FC250 f end=004FC329 +Script_SetChatWindowName 004FC330 f end=004FC3CF +Script_SetChatWindowSize 004FC3D0 f end=004FC461 +Script_SetChatWindowColor 004FC470 f end=004FC5AB +Script_SetChatWindowAlpha 004FC5B0 f end=004FC659 +Script_SetChatWindowLocked 004FC660 f end=004FC6DB +Script_SetChatWindowUninteractable 004FC6E0 f end=004FC75B +Script_SetChatWindowDocked 004FC760 f end=004FC807 +Script_SetChatWindowShown 004FC810 f end=004FC88B +Script_SetChatWindowSavedPosition 004FC890 f end=004FC99E +Script_SetChatWindowSavedDimensions 004FC9A0 f end=004FCA4B +Script_GetNumSavedInstances 004FCA50 f end=004FCA84 +Script_IsVoiceChatEnabled 004FCBF0 f end=004FCC52 +Script_IsVoiceChatAllowed 004FCC60 f end=004FCCA3 +Script_IsVoiceChatAllowedByServer 004FCCB0 f end=004FCCEA +Script_UnitIsSilenced 004FCCF0 f end=004FCDE9 +Script_GetMuteStatus 004FCDF0 f end=004FCEE7 +Script_ListChannelByName 004FE630 f end=004FE64C +Script_GetChannelList 004FE650 f end=004FE715 +Script_SetChannelPassword 004FE720 f end=004FE806 +Script_SetChannelOwner 004FE810 f end=004FE82C +Script_DisplayChannelOwner 004FE830 f end=004FE84C +Script_GetChannelName 004FE850 f end=004FE94E +Script_ChannelModerator 004FE950 f end=004FE96C +Script_ChannelUnmoderator 004FE970 f end=004FE98C +Script_ChannelMute 004FE990 f end=004FE9AC +Script_ChannelUnmute 004FE9B0 f end=004FE9CC +Script_ChannelInvite 004FE9D0 f end=004FE9EC +Script_ChannelKick 004FE9F0 f end=004FEA0C +Script_ChannelBan 004FEA10 f end=004FEA2C +Script_ChannelUnban 004FEA30 f end=004FEA4C +Script_ChannelToggleAnnouncements 004FEA50 f end=004FEA6C +Script_ChannelVoiceOn 004FEA70 f end=004FEA8C +Script_ChannelVoiceOff 004FEA90 f end=004FEAAC +Script_DisplayChannelVoiceOn 004FEAB0 f end=004FEACC +Script_DisplayChannelVoiceOff 004FEAD0 f end=004FEAEC +Script_ChangeChatColor 004FEAF0 f end=004FED0C +Script_ResetChatColors 004FED10 f end=004FEDB5 +Script_SetChatColorNameByClass 004FEDC0 f end=004FEED1 +Script_GetChatTypeIndex 004FEEE0 f end=004FEFE5 +Script_GetChatWindowChannels 004FEFF0 f end=004FF0C7 +Script_RemoveChatWindowChannel 004FF0D0 f end=004FF1F9 +Script_EnumerateServerChannels 004FF200 f end=004FF2B4 +Script_GetSavedInstanceInfo 004FF2C0 f end=004FF4EA +Script_GetChannelDisplayInfo 004FF580 f end=004FFA01 +Script_GetSelectedDisplayChannel 004FFA10 f end=004FFA61 +Script_IsDisplayChannelOwner 004FFA70 f end=004FFAE0 +Script_IsDisplayChannelModerator 004FFAE0 f end=004FFB50 +Script_IsSilenced 004FFB50 f end=004FFC23 +Script_SetChannelWatch 004FFC30 f end=004FFC4C +Script_ClearChannelWatch 004FFC50 f end=004FFCB8 +Script_DeclineInvite 004FFCC0 f end=004FFCDC +Script_SendAddonMessage 00500560 f end=00500751 +Script_GetNumLanguages 00500760 f end=0050078E +Script_GetLanguageByIndex 00500810 f end=00500906 +Script_GetDefaultLanguage 00500910 f end=00500975 +Script_DoEmote 00500980 f end=00500AD9 +Script_SetActiveVoiceChannel 00500AE0 f end=00500BD6 +Script_RequestRaidInfo 00500BE0 f end=00500C7F +Script_CanComplainChat 00500C80 f end=00500D75 +Script_ChannelSilenceVoice 00501140 f end=00501246 +Script_ChannelSilenceAll 00501250 f end=005012E7 +Script_ChannelUnSilenceVoice 005012F0 f end=005013F6 +Script_ChannelUnSilenceAll 00501400 f end=00501497 +Script_AddChatWindowChannel 00501DB0 f end=00501EF8 +Script_ResetChatWindows 00501F00 f end=00502264 +Script_GetNumDisplayChannels 00504E10 f end=00504E49 +Script_SetSelectedDisplayChannel 00504E50 f end=00504F27 +Script_GetChannelRosterInfo 00504F30 f end=0050518C +Script_GetNumChannelMembers 00505190 f end=005052D7 +Script_CollapseChannelHeader 005052E0 f end=00505354 +Script_ExpandChannelHeader 00505360 f end=005053D4 +Script_LeaveChannelByName 005096D0 f end=00509718 +Script_SendChatMessage 0050D170 f end=0050D8A0 +Script_SendSystemMessage 0050D8A0 f end=0050D900 +Script_JoinTemporaryChannel 0050DAA0 f end=0050DAB4 +Script_JoinPermanentChannel 0050DAC0 f end=0050DAD4 +Script_ListChannels 0050DAE0 f end=0050DC01 +Script_SetSavedInstanceExtend 0050DC10 f end=0050DDD5 +Script_ComplainChat 0050ED00 f end=0050EDC5 +Script_FrameXML_Debug 0050F830 f end=0050F884 +Script_GetBuildInfo 0050F890 f end=0050F8E7 +Script_SetLayoutMode 0050F8F0 f end=0050F943 +Script_GetMouseButtonClicked 0050F950 f end=0050F988 +Script_SetConsoleKey 0050F990 f end=0050FE77 +Script_IsDebugBuild 0050FE80 f end=0050FE98 +Script_RegisterCVar 0050FF30 f end=0050FF44 +Script_GetCVarInfo 0050FF50 f end=00510035 +Script_GetCVar 00510040 f end=005100B1 +Script_GetCVarBool 005100C0 f end=00510145 +Script_GetCVarDefault 00510150 f end=005101CE +Script_SetWaterDetail 005101D0 f end=005101F9 +Script_GetFarclip 00510200 f end=00510227 +Script_SetFarclip 00510230 f end=005102A8 +Script_GetTexLodBias 005102B0 f end=005102D7 +Script_SetTexLodBias 005102E0 f end=00510358 +Script_GetBaseMip 00510360 f end=00510389 +Script_SetBaseMip 00510390 f end=0051040B +Script_Stuck 00510410 f end=00510429 +Script_Logout 00510430 f end=00510443 +Script_Quit 00510450 f end=00510463 +Script_GetFramerate 00510470 f end=00510491 +Script_SetCursor 005104A0 f end=00510920 +Script_ResetCursor 00510920 f end=00510928 +Script_ReportBug 00510930 f end=00510973 +Script_ReportSuggestion 00510980 f end=005109C3 +Script_BeginTrade 005109D0 f end=005109D8 +Script_CancelTrade 005109E0 f end=005109E8 +Script_ForceLogout 005109F0 f end=005109FF +Script_ForceQuit 00510A00 f end=00510A0D +Script_GetCursorPosition 00510A10 f end=00510AB3 +Script_GetNetStats 00510AC0 f end=00510B29 +Script_RunScript 00510B30 f end=00510B72 +Script_ReplaceTradeEnchant 00510B80 f end=00510B88 +Script_IsMacClient 00510B90 f end=00510BA6 +Script_ReadFile 00510BB0 f end=00510BC8 +Script_GetCoinIcon 00510BD0 f end=00510C53 +Script_GetCoinText 00510C60 f end=00510CF6 +Script_GetCoinTextureString 00510D00 f end=00510DAD +Script_ConfirmBindOnUse 00510DB0 f end=00510DB8 +Script_RestoreVideoResolutionDefaults 00510DC0 f end=00510DCD +Script_RestoreVideoEffectsDefaults 00510DD0 f end=00510DDD +Script_SetEuropeanNumbers 00510DE0 f end=00510DFD +Script_GetRealmName 00510E00 f end=00510E1C +Script_GetItemQualityColor 00510E20 f end=00510EEA +Script_GetItemFamily 00510F20 f end=00510FB9 +Script_GetItemCooldown 00510FC0 f end=005110C7 +Script_IsCurrentItem 005110D0 f end=00511150 +Script_IsEquippableItem 00511150 f end=005111FF +Script_GetNumAddOns 00511200 f end=00511234 +Script_GetAddOnInfo 00511240 f end=00511423 +Script_GetAddOnMetadata 00511430 f end=00511505 +Script_UpdateAddOnMemoryUsage 00511510 f end=00511523 +Script_GetAddOnMemoryUsage 00511530 f end=00511601 +Script_GetScriptCPUUsage 00511610 f end=00511631 +Script_UpdateAddOnCPUUsage 00511640 f end=00511653 +Script_GetAddOnCPUUsage 00511660 f end=0051171C +Script_GetFunctionCPUUsage 00511720 f end=005117BE +Script_GetEventCPUUsage 005117C0 f end=00511829 +Script_ResetCPUUsage 00511830 f end=00511838 +Script_EnableAddOn 00511840 f end=005118F5 +Script_EnableAllAddOns 00511900 f end=0051193A +Script_DisableAddOn 00511940 f end=005119F5 +Script_DisableAllAddOns 00511A00 f end=00511A3A +Script_ResetDisabledAddOns 00511A40 f end=00511A51 +Script_IsAddOnLoadOnDemand 00511A60 f end=00511B30 +Script_IsAddOnLoaded 00511B30 f end=00511C32 +Script_GetBillingTimeRested 00511C40 f end=00511C7A +Script_GetExistingLocales 00511C80 f end=00511CBC +Script_InCombatLockdown 00511CC0 f end=00511D15 +Script_VoicePushToTalkStop 00511D20 f end=00511D28 +Script_GetSummonFriendCooldown 00511D30 f end=00511DCB +Script_GetNumDeclensionSets 00511DD0 f end=00511E7D +Script_DeclineName 00511E80 f end=00511F82 +Script_UploadSettings 00511F90 f end=00511F98 +Script_DownloadSettings 00511FA0 f end=00511FA8 +Script_IsDesaturateSupported 00511FB0 f end=00511FE0 +Script_GetThreatStatusColor 00511FE0 f end=0051208A +Script_ConsoleAddMessage 00512090 f end=005120DD +Script_IsModifierKeyDown 00514430 f end=005144B1 +Script_IsLeftShiftKeyDown 005144C0 f end=00514518 +Script_IsRightShiftKeyDown 00514520 f end=0051457A +Script_IsShiftKeyDown 00514580 f end=00514602 +Script_IsLeftControlKeyDown 00514610 f end=0051466B +Script_IsRightControlKeyDown 00514670 f end=005146CB +Script_IsControlKeyDown 005146D0 f end=00514756 +Script_IsLeftAltKeyDown 00514760 f end=005147BB +Script_IsRightAltKeyDown 005147C0 f end=0051481B +Script_IsAltKeyDown 00514820 f end=005148A6 +Script_IsMouseButtonDown 005148B0 f end=00514B94 +Script_GetMouseButtonName 00514BA0 f end=00514C0F +Script_SetCVar 00514C10 f end=00514D3A +Script_GetCVarMin 00514D40 f end=00514E23 +Script_GetCVarMax 00514E30 f end=00514F52 +Script_GetCVarAbsoluteMin 00514F60 f end=0051500A +Script_GetCVarAbsoluteMax 00515010 f end=005150D6 +Script_Screenshot 005150E0 f end=005150F8 +Script_CursorHasItem 00515100 f end=00515140 +Script_CursorHasSpell 00515140 f end=0051517A +Script_CursorHasMacro 00515180 f end=005151BA +Script_CursorHasMoney 005151C0 f end=005151FA +Script_GetCursorInfo 00515200 f end=00515528 +Script_TargetDirectionFinished 00515560 f end=0051556D +Script_GetZoneText 00515570 f end=00515595 +Script_GetRealZoneText 005155A0 f end=005155C5 +Script_GetSubZoneText 005155D0 f end=005155F5 +Script_GetMinimapZoneText 00515600 f end=00515625 +Script_ResetInstances 00515630 f end=00515698 +Script_IsInInstance 005156A0 f end=0051574C +Script_GetInstanceDifficulty 00515750 f end=00515787 +Script_GetDungeonDifficulty 00515790 f end=00515809 +Script_GetRaidDifficulty 00515810 f end=0051587B +Script_RequestTimePlayed 00515880 f end=005158F2 +Script_ResurrectGetOfferer 00515950 f end=005159B5 +Script_ResurrectHasSickness 005159C0 f end=005159FA +Script_ResurrectHasTimer 00515A00 f end=00515A43 +Script_GetCursorMoney 00515A50 f end=00515A84 +Script_GuildSetMOTD 00515A90 f end=00515B6D +Script_GuildLeave 00515B70 f end=00515BD8 +Script_GuildDisband 00515BE0 f end=00515C48 +Script_GuildInfo 00515C50 f end=00515CB8 +Script_ArenaTeamInviteByName 00515CC0 f end=00515DCB +Script_ArenaTeamLeave 00515DD0 f end=00515EAC +Script_ArenaTeamUninviteByName 00515EB0 f end=00515FE4 +Script_ArenaTeamSetLeaderByName 00515FF0 f end=00516124 +Script_ArenaTeamDisband 00516130 f end=0051620C +Script_GetReleaseTimeRemaining 00516210 f end=00516272 +Script_GetCorpseRecoveryDelay 00516280 f end=005162D5 +Script_GetInstanceBootTimeRemaining 005162E0 f end=00516335 +Script_GetInstanceLockTimeRemaining 00516340 f end=00516409 +Script_GetInstanceLockTimeRemainingEncounter 00516410 f end=005164A4 +Script_GetSummonConfirmTimeLeft 005164B0 f end=00516505 +Script_GetSummonConfirmSummoner 00516510 f end=00516574 +Script_GetSummonConfirmAreaName 00516580 f end=005165D8 +Script_GetNumTitles 005165E0 f end=0051660D +Script_RandomRoll 00516610 f end=005166E8 +Script_OpeningCinematic 005166F0 f end=00516758 +Script_InCinematic 00516760 f end=0051679A +Script_ReplaceEnchant 005167A0 f end=005167D3 +Script_IsSubZonePVPPOI 005167E0 f end=00516840 +Script_TogglePVP 00516840 f end=005168A8 +Script_SetPVP 005168B0 f end=00516966 +Script_SetPortraitToTexture 00516970 f end=00516A93 +Script_GetGMTicketCategories 00516AA0 f end=00516B1A +Script_GetBindLocation 00516B20 f end=00516B82 +Script_GetAreaSpiritHealerTime 00516B90 f end=00516BE1 +Script_GetMouseFocus 00516BF0 f end=00516C56 +Script_GetItemInfo 00516C60 f end=00516EC8 +Script_GetItemUniqueness 00516ED0 f end=00517013 +Script_GetItemIcon 00517020 f end=005170F5 +Script_GetItemSpell 00517100 f end=005171E7 +Script_IsHelpfulItem 005171F0 f end=005172E0 +Script_IsHarmfulItem 005172E0 f end=005173D4 +Script_IsConsumableItem 005173E0 f end=00517529 +Script_IsDressableItem 00517530 f end=005176E5 +Script_GetFrameCPUUsage 00517890 f end=005179A3 +Script_GetAddOnDependencies 005179B0 f end=00517A97 +Script_GetMirrorTimerProgress 00517AA0 f end=00517B4E +Script_SetTaxiBenchmarkMode 00517B50 f end=00517BDC +Script_SetUIVisibility 00517C20 f end=00517C58 +Script_GetTotemTimeLeft 00517C60 f end=00517D14 +Script_DeclineLevelGrant 00517D20 f end=00517D2D +Script_IsThreatWarningEnabled 00517D30 f end=00517D6A +Script_CanMapChangeDifficulty 00517D70 f end=00517DF1 +Script_ClearCursor 0051A3B0 f end=0051A3C2 +Script_EquipCursorItem 0051A3D0 f end=0051A528 +Script_EquipPendingItem 0051A530 f end=0051A5B8 +Script_CancelPendingEquip 0051A5C0 f end=0051A648 +Script_AttackTarget 0051A650 f end=0051A67F +Script_AutoEquipCursorItem 0051A680 f end=0051A6AB +Script_ToggleSheath 0051A6B0 f end=0051A6D9 +Script_InviteUnit 0051A6E0 f end=0051A796 +Script_UninviteUnit 0051A7A0 f end=0051A876 +Script_CanShowResetInstances 0051A880 f end=0051A8BA +Script_GetInstanceInfo 0051A8C0 f end=0051AA85 +Script_RepopMe 0051AA90 f end=0051AABB +Script_AcceptResurrect 0051AAC0 f end=0051AAEB +Script_DeclineResurrect 0051AAF0 f end=0051AB1B +Script_AcceptGroup 0051AB20 f end=0051AB98 +Script_DeclineGroup 0051ABA0 f end=0051ABC9 +Script_AcceptGuild 0051ABD0 f end=0051ABF9 +Script_DeclineGuild 0051AC00 f end=0051AC29 +Script_AcceptArenaTeam 0051AC30 f end=0051AC59 +Script_DeclineArenaTeam 0051AC60 f end=0051AC89 +Script_CancelLogout 0051AC90 f end=0051ACC9 +Script_HasSoulstone 0051ACD0 f end=0051ADC9 +Script_UseSoulstone 0051ADD0 f end=0051AE79 +Script_HasKey 0051AE80 f end=0051AEE6 +Script_GetScreenWidth 0051AEF0 f end=0051AF4F +Script_GetScreenHeight 0051AF50 f end=0051AFAF +Script_GetDamageBonusStat 0051AFB0 f end=0051B042 +Script_ConfirmSummon 0051B050 f end=0051B108 +Script_CancelSummon 0051B110 f end=0051B1CD +Script_SitStandOrDescendStart 0051B1D0 f end=0051B239 +Script_CheckInteractDistance 0051B240 f end=0051B3A6 +Script_GetCurrentTitle 0051B3B0 f end=0051B40F +Script_IsTitleKnown 0051B410 f end=0051B4DC +Script_GetTitleName 0051B4E0 f end=0051B69F +Script_AcceptXPLoss 0051B6A0 f end=0051B6DE +Script_CheckSpiritHealerDist 0051B6E0 f end=0051B73B +Script_CheckTalentMasterDist 0051B740 f end=0051B79B +Script_CheckBinderDist 0051B7A0 f end=0051B7FB +Script_RetrieveCorpse 0051B800 f end=0051B8A4 +Script_GetRestState 0051B8B0 f end=0051B955 +Script_GetXPExhaustion 0051B960 f end=0051BA50 +Script_GetZonePVPInfo 0051BA50 f end=0051BC93 +Script_GetPVPDesired 0051BCA0 f end=0051BCFC +Script_GetPVPTimer 0051BD00 f end=0051BD59 +Script_IsPVPTimerRunning 0051BD60 f end=0051BDC1 +Script_DropItemOnUnit 0051BDD0 f end=0051BF47 +Script_ConfirmTalentWipe 0051BF50 f end=0051BF8F +Script_ConfirmBinder 0051BF90 f end=0051BFCE +Script_ShowingHelm 0051BFD0 f end=0051C033 +Script_ShowingCloak 0051C040 f end=0051C0A3 +Script_ShowHelm 0051C0B0 f end=0051C0FF +Script_ShowCloak 0051C100 f end=0051C14F +Script_GetItemGem 0051C150 f end=0051C2D4 +Script_GetItemCount 0051C2E0 f end=0051C44C +Script_IsUsableItem 0051C450 f end=0051C68E +Script_IsEquippedItem 0051C690 f end=0051C732 +Script_IsEquippedItemType 0051C740 f end=0051C86C +Script_ItemHasRange 0051C870 f end=0051C9B1 +Script_IsItemInRange 0051C9C0 f end=0051CB30 +Script_PartialPlayTime 0051CB30 f end=0051CB9C +Script_NoPlayTime 0051CBA0 f end=0051CC0C +Script_GetMirrorTimerInfo 0051CC10 f end=0051CCF8 +Script_UseItemByName 0051CD00 f end=0051CDAA +Script_EquipItemByName 0051CDB0 f end=0051D0A5 +Script_StopAttack 0051D0B0 f end=0051D0FA +Script_GetTaxiBenchmarkMode 0051D100 f end=0051D161 +Script_Dismount 0051D170 f end=0051D1AD +Script_IsReferAFriendLinked 0051D1B0 f end=0051D222 +Script_CanGrantLevel 0051D230 f end=0051D2A2 +Script_CanSummonFriend 0051D2B0 f end=0051D322 +Script_GetTotemInfo 0051D330 f end=0051D503 +Script_DestroyTotem 0051D520 f end=0051D584 +Script_GameMovieFinished 0051D590 f end=0051D598 +Script_GetAllowLowLevelRaid 0051D5A0 f end=0051D5FC +Script_SetAllowLowLevelRaid 0051D600 f end=0051D706 +Script_ReloadUI 005222E0 f end=00522314 +Script_DeleteCursorItem 00522320 f end=0052247F +Script_FocusUnit 00522480 f end=005224BB +Script_FollowUnit 005224C0 f end=005225D7 +Script_ClearFocus 005225E0 f end=00522600 +Script_InitiateTrade 00522600 f end=0052270B +Script_CanInspect 00522710 f end=00522870 +Script_NotifyInspect 00522870 f end=0052294C +Script_DropCursorMoney 00522950 f end=0052297A +Script_PickupPlayerMoney 00522980 f end=00522A16 +Script_GuildInvite 00522A20 f end=00522AE4 +Script_GuildUninvite 00522AF0 f end=00522BB4 +Script_GuildPromote 00522BC0 f end=00522C84 +Script_GuildDemote 00522C90 f end=00522D54 +Script_GuildSetLeader 00522D60 f end=00522E24 +Script_SetCurrentTitle 00522E30 f end=00522F6C +Script_BindEnchant 00522F70 f end=00522F8A +Script_NotWhileDeadError 00522F90 f end=00522FA0 +Script_CancelAreaSpiritHeal 00522FA0 f end=00522FA8 +Script_PickupItem 00522FB0 f end=0052308C +Script_StartAttack 00523090 f end=00523153 +Script_GrantLevel 00523160 f end=0052320E +Script_SummonFriend 00523260 f end=00523360 +Script_AcceptLevelGrant 00523360 f end=00523368 +Script_EndRefund 00523370 f end=005233C5 +Script_EndBoundTradeable 005233D0 f end=0052349D +Script_StopCinematic 00524980 f end=005249B7 +Script_TargetUnit 00525A30 f end=00525A8B +Script_TargetNearest 00525A90 f end=00525ACB +Script_TargetNearestEnemy 00525AD0 f end=00525B0B +Script_TargetNearestEnemyPlayer 00525B10 f end=00525B4B +Script_TargetNearestFriend 00525B50 f end=00525B8B +Script_TargetNearestFriendPlayer 00525B90 f end=00525BCB +Script_TargetNearestPartyMember 00525BD0 f end=00525BF2 +Script_TargetNearestRaidMember 00525C00 f end=00525C22 +Script_TargetDirectionEnemy 00525C30 f end=00525CC4 +Script_TargetDirectionFriend 00525CD0 f end=00525D64 +Script_TargetLastTarget 00525D70 f end=00525DE6 +Script_TargetLastEnemy 00525DF0 f end=00525E4F +Script_TargetLastFriend 00525E50 f end=00525EAF +Script_AssistUnit 00525EB0 f end=00525FB1 +Script_ClearTarget 00525FC0 f end=0052604B +Script_SetDungeonDifficulty 00526050 f end=0052619C +Script_SetRaidDifficulty 005261A0 f end=005262C4 +Script_AcceptAreaSpiritHeal 005262D0 f end=005262D8 +Script_TargetTotem 005262E0 f end=00526362 +Script_InteractUnit 00527F00 f end=00527FD4 +Script_LoadAddOn 00528920 f end=00528AE1 +CGameUI__Initialize 0052A980 f end=0052AEC6 +Script_RegisterForSave 0052B470 f end=0052B4D4 +Script_RegisterForSavePerCharacter 0052B4E0 f end=0052B544 +Script_GetNumPartyMembers 0052C110 f end=0052C187 +Script_GetRealNumPartyMembers 0052C190 f end=0052C1C4 +Script_GetPartyMember 0052C1D0 f end=0052C26A +Script_GetPartyLeaderIndex 0052C270 f end=0052C29D +Script_GetLootThreshold 0052C2A0 f end=0052C2C2 +Script_GetOptOutOfLoot 0052C2D0 f end=0052C30A +Script_IsPartyLFG 0052C310 f end=0052C34A +Script_HasLFGRestrictions 0052C350 f end=0052C36C +Script_IsPartyLeader 0052CCD0 f end=0052CD26 +Script_IsRealPartyLeader 0052CD30 f end=0052CD86 +Script_GetLootMethod 0052CD90 f end=0052CEDD +Script_SetOptOutOfLoot 0052CF00 f end=0052CF60 +Script_GetPartyAssignment 0052CF60 f end=0052CFF6 +Script_CanChangePlayerDifficulty 0052D000 f end=0052D053 +Script_LeaveParty 0052D990 f end=0052D9B9 +Script_SilenceMember 0052D9C0 f end=0052DAEC +Script_UnSilenceMember 0052DAF0 f end=0052DC1C +Script_SetLootMethod 0052DC20 f end=0052DE54 +Script_SetLootThreshold 0052DE60 f end=0052DF35 +Script_SetPartyAssignment 0052E1B0 f end=0052E3F2 +Script_ClearPartyAssignment 0052E400 f end=0052E412 +Script_ChangePlayerDifficulty 0052E420 f end=0052E475 +Script_CanAlterSkin 0052E4F0 f end=0052E512 +Script_GetBarberShopStyleInfo 0052E850 f end=0052E9A6 +Script_GetHairCustomization 0052E9B0 f end=0052E9CC +Script_GetFacialHairCustomization 0052E9D0 f end=0052E9EC +Script_GetBarberShopTotalCost 0052ED60 f end=0052ED7C +Script_CancelBarberShop 0052ED80 f end=0052ED88 +Script_ApplyBarberShopStyle 0052EEF0 f end=0052EEF8 +Script_BarberShopReset 0052F900 f end=0052F90B +Script_SetNextBarberShopStyle 0052FDD0 f end=0052FE5F +Script_GetNextCompleatedTutorial 005301D0 f end=00530239 +Script_GetPrevCompleatedTutorial 00530240 f end=005302A8 +Script_CanResetTutorials 00530700 f end=0053074D +Script_FlagTutorial 00530750 f end=0053079F +Script_IsTutorialFlagged 005307A0 f end=00530818 +Script_ClearTutorials 00530820 f end=00530828 +Script_ResetTutorials 00530830 f end=00530838 +Script_TriggerTutorial 005308D0 f end=0053091F +Script_BNConnected 00530EC0 f end=00530F13 +Script_IsBNLogin 00530F20 f end=00530F58 +CGxDevice__Caps 00532AF0 f end=00532AF7 ; public: class CGxCaps const & __thiscall CGxDevice::Caps(void)const +Script_BNGetInfo 005343F0 f end=00534581 +Script_BNGetNumFriends 00534590 f end=005346EC +Script_BNGetNumFriendToons 005349F0 f end=00534B5C +Script_BNRemoveFriend 00534ED0 f end=00534F73 +Script_BNSetFriendNote 00534F80 f end=0053507B +Script_BNGetNumFriendInvites 00535080 f end=00535171 +Script_BNGetFriendInviteInfo 00535180 f end=0053537E +Script_BNSendFriendInvite 00535380 f end=0053548B +Script_BNSendFriendInviteByID 00535490 f end=005355B2 +Script_BNAcceptFriendInvite 005355C0 f end=00535656 +Script_BNDeclineFriendInvite 00535660 f end=005356F6 +Script_BNReportFriendInvite 00535700 f end=00535796 +Script_BNSetAFK 005357A0 f end=0053585E +Script_BNSetDND 00535860 f end=0053591E +Script_BNSetCustomMessage 00535920 f end=00535A9B +Script_BNGetCustomMessageTable 00535AA0 f end=00535C54 +Script_BNSetFocus 00535C60 f end=00535CD9 +Script_BNCreateConversation 00535CE0 f end=00535EA4 +Script_BNInviteToConversation 00535EB0 f end=00536026 +Script_BNLeaveConversation 00536030 f end=00536107 +Script_BNSendConversationMessage 00536110 f end=0053621F +Script_BNGetNumConversationMembers 00536220 f end=00536329 +Script_BNGetConversationInfo 00536330 f end=005363FB +Script_BNGetNumBlocked 00536400 f end=005364D7 +Script_BNIsBlocked 005364E0 f end=005365A6 +Script_BNSetBlocked 005365B0 f end=0053669C +Script_BNSetSelectedBlock 005366A0 f end=0053678D +Script_BNGetSelectedBlock 00536790 f end=0053688B +Script_BNGetNumBlockedToons 00536890 f end=00536967 +Script_BNGetBlockedToonInfo 00536970 f end=00536A90 +Script_BNIsToonBlocked 00536A90 f end=00536B56 +Script_BNSetToonBlocked 00536B60 f end=00536C4C +Script_BNSetSelectedToonBlock 00536C50 f end=00536D3D +Script_BNGetSelectedToonBlock 00536D40 f end=00536E3B +Script_BNReportPlayer 00536E40 f end=00537009 +Script_BNFeaturesEnabledAndConnected 00537010 f end=0053706C +Script_BNFeaturesEnabled 00537070 f end=005370CA +Script_BNGetNumFOF 005370D0 f end=0053723E +Script_BNGetFOFInfo 00537240 f end=0053750F +Script_BNSetSelectedFriend 00537510 f end=005375F8 +Script_BNGetSelectedFriend 00537600 f end=005376BB +Script_BNSetMatureLanguageFilter 005376C0 f end=005377B3 +Script_BNGetMatureLanguageFilter 005377C0 f end=005378A0 +Script_BNIsSelf 005378A0 f end=00537943 +Script_BNIsFriend 00537950 f end=005379F3 +Script_BNGetMaxPlayersInConversation 00537A00 f end=00537A5E +Script_BNGetFriendInfo 00539BF0 f end=00539CB8 +Script_BNGetFriendInfoByID 00539CC0 f end=00539D6B +Script_BNGetFriendToonInfo 00539D70 f end=00539F82 +Script_BNGetToonInfo 00539F90 f end=0053A025 +Script_BNSendWhisper 0053A030 f end=0053A150 +Script_BNGetConversationMemberInfo 0053A150 f end=0053A2F6 +Script_BNListConversation 0053A300 f end=0053A539 +Script_BNGetBlockedInfo 0053A540 f end=0053A65E +Script_BNRequestFOFInfo 0053A660 f end=0053A742 +Script_GetNumSpellTabs 0053B5C0 f end=0053B5F4 +Script_GetKnownSlotFromHighestRankSlot 0053B650 f end=0053B6B6 +Script_FindSpellBookSlotByID 0053B6C0 f end=0053B739 +Script_GetSpellTabInfo 0053BE70 f end=0053C0A5 +Script_GetNumShapeshiftForms 0053C0B0 f end=0053C0E4 +Script_CastShapeshiftForm 0053C0F0 f end=0053C177 +Script_GetShapeshiftFormCooldown 0053C180 f end=0053C29C +Script_GetNumCompanions 0053C2A0 f end=0053C304 +Script_PickupCompanion 0053C310 f end=0053C393 +Script_IsSpellKnown 0053C3A0 f end=0053C426 +Script_UpdateSpells 0053DD10 f end=0053DD21 +Script_HasPetSpells 0053DD30 f end=0053DE09 +Script_GetShapeshiftForm 0053DE10 f end=0053DE51 +Script_CancelShapeshiftForm 0053DE60 f end=0053DE89 +Script_GetShapeshiftFormInfo 0053DE90 f end=0053E05A +Script_CastSpellByID 0053E060 f end=0053E2B6 +Script_GetCompanionInfo 0053E2C0 f end=0053E490 +Script_GetCompanionCooldown 0053E490 f end=0053E5D4 +Script_CallCompanion 0053E5E0 f end=0053E6A3 +Script_DismissCompanion 0053E6B0 f end=0053E7D4 +Script_SummonRandomCritter 0053E7E0 f end=0053E80C +Script_CastSpellByName 00540310 f end=005405A9 +Script_GetSpellName 005407F0 f end=005408D6 +Script_GetSpellLink 005408E0 f end=00540A26 +Script_GetSpellInfo 00540A30 f end=00540D66 +Script_GetSpellTexture 00540D70 f end=00540DE3 +Script_GetSpellCount 00540DF0 f end=00540E75 +Script_GetSpellCooldown 00540E80 f end=0054100C +Script_GetSpellAutocast 00541010 f end=005410DE +Script_ToggleSpellAutocast 005410E0 f end=0054113C +Script_EnableSpellAutocast 00541140 f end=0054119C +Script_DisableSpellAutocast 005411A0 f end=005411FC +Script_PickupSpell 00541200 f end=00541242 +Script_CastSpell 00541250 f end=005412BA +Script_IsSelectedSpell 005412C0 f end=00541336 +Script_IsPassiveSpell 00541340 f end=0054141D +Script_IsAttackSpell 00541420 f end=005414FD +Script_IsCurrentSpell 00541500 f end=005415CC +Script_IsAutoRepeatSpell 005415D0 f end=00541679 +Script_IsUsableSpell 00541680 f end=005417FB +Script_IsHelpfulSpell 00541800 f end=005418ED +Script_IsHarmfulSpell 005418F0 f end=005419E1 +Script_IsConsumableSpell 005419F0 f end=00541AE4 +Script_SpellHasRange 00541AF0 f end=00541C51 +Script_IsSpellInRange 00541C60 f end=00541DEF +Script_GetNumMapLandmarks 00543020 f end=00543054 +Script_GetNumMapOverlays 00543060 f end=00543094 +Script_PositionWorldMapArrowFrame 005430A0 f end=005432B9 +Script_PositionMiniWorldMapArrowFrame 005432C0 f end=005434D9 +Script_ShowWorldMapArrowFrame 005434E0 f end=00543533 +Script_ShowMiniWorldMapArrowFrame 00543540 f end=00543593 +Script_GetWintergraspWaitTime 005435A0 f end=005435FD +Script_CanQueueForWintergrasp 00543600 f end=00543642 +Script_GetMapContinents 00544B20 f end=00544B8D +Script_GetMapZones 00544B90 f end=00544C3B +Script_DungeonUsesTerrainMap 00544C40 f end=00544C9D +Script_GetMapInfo 00544CA0 f end=00544D3A +Script_GetCurrentMapContinent 00544D40 f end=00544E03 +Script_GetCurrentMapAreaID 00544E10 f end=00544E71 +Script_GetCurrentMapZone 00544E80 f end=00544FB2 +Script_GetCurrentMapDungeonLevel 00544FC0 f end=00545050 +Script_IsZoomOutAvailable 00545050 f end=00545102 +Script_UpdateMapHighlight 00545110 f end=00545880 +Script_GetPlayerMapPosition 00545880 f end=00545941 +Script_GetCorpseMapPosition 00545950 f end=005459BD +Script_GetDeathReleasePosition 005459C0 f end=00545A29 +Script_GetMapLandmarkInfo 00545A30 f end=00545C7B +Script_GetMapOverlayInfo 00545C80 f end=00545E57 +Script_CreateWorldMapArrowFrame 00545E60 f end=00545F12 +Script_CreateMiniWorldMapArrowFrame 00545F20 f end=00545FD2 +Script_UpdateWorldMapArrowFrames 00545FE0 f end=00545FE8 +Script_InitWorldMapPing 00545FF0 f end=005460F7 +Script_GetNumDungeonMapLevels 00546290 f end=005462BA +Script_SetMapZoom 005469E0 f end=00546A83 +Script_ZoomOut 00546A90 f end=00546C4C +Script_SetMapByID 00546C50 f end=00546E76 +Script_ProcessMapClick 00546E80 f end=00546EEA +Script_ClickLandmark 00546EF0 f end=00546FDB +Script_SetDungeonMapLevel 00547B80 f end=00547C02 +Script_SetMapToCurrentZone 00547C10 f end=00547C1D +Script_GetNumWorldStateUI 00548720 f end=00548754 +Script_GetWorldStateUIInfo 00548D40 f end=00548F49 +Script_IsActiveBattlefieldArena 00549AD0 f end=00549B40 +Script_CloseBattlefield 00549B40 f end=00549B7B +Script_GetBattlefieldPortExpiration 00549B80 f end=00549C37 +Script_GetBattlefieldInstanceExpiration 00549C40 f end=00549CC5 +Script_GetBattlefieldInstanceRunTime 00549CD0 f end=00549D30 +Script_GetBattlefieldEstimatedWaitTime 00549D30 f end=00549DC6 +Script_GetBattlefieldTimeWaited 00549DD0 f end=00549E73 +Script_GetNumBattlefieldScores 00549E80 f end=00549EB4 +Script_GetBattlefieldWinner 00549EC0 f end=00549F13 +Script_GetNumBattlefieldStats 00549F20 f end=00549F54 +Script_GetBattlefieldStatData 00549F60 f end=0054A032 +Script_GetNumBattlefieldPositions 0054A040 f end=0054A0D1 +Script_GetNumBattlefieldFlagPositions 0054A0E0 f end=0054A13A +Script_GetNumBattlefieldVehicles 0054A140 f end=0054A174 +Script_GetBattlefieldTeamInfo 0054A180 f end=0054A27C +Script_GetBattlefieldArenaFaction 0054A280 f end=0054A2BA +Script_GetNumArenaOpponents 0054A2C0 f end=0054A2F4 +Script_GetHolidayBGHonorCurrencyBonuses 0054A300 f end=0054A361 +Script_GetRandomBGHonorCurrencyBonuses 0054A370 f end=0054A3D1 +Script_GetNumBattlefields 0054BAA0 f end=0054BAD4 +Script_IsBattlefieldArena 0054BAE0 f end=0054BB3D +Script_SetSelectedBattlefield 0054BB40 f end=0054BBC6 +Script_GetSelectedBattlefield 0054BBD0 f end=0054BC24 +Script_GetBattlefieldStatus 0054BC30 f end=0054BE79 +Script_GetBattlefieldScore 0054BE90 f end=0054C120 +Script_SetBattlefieldScoreFaction 0054C120 f end=0054C167 +Script_GetBattlefieldStatInfo 0054C170 f end=0054C248 +Script_LeaveBattlefield 0054C250 f end=0054C2E0 +Script_GetBattlefieldPosition 0054C2E0 f end=0054C4D0 +Script_GetBattlefieldVehicleInfo 0054C4D0 f end=0054C6D4 +Script_CanJoinBattlefieldAsGroup 0054C6E0 f end=0054C73D +Script_GetBattlefieldMapIconScale 0054C740 f end=0054C7A0 +Script_HearthAndResurrectFromArea 0054C7A0 f end=0054C808 +Script_CanHearthAndResurrectFromArea 0054C810 f end=0054C870 +Script_GetNumBattlegroundTypes 0054C870 f end=0054C892 +Script_GetWorldPVPQueueStatus 0054C8A0 f end=0054C9D3 +Script_SortBGList 0054C9F0 f end=0054CA22 +Script_GetBattlefieldInfo 0054D770 f end=0054D8E2 +Script_GetBattlefieldInstanceInfo 0054D8F0 f end=0054D990 +Script_JoinBattlefield 0054D990 f end=0054DA10 +Script_AcceptBattlefieldPort 0054DA10 f end=0054DC91 +Script_RequestBattlefieldScoreData 0054DCA0 f end=0054DCA8 +Script_RequestBattlefieldPositions 0054DCB0 f end=0054DCB8 +Script_GetBattlefieldFlagPosition 0054DCC0 f end=0054DDF1 +Script_SortBattlefieldScoreData 0054DE00 f end=0054E007 +Script_GetBattlegroundInfo 0054E010 f end=0054E15E +Script_BattlefieldMgrEntryInviteResponse 0054E160 f end=0054E191 +Script_BattlefieldMgrQueueRequest 0054E1A0 f end=0054E1C0 +Script_BattlefieldMgrQueueInviteResponse 0054E1C0 f end=0054E1F1 +Script_BattlefieldMgrExitRequest 0054E200 f end=0054E220 +Script_RequestBattlegroundInstanceInfo 0054E6D0 f end=0054E717 +Script_GetGamma 0054EA60 f end=0054EA89 +Script_SetGamma 0054EA90 f end=0054EB0B +Script_GetTerrainMip 0054EB10 f end=0054EB3B +Script_SetTerrainMip 0054EB40 f end=0054EBBA +Script_IsPlayerResolutionAvailable 0054EBC0 f end=0054EBFB +Script_SetupFullscreenScale 0054ED80 f end=0054EE58 +Script_GetVideoCaps 0054EE60 f end=0054EF87 +Script_IsStereoVideoAvailable 0054EF90 f end=0054EFD5 +Script_GetScreenResolutions 0054F430 f end=0054F49D +Script_GetCurrentResolution 0054F4A0 f end=0054F561 +Script_SetScreenResolution 0054F570 f end=0054F684 +Script_GetRefreshRates 0054F690 f end=0054F81D +Script_GetMultisampleFormats 0054F820 f end=0054F8AA +Script_GetCurrentMultisampleFormat 0054F8B0 f end=0054F97B +Script_SetMultisampleFormat 0054F980 f end=0054FB0B +Script_KBSetup_BeginLoading 00551720 f end=00551759 +Script_KBSetup_IsLoaded 00551760 f end=00551783 +Script_KBSetup_GetLanguageCount 00551790 f end=005517D0 +Script_KBSetup_GetLanguageData 005517D0 f end=005518B3 +Script_KBSetup_GetCategoryCount 005518C0 f end=00551900 +Script_KBSetup_GetCategoryData 00551900 f end=005519E3 +Script_KBSetup_GetArticleHeaderCount 005519F0 f end=00551A30 +Script_KBSetup_GetArticleHeaderData 00551A30 f end=00551B3D +Script_KBSetup_GetTotalArticleCount 00551B40 f end=00551B8F +Script_KBQuery_IsLoaded 00551B90 f end=00551BB3 +Script_KBQuery_GetArticleHeaderCount 00551BC0 f end=00551C00 +Script_KBQuery_GetArticleHeaderData 00551C00 f end=00551D0D +Script_KBQuery_GetTotalArticleCount 00551D10 f end=00551D5F +Script_KBArticle_BeginLoading 00551D60 f end=00551D99 +Script_KBArticle_IsLoaded 00551DA0 f end=00551DC3 +Script_KBArticle_GetData 00551DD0 f end=00551FA1 +Script_KBSystem_GetMOTD 00551FB0 f end=00551FCC +Script_KBSystem_GetServerStatus 00551FD0 f end=00551FEC +Script_KBSystem_GetServerNotice 00551FF0 f end=0055200C +Script_KBSetup_GetSubCategoryCount 005523A0 f end=00552439 +Script_KBSetup_GetSubCategoryData 00552440 f end=0055257D +Script_KBQuery_BeginLoading 00552580 f end=005526C8 +Script_SearchLFGGetJoinedID 005529A0 f end=005529D7 +Script_GetLFGTypes 00552DD0 f end=00552E10 +Script_GetLFGRoles 00552E10 f end=00552E84 +Script_GetLFGInfoLocal 00552E90 f end=00552F2F +Script_GetLFGInfoServer 00552F30 f end=00552FFE +Script_GetLFGProposalMember 00553110 f end=00553119 +Script_GetRandomDungeonBestChoice 00553120 f end=00553163 +Script_CanPartyLFGBackfill 00553170 f end=005531C2 +Script_SearchLFGGetNumResults 00553BA0 f end=00553C25 +Script_SearchLFGGetEncounterResults 00553C30 f end=00553D60 +Script_SetLFGRoles 00553D60 f end=00553E19 +Script_CompleteLFGRoleCheck 00553E20 f end=00553F46 +Script_SetLFGComment 00553F50 f end=00553F86 +Script_GetLFGQueueStats 00553F90 f end=00554157 +Script_LeaveLFG 00554160 f end=00554168 +Script_GetLFGProposal 00554370 f end=00554379 +Script_GetLFGProposalEncounter 00554440 f end=00554449 +Script_AcceptProposal 005545E0 f end=005545FB +Script_RejectProposal 00554600 f end=0055460D +Script_GetLFGRoleUpdate 00554680 f end=00554689 +Script_GetLFGRoleUpdateSlot 00554740 f end=00554749 +Script_GetLFGRoleUpdateMember 005548E0 f end=005548E9 +Script_GetAvailableRoles 005548F0 f end=00554958 +Script_SetLFGBootVote 00554A50 f end=00554A59 +Script_GetLFGBootProposal 00554BD0 f end=00554BD9 +Script_GetLFDChoiceOrder 00554BE0 f end=00554D1B +Script_GetLFRChoiceOrder 00554D20 f end=00554E5B +Script_GetLFDChoiceInfo 005551E0 f end=005553A5 +Script_GetNumRandomDungeons 005553B0 f end=005553E4 +Script_GetLFGDungeonInfo 00555590 f end=005555CC +Script_GetLFGRandomDungeonInfo 005555D0 f end=00555653 +Script_IsInLFGDungeon 00555660 f end=005556CB +Script_GetPartyLFGBackfillInfo 005556D0 f end=00555752 +Script_UnitHasLFGRandomCooldown 00555760 f end=00555839 +Script_UnitHasLFGDeserter 00555840 f end=00555919 +Script_SearchLFGGetResults 00555FD0 f end=0055627C +Script_SearchLFGGetPartyResults 00556280 f end=005564CA +Script_GetLFDChoiceCollapseState 005564D0 f end=005567D1 +Script_GetLFDChoiceEnabledState 005567E0 f end=005569CE +Script_RequestLFDPlayerLockInfo 005569D0 f end=00556A49 +Script_RequestLFDPartyLockInfo 00556A50 f end=00556AC9 +Script_SetLFGHeaderCollapsed 00556AD0 f end=00556B53 +Script_SetLFGDungeonEnabled 00556B60 f end=00556BBF +Script_LFGTeleport 00556BC0 f end=00556D70 +Script_GetLFGQueuedList 00557520 f end=00557657 +Script_JoinLFG 00557660 f end=005576A3 +Script_GetLFDChoiceLockedState 005576B0 f end=00557881 +Script_GetLFDLockPlayerCount 00557890 f end=00557925 +Script_GetLFDLockInfo 00557930 f end=00557A99 +Script_GetLFGDungeonRewards 00557AA0 f end=00557BDB +Script_GetLFGDungeonRewardInfo 00557BE0 f end=00557D56 +Script_GetLFGDungeonRewardLink 00557D60 f end=00557E31 +Script_GetLFGCompletionReward 00557E40 f end=00557F61 +Script_GetLFGCompletionRewardItem 00557F70 f end=0055805C +Script_GetLFGRandomCooldownExpiration 00558060 f end=005580DB +Script_GetLFGDeserterExpiration 005580E0 f end=0055815B +Script_IsListedInLFR 005586D0 f end=0055870F +Script_SearchLFGJoin 00559400 f end=005594D1 +Script_SearchLFGLeave 005594E0 f end=005594F6 +Script_ClearLFGDungeon 00559500 f end=005595C9 +Script_ClearAllLFGDungeons 005595D0 f end=005595D8 +Script_SetLFGDungeon 00559F50 f end=00559FE4 +Script_GetLastQueueStatusIndex 00559FF0 f end=0055A03B +Script_IsLFGDungeonJoinable 0055A040 f end=0055A0BF +Script_PartyLFGStartBackfill 0055A0C0 f end=0055A130 +Script_RefreshLFGList 0055D280 f end=0055D2A1 +Script_SearchLFGSort 0055D2B0 f end=0055D43D +Script_GetNumBindings 0055DC00 f end=0055DC23 +Script_GetCurrentBindingSet 0055DC30 f end=0055DC57 +Script_GetNumModifiedClickActions 0055DC60 f end=0055DC84 +Script_GetBinding 0055E8D0 f end=0055E9B0 +Script_GetBindingKey 0055E9B0 f end=0055EA67 +Script_GetModifiedClickAction 0055EA70 f end=0055EACE +Script_RunBinding 0055FAD0 f end=0055FB81 +Script_SetModifiedClick 0055FB90 f end=0055FC1F +Script_GetModifiedClick 0055FC20 f end=0055FCB9 +Script_IsModifiedClick 0055FCC0 f end=0055FD13 +Script_ClearOverrideBindings 00560560 f end=005605EC +Script_GetBindingAction 00562550 f end=005625F0 +Script_GetBindingByKey 005625F0 f end=0056269B +Script_SetBinding 00563520 f end=005635DF +Script_SetBindingSpell 005635E0 f end=00563700 +Script_SetBindingItem 00563700 f end=00563820 +Script_SetBindingMacro 00563820 f end=00563940 +Script_SetBindingClick 00563940 f end=00563A87 +Script_SetOverrideBinding 00563A90 f end=00563B7C +Script_SetOverrideBindingSpell 00563B80 f end=00563CAC +Script_SetOverrideBindingItem 00563CB0 f end=00563DDC +Script_SetOverrideBindingMacro 00563DE0 f end=00563F0C +Script_SetOverrideBindingClick 00563F10 f end=00564067 +Script_LoadBindings 00564070 f end=005640B2 +Script_SaveBindings 005640C0 f end=00564123 +Script_GetClickFrame 00564130 f end=005641BC +Script_SecureCmdOptionParse 00564AE0 f end=00564B8A +Script_StopMacro 00564B90 f end=00564BAD +Script_GetNumMacros 00564BB0 f end=00564C08 +Script_GetRunningMacro 00564C10 f end=00564C61 +Script_GetRunningMacroButton 00564C70 f end=00564C8C +Script_GetMacroIconInfo 00564E90 f end=00564F54 +Script_GetMacroItemIconInfo 00564F60 f end=00565024 +Script_RunMacroText 00566400 f end=00566487 +Script_GetNumMacroIcons 00566490 f end=005664D2 +Script_GetNumMacroItemIcons 005664E0 f end=00566522 +Script_GetMacroIndexByName 005666A0 f end=005666FE +Script_RunMacro 00566E80 f end=00566EAD +Script_GetMacroInfo 00566EB0 f end=00566F32 +Script_GetMacroBody 00566F40 f end=00566F6C +Script_DeleteMacro 00566F70 f end=00566F9F +Script_EditMacro 00566FA0 f end=005670CE +Script_SetMacroItem 005670D0 f end=005671F5 +Script_GetMacroItem 00567200 f end=00567313 +Script_SetMacroSpell 00567320 f end=0056744C +Script_GetMacroSpell 00567450 f end=005674F0 +Script_PickupMacro 005674F0 f end=0056751F +Script_CreateMacro 00568160 f end=005682B6 +Script_CommentatorGetNumMaps 00568730 f end=00568764 +Script_CommentatorZoomIn 00568770 f end=00568808 +Script_CommentatorZoomOut 00568810 f end=005688B2 +Script_CommentatorSetMode 005690A0 f end=0056917B +Script_CommentatorToggleMode 00569180 f end=00569229 +Script_CommentatorGetMode 00569230 f end=005692A0 +Script_CommentatorUpdatePlayerInfo 005692A0 f end=0056933F +Script_CommentatorUpdateMapInfo 00569340 f end=005693DF +Script_CommentatorGetMapInfo 005693E0 f end=0056951E +Script_CommentatorGetInstanceInfo 00569520 f end=005696DD +Script_CommentatorEnterInstance 005696E0 f end=005697AD +Script_CommentatorExitInstance 005697B0 f end=0056981C +Script_CommentatorGetNumPlayers 00569820 f end=00569901 +Script_CommentatorGetPlayerInfo 00569910 f end=00569B4C +Script_CommentatorFollowPlayer 00569B50 f end=00569CCE +Script_CommentatorLookatPlayer 00569CD0 f end=00569E46 +Script_CommentatorSetMapAndInstanceIndex 00569E50 f end=00569F99 +Script_CommentatorSetPlayerIndex 00569FA0 f end=0056A0EC +Script_CommentatorSetCamera 0056A0F0 f end=0056A29E +Script_CommentatorGetCamera 0056A2A0 f end=0056A376 +Script_CommentatorGetCurrentMapID 0056A380 f end=0056A404 +Script_CommentatorStartInstance 0056A410 f end=0056A639 +Script_CommentatorAddPlayer 0056A640 f end=0056A85E +Script_CommentatorRemovePlayer 0056A860 f end=0056AA04 +Script_CommentatorSetBattlemaster 0056AA10 f end=0056AAEC +Script_CommentatorSetMoveSpeed 0056AAF0 f end=0056AB61 +Script_CommentatorSetCameraCollision 0056AB70 f end=0056AC05 +Script_CommentatorSetTargetHeightOffset 0056AC10 f end=0056AC88 +Script_CommentatorSetSkirmishMatchmakingMode 0056AC90 f end=0056AD96 +Script_CommentatorRequestSkirmishQueueData 0056ADA0 f end=0056AE42 +Script_CommentatorRequestSkirmishMode 0056AE50 f end=0056AEF2 +Script_CommentatorGetSkirmishMode 0056AF00 f end=0056AF51 +Script_CommentatorGetSkirmishQueueCount 0056AF60 f end=0056AFB1 +Script_CommentatorGetSkirmishQueuePlayerInfo 0056AFC0 f end=0056B0AB +Script_CommentatorStartSkirmishMatch 0056B0B0 f end=0056B1DC +Script_SetSendMailShowing 0056D570 f end=0056D5B4 +Script_ClearSendMail 0056D5C0 f end=0056D5CD +Script_GetSendMailMoney 0056D5D0 f end=0056D604 +Script_SetSendMailCOD 0056D610 f end=0056D689 +Script_GetSendMailCOD 0056D690 f end=0056D6C4 +Script_GetInboxNumItems 0056D6D0 f end=0056D728 +Script_GetStationeryInfo 0056DF80 f end=0056E0DC +Script_SelectStationery 0056E0E0 f end=0056E167 +Script_GetSelectedStationeryTexture 0056E170 f end=0056E1DA +Script_GetNumPackages 0056E1E0 f end=0056E202 +Script_GetPackageInfo 0056E210 f end=0056E306 +Script_SelectPackage 0056E310 f end=0056E39D +Script_GetSendMailItemLink 0056E3A0 f end=0056E440 +Script_CheckInbox 0056E440 f end=0056E518 +Script_GetInboxHeaderInfo 0056E520 f end=0056E9AF +Script_GetInboxInvoiceInfo 0056E9B0 f end=0056EC9D +Script_GetInboxItemLink 0056ECA0 f end=0056EDE2 +Script_TakeInboxMoney 0056EDF0 f end=0056EEE2 +Script_TakeInboxTextItem 0056EEF0 f end=0056EFFA +Script_ReturnInboxItem 0056F000 f end=0056F13F +Script_DeleteInboxItem 0056F140 f end=0056F274 +Script_InboxItemCanDelete 0056F280 f end=0056F342 +Script_HasNewMail 0056F350 f end=0056F396 +Script_GetLatestThreeSenders 0056F3A0 f end=0056F404 +Script_RespondMailLockSendItem 0056F410 f end=0056F4D8 +Script_ClickSendMailItemButton 00570550 f end=005706B2 +Script_SetSendMailMoney 005706C0 f end=0057074C +Script_GetSendMailItem 00570750 f end=00570901 +Script_SendMail 00570910 f end=00570BC7 +Script_GetInboxText 00570BD0 f end=00570F0A +Script_GetInboxItem 00570F10 f end=005711BC +Script_TakeInboxItem 005711C0 f end=00571347 +Script_ComplainInboxItem 00571350 f end=005713B4 +Script_CanComplainInboxItem 005713C0 f end=0057144F +Script_AutoLootMailItem 00571450 f end=005714CA +Script_CloseMail 00571A40 f end=00571AA1 +Script_GetNumStationeries 00571AB0 f end=00571AF2 +Script_GetSendMailPrice 00571B00 f end=00571BDF +Script_GetRaidTargetIndex 00572AB0 f end=00572B3A +Script_GetNumRaidMembers 00572B40 f end=00572B74 +Script_GetRealNumRaidMembers 00572B80 f end=00572BB4 +Script_SetRaidRosterSelection 00572BC0 f end=00572C4F +Script_GetRaidRosterSelection 00572C50 f end=00572C7D +Script_GetReadyCheckTimeLeft 00572C80 f end=00572D07 +Script_GetRaidRosterInfo 00573690 f end=00573A5F +Script_IsRaidLeader 00573A60 f end=00573AA6 +Script_IsRealRaidLeader 00573AB0 f end=00573AF6 +Script_IsRaidOfficer 00573B00 f end=00573B4A +Script_SetRaidSubgroup 00573B50 f end=00573C8F +Script_SwapRaidSubgroup 00573C90 f end=00573E09 +Script_PromoteToLeader 00573E10 f end=00573EE3 +Script_PromoteToAssistant 00573EF0 f end=00573FD0 +Script_DemoteAssistant 00573FD0 f end=005740AF +Script_DoReadyCheck 005740B0 f end=005740B8 +Script_ConfirmReadyCheck 005740C0 f end=0057417E +Script_GetReadyCheckStatus 00574180 f end=00574304 +Script_ConvertToRaid 00574A00 f end=00574AA8 +Script_SetRaidTarget 00574AB0 f end=00574CF3 +Script_PlayDance 005761F0 f end=00576238 +Script_GetAutoCompleteResults 0057B3A0 f end=0057B4F4 +Script_GetAutoCompletePresenceID 0057B500 f end=0057B573 +Script_BankButtonIDToInvSlotID 0057B940 f end=0057B9B9 +Script_CloseBankFrame 0057B9C0 f end=0057B9E0 +Script_GetNumBankSlots 0057BAB0 f end=0057BB30 +Script_GetBankSlotCost 0057BB30 f end=0057BBB3 +Script_PurchaseSlot 0057BBC0 f end=0057BC8A +GxXformPop 0057C420 f end=0057C44A +Script_GetNumTrackingTypes 0057F170 f end=0057F1AE +Script_GetTrackingInfo 0057F1B0 f end=0057F37A +Script_SetTracking 0057F380 f end=0057F4F0 +Script_GetTrackingTexture 0057F4F0 f end=0057F5CE +Script_GetMerchantNumItems 005841D0 f end=005841F2 +Script_GetMerchantItemLink 00584200 f end=005842C4 +Script_GetMerchantItemMaxStack 005842D0 f end=00584389 +Script_HideRepairCursor 00584390 f end=005843AE +Script_InRepairMode 005843B0 f end=005843EB +Script_GetNumBuybackItems 005843F0 f end=0058444F +Script_CloseMerchant 005846D0 f end=005846D8 +Script_GetMerchantItemCostInfo 005846E0 f end=00584820 +Script_GetMerchantItemCostItem 00584820 f end=005849E5 +Script_CanMerchantRepair 005849F0 f end=00584A59 +Script_ShowRepairCursor 00584A60 f end=00584ABE +Script_GetMerchantItemInfo 00584E10 f end=00585070 +Script_GetBuybackItemInfo 00585070 f end=005852B4 +Script_GetBuybackItemLink 005852C0 f end=00585394 +Script_PickupMerchantItem 005853A0 f end=005854B2 +Script_BuyMerchantItem 005854C0 f end=005855B7 +Script_BuybackItem 005855C0 f end=005856C1 +Script_ShowMerchantSellCursor 005856D0 f end=00585886 +Script_ShowBuybackSellCursor 00585890 f end=00585990 +Script_GetRepairAllCost 00585990 f end=00585C8E +Script_RepairAllItems 00585C90 f end=00585F57 +Script_GetTradeTargetItemLink 005865F0 f end=005866DB +Script_AcceptTrade 005866E0 f end=00586722 +Script_CancelTradeAccept 00586730 f end=00586773 +Script_GetPlayerTradeMoney 00586780 f end=005867C5 +Script_GetTargetTradeMoney 005867D0 f end=00586804 +Script_PickupTradeMoney 00586810 f end=0058686C +Script_SetTradeMoney 00586870 f end=005868D1 +Script_ClickTargetTradeButton 00586C80 f end=00586CF2 +Script_GetTradePlayerItemLink 00586D00 f end=00586D87 +Script_AddTradeMoney 00586D90 f end=00586DB5 +Script_CloseTrade 00587940 f end=005879D0 +Script_ClickTradeButton 005879D0 f end=00587C60 +Script_GetTradeTargetItemInfo 00587C60 f end=00587EAD +Script_GetTradePlayerItemInfo 00587EB0 f end=005880BB +Script_GetNumLootItems 00588540 f end=0058856A +Script_GetLootSlotInfo 00588570 f end=005886C6 +Script_GetLootSlotLink 005886D0 f end=0058874D +Script_LootSlotIsItem 00588750 f end=00588804 +Script_LootSlotIsCoin 00588810 f end=005888B0 +Script_CloseLoot 005888B0 f end=005888D6 +Script_IsFishingLoot 005888E0 f end=0058891A +Script_GetMasterLootCandidate 00588920 f end=005889CD +Script_GetLootRollItemInfo 005889D0 f end=00588C00 +Script_GetLootRollItemLink 00588C00 f end=00588CBF +Script_GetLootRollTimeLeft 00588CC0 f end=00588D59 +Script_RollOnLoot 00588D60 f end=00588DC7 +Script_ConfirmLootRoll 00588DD0 f end=00588E52 +Script_SetLootPortrait 00588F00 f end=00588F89 +Script_LootSlot 00589520 f end=00589584 +Script_ConfirmLootSlot 00589590 f end=005895F4 +Script_GiveMasterLoot 00589600 f end=005896AC +Script_ItemTextGetPage 00589B50 f end=00589B87 +Script_ItemTextGetText 00589B90 f end=00589BAB +Script_ItemTextGetItem 00589C40 f end=00589C8E +Script_ItemTextGetMaterial 00589C90 f end=00589D67 +Script_ItemTextHasNextPage 00589D70 f end=00589DBC +Script_ItemTextPrevPage 0058A110 f end=0058A148 +Script_ItemTextNextPage 0058A150 f end=0058A192 +Script_CloseItemText 0058A400 f end=0058A421 +Script_ItemTextGetCreator 0058A480 f end=0058A515 +Script_GetGossipText 0058A900 f end=0058A91B +Script_GetNumGossipOptions 0058A920 f end=0058A954 +Script_GetNumGossipAvailableQuests 0058A960 f end=0058A994 +Script_GetNumGossipActiveQuests 0058A9A0 f end=0058A9D4 +Script_GetGossipOptions 0058A9E0 f end=0058AA35 +Script_CloseGossip 0058AA40 f end=0058AA60 +Script_ForceGossip 0058AB50 f end=0058AB9C +Script_GetGossipAvailableQuests 0058B3A0 f end=0058B487 +Script_GetGossipActiveQuests 0058B490 f end=0058B587 +Script_SelectGossipOption 0058B590 f end=0058B5F7 +Script_SelectGossipAvailableQuest 0058B600 f end=0058B664 +Script_SelectGossipActiveQuest 0058B670 f end=0058B6D4 +Script_GetTitleText 0058BD10 f end=0058BD2B +Script_GetGreetingText 0058BD30 f end=0058BD4B +Script_GetQuestText 0058BD50 f end=0058BD6B +Script_GetObjectiveText 0058BD70 f end=0058BD8B +Script_GetProgressText 0058BD90 f end=0058BDAB +Script_GetRewardText 0058BDB0 f end=0058BDCB +Script_GetNumAvailableQuests 0058BDD0 f end=0058BDF2 +Script_GetNumActiveQuests 0058BE00 f end=0058BE22 +Script_GetAvailableTitle 0058BE30 f end=0058BEC4 +Script_GetActiveTitle 0058BED0 f end=0058BF63 +Script_GetAvailableLevel 0058BF70 f end=0058C003 +Script_GetActiveLevel 0058C010 f end=0058C0A3 +Script_GetRewardMoney 0058C0B0 f end=0058C0D2 +Script_GetRewardXP 0058C0E0 f end=0058C102 +Script_GetRewardHonor 0058C110 f end=0058C135 +Script_GetRewardTalents 0058C140 f end=0058C15C +Script_GetQuestMoneyToGet 0058C160 f end=0058C182 +Script_GetNumQuestRewards 0058C190 f end=0058C1E1 +Script_GetNumQuestChoices 0058C1F0 f end=0058C241 +Script_GetNumQuestItems 0058C250 f end=0058C2A1 +Script_GetQuestItemLink 0058C2B0 f end=0058C39C +Script_QuestChooseRewardError 0058C3A0 f end=0058C3B0 +Script_GetSuggestedGroupNum 0058C3B0 f end=0058C3D2 +Script_QuestFlagsPVP 0058C3E0 f end=0058C426 +Script_QuestGetAutoAccept 0058C430 f end=0058C46D +Script_GetMaxDailyQuests 0058C470 f end=0058C492 +Script_GetRewardArenaPoints 0058C4A0 f end=0058C4C2 +Script_QuestIsDaily 0058C4D0 f end=0058C50D +Script_QuestIsWeekly 0058C510 f end=0058C54D +Script_ConfirmAcceptQuest 0058C910 f end=0058C986 +Script_GetQuestBackgroundMaterial 0058C990 f end=0058CA67 +Script_CloseQuest 0058D350 f end=0058D365 +Script_IsAvailableQuestTrivial 0058D370 f end=0058D41A +Script_IsActiveQuestTrivial 0058D420 f end=0058D4CA +Script_SelectAvailableQuest 0058D4D0 f end=0058D534 +Script_SelectActiveQuest 0058D540 f end=0058D5A4 +Script_AcceptQuest 0058D5B0 f end=0058D5B8 +Script_DeclineQuest 0058D5C0 f end=0058D5C8 +Script_IsQuestCompletable 0058D5D0 f end=0058D60A +Script_CompleteQuest 0058D610 f end=0058D618 +Script_GetQuestReward 0058D620 f end=0058D670 +Script_GetRewardSpell 0058D670 f end=0058D80A +Script_GetRewardTitle 0058D810 f end=0058D971 +Script_GetQuestItemInfo 0058D980 f end=0058DAAC +Script_GetQuestSpellLink 0058DAB0 f end=0058DB2A +Script_GetDailyQuestsCompleted 0058DB30 f end=0058DBBB +Script_GetAvailableQuestInfo 0058DBC0 f end=0058DD2A +Script_NumTaxiNodes 00590710 f end=00590744 +Script_SetTaxiMap 00590D10 f end=00590D52 +Script_TaxiNodeName 00590D60 f end=00590DFE +Script_TaxiNodePosition 00590E00 f end=00590EB4 +Script_CloseTaxiMap 00590EC0 f end=00590EC8 +Script_TaxiNodeGetType 00590ED0 f end=00590F3E +Script_TaxiGetSrcX 00590F40 f end=00590FDF +Script_TaxiGetSrcY 00590FE0 f end=00591080 +Script_TaxiGetDestX 00591080 f end=00591120 +Script_TaxiGetDestY 00591120 f end=005911C0 +Script_GetNumRoutes 005911C0 f end=00591249 +Script_TaxiNodeCost 005915E0 f end=00591677 +Script_TakeTaxiNode 00591680 f end=005916E4 +Script_TaxiNodeSetCurrent 00591E60 f end=00591EC4 +Script_GetNumTrainerServices 00593D10 f end=00593D44 +Script_IsTradeskillTrainer 00593D50 f end=00593D8A +Script_GetTrainerGreetingText 00593D90 f end=00593DAB +Script_GetTrainerServiceTypeFilter 00593E10 f end=00593EA4 +Script_GetTrainerSkillLineFilter 00593EB0 f end=00593F67 +Script_CloseTrainer 00594370 f end=00594391 +Script_SelectTrainerService 005943A0 f end=00594424 +Script_GetTrainerSelectionIndex 00594430 f end=0059447B +Script_GetTrainerServiceCost 00594480 f end=0059452C +Script_GetTrainerServiceLevelReq 00594530 f end=005945AE +Script_GetTrainerServiceNumAbilityReq 005945B0 f end=0059464F +Script_GetTrainerSkillLines 00594650 f end=005946BB +Script_OpenTrainer 00595040 f end=00595084 +Script_GetTrainerServiceInfo 00595090 f end=00595148 +Script_GetTrainerServiceIcon 00595150 f end=005952E7 +Script_GetTrainerServiceSkillLine 005952F0 f end=00595470 +Script_GetTrainerServiceSkillReq 00595470 f end=005955D9 +Script_GetTrainerServiceAbilityReq 005955E0 f end=005957CC +Script_GetTrainerServiceStepReq 005957D0 f end=005959C5 +Script_GetTrainerServiceDescription 005959D0 f end=00595B59 +Script_IsTrainerServiceSkillStep 00595B60 f end=00595C3B +Script_GetTrainerServiceStepIncrease 00595C40 f end=00595E60 +Script_BuyTrainerService 00595E60 f end=00595EB6 +Script_SetTrainerServiceTypeFilter 00595EC0 f end=0059600E +Script_SetTrainerSkillLineFilter 00596010 f end=00596143 +Script_CollapseTrainerSkillLine 00596150 f end=005961E4 +Script_ExpandTrainerSkillLine 005961F0 f end=00596282 +Script_GetTrainerServiceItemLink 00596290 f end=005963BF +Script_GetTabardCreationCost 00598DD0 f end=00598E04 +Script_CloseTabardCreation 00598F30 f end=00598F38 +Script_CloseGuildRegistrar 00599F00 f end=00599F3F +Script_GetGuildCharterCost 00599F40 f end=00599F74 +Script_BuyGuildCharter 0059A130 f end=0059A1B2 +Script_TurnInGuildCharter 0059A1C0 f end=0059A1E9 +Script_GetTabardInfo 0059A1F0 f end=0059A275 +Script_IsAuctionSortReversed 0059AB90 f end=0059AD3B +Script_GetAuctionSort 0059AD40 f end=0059AE6B +Script_SortAuctionClearSort 0059AE70 f end=0059AF02 +Script_SortAuctionSetSort 0059AF10 f end=0059B037 +Script_CancelSell 0059B040 f end=0059B0AC +Script_SetAuctionsTabShowing 0059B0B0 f end=0059B0F4 +Script_GetAuctionHouseDepositRate 0059BC90 f end=0059BCF0 +Script_QueryAuctionItems 0059BCF0 f end=0059C196 +Script_GetNumAuctionItems 0059C1A0 f end=0059C2CF +Script_GetAuctionItemLink 0059C2D0 f end=0059C414 +Script_GetAuctionItemClasses 0059C420 f end=0059C479 +Script_GetAuctionItemSubClasses 0059C480 f end=0059C588 +Script_GetAuctionInvTypes 0059C590 f end=0059C737 +Script_CanSendAuctionQuery 0059C740 f end=0059C828 +Script_SetSelectedAuctionItem 0059C830 f end=0059C91A +Script_GetSelectedAuctionItem 0059C920 f end=0059C9E4 +Script_CanCancelAuction 0059C9F0 f end=0059CAA1 +Script_SortAuctionApplySort 0059CAB0 f end=0059CB68 +Script_CalculateAuctionDeposit 0059D270 f end=0059D405 +Script_ClickAuctionSellItemButton 0059D410 f end=0059D4F0 +Script_GetOwnerAuctionItems 0059D4F0 f end=0059D533 +Script_GetBidderAuctionItems 0059D540 f end=0059D5D1 +Script_GetAuctionItemInfo 0059D5E0 f end=0059DA35 +Script_PlaceAuctionBid 0059DA40 f end=0059DCFE +Script_SortAuctionItems 0059DD00 f end=0059DDEA +Script_CancelAuction 0059DDF0 f end=0059DF54 +Script_CloseAuctionHouse 0059F750 f end=0059F758 +Script_GetAuctionSellItemInfo 0059F760 f end=0059F98D +Script_StartAuction 0059F990 f end=0059FD5B +Script_GetAuctionItemTimeLeft 0059FD60 f end=0059FF23 +Script_GetNumStablePets 005A0F60 f end=005A0F94 +Script_GetNumStableSlots 005A0FA0 f end=005A0FD4 +Script_PickupStablePet 005A0FE0 f end=005A1054 +Script_GetSelectedStablePet 005A1060 f end=005A108D +Script_IsAtStableMaster 005A1090 f end=005A10CF +Script_GetStablePetInfo 005A1330 f end=005A14C8 +Script_GetNextStableSlotCost 005A14D0 f end=005A152A +Script_SetPetStablePaperdoll 005A1530 f end=005A169B +Script_GetStablePetFoodTypes 005A16A0 f end=005A17E9 +Script_ClosePetStables 005A1950 f end=005A19B5 +Script_StablePet 005A19C0 f end=005A1AB5 +Script_UnstablePet 005A1AC0 f end=005A1BC2 +Script_BuyStableSlot 005A1BD0 f end=005A1C93 +Script_ClickStablePet 005A1CA0 f end=005A1EC5 +Script_GetNumPetitionItems 005A1F70 f end=005A1FA4 +Script_GetPetitionItemInfo 005A1FB0 f end=005A20E3 +Script_ClickPetitionButton 005A2200 f end=005A2292 +Script_ClosePetitionVendor 005A24F0 f end=005A252F +Script_BuyPetition 005A2530 f end=005A25FB +Script_TurnInPetition 005A2600 f end=005A26CF +Script_TurnInArenaPetition 005A26D0 f end=005A2820 +Script_HasFilledPetition 005A2820 f end=005A287D +Script_GetNumArenaTeamMembers 005A2930 f end=005A29F4 +Script_GetArenaTeamRosterShowOffline 005A2A00 f end=005A2A3A +Script_GetCurrentArenaSeason 005A2A40 f end=005A2A6D +Script_GetPreviousArenaSeason 005A2A70 f end=005A2A9D +Script_GetArenaTeamRosterInfo 005A2FC0 f end=005A325C +Script_GetArenaTeamGdfInfo 005A3260 f end=005A3364 +Script_SetArenaTeamRosterSelection 005A3370 f end=005A340C +Script_GetArenaTeamRosterSelection 005A3410 f end=005A348C +Script_SortArenaTeamRoster 005A3490 f end=005A35DD +Script_SetArenaTeamRosterShowOffline 005A35E0 f end=005A35FD +Script_GetArenaTeam 005A3860 f end=005A3CE4 +Script_ArenaTeamRoster 005A3CF0 f end=005A3D54 +Script_PickupGuildBankMoney 005A4330 f end=005A43B3 +Script_SetCurrentGuildBankTab 005A43C0 f end=005A440B +Script_GetCurrentGuildBankTab 005A4410 f end=005A443F +Script_GetGuildBankMoney 005A4440 f end=005A4493 +Script_GetGuildBankWithdrawMoney 005A44A0 f end=005A44C2 +Script_GetNumGuildBankTabs 005A44D0 f end=005A44FC +Script_CloseGuildBankFrame 005A4500 f end=005A4520 +Script_GetNumGuildBankTransactions 005A4520 f end=005A45AC +Script_GetNumGuildBankMoneyTransactions 005A45B0 f end=005A45D2 +Script_GetGuildBankText 005A45E0 f end=005A469F +Script_GetGuildBankItemLink 005A4D30 f end=005A4E46 +Script_GetGuildBankMoneyTransaction 005A4E50 f end=005A500D +Script_QueryGuildBankTab 005A5CE0 f end=005A5D2F +Script_BuyGuildBankTab 005A5D30 f end=005A5E14 +Script_DepositGuildBankMoney 005A5E20 f end=005A5EE2 +Script_WithdrawGuildBankMoney 005A5EF0 f end=005A5F51 +Script_CanWithdrawGuildBankMoney 005A5F60 f end=005A5FF8 +Script_GetGuildBankItemInfo 005A6000 f end=005A61FA +Script_PickupGuildBankItem 005A6200 f end=005A63EA +Script_AutoStoreGuildBankItem 005A63F0 f end=005A65F2 +Script_SplitGuildBankItem 005A6600 f end=005A67EB +Script_GetGuildBankTabInfo 005A67F0 f end=005A69F9 +Script_SetGuildBankTabInfo 005A6A00 f end=005A6B12 +Script_GetGuildBankTabCost 005A6B20 f end=005A6B9C +Script_GetGuildTabardFileNames 005A6BA0 f end=005A6D50 +Script_QueryGuildBankLog 005A6D50 f end=005A6DB9 +Script_GetGuildBankTransaction 005A6DC0 f end=005A70ED +Script_QueryGuildBankText 005A7110 f end=005A7179 +Script_SetGuildBankText 005A7180 f end=005A7243 +Script_GetActionCount 005A7D10 f end=005A7D87 +Script_GetActionText 005A7D90 f end=005A7E60 +Script_IsUsableAction 005A7E60 f end=005A7F15 +Script_GetBonusBarOffset 005A7F20 f end=005A7F54 +Script_ChangeActionBarPage 005A7F60 f end=005A7FCB +Script_GetActionBarPage 005A7FD0 f end=005A8011 +Script_HasAction 005A8220 f end=005A8290 +Script_SetActionBarToggles 005A8290 f end=005A832F +Script_GetMultiCastTotemSpells 005A8330 f end=005A83B1 +Script_IsStackableAction 005A8720 f end=005A8790 +Script_GetActionBarToggles 005A8790 f end=005A8811 +Script_IsPossessBarVisible 005A8820 f end=005A88A9 +Script_IsEquippedAction 005A8BC0 f end=005A8C30 +Script_GetActionInfo 005A8F10 f end=005A91BB +Script_GetActionCooldown 005A91C0 f end=005A9288 +Script_GetActionAutocast 005A9290 f end=005A9357 +Script_GetActionTexture 005A9B30 f end=005A9B99 +Script_IsAttackAction 005A9BA0 f end=005A9C10 +Script_IsAutoRepeatAction 005A9C10 f end=005A9C80 +Script_IsConsumableAction 005A9C80 f end=005A9CF0 +Script_ActionHasRange 005A9CF0 f end=005A9D4D +Script_IsActionInRange 005A9D50 f end=005A9E17 +Script_IsCurrentAction 005AAD40 f end=005AADB0 +Script_PlaceAction 005AB840 f end=005AB896 +Script_SetMultiCastSpell 005AB8A0 f end=005AB9CD +Script_UseAction 005AC000 f end=005AC084 +Script_PickupAction 005AC090 f end=005AC0D7 +Script_RegisterStaticConstants 005AC320 f end=005AC385 +Script_GMSurveyAnswerSubmit 005AC390 f end=005AC477 +Script_GMSurveyCommentSubmit 005AC480 f end=005AC4C1 +Script_GMSurveyQuestion 005AC750 f end=005AC7C3 +Script_GMSurveyAnswer 005AC7D0 f end=005AC865 +Script_GMSurveyNumAnswers 005AC870 f end=005AC8E5 +Script_GMReportLag 005AD020 f end=005AD064 +Script_GetGMTicket 005AD070 f end=005AD078 +Script_NewGMTicket 005AD080 f end=005AD0EE +Script_UpdateGMTicket 005AD0F0 f end=005AD13F +Script_DeleteGMTicket 005AD140 f end=005AD148 +Script_GMResponseNeedMoreHelp 005AD150 f end=005AD1A3 +Script_GMResponseResolve 005AD1B0 f end=005AD1B8 +Script_GetGMStatus 005AD1C0 f end=005AD228 +Script_GMSurveySubmit 005AD230 f end=005AD238 +Script_EquipmentManagerIgnoreSlotForSave 005AD770 f end=005AD7B2 +Script_EquipmentManagerIsSlotIgnoredForSave 005AD7C0 f end=005AD812 +Script_EquipmentManagerClearIgnoredSlotsForSave 005AD820 f end=005AD828 +Script_EquipmentManagerUnignoreSlotForSave 005AD830 f end=005AD872 +Script_CanUseEquipmentSets 005AD880 f end=005AD8E3 +Script_DeleteEquipmentSet 005AE800 f end=005AE85A +Script_GetEquipmentSetLocations 005AE860 f end=005AEF83 +Script_GetEquipmentSetItemIDs 005AEF90 f end=005AF0C7 +Script_GetNumEquipmentSets 005AF0D0 f end=005AF116 +Script_GetEquipmentSetInfo 005AF120 f end=005AF1CD +Script_GetEquipmentSetInfoByName 005AF1D0 f end=005AF242 +Script_PickupEquipmentSetByName 005AF250 f end=005AF2BB +Script_PickupEquipmentSet 005AF2C0 f end=005AF317 +Script_EquipmentSetContainsLockedItems 005AF320 f end=005AF380 +Script_UseEquipmentSet 005AF380 f end=005AF3F1 +Script_RenameEquipmentSet 005AF910 f end=005AF9BA +Script_SaveEquipmentSet 005AF9C0 f end=005AFBAF +Script_GetCurrencyListSize 005AFD10 f end=005AFD32 +Script_GetCurrencyListInfo 005B0680 f end=005B093C +Script_ExpandCurrencyList 005B0940 f end=005B09AD +Script_SetCurrencyUnused 005B09B0 f end=005B0A1D +Script_SetCurrencyBackpack 005B0A20 f end=005B0A8D +Script_GetBackpackCurrencyInfo 005B0A90 f end=005B0CD2 +Script_CanShowAchievementUI 005B0CE0 f end=005B0CFC +Script_GetCategoryList 005B1390 f end=005B14A3 +Script_GetStatisticsCategoryList 005B14B0 f end=005B15BD +Script_GetCategoryInfo 005B15C0 f end=005B1689 +Script_GetPreviousAchievement 005B1690 f end=005B1713 +Script_GetAchievementInfoFromCriteria 005B1720 f end=005B18D7 +Script_GetAchievementCategory 005B18E0 f end=005B1969 +Script_GetAchievementNumRewards 005B1970 f end=005B19FA +Script_GetAchievementReward 005B1A00 f end=005B1AA7 +Script_SetAchievementComparisonUnit 005B1AB0 f end=005B1BAC +Script_QueryQuestsCompleted 005B1BB0 f end=005B1C18 +Script_GetLatestCompletedAchievements 005B1C20 f end=005B1C8E +Script_GetLatestUpdatedStats 005B1C90 f end=005B1CE7 +Script_GetLatestCompletedComparisonAchievements 005B1CF0 f end=005B1D5E +Script_GetLatestUpdatedComparisonStats 005B1D60 f end=005B1DB7 +Script_GetTotalAchievementPoints 005B1DC0 f end=005B1E3C +Script_GetComparisonAchievementPoints 005B1E40 f end=005B1EBC +Script_HasCompletedAnyAchievement 005B1EC0 f end=005B1EED +Script_GetTrackedAchievements 005B2040 f end=005B208B +Script_IsTrackedAchievement 005B2090 f end=005B2113 +Script_GetNumTrackedAchievements 005B2120 f end=005B2166 +Script_GetCategoryNumAchievements 005B38E0 f end=005B3B2C +Script_GetComparisonCategoryNumAchievements 005B3B30 f end=005B3C9B +Script_GetNumCompletedAchievements 005B3CA0 f end=005B3DBC +Script_GetNumComparisonCompletedAchievements 005B3DC0 f end=005B3EE1 +Script_GetNextAchievement 005B3EF0 f end=005B3FB2 +Script_GetAchievementInfo 005B3FC0 f end=005B475C +Script_ClearAchievementComparisonUnit 005B4760 f end=005B4768 +Script_GetAchievementComparisonInfo 005B4770 f end=005B486E +Script_AddTrackedAchievement 005B4870 f end=005B48CE +Script_RemoveTrackedAchievement 005B48D0 f end=005B490A +Script_GetQuestsCompleted 005B5290 f end=005B530A +Script_GetAchievementNumCriteria 005B5530 f end=005B5613 +Script_GetStatistic 005B5620 f end=005B58AD +Script_GetAchievementCriteriaInfo 005B58B0 f end=005B5E63 +Script_GetComparisonStatistic 005B5E70 f end=005B6101 +Script_GetAchievementLink 005B6110 f end=005B63E8 +Script_GetNumGlyphSockets 005B71E0 f end=005B7202 +Script_GetGlyphSocketInfo 005B7260 f end=005B7408 +Script_GlyphMatchesSocket 005B7410 f end=005B7597 +Script_PlaceGlyphInSocket 005B75A0 f end=005B765E +Script_RemoveGlyphFromSocket 005B7660 f end=005B7739 +Script_GetGlyphLink 005B7740 f end=005B7813 +Script_CalendarGetMonthNames 005B80E0 f end=005B8120 +Script_CalendarGetWeekdayNames 005B8120 f end=005B8160 +Script_CalendarGetDate 005B8160 f end=005B81E1 +Script_CalendarGetMinDate 005B81F0 f end=005B829E +Script_CalendarGetMaxDate 005B82A0 f end=005B8347 +Script_CalendarGetMinHistoryDate 005B8350 f end=005B840C +Script_CalendarGetMaxCreateDate 005B8410 f end=005B8499 +Script_CalendarCloseEvent 005B84A0 f end=005B84C1 +Script_CalendarEventGetNumInvites 005B84D0 f end=005B850F +Script_CalendarContextDeselectEvent 005B8510 f end=005B8536 +Script_CalendarContextEventClipboard 005B8540 f end=005B8570 +Script_CalendarEventSortInvites 005B8570 f end=005B8685 +Script_CalendarEventGetInviteSortCriterion 005B8690 f end=005B8713 +Script_CalendarEventSetStatus 005B8730 f end=005B87CC +Script_CalendarEventSetModerator 005B87D0 f end=005B8836 +Script_CalendarEventClearModerator 005B8840 f end=005B88A6 +Script_CalendarEventIsModerator 005B88B0 f end=005B88DD +Script_CalendarEventCanModerate 005B88E0 f end=005B8962 +Script_CalendarEventGetTypes 005B8970 f end=005B89B3 +Script_CalendarEventGetRepeatOptions 005B89C0 f end=005B8A03 +Script_CalendarEventHaveSettingsChanged 005B8A10 f end=005B8A4C +Script_CalendarEventCanEdit 005B8A50 f end=005B8A9D +Script_CalendarEventGetCalendarType 005B8AA0 f end=005B8ADF +Script_CalendarEventSelectInvite 005B8AE0 f end=005B8B2C +Script_CalendarCanSendInvite 005B8B30 f end=005B8B92 +Script_CalendarCanAddEvent 005B8BA0 f end=005B8C02 +Script_CalendarIsActionPending 005B8C10 f end=005B8C2E +Script_CalendarGetMonth 005B99F0 f end=005B9AB9 +Script_CalendarGetAbsMonth 005B9AC0 f end=005B9BEC +Script_CalendarGetNumDayEvents 005B9BF0 f end=005B9C94 +Script_CalendarGetDayEventSequenceInfo 005B9CA0 f end=005B9E10 +Script_CalendarGetFirstPendingInvite 005B9E10 f end=005B9EA2 +Script_CalendarOpenEvent 005B9EB0 f end=005B9F75 +Script_CalendarGetEventIndex 005B9F80 f end=005B9FFD +Script_CalendarGetRaidInfo 005BA000 f end=005BA217 +Script_CalendarEventGetInvite 005BA220 f end=005BA41D +Script_CalendarEventGetInviteResponseTime 005BA420 f end=005BA592 +Script_CalendarRemoveEvent 005BA5A0 f end=005BA5A8 +Script_CalendarContextSelectEvent 005BA5B0 f end=005BA675 +Script_CalendarContextGetEventIndex 005BA680 f end=005BA6FD +Script_CalendarContextInviteIsPending 005BA700 f end=005BA7EF +Script_CalendarContextInviteModeratorStatus 005BA7F0 f end=005BA90B +Script_CalendarContextInviteStatus 005BA910 f end=005BAA12 +Script_CalendarContextInviteType 005BAA20 f end=005BAB4F +Script_CalendarContextInviteAvailable 005BAB50 f end=005BACF9 +Script_CalendarContextInviteDecline 005BAD00 f end=005BAEA9 +Script_CalendarContextEventCanEdit 005BAEB0 f end=005BAFB7 +Script_CalendarContextEventGetCalendarType 005BAFC0 f end=005BB0BB +Script_CalendarEventRemoveInvite 005BB0C0 f end=005BB124 +Script_CalendarEventGetStatusOptions 005BB130 f end=005BB20F +Script_CalendarEventSetTitle 005BB210 f end=005BB278 +Script_CalendarEventSetDescription 005BB280 f end=005BB2E8 +Script_CalendarEventSetType 005BB2F0 f end=005BB375 +Script_CalendarEventSetRepeatOption 005BB380 f end=005BB405 +Script_CalendarEventSetSize 005BB410 f end=005BB492 +Script_CalendarEventSetDate 005BB4A0 f end=005BB595 +Script_CalendarEventSetTime 005BB5A0 f end=005BB649 +Script_CalendarEventSetLockoutDate 005BB650 f end=005BB745 +Script_CalendarEventSetLockoutTime 005BB750 f end=005BB7F9 +Script_CalendarEventSetTextureID 005BB800 f end=005BB864 +Script_CalendarEventSetLocked 005BB870 f end=005BB8AC +Script_CalendarEventClearLocked 005BB8B0 f end=005BB8EC +Script_CalendarEventSetAutoApprove 005BB8F0 f end=005BB92C +Script_CalendarEventClearAutoApprove 005BB930 f end=005BB96C +Script_CalendarEventGetTextures 005BB970 f end=005BBAF6 +Script_CalendarEventGetSelectedInvite 005BBB00 f end=005BBB3E +Script_CalendarSetMonth 005BCC00 f end=005BCC63 +Script_CalendarAddEvent 005BCC70 f end=005BCC95 +Script_CalendarNewEvent 005BCCA0 f end=005BCCA8 +Script_CalendarMassInviteGuild 005BCCB0 f end=005BCD7E +Script_CalendarNewGuildAnnouncement 005BCD80 f end=005BCD88 +Script_CalendarNewGuildEvent 005BCD90 f end=005BCD98 +Script_CalendarDefaultGuildFilter 005BCDA0 f end=005BCE52 +Script_CalendarMassInviteArenaTeam 005BCE60 f end=005BCEC4 +Script_CalendarUpdateEvent 005BCED0 f end=005BCEF5 +Script_CalendarEventInvite 005BCF00 f end=005BCF24 +Script_CalendarContextInviteTentative 005BCF30 f end=005BD038 +Script_CalendarContextInviteRemove 005BD040 f end=005BD12B +Script_CalendarContextEventSignUp 005BD130 f end=005BD21D +Script_CalendarContextEventRemove 005BD220 f end=005BD338 +Script_CalendarContextEventCopy 005BD340 f end=005BD458 +Script_CalendarContextEventPaste 005BD460 f end=005BD4E5 +Script_CalendarContextEventCanComplain 005BD4F0 f end=005BD600 +Script_CalendarContextEventComplain 005BD600 f end=005BD6D7 +Script_CalendarEventAvailable 005BD6E0 f end=005BD749 +Script_CalendarEventTentative 005BD750 f end=005BD75D +Script_CalendarEventDecline 005BD760 f end=005BD7C9 +Script_CalendarEventSignUp 005BD7D0 f end=005BD7D8 +Script_OpenCalendar 005BD7E0 f end=005BD7F1 +Script_CalendarGetEventInfo 005BD8A0 f end=005BDD85 +Script_CalendarEventHasPendingInvite 005BDD90 f end=005BDDD4 +Script_CalendarGetNumPendingInvites 005BF830 f end=005BF864 +Script_CalendarGetDayEvent 005C1070 f end=005C1475 +Script_CalendarGetHolidayInfo 005C1480 f end=005C15E1 +Script_CalendarSetAbsMonth 005C43B0 f end=005C446C +Script_GetSocketTypes 005C4550 f end=005C4625 +Script_CloseSocketInfo 005C49C0 f end=005C49CF +Script_GetSocketItemInfo 005C49D0 f end=005C4AE5 +Script_GetNumSockets 005C4AF0 f end=005C4B51 +Script_GetNewSocketInfo 005C4B60 f end=005C4D05 +Script_GetNewSocketLink 005C4D10 f end=005C4DB4 +Script_ClickSocketButton 005C4DC0 f end=005C4E94 +Script_GetSocketItemBoundTradeable 005C4EA0 f end=005C4EDA +Script_GetExistingSocketInfo 005C5160 f end=005C533D +Script_GetExistingSocketLink 005C5340 f end=005C5458 +Script_AcceptSockets 005C5460 f end=005C5468 +Script_GetSocketItemRefundable 005C5470 f end=005C54AA +Script_GetMinigameType 005C5500 f end=005C5544 +Script_MakeMinigameMove 005C5550 f end=005C55E7 +Script_GetMinigameState 005C55F0 f end=005C560E +Script_GetActiveTalentGroup 005C5810 f end=005C5876 +Script_GetNumTalentTabs 005C5CC0 f end=005C5D33 +Script_GetNumTalents 005C5D40 f end=005C5DED +Script_GetNumTalentGroups 005C5DF0 f end=005C5E6D +Script_SetActiveTalentGroup 005C5E70 f end=005C5EFC +Script_GetTalentTabInfo 005C6150 f end=005C630D +Script_GetUnspentTalentPoints 005C6310 f end=005C63AE +Script_GetPreviewTalentPointsSpent 005C63B0 f end=005C6418 +Script_GetGroupPreviewTalentPointsSpent 005C6420 f end=005C6472 +Script_LearnPreviewTalents 005C6A10 f end=005C6C56 +Script_ResetPreviewTalentPoints 005C7130 f end=005C71F1 +Script_ResetGroupPreviewTalentPoints 005C7200 f end=005C7286 +Script_GetTalentInfo 005C7800 f end=005C7CD6 +Script_GetTalentLink 005C7CE0 f end=005C7EC2 +Script_GetTalentPrereqs 005C7ED0 f end=005C80D5 +Script_LearnTalent 005C80E0 f end=005C8305 +Script_AddPreviewTalentPoints 005C9590 f end=005C968E +Script_GetNumGuildMembers 005CA130 f end=005CA185 +Script_GetGuildRosterMOTD 005CA190 f end=005CA1AB +Script_SetGuildRosterShowOffline 005CA1B0 f end=005CA1DB +Script_GetGuildRosterShowOffline 005CA1E0 f end=005CA21C +Script_GuildControlGetNumRanks 005CA220 f end=005CA254 +Script_GuildControlSetRank 005CA260 f end=005CA2A7 +Script_GuildControlSetRankFlag 005CA2B0 f end=005CA329 +Script_GetGuildInfoText 005CA330 f end=005CA34B +Script_GetNumGuildEvents 005CA350 f end=005CA372 +Script_GetGuildRosterLastOnline 005CABB0 f end=005CACF7 +Script_GuildRosterSetPublicNote 005CAD00 f end=005CAE1D +Script_GuildRosterSetOfficerNote 005CAE20 f end=005CAF40 +Script_SetGuildRosterSelection 005CAF40 f end=005CAFD0 +Script_GetGuildRosterSelection 005CAFD0 f end=005CAFFD +Script_SortGuildRoster 005CB000 f end=005CB16B +Script_GuildControlSaveRank 005CB170 f end=005CB329 +Script_GuildControlAddRank 005CB330 f end=005CB3E3 +Script_GuildControlDelRank 005CB3F0 f end=005CB461 +Script_SetGuildBankTabPermissions 005CB470 f end=005CB553 +Script_GetGuildBankTabPermissions 005CB560 f end=005CB693 +Script_SetGuildBankWithdrawLimit 005CB6A0 f end=005CB700 +Script_GetGuildBankWithdrawLimit 005CB700 f end=005CB752 +Script_SetGuildBankTabWithdraw 005CB760 f end=005CB804 +Script_GuildRoster 005CB810 f end=005CB818 +Script_SetGuildInfoText 005CB820 f end=005CB8F6 +Script_CanGuildPromote 005CBCF0 f end=005CBD75 +Script_CanGuildDemote 005CBD80 f end=005CBE08 +Script_CanGuildInvite 005CBE10 f end=005CBE95 +Script_CanGuildRemove 005CBEA0 f end=005CBF25 +Script_CanEditMOTD 005CBF30 f end=005CBFB8 +Script_CanEditPublicNote 005CBFC0 f end=005CC048 +Script_CanEditOfficerNote 005CC050 f end=005CC0D8 +Script_CanViewOfficerNote 005CC0E0 f end=005CC168 +Script_CanEditGuildInfo 005CC170 f end=005CC1F8 +Script_CanGuildBankRepair 005CC200 f end=005CC288 +Script_CanEditGuildTabInfo 005CC290 f end=005CC360 +Script_CanEditGuildEvent 005CC360 f end=005CC3D6 +Script_GuildControlGetRankFlags 005CC3E0 f end=005CC46F +Script_QueryGuildEventLog 005CC470 f end=005CC502 +Script_GetGuildRosterInfo 005CC9C0 f end=005CCC84 +Script_GuildControlGetRankName 005CCC90 f end=005CCD8E +Script_GetGuildEventInfo 005CCD90 f end=005CD098 +Script_GetNumSkillLines 005CD1B0 f end=005CD1E4 +Script_CancelSkillUps 005CD820 f end=005CD85E +Script_SetSelectedSkill 005CD860 f end=005CD8E7 +Script_GetSelectedSkill 005CD8F0 f end=005CD91D +Script_GetSkillLineInfo 005CDE20 f end=005CE2B5 +Script_AbandonSkill 005CE2C0 f end=005CE39A +Script_CollapseSkillHeader 005CE3A0 f end=005CE400 +Script_ExpandSkillHeader 005CE400 f end=005CE460 +Script_AddSkillUp 005CE460 f end=005CE4C4 +Script_RemoveSkillUp 005CE4D0 f end=005CE534 +Script_GetAdjustedSkillPoints 005CE540 f end=005CE5CB +Script_AcceptSkillUps 005CE5D0 f end=005CE6E6 +Script_BuySkillTier 005CE6F0 f end=005CE862 +Script_GetNumPetitionNames 005CEAC0 f end=005CEAF4 +Script_GetPetitionInfo 005CECE0 f end=005CEE2D +Script_GetPetitionNameInfo 005CEE30 f end=005CEEF0 +Script_ClosePetition 005CF020 f end=005CF035 +Script_CanSignPetition 005CF040 f end=005CF131 +Script_SignPetition 005CF140 f end=005CF21B +Script_OfferPetition 005CF220 f end=005CF446 +Script_RenamePetition 005CF450 f end=005CF529 +Script_StartDuel 005CF950 f end=005CF9BB +Script_AcceptDuel 005CFDB0 f end=005CFDB8 +Script_GetNumFactions 005CFF20 f end=005CFF54 +Script_IsFactionInactive 005D0740 f end=005D07B0 +Script_SetSelectedFaction 005D07B0 f end=005D0814 +Script_GetSelectedFaction 005D0820 f end=005D084D +Script_GetFactionInfo 005D1150 f end=005D11D4 +Script_GetFactionInfoByID 005D11E0 f end=005D1240 +Script_GetWatchedFactionInfo 005D1240 f end=005D1384 +Script_FactionToggleAtWar 005D1390 f end=005D141B +Script_SetWatchedFactionIndex 005D1420 f end=005D148E +Script_SetFactionInactive 005D1E50 f end=005D1ED1 +Script_SetFactionActive 005D1EE0 f end=005D1F61 +Script_CollapseFactionHeader 005D1F70 f end=005D1FB9 +Script_CollapseAllFactionHeaders 005D1FC0 f end=005D1FD3 +Script_ExpandAllFactionHeaders 005D1FE0 f end=005D1FF3 +Script_ExpandFactionHeader 005D2000 f end=005D2049 +Script_IsPetAttackActive 005D3160 f end=005D317C +Script_GetPetTimeRemaining 005D3180 f end=005D31E7 +Script_PetHasActionBar 005D3720 f end=005D3779 +Script_PetCanBeAbandoned 005D3780 f end=005D3817 +Script_PetCanBeDismissed 005D3820 f end=005D38B9 +Script_PetCanBeRenamed 005D38C0 f end=005D3957 +Script_HasPetUI 005D3960 f end=005D3A1D +Script_GetPetExperience 005D3A20 f end=005D3AF4 +Script_GetPetHappiness 005D3B00 f end=005D3BC1 +Script_GetPetFoodTypes 005D3BD0 f end=005D3CDA +Script_GetPetIcon 005D3CE0 f end=005D3D79 +Script_GetPetTalentTree 005D3D80 f end=005D3E78 +Script_GetPetActionInfo 005D4EC0 f end=005D5258 +Script_GetPetActionCooldown 005D5280 f end=005D53BA +Script_GetPetActionsUsable 005D53C0 f end=005D53FF +Script_GetPetActionSlotUsable 005D5400 f end=005D54B8 +Script_PetPassiveMode 005D54C0 f end=005D54EC +Script_PetDefensiveMode 005D54F0 f end=005D551C +Script_PetAggressiveMode 005D5520 f end=005D554C +Script_PetWait 005D5550 f end=005D557C +Script_PetFollow 005D5580 f end=005D55AC +Script_PetAttack 005D55B0 f end=005D5640 +Script_PetStopAttack 005D5640 f end=005D5648 +Script_PetAbandon 005D5650 f end=005D5658 +Script_PetDismiss 005D5660 f end=005D5668 +Script_PetRename 005D5670 f end=005D581B +Script_GetPossessInfo 005D5820 f end=005D5A05 +Script_IsPetAttackAction 005D5A10 f end=005D5A5C +Script_PickupPetAction 005D65C0 f end=005D66E5 +Script_TogglePetAutocast 005D66F0 f end=005D67A4 +Script_CastPetAction 005D67B0 f end=005D68FE +Script_ContainerIDToInventoryID 005D6F60 f end=005D6FEB +Script_GetMaxArenaCurrency 005D6FF0 f end=005D7012 +Script_SetBagPortraitTexture 005D7180 f end=005D729B +Script_GetContainerNumSlots 005D74A0 f end=005D758A +Script_GetContainerNumFreeSlots 005D7590 f end=005D7820 +Script_GetContainerFreeSlots 005D7820 f end=005D7A82 +Script_GetContainerItemInfo 005D7A90 f end=005D7C71 +Script_GetContainerItemLink 005D7C80 f end=005D7CFF +Script_GetContainerItemID 005D7D00 f end=005D7D84 +Script_GetContainerItemCooldown 005D7D90 f end=005D7EED +Script_GetContainerItemDurability 005D7EF0 f end=005D7FE6 +Script_PickupContainerItem 005D7FF0 f end=005D84E4 +Script_SplitContainerItem 005D84F0 f end=005D864E +Script_UseContainerItem 005D8650 f end=005D8B06 +Script_SocketContainerItem 005D8B10 f end=005D8BC7 +Script_ShowContainerSellCursor 005D8BD0 f end=005D8C61 +Script_GetBagName 005D8C70 f end=005D8D7F +Script_GetContainerItemPurchaseInfo 005D8D80 f end=005D8F61 +Script_GetContainerItemPurchaseItem 005D8F70 f end=005D91A1 +Script_ContainerRefundItemPurchase 005D91B0 f end=005D92F2 +Script_GetContainerItemGems 005D9300 f end=005D93FF +Script_GetContainerItemQuestInfo 005D9400 f end=005D953B +Script_GetNumTradeSkills 005DA120 f end=005DA142 +Script_GetTradeSkillItemNameFilter 005DA150 f end=005DA16C +Script_GetTradeSkillItemLevelFilter 005DA170 f end=005DA1AE +Script_GetTradeSkillSubClassFilter 005DA1B0 f end=005DA267 +Script_GetTradeskillRepeatCount 005DA270 f end=005DA2D5 +Script_StopTradeSkillRepeat 005DA2E0 f end=005DA30D +Script_IsTradeSkillLinked 005DA310 f end=005DA391 +Script_CloseTradeSkill 005DA8B0 f end=005DA8FB +Script_SelectTradeSkill 005DA900 f end=005DA967 +Script_GetTradeSkillSelectionIndex 005DA970 f end=005DA99D +Script_GetTradeSkillCooldown 005DA9A0 f end=005DAA68 +Script_GetTradeSkillSubClasses 005DAA70 f end=005DAB6C +Script_GetFirstTradeSkill 005DAB70 f end=005DABF6 +Script_DoTradeSkill 005DAC00 f end=005DACD2 +Script_GetTradeSkillInfo 005DB2A0 f end=005DB543 +Script_GetTradeSkillIcon 005DB550 f end=005DB6D2 +Script_GetTradeSkillNumMade 005DB6E0 f end=005DB808 +Script_GetTradeSkillLine 005DB810 f end=005DB919 +Script_GetTradeSkillRecipeLink 005DB920 f end=005DBA61 +Script_GetTradeSkillItemLink 005DBA70 f end=005DBBA0 +Script_GetTradeSkillNumReagents 005DBBA0 f end=005DBCB6 +Script_GetTradeSkillReagentItemLink 005DBCC0 f end=005DBE05 +Script_GetTradeSkillDescription 005DBE10 f end=005DBF0A +Script_GetTradeSkillInvSlots 005DBF10 f end=005DBF8E +Script_GetTradeSkillInvSlotFilter 005DBF90 f end=005DC0A8 +Script_GetTradeSkillListLink 005DC0B0 f end=005DC109 +Script_SetTradeSkillItemNameFilter 005DD070 f end=005DD08D +Script_SetTradeSkillItemLevelFilter 005DD090 f end=005DD0ED +Script_SetTradeSkillSubClassFilter 005DD0F0 f end=005DD22B +Script_SetTradeSkillInvSlotFilter 005DD230 f end=005DD3DD +Script_TradeSkillOnlyShowMakeable 005DD3E0 f end=005DD41A +Script_TradeSkillOnlyShowSkillUps 005DD420 f end=005DD45A +Script_CollapseTradeSkillSubClass 005DD460 f end=005DD4F6 +Script_ExpandTradeSkillSubClass 005DD500 f end=005DD594 +Script_GetTradeSkillReagentInfo 005DE400 f end=005DE619 +Script_GetTradeSkillTools 005DE620 f end=005DE8B6 +Script_GetNumQuestLogEntries 005DF010 f end=005DF094 +Script_GetQuestLogSelection 005DF0A0 f end=005DF0CD +Script_SetAbandonQuest 005DF0D0 f end=005DF0DD +Script_GetAbandonQuestName 005DF0E0 f end=005DF143 +Script_GetNumQuestLogRewards 005DF150 f end=005DF1C8 +Script_GetNumQuestLogChoices 005DF1D0 f end=005DF246 +Script_GetQuestLogItemLink 005DF250 f end=005DF395 +Script_GetQuestLogRewardTalents 005DF3A0 f end=005DF3F6 +Script_GetQuestLogRewardArenaPoints 005DF400 f end=005DF456 +Script_GetQuestLogRequiredMoney 005DF460 f end=005DF51C +Script_GetQuestLogPushable 005DF520 f end=005DF5CD +Script_GetNumQuestWatches 005DF5D0 f end=005DF604 +Script_IsQuestWatched 005DF610 f end=005DF6F7 +Script_RemoveQuestWatch 005DF700 f end=005DF77D +Script_GetQuestIndexForWatch 005DF780 f end=005DF862 +Script_GetQuestLogGroupNum 005DF870 f end=005DF89E +Script_ProcessQuestLogRewardFactions 005DF8A0 f end=005DF910 +Script_GetNumQuestLogRewardFactions 005DF910 f end=005DF932 +Script_GetQuestLogRewardFactionInfo 005DF940 f end=005DFA02 +Script_GetQuestSortIndex 005DFA10 f end=005DFA74 +Script_QuestPOIGetQuestIDByIndex 005DFA80 f end=005DFAF5 +Script_SetPOIIconOverlapDistance 005DFB00 f end=005DFB3F +Script_SetPOIIconOverlapPushDistance 005DFB40 f end=005DFB95 +Script_ShiftQuestWatches 005DFBA0 f end=005DFC40 +Script_GetQuestWatchIndex 005DFC40 f end=005DFD1D +Script_SelectQuestLogEntry 005E02F0 f end=005E0337 +Script_GetQuestLogQuestText 005E0340 f end=005E041F +Script_QuestPOIGetIconInfo 005E0590 f end=005E06C1 +Script_GetQuestLogCompletionText 005E06D0 f end=005E07F7 +Script_GetAbandonQuestItems 005E3D60 f end=005E405D +Script_AbandonQuest 005E4060 f end=005E4068 +Script_IsUnitOnQuest 005E4070 f end=005E419C +Script_GetNumQuestLeaderBoards 005E41A0 f end=005E425E +Script_GetNumQuestItemDrops 005E4260 f end=005E431E +Script_GetQuestLogTimeLeft 005E4320 f end=005E43E6 +Script_IsCurrentQuestFailed 005E43F0 f end=005E4484 +Script_GetQuestLogRewardInfo 005E4490 f end=005E4660 +Script_GetQuestLogChoiceInfo 005E4660 f end=005E4833 +Script_GetQuestLogSpellLink 005E4840 f end=005E48EE +Script_GetQuestLogRewardMoney 005E48F0 f end=005E49A3 +Script_GetQuestLogRewardXP 005E49B0 f end=005E4B64 +Script_GetQuestLogRewardHonor 005E4B70 f end=005E4C0C +Script_GetQuestLogRewardTitle 005E4C10 f end=005E4D10 +Script_GetQuestLogRewardSpell 005E4D10 f end=005E4ECB +Script_QuestLogPushQuest 005E4ED0 f end=005E4FA4 +Script_GetQuestIndexForTimer 005E4FB0 f end=005E50F7 +Script_CollapseQuestHeader 005E5100 f end=005E5149 +Script_ExpandQuestHeader 005E5150 f end=005E5199 +Script_GetQuestGreenRange 005E51A0 f end=005E51CA +Script_GetQuestLink 005E51D0 f end=005E52C2 +Script_GetQuestLogSpecialItemInfo 005E52D0 f end=005E53CB +Script_GetQuestLogSpecialItemCooldown 005E53D0 f end=005E54BB +Script_IsQuestLogSpecialItemInRange 005E54C0 f end=005E5634 +Script_UseQuestLogSpecialItem 005E5640 f end=005E56BC +Script_GetQuestWorldMapAreaID 005E56C0 f end=005E573A +Script_QuestPOIUpdateIcons 005E5740 f end=005E5748 +Script_QuestPOIGetQuestIDByVisibleIndex 005E5750 f end=005E57DC +Script_GetQuestLogTitle 005E5CC0 f end=005E5F59 +Script_GetQuestLogLeaderBoard 005E5F60 f end=005E60CF +Script_GetQuestLogItemDrop 005E60D0 f end=005E623F +Script_GetQuestTimers 005E6240 f end=005E63CE +Script_QuestMapUpdateAllQuests 005E63D0 f end=005E64AE +Script_SortQuestWatches 005E64B0 f end=005E64CF +Script_GetQuestPOILeaderBoard 005E6650 f end=005E67BC +Script_AddQuestWatch 005E67C0 f end=005E687A +Script_GetQuestResetTime 005E6DE0 f end=005E6E31 +Script_KeyRingButtonIDToInvSlotID 005E7700 f end=005E7758 +Script_HasInspectHonorData 005E7780 f end=005E77BA +Script_GetInspectHonorData 005E77C0 f end=005E7885 +Script_ClearInspectPlayer 005E7890 f end=005E78E3 +Script_GetInventorySlotInfo 005E7D60 f end=005E7E51 +Script_GetInventoryItemCooldown 005E7E60 f end=005E7F9C +Script_GetInventoryAlertStatus 005E7FA0 f end=005E8030 +Script_GetInspectArenaTeamData 005E8030 f end=005E8284 +Script_GetInventoryItemsForSlot 005E95C0 f end=005E9BB5 +Script_GetInventoryItemTexture 005E9BC0 f end=005E9D71 +Script_GetInventoryItemBroken 005E9D80 f end=005E9E31 +Script_GetInventoryItemCount 005E9E40 f end=005EA040 +Script_GetInventoryItemQuality 005EA040 f end=005EA164 +Script_GetInventoryItemDurability 005EA170 f end=005EA265 +Script_GetInventoryItemLink 005EA270 f end=005EA3DC +Script_GetInventoryItemID 005EA3E0 f end=005EA4E6 +Script_GetInventoryItemGems 005EA4F0 f end=005EA5EF +Script_PickupInventoryItem 005EA5F0 f end=005EA625 +Script_UseInventoryItem 005EA630 f end=005EA69D +Script_SocketInventoryItem 005EA6A0 f end=005EA6DA +Script_IsInventoryItemLocked 005EA6E0 f end=005EA77C +Script_PutItemInBag 005EA780 f end=005EA7F0 +Script_PutItemInBackpack 005EA7F0 f end=005EA832 +Script_PickupBagFromSlot 005EA840 f end=005EA87A +Script_CursorCanGoInSlot 005EA880 f end=005EA924 +Script_ShowInventorySellCursor 005EA930 f end=005EA9A7 +Script_SetInventoryPortraitTexture 005EA9B0 f end=005EAAEC +Script_GetGuildInfo 005EAAF0 f end=005EABF9 +Script_UpdateInventoryAlertStatus 005EAC00 f end=005EAC08 +Script_OffhandHasWeapon 005EAC10 f end=005EAC81 +Script_RequestInspectHonorData 005EAC90 f end=005EAC98 +Script_GetWeaponEnchantInfo 005EACA0 f end=005EAE8C +Script_HasWandEquipped 005EAE90 f end=005EAF27 +nullsub_3 005EEB70 f end=005EEB71 ; SErrDisplayAppFatal resolves to this in release mode? +Script_VehicleAimGetNormPower 005F9550 f end=005F9572 +Script_IsMouselooking 005F9DD0 f end=005F9E0F +Script_VehicleAimGetAngle 005F9E10 f end=005F9E5C +Script_VehicleAimGetNormAngle 005F9E60 f end=005F9F06 +Script_VehicleAimSetNormPower 005F9F10 f end=005F9F6E +Script_IsVehicleAimAngleAdjustable 005F9F70 f end=005F9FDB +Script_IsVehicleAimPowerAdjustable 005F9FE0 f end=005FA04B +Script_DetectWowMouse 005FA050 f end=005FA05E +Script_ToggleRun 005FAAE0 f end=005FAB6D +Script_VehicleExit 005FB660 f end=005FB6C8 +Script_VehiclePrevSeat 005FB6D0 f end=005FB71B +Script_VehicleNextSeat 005FB720 f end=005FB76B +Script_VehicleAimIncrement 005FB770 f end=005FB7CB +Script_VehicleAimDecrement 005FB7D0 f end=005FB81C +Script_VehicleAimRequestAngle 005FB820 f end=005FB8B1 +Script_VehicleAimRequestNormAngle 005FB8C0 f end=005FB967 +Script_IsUsingVehicleControls 005FB970 f end=005FB9B5 +Script_CanExitVehicle 005FB9C0 f end=005FBA05 +Script_CanSwitchVehicleSeats 005FBA10 f end=005FBA55 +Script_JumpOrAscendStart 005FBF80 f end=005FC095 +Script_AscendStop 005FC0A0 f end=005FC0E2 +Script_DescendStop 005FC140 f end=005FC182 +Script_ToggleAutoRun 005FC190 f end=005FC1FA +Script_MoveForwardStart 005FC200 f end=005FC242 +Script_MoveForwardStop 005FC250 f end=005FC28F +Script_MoveBackwardStart 005FC290 f end=005FC2D2 +Script_MoveBackwardStop 005FC2E0 f end=005FC31F +Script_TurnLeftStart 005FC320 f end=005FC360 +Script_TurnLeftStop 005FC360 f end=005FC3A2 +Script_TurnRightStart 005FC3B0 f end=005FC3F0 +Script_TurnRightStop 005FC3F0 f end=005FC432 +Script_StrafeLeftStart 005FC440 f end=005FC482 +Script_StrafeLeftStop 005FC490 f end=005FC4CF +Script_StrafeRightStart 005FC4D0 f end=005FC515 +Script_StrafeRightStop 005FC520 f end=005FC562 +Script_VehicleAimUpStop 005FC570 f end=005FC5B2 +Script_VehicleAimDownStop 005FC5C0 f end=005FC602 +Script_TurnOrActionStart 005FC610 f end=005FC671 +Script_TurnOrActionStop 005FC680 f end=005FC6BB +Script_CameraOrSelectOrMoveStart 005FC6C0 f end=005FC721 +Script_CameraOrSelectOrMoveStop 005FC730 f end=005FC77E +Script_MoveAndSteerStart 005FC780 f end=005FC825 +Script_MoveAndSteerStop 005FC830 f end=005FC885 +Script_MouselookStop 005FC890 f end=005FC8D2 +Script_VehicleAimUpStart 005FC8E0 f end=005FC920 +Script_VehicleAimDownStart 005FC920 f end=005FC960 +Script_MouselookStart 005FCC10 f end=005FCC59 +Script_SetMouselookOverrideBinding 005FD550 f end=005FD5B8 +Script_MoveViewInStart 005FF080 f end=005FF093 +Script_MoveViewInStop 005FF0A0 f end=005FF0C6 +Script_MoveViewOutStart 005FF0D0 f end=005FF0E6 +Script_MoveViewOutStop 005FF0F0 f end=005FF116 +Script_MoveViewRightStart 005FF120 f end=005FF136 +Script_MoveViewRightStop 005FF140 f end=005FF166 +Script_MoveViewLeftStart 005FF170 f end=005FF186 +Script_MoveViewLeftStop 005FF190 f end=005FF1B9 +Script_MoveViewUpStart 005FF1C0 f end=005FF1D6 +Script_MoveViewUpStop 005FF1E0 f end=005FF20C +Script_MoveViewDownStart 005FF210 f end=005FF226 +Script_MoveViewDownStop 005FF230 f end=005FF25C +Script_SaveView 005FF260 f end=005FF2B7 +Script_FlipCameraYaw 005FF2C0 f end=005FF31B +Script_CameraZoomIn 006017E0 f end=00601838 +Script_CameraZoomOut 00601840 f end=00601898 +Script_VehicleCameraZoomIn 006018A0 f end=006018A9 +Script_VehicleCameraZoomOut 006018B0 f end=006018B9 +Script_SetView 006039B0 f end=00603A0F +Script_ResetView 00604C80 f end=00604CD3 +Script_NextView 00604CE0 f end=00604D0A +Script_PrevView 00604D10 f end=00604D3A +Script_GetTime 006081F0 f end=0060822A +Script_GetGameTime 00608230 f end=00608266 +Script_ConsoleExec 00608270 f end=006082B6 +Script_GetMaxCombatRatingBonus 006082C0 f end=00608364 +Script_GetWaterDetail 00608560 f end=0060857E +Script_CanSwitchVehicleSeat 00608580 f end=006085C1 +Script_GetItemStats 00608690 f end=00608760 +Script_GetItemStatDelta 00608760 f end=0060887A +Script_IsLoggedIn 0060A450 f end=0060A48A +Script_GetPlayerFacing 0060A490 f end=0060A50A +Script_FillLocalizedClassList 0060A510 f end=0060A5CE +Script_UnitExists 0060C2A0 f end=0060C342 +Script_UnitIsVisible 0060C350 f end=0060C3C5 +Script_UnitIsUnit 0060C3D0 f end=0060C4A3 +Script_UnitIsPlayer 0060C4B0 f end=0060C542 +Script_UnitIsInMyGuild 0060C550 f end=0060C6E9 +Script_UnitIsCorpse 0060C6F0 f end=0060C76F +Script_UnitIsPartyLeader 0060C770 f end=0060C810 +Script_UnitGroupRolesAssigned 0060C810 f end=0060C89F +Script_UnitIsRaidOfficer 0060C8A0 f end=0060C916 +Script_UnitInParty 0060C920 f end=0060C998 +Script_UnitPlayerOrPetInParty 0060C9A0 f end=0060CA18 +Script_UnitInRaid 0060CA20 f end=0060CA94 +Script_UnitInBattleground 0060CAA0 f end=0060CB1D +Script_UnitPlayerOrPetInRaid 0060CB20 f end=0060CB98 +Script_UnitPlayerControlled 0060CBA0 f end=0060CC29 +Script_UnitIsAFK 0060CC30 f end=0060CD44 +Script_UnitIsDND 0060CD50 f end=0060CE20 +Script_UnitIsPVP 0060CE20 f end=0060CF15 +Script_UnitIsPVPSanctuary 0060CF20 f end=0060CFA4 +Script_UnitIsPVPFreeForAll 0060CFB0 f end=0060D091 +Script_UnitFactionGroup 0060D0A0 f end=0060D27B +Script_UnitReaction 0060D280 f end=0060D328 +Script_UnitIsEnemy 0060D330 f end=0060D3CF +Script_UnitIsFriend 0060D3D0 f end=0060D52E +Script_UnitCanCooperate 0060D530 f end=0060D68E +Script_UnitCanAssist 0060D690 f end=0060D730 +Script_UnitCanAttack 0060D730 f end=0060D7CE +Script_UnitIsCharmed 0060D7D0 f end=0060D853 +Script_UnitIsPossessed 0060D860 f end=0060D8E4 +Script_PlayerCanTeleport 0060D8F0 f end=0060D961 +Script_UnitClassification 0060D970 f end=0060D9F3 +Script_UnitSelectionColor 0060DA00 f end=0060DB11 +Script_IsInGuild 0060DB20 f end=0060DB7C +Script_IsGuildLeader 0060DB80 f end=0060DBE2 +Script_IsInArenaTeam 0060DBF0 f end=0060DC69 +Script_IsArenaTeamCaptain 0060DC70 f end=0060DD3C +Script_IsResting 0060DD40 f end=0060DDA1 +Script_GetCombatRating 0060DDB0 f end=0060DE6F +Script_GetCombatRatingBonus 0060DE70 f end=0060DF2A +Script_GetDodgeChance 0060DF30 f end=0060DF8F +Script_GetBlockChance 0060DF90 f end=0060DFEF +Script_GetShieldBlock 0060DFF0 f end=0060E067 +Script_GetParryChance 0060E070 f end=0060E0CF +Script_GetCritChance 0060E0D0 f end=0060E12F +Script_GetCritChanceFromAgility 0060E130 f end=0060E1B0 +Script_GetSpellCritChanceFromIntellect 0060E1B0 f end=0060E230 +Script_GetRangedCritChance 0060E230 f end=0060E28F +Script_GetSpellCritChance 0060E290 f end=0060E30E +Script_GetSpellBonusDamage 0060E310 f end=0060E3A8 +Script_GetSpellBonusHealing 0060E3B0 f end=0060E40F +Script_GetPetSpellBonusDamage 0060E410 f end=0060E46F +Script_GetSpellPenetration 0060E470 f end=0060E4DC +Script_GetArmorPenetration 0060E4E0 f end=0060E560 +Script_GetAttackPowerForStat 0060E560 f end=0060E626 +Script_UnitGUID 0060E630 f end=0060E731 +Script_UnitName 0060E740 f end=0060E994 +Script_UnitPVPName 0060E9A0 f end=0060EA53 +Script_UnitXP 0060EA60 f end=0060EADB +Script_UnitXPMax 0060EAE0 f end=0060EB5B +Script_UnitHealth 0060EB60 f end=0060EC57 +Script_UnitHealthMax 0060EC60 f end=0060ED37 +Script_UnitPower 0060ED40 f end=0060EF3B +Script_UnitPowerMax 0060EF40 f end=0060F0F2 +Script_UnitPowerType 0060F100 f end=0060F34F +Script_UnitOnTaxi 0060F350 f end=0060F3CE +Script_UnitIsFeignDeath 0060F3D0 f end=0060F47A +Script_UnitIsDead 0060F480 f end=0060F574 +Script_UnitIsGhost 0060F580 f end=0060F675 +Script_UnitIsDeadOrGhost 0060F680 f end=0060F783 +Script_UnitIsConnected 0060F790 f end=0060F85C +Script_UnitAffectingCombat 0060F860 f end=0060F8DE +Script_UnitSex 0060F8E0 f end=0060F9D8 +Script_UnitLevel 0060F9E0 f end=0060FB91 +Script_GetMoney 0060FBA0 f end=0060FC39 +Script_GetHonorCurrency 0060FC40 f end=0060FCB5 +Script_GetArenaCurrency 0060FCC0 f end=0060FD35 +Script_UnitRace 0060FD40 f end=0060FEBC +Script_UnitClass 0060FEC0 f end=0061003C +Script_UnitClassBase 00610040 f end=00610198 +Script_UnitResistance 006101A0 f end=006102F1 +Script_UnitStat 00610300 f end=00610441 +Script_UnitAttackBothHands 00610450 f end=0061054B +Script_UnitRangedDamage 00610550 f end=006107C1 +Script_UnitRangedAttack 006107D0 f end=0061085D +Script_UnitDamage 00610860 f end=006109F2 +Script_UnitAttackSpeed 00610A00 f end=00610B59 +Script_UnitAttackPower 00610B60 f end=00610C93 +Script_UnitRangedAttackPower 00610CA0 f end=00610DD3 +Script_UnitDefense 00610DE0 f end=00610EB4 +Script_UnitArmor 00610EC0 f end=00610FA6 +Script_UnitCharacterPoints 00610FB0 f end=00611092 +Script_UnitIsTapped 00611130 f end=006111A9 +Script_UnitIsTappedByPlayer 006111B0 f end=00611229 +Script_UnitIsTappedByAllThreatList 00611230 f end=006112A9 +Script_UnitIsTrivial 006112B0 f end=00611327 +Script_UnitHasRelicSlot 00611330 f end=006113D9 +Script_SetPortraitTexture 006113E0 f end=006115F9 +Script_HasFullControl 00611600 f end=0061166E +Script_GetComboPoints 00611670 f end=00611779 +Script_UnitCreatureType 00611780 f end=00611812 +Script_UnitCreatureFamily 00611820 f end=006118B2 +Script_GetResSicknessDuration 006118C0 f end=00611A1C +Script_GetPVPSessionStats 00611A20 f end=00611ACB +Script_GetPVPYesterdayStats 00611AD0 f end=00611B7B +Script_GetPVPLifetimeStats 00611B80 f end=00611C38 +Script_UnitPVPRank 00611C40 f end=00611CA2 +Script_GetPVPRankInfo 00611CB0 f end=00611DE9 +Script_UnitCastingInfo 00611DF0 f end=0061208A +Script_UnitChannelInfo 00612090 f end=00612260 +Script_IsFlyableArea 00612260 f end=006122F4 +Script_IsIndoors 00612300 f end=0061235B +Script_IsOutdoors 00612360 f end=006123BB +Script_IsOutOfBounds 006123C0 f end=00612421 +Script_IsFalling 00612430 f end=00612497 +Script_IsSwimming 006124A0 f end=006124FC +Script_IsFlying 00612500 f end=00612592 +Script_IsMounted 006125A0 f end=00612605 +Script_IsStealthed 00612610 f end=0061266F +Script_UnitIsSameServer 00612670 f end=006127E6 +Script_GetUnitHealthModifier 006127F0 f end=00612870 +Script_GetUnitMaxHealthModifier 00612870 f end=006128FB +Script_GetUnitPowerModifier 00612900 f end=00612980 +Script_GetUnitHealthRegenRateFromSpirit 00612980 f end=00612A00 +Script_GetUnitManaRegenRateFromSpirit 00612A00 f end=00612A86 +Script_GetManaRegen 00612A90 f end=00612B38 +Script_GetPowerRegen 00612B40 f end=00612BE6 +Script_GetExpertise 00612BF0 f end=00612CA4 +Script_GetExpertisePercent 00612CB0 f end=00612D4B +Script_ReportPlayerIsPVPAFK 00612D50 f end=00612E17 +Script_PlayerIsPVPInactive 00612E20 f end=00612F08 +Script_UnitInRange 00612F10 f end=00613020 +Script_GetRuneCooldown 00613020 f end=0061313E +Script_GetRuneCount 00613140 f end=006131DB +Script_GetRuneType 006131E0 f end=00613207 +Script_GetUnitSpeed 00613290 f end=0061332B +Script_GetUnitPitch 00613330 f end=006133CB +Script_UnitInVehicle 006133D0 f end=0061349E +Script_UnitUsingVehicle 006134A0 f end=0061356E +Script_UnitControllingVehicle 00613570 f end=006135FE +Script_UnitInVehicleControlSeat 00613700 f end=00613740 +Script_UnitHasVehicleUI 00613740 f end=00613780 +Script_UnitTargetsVehicleInRaidUI 00613780 f end=006137C1 +Script_UnitVehicleSkin 006137D0 f end=00613822 +Script_UnitVehicleSeatCount 00613830 f end=006138BC +Script_UnitVehicleSeatInfo 006138C0 f end=006139A6 +Script_UnitSwitchToVehicleSeat 006139B0 f end=00613A5C +Script_UnitThreatSituation 00613A60 f end=00613B31 +Script_UnitDetailedThreatSituation 00613B40 f end=00613C85 +Script_UnitIsControlling 00613C90 f end=00613D1C +Script_CanEjectPassengerFromSeat 00613D20 f end=00613E0F +Script_EjectPassengerFromSeat 00613E10 f end=00613ECD +Script_RespondInstanceLock 00613ED0 f end=00613F8C +Script_GetPlayerInfoByGUID 00613F90 f end=0061413A +Script_IsXPUserDisabled 00614140 f end=00614187 +Script_UnitBuff 00614CA0 f end=00614CEF +Script_UnitDebuff 00614CF0 f end=00614D3F +Script_UnitAura 00614D40 f end=00614D83 +Script_GetVehicleUIIndicator 00614E60 f end=00614EEE +Script_GetVehicleUIIndicatorSeat 00614EF0 f end=00614FC6 +CopyCursorImage 006160B0 f end=00616211 type="int32_t __usercall func@(uint32_t** image@, MipBits* mipImages@, uint32_t width@, uint32_t height)" +UpdateCursor 006162C0 f end=006163AD +CursorInitialize 006163B0 f end=006164A5 +CursorSetMode 00616800 f end=0061682E type="void __stdcall func(CURSORMODE mode)" +GxXformPush_EGxXform_C44Matrix 00616AD0 f end=00616AE8 +nullsub_4 00632050 f +nullsub_5 00653A10 f +GxDevCreate 00681290 f end=00681301 +GxSceneClear 006813B0 f end=006813CD +GxTexUpdate 006813D0 f end=006813EC +GxLog 006817E0 f end=006817F5 +GxPrimIndexPtr 00681AB0 f end=00681AFB +GxPrimVertexPtr 00681B00 f +CGxTexFlags__CGxTexFlags 00681BE0 f end=00681CAB ; UC +GxTexCreate 00681CB0 f end=00681D87 +GxDrawLockedElements 00682340 f end=0068239E +GxPrimVertexPtr_FFP 00682400 f end=00682781 ; this is one of the functions named 'GxPrimVertexPtr' that uses the fixed-function pipeline +GxPrimLockVertexPtrs 006828C0 f end=006828FE +GxScenePresent 00682A00 f end=00682A33 +CGxDevice__DeviceCreate_WindowProc_CGxFormat 00682CB0 f end=00682CCB +CGxDevice__DeviceSetBaseMipLevel 00682D00 f end=00682D10 +CGxDevice__DeviceApi 00682D20 f end=00682D27 +CGxDevice__IDevIsWindowed 00682D40 f end=00682D48 +CGxDevice__DeviceCurWindow 00682D70 f end=00682D76 +CGxDevice__ScenePresent 00682E50 f end=00682E66 +CGxDevice__PrimCalcCount 00682F40 f end=00682F66 +CGxDevice__LightEnable 00683080 f end=006830A4 +CGxDevice__NeedsUpdate 006830B0 f end=006830F9 +CGxDevice__MasterEnable 00683100 f end=00683121 +CGxDevice__BufData 00683130 f end=00683142 +CGxDevice__BufLock 00683150 f end=00683171 +CGxDevice__BufUnlock 00683180 f end=006831A0 +CGxDevice__ShaderConstantsClear 006833A0 f end=006833DD +CGxDevice__ShaderConstantsSet 006833E0 f end=00683554 +CGxDevice__ShaderConstantsLock 00683560 f end=00683577 +CGxDevice__ShaderConstantsUnlock 00683580 f end=006835D6 +CGxDevice__ICursorDestroy 006835E0 f end=00683602 +CGxDevice__ICursorUpdate 00683610 f end=00683632 +CGxDevice__CursorSetVisible 00683640 f end=00683650 +CGxDevice__CursorLock 00683650 f end=00683657 +CGxDevice__CursorSetDepth 00683660 f end=00683670 +CGxDevice__DeviceSetFormat 006840F0 f end=0068416C +CGxDevice__DeviceSetGamma 00684190 f end=006841AF +CGxDevice__DeviceSetDefWindow 00684360 f end=006843B0 +CGxDevice__ClipPlaneSet 00684440 f end=006844B9 +CGxDevice__LightSet 006847D0 f end=00684843 +CGxDevice__BufStream 00684850 f end=0068489F +CGxDevice__TexMarkForUpdate 006848A0 f end=000684900 +CGxDevice__ITexMarkAsUpdated 00684900 f end=0068492D +CGxDevice__IShaderLoad 00684970 f end=00684AC8 +CGxDevice__ICursorCreate 00684AD0 f end=00684B4A +CGxDevice__CursorUnlock 00684B50 f end=00684B99 +CGxDevice__Log 00684C20 f end=00684C3E +CGxDevice__Log_CGxCaps 00684C40 f end=00684D07 ; CGxDevice::Log(CGxCaps const&) const +CGxDevice__Log 00684D10 f end=00684D6C +CGxDevice__IRsDirty 00685970 f end=006859DB +CGxDevice__IRsForceUpdate 006859E0 f end=00685A65 +CGxDevice__IRsForceUpdate_EGxRenderState 006859E0 f end=00685A65 ; CGxDevice::IRsForceUpdate(EGxRenderState) +CGxDevice__IRsForceUpdate 00685A70 f end=00685B4E ; CGxDevice::IRsForceUpdate() +CGxDevice__IRsSync 00685B50 f end=00685BFE +CGxDevice__TexCreate 00685C60 f end=00685CCB +CGxDevice__MasterEnableSet 00685EB0 f end=00685F33 +CGxDevice__RsSet 00685F50 f end=00685FB0 +CGxDevice__RsPop 00685FB0 f end=00686116 +CGxDevice__BufCreate 00687660 f end=006876C9 +CGxDevice__PoolCreate 006876D0 f end=0068773F +CGxDevice__ICursorDraw 00687A90 f end=00687FCA +CGxDevice__PoolDestroy 00688340 f end=00688372 +CGxDevice__CGxDevice 00688690 f end=0068903F +CGxDevice__ShaderCreate 006897C0 f end=00689A49 +CGxShader__Valid 00689A50 f end=00689A6F +CGxDevice__NewD3d 00689EF0 f end=00689F14 +CGxDeviceOpenGl__CGxDeviceOpenGl 0068BBC0 f end=0068BD15 +CGxDevice__NewOpenGl 0068BF20 f end=0068BF44 +CGxDevice__NewD3d9Ex 0068C220 f end=0068C244 +CGxDeviceD3d__ICreateD3dIB 0068E180 f end=0068E1E8 +CGxDeviceD3d__ISetPresentParms 0068E250 f end=0068E448 +CGxDeviceD3d__PoolDestroy 0068E720 f end=0068E742 +CGxDeviceD3d__CursorSetVisible 0068E750 f end=0068E7D6 +CGxDeviceD3d__ICursorDraw 0068E810 f end=0068E8F2 +CGxDeviceD3d__ICursorCreate 0068E900 f end=0068E975 +CGxDeviceD3d__ICreateWindow 0068EBB0 f end=0068ED78 +CGxDeviceD3d__ILoadD3dLib 0068ED80 f end=0068EE13 +CGxDeviceD3d__ISetCaps 0068EE20 f end=0068F36D +CGxDeviceD3d__ICreateD3dDevice 0068F3D0 f end=0068F692 +CGxDeviceD3d__IBufUnlock 0068FA60 f end=0068FADC +CGxDeviceD3d__BufUnlock 0068FAE0 f end=0068FB07 +CGxDeviceD3d__IBufLock 0068FB10 f end=0068FCDC +CGxDeviceD3d__BufLock 0068FCE0 f end=0068FCFE +CGxDeviceD3d__BufData 0068FD00 f end=0068FD49 +CGxDeviceD3d__CGxDeviceD3d 0068FD50 f end=0068FE80 +CGxDeviceD3d__DeviceWM 00690230 f end=0069038D +CGxDeviceD3d__DeviceSetFormat 006904D0 f end=006905E8 +CGxDeviceD3d__ICreateD3d 00690680 f end=00690742 +CGxDeviceD3d__DeviceCreate_WindowProc_CGxFormat 00690750 f end=00690821 +CGxDeviceD3d__ICreateD3dVB 0069FB00 f end=0069FB68 +CGxDeviceD3d__CreatePoolAPI 0069FB70 f end=0069FBB8 +CGxDeviceD3d__ICursorDestroy 006A00C0 f end=006A0102 +CGxDeviceD3d__WindowProcD3d 006A0360 f end=006A0834 +CGxDeviceD3d9Ex__CGxDeviceD3d9Ex 006A1A90 f end=006A1C24 +CGxDeviceD3d__ITexCreate 006A2C00 f end=006A2D7E +CGxDeviceD3d__ITexUpload 006A2D80 f end=006A3062 +CGxDeviceD3d__ITexMarkAsUpdated 006A3070 f end=006A30CF +CGxDeviceD3d__ISceneBegin 006A3350 f end=006A3417 +CGxDeviceD3d__ISceneEnd 006A3420 f end=006A3449 +CGxDeviceD3d__ScenePresent 006A3450 f end=006A3611 +CGxDeviceD3d__Draw 006A3620 f end=006A3716 +CGxDeviceD3d__IStateSyncEnables 006A3810 f end=006A386E +CGxDeviceD3d__ISetVertexBuffer 006A39E0 f end=006A3A59 +CGxDeviceD3d__IStateSetD3DDefaults 006A3A60 f end=006A3C34 +CGxDeviceD3d__DsSet 006A3C40 f end=006A40F2 +CGxDeviceD3d__ISetColorOp 006A4190 f end=006A41EC +CGxDeviceD3d__ISetAlphaOp 006A41F0 f end=006A424C +CGxDeviceD3d__IStateSyncMaterial 006A4700 f end=006A4846 +CGxDeviceD3d__IStateSyncXforms 006A4850 f end=006A48FE +CGxDeviceD3d__ISetTexture 006A4900 f end=006A4AB3 +CGxDeviceD3d__IRsSendToHw 006A4C30 f end=006A5499 +CGxDeviceD3d__ICreateD3dVertexDecl 006A5540 f end=006A5677 +CGxDeviceD3d__IStateSyncVertexPtrs 006A5700 f end=006A5934 +CGxDeviceD3d__IStateSync 006A5940 f end=006A59f5 +CGxDeviceD3d__CapsWindowSize 006A5A00 f end=006A5A25 +CGxDeviceD3d__IXformSetWorld 006A5A30 f end=006A5A92 type="void __thiscall func(CGxDeviceD3d* this)" +CGxDeviceD3d__IBindPixelShader 006A5C70 f end=006A5D48 +CGxDeviceD3d__IShaderCreate 006A5E10 f end=006A5E36 +CGxDevice__ITexWHDStartEnd 006A5EF0 f end=006A5FDF +CGxDeviceD3d__SceneClear 006A74B0 f end=006A7538 +CGxDeviceD3d__CapsWindowSizeInScreenCoords 006A9920 f end=006A99D4 +CGxDeviceD3d__XformSetProjection 006A9B40 f end=006A9D88 +CGxDeviceD3d__XformSetView 006A9E00 f end=006A9E09 +CGxDeviceD3d__IShaderConstantsFlush 006A9FE0 f end=006AA06D +CGxDeviceD3d__IShaderCreatePixel 006AA070 f end=006AA0C5 +CGxDeviceD3d__IShaderCreateVertex 006AA0D0 f end=006AA125 +CGxDeviceD3d__ShaderCreate 006AA130 f end=006AA18A +CGxDeviceD3d__IBindVertexShader 006AA2F0 f end=006AA346 +CTgaFile__ColorMapEntryBytes 006AA350 f end=006AA379 ; UC +CTgaFile__ColorMapBytes 006AA380 f end=006AA3B0 +CTgaFile__ValidateColorDepth 006AA3B0 f end=006AA3E0 type="int32_t __thiscall func(CTgaFile* this)" +CTgaFile__PreImageBytes 006AA3E0 f end=006AA41B type="uint32_t __thiscall func(CTgaFile* this)" +CTgaFile__AddAlphaChannel_internal 006AA420 f end=006AA51E type="void __thiscall func(CTgaFile* this, uint8_t* pAlphaData, uint8_t* pNoAlphaData, uint8_t* alpha)" ; private utility method +CTgaFile__ReadRawImage 006AA520 f end=006AA62F +CTgaFile__RLEDecompressImage 006AA630 f end=006AA6F2 type="int32_t __thiscall func(CTgaFile* this, uint8_t* pRLEData, uint8_t* pData)" +CTgaFile__SetTopDown 006AA700 f end=006AA81D type="void __thiscall func(CTgaFile* this, int32_t set)" +CTgaFile__ImageTGA32Pixel 006AA840 f end=006AA867 type="TGA32Pixel* __thiscall func(CTgaFile* this)" +CTgaFile__RemoveAlphaChannels 006AA870 f end=006AA948 type="int32_t __thiscall func(CTgaFile* this)" +CTgaFile__Close 006AAF40 f end=006AAFA5 type="int32_t __thiscall func(CTgaFile* this)" +CTgaFile__Open 006AAFB0 f end=006AB0D4 type="int32_t __thiscall func(CTgaFile* this, char* filename, int32_t a3)" +CTgaFile__ConvertColorMapped 006AB0E0 f end=006AB212 +CTgaFile__ReadRleImage 006AB220 f end=006AB381 +CTgaFile__AddAlphaChannel 006AB390 f end=006AB447 type="int32_t __thiscall func(CTgaFile* this, void* pImg)" ; public method +CTgaFile__ReadColorMappedImage 006AB450 f end=006AB4A1 +CTgaFile__LoadImageData 006AB4B0 f end=006AB5B8 type="int32_t __thiscall func(CTgaFile* this, int32_t flags)" +GetBitDepth 006AB5C0 f end=006AB614 +CalcLevelSize 006AB620 f end=006AB6B9 type="uint32_t __cdecl func(uint32_t level, uint32_t width, uint32_t height, uint32_t fourCC)" +CalcLevelCount 006AB700 f end=006AB75C type="uint32_t __stdcall func(uint32_t width, uint32_t height)" +MippedImgAllocA 006AB760 f end=006AB7DF type="MipBits* __stdcall func(uint32_t fourCC, uint32_t width, uint32_t height, char* filename, int32_t linenumber)" +MippedImgSet 006AB810 f end=006AB85E type="void __stdcall func(uint32_t fourCC, uint32_t width, uint32_t height, MipBits* bits)" +FullShrink 006AB860 f end=006ABAAF type="void _stdcall func(C4Pixel* dest, uint32_t destWidth, uint32_t destHeight, C4Pixel* source, uint32_t sourceWidth, uint32_t sourceHeight)" +CBLPFile__Close 006AE8B0 f end=006AE8DA type="void __thiscall func(CBLPFile* this)" +CBLPFile__Source 006AE900 f end=006AE990 type="int32_t __thiscall func(CBLPFile* this, void* fileBits)" +CBLPFile__DecompPalFastPath 006AE990 f end=006AE9D6 type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t colorSize)" +CBLPFile__DecompPalARGB8888 006AE9E0 f end=006AEB93 type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t colorSize)" +CBLPFile__DecompPalARGB4444DitherFloydSteinberg 006AEBA0 f end=006AEE61 type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)" +CBLPFile__DecompPalARGB1555DitherFloydSteinberg 006AEE70 f end=006AF133 type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)" +CBLPFile__DecompPalARGB565DitherFloydSteinberg 006AF140 f end=006AF33F type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)" +CBLPFile__DecompPalARGB2565DitherFloydSteinberg 006AF340 f end=006AF65D type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)" +CBLPFile__Pixels 006AF6A0 f end=006AF6D1 type="uint32_t __thiscall func(CBLPFile* this, uint32_t mipLevel)" +CBLPFile__GetFormatSize 006AF730 f end=006AF7E9 type="int32_t __thiscall func(CBLPFile *this, PIXEL_FORMAT format, uint32_t mipLevel, uint32_t* size, uint32_t* stride)" +CBLPFile__DecompPal 006AF810 f end=006AF984 type="int32_t __thiscall func(CBLPFile* this, PIXEL_FORMAT format, uint32_t mipLevel, uint8_t* data, void* tempBuffer)" +CBLPFile__Lock2 006AFCE0 f end=006AFF06 type="int32_t __thiscall func(CBLPFile* this, char* fileName, PIXEL_FORMAT format, uint32_t mipLevel, unsigned char* data, uint32_t* stride)" +CBLPFile__Open 006AFF10 f end=006AFFCF type="int32_t __thiscall func(CBLPFile* this, char* filename)" +CBLPFile__LockChain2 006AFFD0 f end=006B012E type="int32_t __thiscall func(CBLPFile* this, char* fileName, PIXEL_FORMAT format, MipBits** images, uint32_t mipLevel, int32_t a6)" +nullsub_154 006B0960 f +nullsub_151 006B1B80 f +nullsub_6 006B1B90 f +nullsub_155 006B1BA0 f +Script_GetNumWhoResults 006B33D0 f end=006B3428 +Script_SetWhoToUI 006B3430 f end=006B344C +Script_GetNumFriends 006B4060 f end=006B412B +Script_GetFriendInfo 006B4130 f end=006B43F3 +Script_SetSelectedFriend 006B4400 f end=006B44A8 +Script_GetSelectedFriend 006B44B0 f end=006B44E3 +Script_ShowFriends 006B44F0 f end=006B455F +Script_GetNumIgnores 006B4560 f end=006B45BB +Script_GetNumMutes 006B45C0 f end=006B461B +Script_GetIgnoreName 006B4620 f end=006B4759 +Script_GetMuteName 006B4760 f end=006B4899 +Script_SetSelectedIgnore 006B48A0 f end=006B4943 +Script_SetSelectedMute 006B4950 f end=006B49F3 +Script_GetSelectedIgnore 006B4A00 f end=006B4A33 +Script_GetSelectedMute 006B4A40 f end=006B4A73 +Script_GetWhoInfo 006B4A80 f end=006B4C7D +Script_SortWho 006B4EB0 f end=006B4EDA +Script_AddFriend 006B6AF0 f end=006B6B44 +Script_SendWho 006B6B50 f end=006B6BA0 +Script_AddOrDelIgnore 006B6BA0 f end=006B6BCB +Script_AddOrDelMute 006B6BD0 f end=006B6BFB +Script_AddIgnore 006B6C00 f end=006B6C2B +Script_AddMute 006B6C30 f end=006B6C5B +Script_IsIgnored 006B6C60 f end=006B6CE7 +Script_IsMuted 006B6CF0 f end=006B6D75 +Script_IsIgnoredOrMuted 006B6D80 f end=006B6E05 +Script_AddOrRemoveFriend 006B7B70 f end=006B7BC4 +Script_RemoveFriend 006B7BD0 f end=006B7C8A +Script_SetFriendNotes 006B7C90 f end=006B7D6F +Script_DelIgnore 006B7D70 f end=006B7D9B +Script_DelMute 006B7DA0 f end=006B7DCB +GxuFontAddToBatch 006BCE10 f end=006BCE32 +GxuFontRenderBatch 006BCE40 f end=006BCE52 +GxuFontGetTextExtent 006BCE60 f end=006BCE98 +GxuFontGetMaxCharsWithinWidth 006BCEA0 f end=006BCEE7 +GxuFontGetOneToOneHeight 006BD020 f end=006BD069 +GxuFontSetStringPosition 006BD0A0 f end=006BD0BE +GxuFontAddShadow 006BD0C0 f end=006BD0DF +GxuDetermineQuotedCode 006BD5A0 f end=006BD89D +GxuFontDestroyString 006BDFC0 f end=006BE014 +GxuFontWindowSizeChanged 006BE020 f end=006BE221 +GxuFontCreateString 006BE2B0 f end=006BE390 +GxuFontClearBatch 006BE390 f end=006BE3AD +GxuFontDestroyBatch 006BE3B0 f end=006BE3DD +GxuFontUpdate 006BE3E0 f end=006BEE87 +GxuFontCreateBatch 006BF160 f end=006BF202 +GxuXformCreateProjection_Exact 006BF370 f end=006BF4B2 +GxuXformCalcFrustumCorners 006BF6D0 f end=006BFB60 +GxuUpdateSingleColorTexture 006BFDA0 f end=006BFDFE +GxuXformCreateProjection_SG 006BFE00 f end=006BFE5C +GxuXformCreateLookAtSgCompat 006BFE60 f end=006C004D +IGxuFontGlyphRenderGlyph 006C8CC0 f end=006C8E6B +nullsub_152 00743550 f +nullsub_153 00743560 f +Script_CombatTextSetActiveUnit 0074D580 f end=0074D5A8 +Script_CombatLogSetRetentionTime 0074D5B0 f end=0074D5FD +Script_CombatLog_Object_IsA 0074D600 f end=0074D6A3 +Script_CombatLogGetRetentionTime 0074D9E0 f end=0074D9FF +Script_CombatLogGetCurrentEntry 0074F2B0 f end=0074F2CC +Script_CombatLogResetFilter 0074FA60 f end=0074FA6D +Script_CombatLogGetNumEntries 0074FA70 f end=0074FADD +Script_CombatLogSetCurrentEntry 0074FAE0 f end=0074FC20 +Script_CombatLogAdvanceEntry 0074FC20 f end=0074FD36 +Script_CombatLogAddFilter 0074FF70 f end=00750206 +Script_CombatLogClearEntries 00751120 f end=0075114B +SetInputString 00763730 f end=007637CD ; UC +ReserveInputSpace 007637D0 f end=0076382B +ResetHighlight 00763830 f end=00763855 +UpdateHighlight 00763860 f end=00763996 +OnMouseUp 007639A0 f end=007639CF +OnMouseMove 007639D0 f end=00763A54 +MakeCommandCurrent 00763A60 f end=00763AAA +ConsoleCommandHistoryPrev 00763B40 f end=00763B83 ; UC +ConsoleCommandHistoryNext 00763B90 f end=00763BD6 ; UC +OnKeyUp 00763BE0 f end=00763C0A +ConsolePostClose 00763C50 f end=00763C5D +EventCloseCallback 00763D60 f end=00763D71 +DrawBackground 00763DF0 f end=00764039 +DrawHighLight 00764040 f end=00764196 +DrawCaret 007641A0 f end=007643EA +PaintBackground 007643F0 f end=00764413 +GetInputLine 00764520 f end=007645D3 +PaintText 007645E0 f end=00764788 +PasteInInputLine 00764800 f end=00764985 +OnChar 00764990 f end=00764A03 +s_active 007649af l ; int32 as boolean +OnMouseDown 00764A10 f end=00764B88 +OnKeyDownRepeat 00764B90 f end=00764E4F +ConsoleWrite 00765270 f end=00765359 +ConsoleWriteA 007653B0 f end=00765400 +ConsoleCommandExecute 007658A0 f end=007659BF +OnIdle 007659C0 f end=00765AE5 +OnKeyDown 00765AF0 f end=00765FB2 +RegisterHandlers 00765FF0 f end=007660C2 +ConsoleScreenInitialize 00766140 f end=00766295 +CVarLoadFile 00766530 f end=007665C2 +CVar__Set 007668C0 f end=00766936 +CVarSaveFile 00767100 f end=0076719C +CVar__Destroy 007673F0 f end=00767434 +CVar__Register 00767FC0 f end=007681E9 +CVar__Initialize 00768340 f end=00768402 +ConsoleCommand_Quit 00768410 f end=0076841B +ConsoleCommandHistory 00768440 f end=0076845B +ConsoleCommandUnregister 007689E0 f end=00768A19 +ConsoleCommandRegister 00769100 f end=007691B3 +ConsoleAccessGetEnabled 00769230 f end=00769236 +ConsoleDeviceInitialize 0076AB80 f end=0076B287 +SMemSetDebugFlags 0076E4A0 f end=0076E4D2 +SMemAlloc 0076E540 f end=0076E59A type="void* __stdcall func(uint32_t bytes, char* filename, int32_t linenumber, uint32_t flags)" +SMemFree 0076E5A0 f end=0076E5C4 type="int32_t __stdcall func(void* ptr, char* filename, int32_t linenumber, uint32_t flags)" +SMemReAlloc 0076E5E0 f end=0076E6D6 type="void* __stdcall func(void* ptr, uint32_t bytes, char* filename, int32_t linenumber, uint32_t flags)" +SStrChr 0076E6E0 f end=0076E712 +SStrChrR 0076E720 f end=0076E756 +SStrCmp 0076E760 f end=0076E77B +SStrCmpI 0076E780 f end=0076E79B +SStrCopy 0076ED20 f end=0076ED98 +SStrLen 0076EE30 f end=0076EE5E +SStrPack 0076EF70 f end=0076F001 +SStrPrintf 0076F070 f end=0076F09E type="int32_t __stdcall func(char* dest, size_t maxchars, char* format, ...)" +SStrVPrintf 0076F0A0 f end=0076F0CE +SStrTokenize 0076F1E0 f end=0076F331 +SStrHashHT 0076F640 f end=0076F6B9 +SRegLoadValue 00770840 f end=007708E9 +SRegSaveValue 007709A0 f end=007709E8 +SErrSetLastError 00771870 f end=00771886 +SErrSetLogTitleString 00771890 f end=007718F2 +SErrSetLogTitleCallback 00771900 f end=00771957 +SErrRegisterHandler 00771B80 f end=00771C15 +SErrCatchUnhandledExceptions 00772B20 f end=00772B2C +SCmdRegisterArgList 00773590 f end=007737C2 +SCmdProcess 00773890 f end=00773986 +SCmdProcessCommandLine 00773990 f end=007739AD +StormInitialize 007739E0 f end=007739F4 +StormSetOption 00773A80 f end=00773C81 +SCritSect__SCritSect 00774620 f end=0077462E type="SCritSect* __thiscall func(SCritSect* this)" +SCritSect__destructor 00774630 f end=00774638 type="void __thiscall func(SCritSect *this)" +SCritSect__Enter 00774640 f end=00774648 type="void __thiscall func(SCritSect *this)" +SCritSect__Leave 00774650 f end=00774658 type="void __thiscall func(SCritSect *this)" +CSRWLock__Leave 00774660 f end=00774675 +SSyncObject__Wait 00774690 f end=007746A4 +SEvent__Set 00774720 f end=0077472A +SEvent__Reset 00774730 f end=0077473A +SRgnDelete 00777940 f end=00777971 +SRgnCreate 00777980 f end=00777A78 +Script_VoiceEnumerateOutputDevices 007DAB80 f end=007DAC34 +Script_VoiceEnumerateCaptureDevices 007DAC40 f end=007DACEA +Script_VoiceSelectOutputDevice 007DACF0 f end=007DADD2 +Script_VoiceSelectCaptureDevice 007DAE40 f end=007DAF22 +Script_VoiceGetCurrentOutputDevice 007DAF90 f end=007DAFD7 +Script_VoiceGetCurrentCaptureDevice 007DAFE0 f end=007DB027 +Script_GetNumVoiceSessions 007DB030 f end=007DB0AA +Script_GetVoiceSessionInfo 007DB0B0 f end=007DB1E3 +Script_GetVoiceCurrentSessionID 007DB1F0 f end=007DB277 +Script_SetActiveVoiceChannelBySessionID 007DB280 f end=007DB36C +Script_GetNumVoiceSessionMembersBySessionID 007DB370 f end=007DB3FB +Script_GetVoiceStatus 007DB8D0 f end=007DB9AC +Script_VoiceIsDisabledByClient 007DC910 f end=007DC94A +Script_GetVoiceSessionMemberInfoBySessionID 007DEEF0 f end=007DF0AF +Script_UnitIsTalking 007DF0B0 f end=007DF142 +Script_SpellIsTargeting 007FDCD0 f end=007FDD0A +Script_SpellCanTargetItem 007FDD10 f end=007FDD56 +Script_SpellCanTargetGlyph 007FDD60 f end=007FDDA6 +Script_SpellTargetItem 008007E0 f end=008008C7 +Script_CancelItemTempEnchantment 008021D0 f end=0080226B +Script_CannotBeResurrected 00802270 f end=008022C9 +Script_SpellCanTargetUnit 00804190 f end=0080421D +Script_CancelUnitBuff 00804220 f end=00804420 +Script_SpellStopTargeting 00809E30 f end=00809E96 +Script_SpellStopCasting 00809EA0 f end=00809F7E +Script_SpellTargetUnit 0080DC00 f end=0080DCE3 +FrameScript_Execute 00819EA0 f end=0081A2B5 type="void __stdcall func(int32_t function, FrameScript_Object* object, int32_t args, char* args_fmt, FrameScript_EventObject* eventObject)" +FrameScript_SignalEvent 0081B530 f end=0081B549 +Script_GetText 0081B720 f end=0081B7AF +Script_CreateFont 0081B7B0 f end=0081B81E +Script_GetCurrentKeyBoardFocus 0081B820 f end=0081B86C +Script_EnumerateFrames 0081B9C0 f end=0081BAAA +Script_GetNumFrames 0081BAB0 f end=0081BB15 +Script_CreateFrame 0081BB20 f end=0081BE68 +Script_GetFramesRegisteredForEvent 0081BE70 f end=0081BF4D +_lua_gettop 0084DBD0 f +_lua_settop 0084DBF0 f +_lua_insert 0084DCC0 f +_lua_type 0084DEB0 f +_lua_isnumber 0084DF20 f +_lua_isstring 0084DF60 f +_lua_tonumber 0084E030 f +_lua_tolstring 0084E0E0 f +_lua_touserdata 0084E1C0 f +_lua_pushnil 0084E280 f +_lua_pushnumber 0084E2A0 f +_lua_pushstring 0084E350 f +_lua_rawget 0084E600 f +_lua_rawgeti 0084E670 f +_lua_rawset 0084E970 f +_luaL_error 0084F280 f +_luaL_unref 0084F7A0 f +_luaG_runerror 00850920 f +_luaD_throw 008562E0 f +_luaD_precall 00856370 f +luaD_call 00856760 f +_luaV_execute 00857CA0 f +RestoreMouse 008695B0 f end=008695FB +OsInputInitialize 00869720 f end=00869757 ; actually called by IEvtInputInitialize, but this is optimized out +OsInputDestroy 00869760 f end=008697D3 +OsInputSetEventPollProc 00869D90 f end=00869D9D +CenterMouse 00869DB0 f end=00869DF6 +OsInputGet 00869E00 f end=0086A01A +OsInputSetMouseMode 0086A020 f end=0086A063 +OsInputGetMousePosition 0086A0D0 f end=0086A130 +OsInputSetMousePosition 0086A130 f end=0086A194 +OsGetDefaultWindowRect 0086A1A0 f end=0086A20C +OsGetAsyncTimeMs 0086AE20 f end=0086AE2B +OsSystemEnableCpuLog 0086B0C0 f end=0086B0CB +OsGetProcessorCount 0086B240 f end=0086B27D +OsGetExeName 0086BBD0 f end=0086BC2F +OsPathGetRootChars 0086BC30 f end=0086BC9E +OsPathStripFilename 0086BE50 f end=0086BE9B +OsGetExePath 0086BEA0 f end=0086BEBE +OsGuiGetWindow 0086C6A0 f end=0086C6CE +OsIMEInitialize 0086D0A0 f end=0086D0B8 +OsIMEDestroy 0086D0C0 f end=0086D0Df +OsCallSetContext 0086F5A0 f end=0086F5EA +OsCallInitialize 0086F760 f end=0086F875 +OsCallInitializeContext 0086F880 f end=0086F902 +OsClipboardPutString 008722A0 f end=008722BF +return_zero4_sub 008E5250 f end=008E5253 ; Script_ToggleTris +ConsoleCommandHistoryDepth 0095BFB0 f end=0095BFB6 +CDataRecycler__Clear 0095CEC0 f end=0095CF39 +CDataRecycler__GetData 0095CF40 f end=0095CFAE +CDataRecycler__PutData 0095CFB0 f end=0095D077 +CDataAllocator__GetData 0095D110 f ; CDataAllocator::GetData(int, char const*, int) +CDataAllocator__PutData 0095D1B0 f ; CDataAllocator::PutData(void*, char const*, int) +Script_PlaySound 009858B0 f end=0098594B +Script_PlayMusic 00985950 f end=009859AA +Script_PlaySoundFile 009859B0 f end=00985A0A +Script_StopMusic 00985A10 f end=00985A18 +Script_Sound_ChatSystem_GetNumInputDrivers 00985A20 f end=00985A4A +Script_Sound_ChatSystem_GetInputDriverNameByIndex 00985A50 f end=00985AD5 +Script_Sound_ChatSystem_GetNumOutputDrivers 00985AE0 f end=00985B0A +Script_Sound_ChatSystem_GetOutputDriverNameByIndex 00985B10 f end=00985BAD +Script_Sound_GameSystem_GetNumInputDrivers 00985BB0 f end=00985BDA +Script_Sound_GameSystem_GetInputDriverNameByIndex 00985BE0 f end=00985C65 +Script_Sound_GameSystem_GetNumOutputDrivers 00985C70 f end=00985C9A +Script_Sound_GameSystem_GetOutputDriverNameByIndex 00985CA0 f end=00985D25 +Script_Sound_GameSystem_RestartSoundSystem 00985D30 f end=00985D4E +Script_VoiceChat_StopCapture 00985D50 f end=00985D58 +Script_VoiceChat_RecordLoopbackSound 00985D60 f end=00985DC1 +Script_VoiceChat_StopRecordingLoopbackSound 00985DD0 f end=00985DD8 +Script_VoiceChat_PlayLoopbackSound 00985DE0 f end=00985DE8 +Script_VoiceChat_StopPlayingLoopbackSound 00985DF0 f end=00985DF8 +Script_VoiceChat_IsRecordingLoopbackSound 00985E00 f end=00985E2D +Script_VoiceChat_IsPlayingLoopbackSound 00985E30 f end=00985E5D +Script_VoiceChat_GetCurrentMicrophoneSignalLevel 00985E60 f end=00985E8A +Script_VoiceChat_ActivatePrimaryCaptureCallback 00985E90 f end=00985E98 +Script_VoiceChat_StartCapture 00985EF0 f end=00985F6B +nullsub_7 009D34B0 f +nullsub_8 009D34C0 f +nullsub_9 009D4260 f +nullsub_10 009DB620 f +nullsub_11 009DB630 f +nullsub_12 009DD930 f +nullsub_13 009DD940 f +nullsub_14 009DD950 f +nullsub_15 009DD960 f +nullsub_16 009DD970 f +nullsub_17 009DD980 f +nullsub_18 009DD990 f +nullsub_19 009DD9A0 f +nullsub_20 009DD9B0 f +nullsub_21 009DD9C0 f +nullsub_22 009DD9D0 f +nullsub_23 009DD9E0 f +nullsub_24 009DD9F0 f +nullsub_25 009DDA00 f +nullsub_26 009DDA10 f +nullsub_27 009DDA20 f +nullsub_28 009DDA30 f +nullsub_29 009DDA40 f +nullsub_30 009DDA50 f +nullsub_31 009DDA60 f +nullsub_32 009DDA70 f +nullsub_33 009DDA80 f +nullsub_34 009DDA90 f +nullsub_35 009DDAA0 f +nullsub_36 009DDAB0 f +nullsub_37 009DDAC0 f +nullsub_38 009DDAD0 f +nullsub_39 009DDAE0 f +nullsub_40 009DDAF0 f +nullsub_41 009DDB00 f +nullsub_42 009DDB10 f +nullsub_43 009DDB20 f +nullsub_44 009DDB30 f +nullsub_45 009DDB40 f +nullsub_46 009DDB50 f +nullsub_47 009DDB60 f +nullsub_48 009DDB70 f +nullsub_49 009DDB80 f +nullsub_50 009DDB90 f +nullsub_51 009DDBA0 f +nullsub_52 009DDBB0 f +nullsub_53 009DDBC0 f +nullsub_54 009DDBD0 f +nullsub_55 009DDBE0 f +nullsub_56 009DDBF0 f +nullsub_57 009DDC00 f +nullsub_58 009DDC10 f +nullsub_59 009DDC20 f +nullsub_60 009DDC30 f +nullsub_61 009DDC40 f +nullsub_62 009DDC50 f +nullsub_63 009DDC60 f +nullsub_64 009DDC70 f +nullsub_65 009DDC80 f +nullsub_66 009DDC90 f +nullsub_67 009DDCA0 f +nullsub_68 009DDCB0 f +nullsub_69 009DDCC0 f +nullsub_70 009DDCD0 f +nullsub_71 009DDCE0 f +nullsub_72 009DDCF0 f +nullsub_73 009DDD00 f +nullsub_74 009DDD10 f +nullsub_75 009DDD20 f +nullsub_76 009DDD30 f +nullsub_77 009DDD40 f +nullsub_78 009DDD50 f +nullsub_79 009DDD60 f +nullsub_80 009DDD70 f +nullsub_81 009DDD80 f +nullsub_82 009DDD90 f +nullsub_83 009DDDA0 f +nullsub_84 009DDDB0 f +nullsub_85 009DDDC0 f +nullsub_86 009DDDD0 f +nullsub_87 009DDDE0 f +nullsub_88 009DDDF0 f +nullsub_89 009DDE00 f +nullsub_90 009DDE10 f +nullsub_91 009DDE20 f +nullsub_92 009DDE30 f +nullsub_93 009DDE40 f +nullsub_94 009DDE50 f +nullsub_95 009DDE60 f +nullsub_96 009DDE70 f +nullsub_97 009DDE80 f +nullsub_98 009DDE90 f +nullsub_99 009DDEA0 f +nullsub_100 009DDEB0 f +nullsub_101 009DDEC0 f +nullsub_102 009DDED0 f +nullsub_103 009DDEE0 f +nullsub_104 009DDEF0 f +nullsub_105 009DDF00 f +nullsub_106 009DDF10 f +nullsub_107 009DDF20 f +nullsub_108 009DDF30 f +nullsub_109 009DDF40 f +nullsub_110 009DDF50 f +nullsub_111 009DDF60 f +nullsub_112 009DDF70 f +nullsub_113 009DDF80 f +nullsub_114 009DDF90 f +nullsub_115 009DDFA0 f +nullsub_116 009DDFB0 f +nullsub_117 009DDFC0 f +nullsub_118 009DDFD0 f +nullsub_119 009DDFE0 f +nullsub_120 009DDFF0 f +nullsub_121 009DE000 f +nullsub_122 009DE010 f +nullsub_123 009DE020 f +nullsub_124 009DE030 f +nullsub_125 009DE040 f +nullsub_126 009DE050 f +nullsub_127 009DE060 f +nullsub_128 009DE070 f +nullsub_129 009DE080 f +nullsub_130 009DE090 f +nullsub_131 009DE0A0 f +nullsub_132 009DE0B0 f +nullsub_133 009DE0C0 f +nullsub_134 009DE0D0 f +nullsub_135 009DE0E0 f +nullsub_136 009DE0F0 f +nullsub_137 009DE100 f +nullsub_138 009DE110 f +nullsub_139 009DE120 f +nullsub_140 009DE130 f +nullsub_141 009DE140 f +nullsub_142 009DE150 f +nullsub_143 009DE160 f +nullsub_144 009DE170 f +nullsub_145 009DE180 f +nullsub_146 009DE190 f +nullsub_147 009DE1A0 f +nullsub_148 009DE1B0 f +nullsub_149 009DE1C0 f +nullsub_150 009DE1D0 f +s_pixelFormatToMipBitsCache 009F1074 l +CGxDevice__vtable 00A2DDC0 l type="CGxDevice__vtable" +CGxDeviceOpenGl__vtable 00A2E198 l +s_cursorNames 00AD2808 l type="char*[53]" +CBLPFile__s_eightBitAlphaLookup 00AD90B0 l type="uint8_t[16]" +CBLPFile__s_oneBitAlphaLookup 00AD90C0 l type="uint8_t[2]" +s_interactiveCount 00B417D0 l type="int32_t" +s_messageRecycler 00B41850 l type="CDataRecycler" +CGlueMgr__m_cursorMipBits 00B6A9DC l type="MipBits*" +s_cursorFile 00C25CD0 l type="int8_t" ; wonder why it's this type +s_cursorItemMipsWidth 00C25DD4 l +s_cursorItemMipsHeight 00C25DD8 l +s_cursorItemMips 00C25DDC l +s_cursorItemType 00C25DE0 l +s_cursorResetMode 00C25DE4 l +s_cursorItem 00C25DE8 l type="uint32_t[1024]" +s_cursorMode 00C26DE8 l type="CURSORMODE" +s_cursorImages 00C26DF0 l type="uint32_t[53][1024]" +g_theGxDevicePtr 00C5DF88 l type="CGxDevice*" +CGxDevice__s_uiVertexShader 00C5DFDC l +CGxDevice__s_shadowConstants 00C5DFE0 l +CGxDevice__s_uiPixelShader 00C5FFFC l +isIdent 00C60760 l +CGxDeviceD3d__vtable 00a2e718 l +CGxDeviceD3d9Ex__vtable 00a2f500 l +s_rect 00adbab4 l ; RECTF +s_consoleHotKey 00adbac4 l ; KEY +s_historyIndex 00adbac8 l ; int32 +s_fontHeight 00adbacc l ; float +s_hRect 00adbad4 l ; RECTF +s_baseTextFlags 00adbae4 l ; uint32 +s_mainThread 00b417c8 l type="uint32_t" +s_caretpixheight 00ca1690 l +s_caret 00ca1694 l ; int32 +s_caretpixwidth 00ca1718 l +s_inputString 00ca171c l ; CGxString* +s_currlineptr 00ca1720 l ; CONSOLELINE* +s_layerBackground 00ca1724 l ; HLAYER +s_repeatBuffer 00ca1728 l ; char[64] +s_fontName 00ca1768 l ; char[260] +s_repeatCount 00ca186c l ; uint32 +s_layerText 00ca1870 l ; HLAYER +s_batch 00ca1874 l ; CGxStringBatch* +s_partial 00ca1878 l ; char[100] +s_NumLines 00ca197c l ; int32 +s_completionMode 00ca1980 l +s_completedCmd 00ca1984 l ; int32 +s_textFont 00ca198c l ; HTEXTFONT +s_consoleResizeState 00ca1990 l ; CONSOLERESIZESTATE +s_highlightState 00ca1994 l ; HIGHLIGHTSTATE +s_highlightLeftCharIndex 00ca19a0 l ; uint32 +s_highlightRightCharIndex 00ca19a4 l ; uint32 +s_charSpacing 00ca19a8 l ; float +s_consoleHeight 00ca19b0 l ; float +carettime 00ca19f0 l ; float +g_commandHistory 00ca3a28 l ; char[10394] +g_commandHistoryIndex 00caba28 l ; uint32 +g_defaultCommand 00caba2c l ; command function pointer +g_consoleCommandHash 00caba30 l ; TSHashTable +s_consoleAccessEnabled 00cabcc4 l ; int32 as boolean diff --git a/profile/3.3.5a-windows/symbol/nullsub/func.sym b/profile/3.3.5a-windows/symbol/nullsub/func.sym new file mode 100644 index 0000000..59c8da5 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/nullsub/func.sym @@ -0,0 +1,158 @@ +nullsub_1 0040D3B5 f +nullsub_2 0047ADD0 f +j_nullsub_3 0047B760 f +nullsub_3 005EEB70 f end=005EEB71 ; SErrDisplayAppFatal resolves to this in release mode? +nullsub_4 00632050 f +nullsub_5 00653A10 f +nullsub_154 006B0960 f +nullsub_151 006B1B80 f +nullsub_6 006B1B90 f +nullsub_155 006B1BA0 f +nullsub_152 00743550 f +nullsub_153 00743560 f +nullsub_7 009D34B0 f +nullsub_8 009D34C0 f +nullsub_9 009D4260 f +nullsub_10 009DB620 f +nullsub_11 009DB630 f +nullsub_12 009DD930 f +nullsub_13 009DD940 f +nullsub_14 009DD950 f +nullsub_15 009DD960 f +nullsub_16 009DD970 f +nullsub_17 009DD980 f +nullsub_18 009DD990 f +nullsub_19 009DD9A0 f +nullsub_20 009DD9B0 f +nullsub_21 009DD9C0 f +nullsub_22 009DD9D0 f +nullsub_23 009DD9E0 f +nullsub_24 009DD9F0 f +nullsub_25 009DDA00 f +nullsub_26 009DDA10 f +nullsub_27 009DDA20 f +nullsub_28 009DDA30 f +nullsub_29 009DDA40 f +nullsub_30 009DDA50 f +nullsub_31 009DDA60 f +nullsub_32 009DDA70 f +nullsub_33 009DDA80 f +nullsub_34 009DDA90 f +nullsub_35 009DDAA0 f +nullsub_36 009DDAB0 f +nullsub_37 009DDAC0 f +nullsub_38 009DDAD0 f +nullsub_39 009DDAE0 f +nullsub_40 009DDAF0 f +nullsub_41 009DDB00 f +nullsub_42 009DDB10 f +nullsub_43 009DDB20 f +nullsub_44 009DDB30 f +nullsub_45 009DDB40 f +nullsub_46 009DDB50 f +nullsub_47 009DDB60 f +nullsub_48 009DDB70 f +nullsub_49 009DDB80 f +nullsub_50 009DDB90 f +nullsub_51 009DDBA0 f +nullsub_52 009DDBB0 f +nullsub_53 009DDBC0 f +nullsub_54 009DDBD0 f +nullsub_55 009DDBE0 f +nullsub_56 009DDBF0 f +nullsub_57 009DDC00 f +nullsub_58 009DDC10 f +nullsub_59 009DDC20 f +nullsub_60 009DDC30 f +nullsub_61 009DDC40 f +nullsub_62 009DDC50 f +nullsub_63 009DDC60 f +nullsub_64 009DDC70 f +nullsub_65 009DDC80 f +nullsub_66 009DDC90 f +nullsub_67 009DDCA0 f +nullsub_68 009DDCB0 f +nullsub_69 009DDCC0 f +nullsub_70 009DDCD0 f +nullsub_71 009DDCE0 f +nullsub_72 009DDCF0 f +nullsub_73 009DDD00 f +nullsub_74 009DDD10 f +nullsub_75 009DDD20 f +nullsub_76 009DDD30 f +nullsub_77 009DDD40 f +nullsub_78 009DDD50 f +nullsub_79 009DDD60 f +nullsub_80 009DDD70 f +nullsub_81 009DDD80 f +nullsub_82 009DDD90 f +nullsub_83 009DDDA0 f +nullsub_84 009DDDB0 f +nullsub_85 009DDDC0 f +nullsub_86 009DDDD0 f +nullsub_87 009DDDE0 f +nullsub_88 009DDDF0 f +nullsub_89 009DDE00 f +nullsub_90 009DDE10 f +nullsub_91 009DDE20 f +nullsub_92 009DDE30 f +nullsub_93 009DDE40 f +nullsub_94 009DDE50 f +nullsub_95 009DDE60 f +nullsub_96 009DDE70 f +nullsub_97 009DDE80 f +nullsub_98 009DDE90 f +nullsub_99 009DDEA0 f +nullsub_100 009DDEB0 f +nullsub_101 009DDEC0 f +nullsub_102 009DDED0 f +nullsub_103 009DDEE0 f +nullsub_104 009DDEF0 f +nullsub_105 009DDF00 f +nullsub_106 009DDF10 f +nullsub_107 009DDF20 f +nullsub_108 009DDF30 f +nullsub_109 009DDF40 f +nullsub_110 009DDF50 f +nullsub_111 009DDF60 f +nullsub_112 009DDF70 f +nullsub_113 009DDF80 f +nullsub_114 009DDF90 f +nullsub_115 009DDFA0 f +nullsub_116 009DDFB0 f +nullsub_117 009DDFC0 f +nullsub_118 009DDFD0 f +nullsub_119 009DDFE0 f +nullsub_120 009DDFF0 f +nullsub_121 009DE000 f +nullsub_122 009DE010 f +nullsub_123 009DE020 f +nullsub_124 009DE030 f +nullsub_125 009DE040 f +nullsub_126 009DE050 f +nullsub_127 009DE060 f +nullsub_128 009DE070 f +nullsub_129 009DE080 f +nullsub_130 009DE090 f +nullsub_131 009DE0A0 f +nullsub_132 009DE0B0 f +nullsub_133 009DE0C0 f +nullsub_134 009DE0D0 f +nullsub_135 009DE0E0 f +nullsub_136 009DE0F0 f +nullsub_137 009DE100 f +nullsub_138 009DE110 f +nullsub_139 009DE120 f +nullsub_140 009DE130 f +nullsub_141 009DE140 f +nullsub_142 009DE150 f +nullsub_143 009DE160 f +nullsub_144 009DE170 f +nullsub_145 009DE180 f +nullsub_146 009DE190 f +nullsub_147 009DE1A0 f +nullsub_148 009DE1B0 f +nullsub_149 009DE1C0 f +nullsub_150 009DE1D0 f +return_zero4_sub 008E5250 f end=008E5253 ; Script_ToggleTris +purecall 0040BAA5 f end=0040BACF \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/os/func.sym b/profile/3.3.5a-windows/symbol/os/func.sym new file mode 100644 index 0000000..952238b --- /dev/null +++ b/profile/3.3.5a-windows/symbol/os/func.sym @@ -0,0 +1,29 @@ +OsCloseFile 00461B00 f end=00461B09 +OsReadFile 00461B50 f end=00461B88 +OsGetFileSize 00461BD0 f end=00461BF4 +OsSetCurrentDirectory 00461DB0 f end=00461DD7 +OsCreateFile 00461FA0 f end=00461FFA +OsInputDestroy 00869760 f end=008697D3 +OsInputInitialize 00869720 f end=00869757 ; actually called by IEvtInputInitialize, but this is optimized out +OsInputGet 00869E00 f end=0086A01A +OsInputGetMousePosition 0086A0D0 f end=0086A130 +OsInputSetMousePosition 0086A130 f end=0086A194 +OsInputSetMouseMode 0086A020 f end=0086A063 +OsInputSetEventPollProc 00869D90 f end=00869D9D +CenterMouse 00869DB0 f end=00869DF6 +RestoreMouse 008695B0 f end=008695FB +OsGetAsyncTimeMs 0086AE20 f end=0086AE2B +OsSystemEnableCpuLog 0086B0C0 f end=0086B0CB +OsGetProcessorCount 0086B240 f end=0086B27D +OsGetExeName 0086BBD0 f end=0086BC2F +OsPathGetRootChars 0086BC30 f end=0086BC9E +OsPathStripFilename 0086BE50 f end=0086BE9B +OsGetExePath 0086BEA0 f end=0086BEBE +OsGuiGetWindow 0086C6A0 f end=0086C6CE +OsGetDefaultWindowRect 0086A1A0 f end=0086A20C +OsIMEInitialize 0086D0A0 f end=0086D0B8 +OsIMEDestroy 0086D0C0 f end=0086D0Df +OsClipboardPutString 008722A0 f end=008722BF +OsCallSetContext 0086F5A0 f end=0086F5EA +OsCallInitializeContext 0086F880 f end=0086F902 +OsCallInitialize 0086F760 f end=0086F875 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/rcstring/func.sym b/profile/3.3.5a-windows/symbol/rcstring/func.sym new file mode 100644 index 0000000..24ac921 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/rcstring/func.sym @@ -0,0 +1 @@ +RCString__Copy 0047CF80 f end=0047CFEC \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/script/func.sym b/profile/3.3.5a-windows/symbol/script/func.sym new file mode 100644 index 0000000..d01e2d9 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/script/func.sym @@ -0,0 +1,1972 @@ +Script_GetLocale 004DBFD0 f end=004DBFF3 ; thanks namreeb :^) +Script_IsWindowsClient 004DCE40 f end=004DCE5E +Script_RestartGx 004DD400 f end=004DD412 +Script_RestoreVideoStereoDefaults 004DD420 f end=004DD42D +Script_GetMovieResolution 004DD610 f end=004DD671 +Script_GetExpansionLevel 004DDC20 f end=004DDC51 +Script_LoggingChat 004FBD00 f end=004FBD13 +Script_LoggingCombat 004FBD20 f end=004FBD36 +Script_GetActiveVoiceChannel 004FBD40 f end=004FBD90 +Script_GetChatWindowInfo 004FBD90 f end=004FBF5D +Script_GetChatWindowSavedPosition 004FBF60 f end=004FC018 +Script_GetChatWindowSavedDimensions 004FC020 f end=004FC0B4 +Script_GetChatWindowMessages 004FC0C0 f end=004FC169 +Script_AddChatWindowMessages 004FC170 f end=004FC249 +Script_RemoveChatWindowMessages 004FC250 f end=004FC329 +Script_SetChatWindowName 004FC330 f end=004FC3CF +Script_SetChatWindowSize 004FC3D0 f end=004FC461 +Script_SetChatWindowColor 004FC470 f end=004FC5AB +Script_SetChatWindowAlpha 004FC5B0 f end=004FC659 +Script_SetChatWindowLocked 004FC660 f end=004FC6DB +Script_SetChatWindowUninteractable 004FC6E0 f end=004FC75B +Script_SetChatWindowDocked 004FC760 f end=004FC807 +Script_SetChatWindowShown 004FC810 f end=004FC88B +Script_SetChatWindowSavedPosition 004FC890 f end=004FC99E +Script_SetChatWindowSavedDimensions 004FC9A0 f end=004FCA4B +Script_GetNumSavedInstances 004FCA50 f end=004FCA84 +Script_IsVoiceChatEnabled 004FCBF0 f end=004FCC52 +Script_IsVoiceChatAllowed 004FCC60 f end=004FCCA3 +Script_IsVoiceChatAllowedByServer 004FCCB0 f end=004FCCEA +Script_UnitIsSilenced 004FCCF0 f end=004FCDE9 +Script_GetMuteStatus 004FCDF0 f end=004FCEE7 +Script_ListChannelByName 004FE630 f end=004FE64C +Script_GetChannelList 004FE650 f end=004FE715 +Script_SetChannelPassword 004FE720 f end=004FE806 +Script_SetChannelOwner 004FE810 f end=004FE82C +Script_DisplayChannelOwner 004FE830 f end=004FE84C +Script_GetChannelName 004FE850 f end=004FE94E +Script_ChannelModerator 004FE950 f end=004FE96C +Script_ChannelUnmoderator 004FE970 f end=004FE98C +Script_ChannelMute 004FE990 f end=004FE9AC +Script_ChannelUnmute 004FE9B0 f end=004FE9CC +Script_ChannelInvite 004FE9D0 f end=004FE9EC +Script_ChannelKick 004FE9F0 f end=004FEA0C +Script_ChannelBan 004FEA10 f end=004FEA2C +Script_ChannelUnban 004FEA30 f end=004FEA4C +Script_ChannelToggleAnnouncements 004FEA50 f end=004FEA6C +Script_ChannelVoiceOn 004FEA70 f end=004FEA8C +Script_ChannelVoiceOff 004FEA90 f end=004FEAAC +Script_DisplayChannelVoiceOn 004FEAB0 f end=004FEACC +Script_DisplayChannelVoiceOff 004FEAD0 f end=004FEAEC +Script_ChangeChatColor 004FEAF0 f end=004FED0C +Script_ResetChatColors 004FED10 f end=004FEDB5 +Script_SetChatColorNameByClass 004FEDC0 f end=004FEED1 +Script_GetChatTypeIndex 004FEEE0 f end=004FEFE5 +Script_GetChatWindowChannels 004FEFF0 f end=004FF0C7 +Script_RemoveChatWindowChannel 004FF0D0 f end=004FF1F9 +Script_EnumerateServerChannels 004FF200 f end=004FF2B4 +Script_GetSavedInstanceInfo 004FF2C0 f end=004FF4EA +Script_GetChannelDisplayInfo 004FF580 f end=004FFA01 +Script_GetSelectedDisplayChannel 004FFA10 f end=004FFA61 +Script_IsDisplayChannelOwner 004FFA70 f end=004FFAE0 +Script_IsDisplayChannelModerator 004FFAE0 f end=004FFB50 +Script_IsSilenced 004FFB50 f end=004FFC23 +Script_SetChannelWatch 004FFC30 f end=004FFC4C +Script_ClearChannelWatch 004FFC50 f end=004FFCB8 +Script_DeclineInvite 004FFCC0 f end=004FFCDC +Script_SendAddonMessage 00500560 f end=00500751 +Script_GetNumLanguages 00500760 f end=0050078E +Script_GetLanguageByIndex 00500810 f end=00500906 +Script_GetDefaultLanguage 00500910 f end=00500975 +Script_DoEmote 00500980 f end=00500AD9 +Script_SetActiveVoiceChannel 00500AE0 f end=00500BD6 +Script_RequestRaidInfo 00500BE0 f end=00500C7F +Script_CanComplainChat 00500C80 f end=00500D75 +Script_ChannelSilenceVoice 00501140 f end=00501246 +Script_ChannelSilenceAll 00501250 f end=005012E7 +Script_ChannelUnSilenceVoice 005012F0 f end=005013F6 +Script_ChannelUnSilenceAll 00501400 f end=00501497 +Script_AddChatWindowChannel 00501DB0 f end=00501EF8 +Script_ResetChatWindows 00501F00 f end=00502264 +Script_GetNumDisplayChannels 00504E10 f end=00504E49 +Script_SetSelectedDisplayChannel 00504E50 f end=00504F27 +Script_GetChannelRosterInfo 00504F30 f end=0050518C +Script_GetNumChannelMembers 00505190 f end=005052D7 +Script_CollapseChannelHeader 005052E0 f end=00505354 +Script_ExpandChannelHeader 00505360 f end=005053D4 +Script_LeaveChannelByName 005096D0 f end=00509718 +Script_SendChatMessage 0050D170 f end=0050D8A0 +Script_SendSystemMessage 0050D8A0 f end=0050D900 +Script_JoinTemporaryChannel 0050DAA0 f end=0050DAB4 +Script_JoinPermanentChannel 0050DAC0 f end=0050DAD4 +Script_ListChannels 0050DAE0 f end=0050DC01 +Script_SetSavedInstanceExtend 0050DC10 f end=0050DDD5 +Script_ComplainChat 0050ED00 f end=0050EDC5 +Script_FrameXML_Debug 0050F830 f end=0050F884 +Script_GetBuildInfo 0050F890 f end=0050F8E7 +Script_SetLayoutMode 0050F8F0 f end=0050F943 +Script_GetMouseButtonClicked 0050F950 f end=0050F988 +Script_SetConsoleKey 0050F990 f end=0050FE77 +Script_IsDebugBuild 0050FE80 f end=0050FE98 +Script_RegisterCVar 0050FF30 f end=0050FF44 +Script_GetCVarInfo 0050FF50 f end=00510035 +Script_GetCVar 00510040 f end=005100B1 +Script_GetCVarBool 005100C0 f end=00510145 +Script_GetCVarDefault 00510150 f end=005101CE +Script_SetWaterDetail 005101D0 f end=005101F9 +Script_GetFarclip 00510200 f end=00510227 +Script_SetFarclip 00510230 f end=005102A8 +Script_GetTexLodBias 005102B0 f end=005102D7 +Script_SetTexLodBias 005102E0 f end=00510358 +Script_GetBaseMip 00510360 f end=00510389 +Script_SetBaseMip 00510390 f end=0051040B +Script_Stuck 00510410 f end=00510429 +Script_Logout 00510430 f end=00510443 +Script_Quit 00510450 f end=00510463 +Script_GetFramerate 00510470 f end=00510491 +Script_SetCursor 005104A0 f end=00510920 +Script_ResetCursor 00510920 f end=00510928 +Script_ReportBug 00510930 f end=00510973 +Script_ReportSuggestion 00510980 f end=005109C3 +Script_BeginTrade 005109D0 f end=005109D8 +Script_CancelTrade 005109E0 f end=005109E8 +Script_ForceLogout 005109F0 f end=005109FF +Script_ForceQuit 00510A00 f end=00510A0D +Script_GetCursorPosition 00510A10 f end=00510AB3 +Script_GetNetStats 00510AC0 f end=00510B29 +Script_RunScript 00510B30 f end=00510B72 +Script_ReplaceTradeEnchant 00510B80 f end=00510B88 +Script_IsMacClient 00510B90 f end=00510BA6 +Script_ReadFile 00510BB0 f end=00510BC8 +Script_GetCoinIcon 00510BD0 f end=00510C53 +Script_GetCoinText 00510C60 f end=00510CF6 +Script_GetCoinTextureString 00510D00 f end=00510DAD +Script_ConfirmBindOnUse 00510DB0 f end=00510DB8 +Script_RestoreVideoResolutionDefaults 00510DC0 f end=00510DCD +Script_RestoreVideoEffectsDefaults 00510DD0 f end=00510DDD +Script_SetEuropeanNumbers 00510DE0 f end=00510DFD +Script_GetRealmName 00510E00 f end=00510E1C +Script_GetItemQualityColor 00510E20 f end=00510EEA +Script_GetItemFamily 00510F20 f end=00510FB9 +Script_GetItemCooldown 00510FC0 f end=005110C7 +Script_IsCurrentItem 005110D0 f end=00511150 +Script_IsEquippableItem 00511150 f end=005111FF +Script_GetNumAddOns 00511200 f end=00511234 +Script_GetAddOnInfo 00511240 f end=00511423 +Script_GetAddOnMetadata 00511430 f end=00511505 +Script_UpdateAddOnMemoryUsage 00511510 f end=00511523 +Script_GetAddOnMemoryUsage 00511530 f end=00511601 +Script_GetScriptCPUUsage 00511610 f end=00511631 +Script_UpdateAddOnCPUUsage 00511640 f end=00511653 +Script_GetAddOnCPUUsage 00511660 f end=0051171C +Script_GetFunctionCPUUsage 00511720 f end=005117BE +Script_GetEventCPUUsage 005117C0 f end=00511829 +Script_ResetCPUUsage 00511830 f end=00511838 +Script_EnableAddOn 00511840 f end=005118F5 +Script_EnableAllAddOns 00511900 f end=0051193A +Script_DisableAddOn 00511940 f end=005119F5 +Script_DisableAllAddOns 00511A00 f end=00511A3A +Script_ResetDisabledAddOns 00511A40 f end=00511A51 +Script_IsAddOnLoadOnDemand 00511A60 f end=00511B30 +Script_IsAddOnLoaded 00511B30 f end=00511C32 +Script_GetBillingTimeRested 00511C40 f end=00511C7A +Script_GetExistingLocales 00511C80 f end=00511CBC +Script_InCombatLockdown 00511CC0 f end=00511D15 +Script_VoicePushToTalkStop 00511D20 f end=00511D28 +Script_GetSummonFriendCooldown 00511D30 f end=00511DCB +Script_GetNumDeclensionSets 00511DD0 f end=00511E7D +Script_DeclineName 00511E80 f end=00511F82 +Script_UploadSettings 00511F90 f end=00511F98 +Script_DownloadSettings 00511FA0 f end=00511FA8 +Script_IsDesaturateSupported 00511FB0 f end=00511FE0 +Script_GetThreatStatusColor 00511FE0 f end=0051208A +Script_ConsoleAddMessage 00512090 f end=005120DD +Script_IsModifierKeyDown 00514430 f end=005144B1 +Script_IsLeftShiftKeyDown 005144C0 f end=00514518 +Script_IsRightShiftKeyDown 00514520 f end=0051457A +Script_IsShiftKeyDown 00514580 f end=00514602 +Script_IsLeftControlKeyDown 00514610 f end=0051466B +Script_IsRightControlKeyDown 00514670 f end=005146CB +Script_IsControlKeyDown 005146D0 f end=00514756 +Script_IsLeftAltKeyDown 00514760 f end=005147BB +Script_IsRightAltKeyDown 005147C0 f end=0051481B +Script_IsAltKeyDown 00514820 f end=005148A6 +Script_IsMouseButtonDown 005148B0 f end=00514B94 +Script_GetMouseButtonName 00514BA0 f end=00514C0F +Script_SetCVar 00514C10 f end=00514D3A +Script_GetCVarMin 00514D40 f end=00514E23 +Script_GetCVarMax 00514E30 f end=00514F52 +Script_GetCVarAbsoluteMin 00514F60 f end=0051500A +Script_GetCVarAbsoluteMax 00515010 f end=005150D6 +Script_Screenshot 005150E0 f end=005150F8 +Script_CursorHasItem 00515100 f end=00515140 +Script_CursorHasSpell 00515140 f end=0051517A +Script_CursorHasMacro 00515180 f end=005151BA +Script_CursorHasMoney 005151C0 f end=005151FA +Script_GetCursorInfo 00515200 f end=00515528 +Script_TargetDirectionFinished 00515560 f end=0051556D +Script_GetZoneText 00515570 f end=00515595 +Script_GetRealZoneText 005155A0 f end=005155C5 +Script_GetSubZoneText 005155D0 f end=005155F5 +Script_GetMinimapZoneText 00515600 f end=00515625 +Script_ResetInstances 00515630 f end=00515698 +Script_IsInInstance 005156A0 f end=0051574C +Script_GetInstanceDifficulty 00515750 f end=00515787 +Script_GetDungeonDifficulty 00515790 f end=00515809 +Script_GetRaidDifficulty 00515810 f end=0051587B +Script_RequestTimePlayed 00515880 f end=005158F2 +Script_ResurrectGetOfferer 00515950 f end=005159B5 +Script_ResurrectHasSickness 005159C0 f end=005159FA +Script_ResurrectHasTimer 00515A00 f end=00515A43 +Script_GetCursorMoney 00515A50 f end=00515A84 +Script_GuildSetMOTD 00515A90 f end=00515B6D +Script_GuildLeave 00515B70 f end=00515BD8 +Script_GuildDisband 00515BE0 f end=00515C48 +Script_GuildInfo 00515C50 f end=00515CB8 +Script_ArenaTeamInviteByName 00515CC0 f end=00515DCB +Script_ArenaTeamLeave 00515DD0 f end=00515EAC +Script_ArenaTeamUninviteByName 00515EB0 f end=00515FE4 +Script_ArenaTeamSetLeaderByName 00515FF0 f end=00516124 +Script_ArenaTeamDisband 00516130 f end=0051620C +Script_GetReleaseTimeRemaining 00516210 f end=00516272 +Script_GetCorpseRecoveryDelay 00516280 f end=005162D5 +Script_GetInstanceBootTimeRemaining 005162E0 f end=00516335 +Script_GetInstanceLockTimeRemaining 00516340 f end=00516409 +Script_GetInstanceLockTimeRemainingEncounter 00516410 f end=005164A4 +Script_GetSummonConfirmTimeLeft 005164B0 f end=00516505 +Script_GetSummonConfirmSummoner 00516510 f end=00516574 +Script_GetSummonConfirmAreaName 00516580 f end=005165D8 +Script_GetNumTitles 005165E0 f end=0051660D +Script_RandomRoll 00516610 f end=005166E8 +Script_OpeningCinematic 005166F0 f end=00516758 +Script_InCinematic 00516760 f end=0051679A +Script_ReplaceEnchant 005167A0 f end=005167D3 +Script_IsSubZonePVPPOI 005167E0 f end=00516840 +Script_TogglePVP 00516840 f end=005168A8 +Script_SetPVP 005168B0 f end=00516966 +Script_SetPortraitToTexture 00516970 f end=00516A93 +Script_GetGMTicketCategories 00516AA0 f end=00516B1A +Script_GetBindLocation 00516B20 f end=00516B82 +Script_GetAreaSpiritHealerTime 00516B90 f end=00516BE1 +Script_GetMouseFocus 00516BF0 f end=00516C56 +Script_GetItemInfo 00516C60 f end=00516EC8 +Script_GetItemUniqueness 00516ED0 f end=00517013 +Script_GetItemIcon 00517020 f end=005170F5 +Script_GetItemSpell 00517100 f end=005171E7 +Script_IsHelpfulItem 005171F0 f end=005172E0 +Script_IsHarmfulItem 005172E0 f end=005173D4 +Script_IsConsumableItem 005173E0 f end=00517529 +Script_IsDressableItem 00517530 f end=005176E5 +Script_GetFrameCPUUsage 00517890 f end=005179A3 +Script_GetAddOnDependencies 005179B0 f end=00517A97 +Script_GetMirrorTimerProgress 00517AA0 f end=00517B4E +Script_SetTaxiBenchmarkMode 00517B50 f end=00517BDC +Script_SetUIVisibility 00517C20 f end=00517C58 +Script_GetTotemTimeLeft 00517C60 f end=00517D14 +Script_DeclineLevelGrant 00517D20 f end=00517D2D +Script_IsThreatWarningEnabled 00517D30 f end=00517D6A +Script_CanMapChangeDifficulty 00517D70 f end=00517DF1 +Script_ClearCursor 0051A3B0 f end=0051A3C2 +Script_EquipCursorItem 0051A3D0 f end=0051A528 +Script_EquipPendingItem 0051A530 f end=0051A5B8 +Script_CancelPendingEquip 0051A5C0 f end=0051A648 +Script_AttackTarget 0051A650 f end=0051A67F +Script_AutoEquipCursorItem 0051A680 f end=0051A6AB +Script_ToggleSheath 0051A6B0 f end=0051A6D9 +Script_InviteUnit 0051A6E0 f end=0051A796 +Script_UninviteUnit 0051A7A0 f end=0051A876 +Script_CanShowResetInstances 0051A880 f end=0051A8BA +Script_GetInstanceInfo 0051A8C0 f end=0051AA85 +Script_RepopMe 0051AA90 f end=0051AABB +Script_AcceptResurrect 0051AAC0 f end=0051AAEB +Script_DeclineResurrect 0051AAF0 f end=0051AB1B +Script_AcceptGroup 0051AB20 f end=0051AB98 +Script_DeclineGroup 0051ABA0 f end=0051ABC9 +Script_AcceptGuild 0051ABD0 f end=0051ABF9 +Script_DeclineGuild 0051AC00 f end=0051AC29 +Script_AcceptArenaTeam 0051AC30 f end=0051AC59 +Script_DeclineArenaTeam 0051AC60 f end=0051AC89 +Script_CancelLogout 0051AC90 f end=0051ACC9 +Script_HasSoulstone 0051ACD0 f end=0051ADC9 +Script_UseSoulstone 0051ADD0 f end=0051AE79 +Script_HasKey 0051AE80 f end=0051AEE6 +Script_GetScreenWidth 0051AEF0 f end=0051AF4F +Script_GetScreenHeight 0051AF50 f end=0051AFAF +Script_GetDamageBonusStat 0051AFB0 f end=0051B042 +Script_ConfirmSummon 0051B050 f end=0051B108 +Script_CancelSummon 0051B110 f end=0051B1CD +Script_SitStandOrDescendStart 0051B1D0 f end=0051B239 +Script_CheckInteractDistance 0051B240 f end=0051B3A6 +Script_GetCurrentTitle 0051B3B0 f end=0051B40F +Script_IsTitleKnown 0051B410 f end=0051B4DC +Script_GetTitleName 0051B4E0 f end=0051B69F +Script_AcceptXPLoss 0051B6A0 f end=0051B6DE +Script_CheckSpiritHealerDist 0051B6E0 f end=0051B73B +Script_CheckTalentMasterDist 0051B740 f end=0051B79B +Script_CheckBinderDist 0051B7A0 f end=0051B7FB +Script_RetrieveCorpse 0051B800 f end=0051B8A4 +Script_GetRestState 0051B8B0 f end=0051B955 +Script_GetXPExhaustion 0051B960 f end=0051BA50 +Script_GetZonePVPInfo 0051BA50 f end=0051BC93 +Script_GetPVPDesired 0051BCA0 f end=0051BCFC +Script_GetPVPTimer 0051BD00 f end=0051BD59 +Script_IsPVPTimerRunning 0051BD60 f end=0051BDC1 +Script_DropItemOnUnit 0051BDD0 f end=0051BF47 +Script_ConfirmTalentWipe 0051BF50 f end=0051BF8F +Script_ConfirmBinder 0051BF90 f end=0051BFCE +Script_ShowingHelm 0051BFD0 f end=0051C033 +Script_ShowingCloak 0051C040 f end=0051C0A3 +Script_ShowHelm 0051C0B0 f end=0051C0FF +Script_ShowCloak 0051C100 f end=0051C14F +Script_GetItemGem 0051C150 f end=0051C2D4 +Script_GetItemCount 0051C2E0 f end=0051C44C +Script_IsUsableItem 0051C450 f end=0051C68E +Script_IsEquippedItem 0051C690 f end=0051C732 +Script_IsEquippedItemType 0051C740 f end=0051C86C +Script_ItemHasRange 0051C870 f end=0051C9B1 +Script_IsItemInRange 0051C9C0 f end=0051CB30 +Script_PartialPlayTime 0051CB30 f end=0051CB9C +Script_NoPlayTime 0051CBA0 f end=0051CC0C +Script_GetMirrorTimerInfo 0051CC10 f end=0051CCF8 +Script_UseItemByName 0051CD00 f end=0051CDAA +Script_EquipItemByName 0051CDB0 f end=0051D0A5 +Script_StopAttack 0051D0B0 f end=0051D0FA +Script_GetTaxiBenchmarkMode 0051D100 f end=0051D161 +Script_Dismount 0051D170 f end=0051D1AD +Script_IsReferAFriendLinked 0051D1B0 f end=0051D222 +Script_CanGrantLevel 0051D230 f end=0051D2A2 +Script_CanSummonFriend 0051D2B0 f end=0051D322 +Script_GetTotemInfo 0051D330 f end=0051D503 +Script_DestroyTotem 0051D520 f end=0051D584 +Script_GameMovieFinished 0051D590 f end=0051D598 +Script_GetAllowLowLevelRaid 0051D5A0 f end=0051D5FC +Script_SetAllowLowLevelRaid 0051D600 f end=0051D706 +Script_ReloadUI 005222E0 f end=00522314 +Script_DeleteCursorItem 00522320 f end=0052247F +Script_FocusUnit 00522480 f end=005224BB +Script_FollowUnit 005224C0 f end=005225D7 +Script_ClearFocus 005225E0 f end=00522600 +Script_InitiateTrade 00522600 f end=0052270B +Script_CanInspect 00522710 f end=00522870 +Script_NotifyInspect 00522870 f end=0052294C +Script_DropCursorMoney 00522950 f end=0052297A +Script_PickupPlayerMoney 00522980 f end=00522A16 +Script_GuildInvite 00522A20 f end=00522AE4 +Script_GuildUninvite 00522AF0 f end=00522BB4 +Script_GuildPromote 00522BC0 f end=00522C84 +Script_GuildDemote 00522C90 f end=00522D54 +Script_GuildSetLeader 00522D60 f end=00522E24 +Script_SetCurrentTitle 00522E30 f end=00522F6C +Script_BindEnchant 00522F70 f end=00522F8A +Script_NotWhileDeadError 00522F90 f end=00522FA0 +Script_CancelAreaSpiritHeal 00522FA0 f end=00522FA8 +Script_PickupItem 00522FB0 f end=0052308C +Script_StartAttack 00523090 f end=00523153 +Script_GrantLevel 00523160 f end=0052320E +Script_SummonFriend 00523260 f end=00523360 +Script_AcceptLevelGrant 00523360 f end=00523368 +Script_EndRefund 00523370 f end=005233C5 +Script_EndBoundTradeable 005233D0 f end=0052349D +Script_StopCinematic 00524980 f end=005249B7 +Script_TargetUnit 00525A30 f end=00525A8B +Script_TargetNearest 00525A90 f end=00525ACB +Script_TargetNearestEnemy 00525AD0 f end=00525B0B +Script_TargetNearestEnemyPlayer 00525B10 f end=00525B4B +Script_TargetNearestFriend 00525B50 f end=00525B8B +Script_TargetNearestFriendPlayer 00525B90 f end=00525BCB +Script_TargetNearestPartyMember 00525BD0 f end=00525BF2 +Script_TargetNearestRaidMember 00525C00 f end=00525C22 +Script_TargetDirectionEnemy 00525C30 f end=00525CC4 +Script_TargetDirectionFriend 00525CD0 f end=00525D64 +Script_TargetLastTarget 00525D70 f end=00525DE6 +Script_TargetLastEnemy 00525DF0 f end=00525E4F +Script_TargetLastFriend 00525E50 f end=00525EAF +Script_AssistUnit 00525EB0 f end=00525FB1 +Script_ClearTarget 00525FC0 f end=0052604B +Script_SetDungeonDifficulty 00526050 f end=0052619C +Script_SetRaidDifficulty 005261A0 f end=005262C4 +Script_AcceptAreaSpiritHeal 005262D0 f end=005262D8 +Script_TargetTotem 005262E0 f end=00526362 +Script_InteractUnit 00527F00 f end=00527FD4 +Script_LoadAddOn 00528920 f end=00528AE1 +Script_RegisterForSave 0052B470 f end=0052B4D4 +Script_RegisterForSavePerCharacter 0052B4E0 f end=0052B544 +Script_GetNumPartyMembers 0052C110 f end=0052C187 +Script_GetRealNumPartyMembers 0052C190 f end=0052C1C4 +Script_GetPartyMember 0052C1D0 f end=0052C26A +Script_GetPartyLeaderIndex 0052C270 f end=0052C29D +Script_GetLootThreshold 0052C2A0 f end=0052C2C2 +Script_GetOptOutOfLoot 0052C2D0 f end=0052C30A +Script_IsPartyLFG 0052C310 f end=0052C34A +Script_HasLFGRestrictions 0052C350 f end=0052C36C +Script_IsPartyLeader 0052CCD0 f end=0052CD26 +Script_IsRealPartyLeader 0052CD30 f end=0052CD86 +Script_GetLootMethod 0052CD90 f end=0052CEDD +Script_SetOptOutOfLoot 0052CF00 f end=0052CF60 +Script_GetPartyAssignment 0052CF60 f end=0052CFF6 +Script_CanChangePlayerDifficulty 0052D000 f end=0052D053 +Script_LeaveParty 0052D990 f end=0052D9B9 +Script_SilenceMember 0052D9C0 f end=0052DAEC +Script_UnSilenceMember 0052DAF0 f end=0052DC1C +Script_SetLootMethod 0052DC20 f end=0052DE54 +Script_SetLootThreshold 0052DE60 f end=0052DF35 +Script_SetPartyAssignment 0052E1B0 f end=0052E3F2 +Script_ClearPartyAssignment 0052E400 f end=0052E412 +Script_ChangePlayerDifficulty 0052E420 f end=0052E475 +Script_CanAlterSkin 0052E4F0 f end=0052E512 +Script_GetBarberShopStyleInfo 0052E850 f end=0052E9A6 +Script_GetHairCustomization 0052E9B0 f end=0052E9CC +Script_GetFacialHairCustomization 0052E9D0 f end=0052E9EC +Script_GetBarberShopTotalCost 0052ED60 f end=0052ED7C +Script_CancelBarberShop 0052ED80 f end=0052ED88 +Script_ApplyBarberShopStyle 0052EEF0 f end=0052EEF8 +Script_BarberShopReset 0052F900 f end=0052F90B +Script_SetNextBarberShopStyle 0052FDD0 f end=0052FE5F +Script_GetNextCompleatedTutorial 005301D0 f end=00530239 +Script_GetPrevCompleatedTutorial 00530240 f end=005302A8 +Script_CanResetTutorials 00530700 f end=0053074D +Script_FlagTutorial 00530750 f end=0053079F +Script_IsTutorialFlagged 005307A0 f end=00530818 +Script_ClearTutorials 00530820 f end=00530828 +Script_ResetTutorials 00530830 f end=00530838 +Script_TriggerTutorial 005308D0 f end=0053091F +Script_BNConnected 00530EC0 f end=00530F13 +Script_IsBNLogin 00530F20 f end=00530F58 +Script_BNGetInfo 005343F0 f end=00534581 +Script_BNGetNumFriends 00534590 f end=005346EC +Script_BNGetNumFriendToons 005349F0 f end=00534B5C +Script_BNRemoveFriend 00534ED0 f end=00534F73 +Script_BNSetFriendNote 00534F80 f end=0053507B +Script_BNGetNumFriendInvites 00535080 f end=00535171 +Script_BNGetFriendInviteInfo 00535180 f end=0053537E +Script_BNSendFriendInvite 00535380 f end=0053548B +Script_BNSendFriendInviteByID 00535490 f end=005355B2 +Script_BNAcceptFriendInvite 005355C0 f end=00535656 +Script_BNDeclineFriendInvite 00535660 f end=005356F6 +Script_BNReportFriendInvite 00535700 f end=00535796 +Script_BNSetAFK 005357A0 f end=0053585E +Script_BNSetDND 00535860 f end=0053591E +Script_BNSetCustomMessage 00535920 f end=00535A9B +Script_BNGetCustomMessageTable 00535AA0 f end=00535C54 +Script_BNSetFocus 00535C60 f end=00535CD9 +Script_BNCreateConversation 00535CE0 f end=00535EA4 +Script_BNInviteToConversation 00535EB0 f end=00536026 +Script_BNLeaveConversation 00536030 f end=00536107 +Script_BNSendConversationMessage 00536110 f end=0053621F +Script_BNGetNumConversationMembers 00536220 f end=00536329 +Script_BNGetConversationInfo 00536330 f end=005363FB +Script_BNGetNumBlocked 00536400 f end=005364D7 +Script_BNIsBlocked 005364E0 f end=005365A6 +Script_BNSetBlocked 005365B0 f end=0053669C +Script_BNSetSelectedBlock 005366A0 f end=0053678D +Script_BNGetSelectedBlock 00536790 f end=0053688B +Script_BNGetNumBlockedToons 00536890 f end=00536967 +Script_BNGetBlockedToonInfo 00536970 f end=00536A90 +Script_BNIsToonBlocked 00536A90 f end=00536B56 +Script_BNSetToonBlocked 00536B60 f end=00536C4C +Script_BNSetSelectedToonBlock 00536C50 f end=00536D3D +Script_BNGetSelectedToonBlock 00536D40 f end=00536E3B +Script_BNReportPlayer 00536E40 f end=00537009 +Script_BNFeaturesEnabledAndConnected 00537010 f end=0053706C +Script_BNFeaturesEnabled 00537070 f end=005370CA +Script_BNGetNumFOF 005370D0 f end=0053723E +Script_BNGetFOFInfo 00537240 f end=0053750F +Script_BNSetSelectedFriend 00537510 f end=005375F8 +Script_BNGetSelectedFriend 00537600 f end=005376BB +Script_BNSetMatureLanguageFilter 005376C0 f end=005377B3 +Script_BNGetMatureLanguageFilter 005377C0 f end=005378A0 +Script_BNIsSelf 005378A0 f end=00537943 +Script_BNIsFriend 00537950 f end=005379F3 +Script_BNGetMaxPlayersInConversation 00537A00 f end=00537A5E +Script_BNGetFriendInfo 00539BF0 f end=00539CB8 +Script_BNGetFriendInfoByID 00539CC0 f end=00539D6B +Script_BNGetFriendToonInfo 00539D70 f end=00539F82 +Script_BNGetToonInfo 00539F90 f end=0053A025 +Script_BNSendWhisper 0053A030 f end=0053A150 +Script_BNGetConversationMemberInfo 0053A150 f end=0053A2F6 +Script_BNListConversation 0053A300 f end=0053A539 +Script_BNGetBlockedInfo 0053A540 f end=0053A65E +Script_BNRequestFOFInfo 0053A660 f end=0053A742 +Script_GetNumSpellTabs 0053B5C0 f end=0053B5F4 +Script_GetKnownSlotFromHighestRankSlot 0053B650 f end=0053B6B6 +Script_FindSpellBookSlotByID 0053B6C0 f end=0053B739 +Script_GetSpellTabInfo 0053BE70 f end=0053C0A5 +Script_GetNumShapeshiftForms 0053C0B0 f end=0053C0E4 +Script_CastShapeshiftForm 0053C0F0 f end=0053C177 +Script_GetShapeshiftFormCooldown 0053C180 f end=0053C29C +Script_GetNumCompanions 0053C2A0 f end=0053C304 +Script_PickupCompanion 0053C310 f end=0053C393 +Script_IsSpellKnown 0053C3A0 f end=0053C426 +Script_UpdateSpells 0053DD10 f end=0053DD21 +Script_HasPetSpells 0053DD30 f end=0053DE09 +Script_GetShapeshiftForm 0053DE10 f end=0053DE51 +Script_CancelShapeshiftForm 0053DE60 f end=0053DE89 +Script_GetShapeshiftFormInfo 0053DE90 f end=0053E05A +Script_CastSpellByID 0053E060 f end=0053E2B6 +Script_GetCompanionInfo 0053E2C0 f end=0053E490 +Script_GetCompanionCooldown 0053E490 f end=0053E5D4 +Script_CallCompanion 0053E5E0 f end=0053E6A3 +Script_DismissCompanion 0053E6B0 f end=0053E7D4 +Script_SummonRandomCritter 0053E7E0 f end=0053E80C +Script_CastSpellByName 00540310 f end=005405A9 +Script_GetSpellName 005407F0 f end=005408D6 +Script_GetSpellLink 005408E0 f end=00540A26 +Script_GetSpellInfo 00540A30 f end=00540D66 +Script_GetSpellTexture 00540D70 f end=00540DE3 +Script_GetSpellCount 00540DF0 f end=00540E75 +Script_GetSpellCooldown 00540E80 f end=0054100C +Script_GetSpellAutocast 00541010 f end=005410DE +Script_ToggleSpellAutocast 005410E0 f end=0054113C +Script_EnableSpellAutocast 00541140 f end=0054119C +Script_DisableSpellAutocast 005411A0 f end=005411FC +Script_PickupSpell 00541200 f end=00541242 +Script_CastSpell 00541250 f end=005412BA +Script_IsSelectedSpell 005412C0 f end=00541336 +Script_IsPassiveSpell 00541340 f end=0054141D +Script_IsAttackSpell 00541420 f end=005414FD +Script_IsCurrentSpell 00541500 f end=005415CC +Script_IsAutoRepeatSpell 005415D0 f end=00541679 +Script_IsUsableSpell 00541680 f end=005417FB +Script_IsHelpfulSpell 00541800 f end=005418ED +Script_IsHarmfulSpell 005418F0 f end=005419E1 +Script_IsConsumableSpell 005419F0 f end=00541AE4 +Script_SpellHasRange 00541AF0 f end=00541C51 +Script_IsSpellInRange 00541C60 f end=00541DEF +Script_GetNumMapLandmarks 00543020 f end=00543054 +Script_GetNumMapOverlays 00543060 f end=00543094 +Script_PositionWorldMapArrowFrame 005430A0 f end=005432B9 +Script_PositionMiniWorldMapArrowFrame 005432C0 f end=005434D9 +Script_ShowWorldMapArrowFrame 005434E0 f end=00543533 +Script_ShowMiniWorldMapArrowFrame 00543540 f end=00543593 +Script_GetWintergraspWaitTime 005435A0 f end=005435FD +Script_CanQueueForWintergrasp 00543600 f end=00543642 +Script_GetMapContinents 00544B20 f end=00544B8D +Script_GetMapZones 00544B90 f end=00544C3B +Script_DungeonUsesTerrainMap 00544C40 f end=00544C9D +Script_GetMapInfo 00544CA0 f end=00544D3A +Script_GetCurrentMapContinent 00544D40 f end=00544E03 +Script_GetCurrentMapAreaID 00544E10 f end=00544E71 +Script_GetCurrentMapZone 00544E80 f end=00544FB2 +Script_GetCurrentMapDungeonLevel 00544FC0 f end=00545050 +Script_IsZoomOutAvailable 00545050 f end=00545102 +Script_UpdateMapHighlight 00545110 f end=00545880 +Script_GetPlayerMapPosition 00545880 f end=00545941 +Script_GetCorpseMapPosition 00545950 f end=005459BD +Script_GetDeathReleasePosition 005459C0 f end=00545A29 +Script_GetMapLandmarkInfo 00545A30 f end=00545C7B +Script_GetMapOverlayInfo 00545C80 f end=00545E57 +Script_CreateWorldMapArrowFrame 00545E60 f end=00545F12 +Script_CreateMiniWorldMapArrowFrame 00545F20 f end=00545FD2 +Script_UpdateWorldMapArrowFrames 00545FE0 f end=00545FE8 +Script_InitWorldMapPing 00545FF0 f end=005460F7 +Script_GetNumDungeonMapLevels 00546290 f end=005462BA +Script_SetMapZoom 005469E0 f end=00546A83 +Script_ZoomOut 00546A90 f end=00546C4C +Script_SetMapByID 00546C50 f end=00546E76 +Script_ProcessMapClick 00546E80 f end=00546EEA +Script_ClickLandmark 00546EF0 f end=00546FDB +Script_SetDungeonMapLevel 00547B80 f end=00547C02 +Script_SetMapToCurrentZone 00547C10 f end=00547C1D +Script_GetNumWorldStateUI 00548720 f end=00548754 +Script_GetWorldStateUIInfo 00548D40 f end=00548F49 +Script_IsActiveBattlefieldArena 00549AD0 f end=00549B40 +Script_CloseBattlefield 00549B40 f end=00549B7B +Script_GetBattlefieldPortExpiration 00549B80 f end=00549C37 +Script_GetBattlefieldInstanceExpiration 00549C40 f end=00549CC5 +Script_GetBattlefieldInstanceRunTime 00549CD0 f end=00549D30 +Script_GetBattlefieldEstimatedWaitTime 00549D30 f end=00549DC6 +Script_GetBattlefieldTimeWaited 00549DD0 f end=00549E73 +Script_GetNumBattlefieldScores 00549E80 f end=00549EB4 +Script_GetBattlefieldWinner 00549EC0 f end=00549F13 +Script_GetNumBattlefieldStats 00549F20 f end=00549F54 +Script_GetBattlefieldStatData 00549F60 f end=0054A032 +Script_GetNumBattlefieldPositions 0054A040 f end=0054A0D1 +Script_GetNumBattlefieldFlagPositions 0054A0E0 f end=0054A13A +Script_GetNumBattlefieldVehicles 0054A140 f end=0054A174 +Script_GetBattlefieldTeamInfo 0054A180 f end=0054A27C +Script_GetBattlefieldArenaFaction 0054A280 f end=0054A2BA +Script_GetNumArenaOpponents 0054A2C0 f end=0054A2F4 +Script_GetHolidayBGHonorCurrencyBonuses 0054A300 f end=0054A361 +Script_GetRandomBGHonorCurrencyBonuses 0054A370 f end=0054A3D1 +Script_GetNumBattlefields 0054BAA0 f end=0054BAD4 +Script_IsBattlefieldArena 0054BAE0 f end=0054BB3D +Script_SetSelectedBattlefield 0054BB40 f end=0054BBC6 +Script_GetSelectedBattlefield 0054BBD0 f end=0054BC24 +Script_GetBattlefieldStatus 0054BC30 f end=0054BE79 +Script_GetBattlefieldScore 0054BE90 f end=0054C120 +Script_SetBattlefieldScoreFaction 0054C120 f end=0054C167 +Script_GetBattlefieldStatInfo 0054C170 f end=0054C248 +Script_LeaveBattlefield 0054C250 f end=0054C2E0 +Script_GetBattlefieldPosition 0054C2E0 f end=0054C4D0 +Script_GetBattlefieldVehicleInfo 0054C4D0 f end=0054C6D4 +Script_CanJoinBattlefieldAsGroup 0054C6E0 f end=0054C73D +Script_GetBattlefieldMapIconScale 0054C740 f end=0054C7A0 +Script_HearthAndResurrectFromArea 0054C7A0 f end=0054C808 +Script_CanHearthAndResurrectFromArea 0054C810 f end=0054C870 +Script_GetNumBattlegroundTypes 0054C870 f end=0054C892 +Script_GetWorldPVPQueueStatus 0054C8A0 f end=0054C9D3 +Script_SortBGList 0054C9F0 f end=0054CA22 +Script_GetBattlefieldInfo 0054D770 f end=0054D8E2 +Script_GetBattlefieldInstanceInfo 0054D8F0 f end=0054D990 +Script_JoinBattlefield 0054D990 f end=0054DA10 +Script_AcceptBattlefieldPort 0054DA10 f end=0054DC91 +Script_RequestBattlefieldScoreData 0054DCA0 f end=0054DCA8 +Script_RequestBattlefieldPositions 0054DCB0 f end=0054DCB8 +Script_GetBattlefieldFlagPosition 0054DCC0 f end=0054DDF1 +Script_SortBattlefieldScoreData 0054DE00 f end=0054E007 +Script_GetBattlegroundInfo 0054E010 f end=0054E15E +Script_BattlefieldMgrEntryInviteResponse 0054E160 f end=0054E191 +Script_BattlefieldMgrQueueRequest 0054E1A0 f end=0054E1C0 +Script_BattlefieldMgrQueueInviteResponse 0054E1C0 f end=0054E1F1 +Script_BattlefieldMgrExitRequest 0054E200 f end=0054E220 +Script_RequestBattlegroundInstanceInfo 0054E6D0 f end=0054E717 +Script_GetGamma 0054EA60 f end=0054EA89 +Script_SetGamma 0054EA90 f end=0054EB0B +Script_GetTerrainMip 0054EB10 f end=0054EB3B +Script_SetTerrainMip 0054EB40 f end=0054EBBA +Script_IsPlayerResolutionAvailable 0054EBC0 f end=0054EBFB +Script_SetupFullscreenScale 0054ED80 f end=0054EE58 +Script_GetVideoCaps 0054EE60 f end=0054EF87 +Script_IsStereoVideoAvailable 0054EF90 f end=0054EFD5 +Script_GetScreenResolutions 0054F430 f end=0054F49D +Script_GetCurrentResolution 0054F4A0 f end=0054F561 +Script_SetScreenResolution 0054F570 f end=0054F684 +Script_GetRefreshRates 0054F690 f end=0054F81D +Script_GetMultisampleFormats 0054F820 f end=0054F8AA +Script_GetCurrentMultisampleFormat 0054F8B0 f end=0054F97B +Script_SetMultisampleFormat 0054F980 f end=0054FB0B +Script_KBSetup_BeginLoading 00551720 f end=00551759 +Script_KBSetup_IsLoaded 00551760 f end=00551783 +Script_KBSetup_GetLanguageCount 00551790 f end=005517D0 +Script_KBSetup_GetLanguageData 005517D0 f end=005518B3 +Script_KBSetup_GetCategoryCount 005518C0 f end=00551900 +Script_KBSetup_GetCategoryData 00551900 f end=005519E3 +Script_KBSetup_GetArticleHeaderCount 005519F0 f end=00551A30 +Script_KBSetup_GetArticleHeaderData 00551A30 f end=00551B3D +Script_KBSetup_GetTotalArticleCount 00551B40 f end=00551B8F +Script_KBQuery_IsLoaded 00551B90 f end=00551BB3 +Script_KBQuery_GetArticleHeaderCount 00551BC0 f end=00551C00 +Script_KBQuery_GetArticleHeaderData 00551C00 f end=00551D0D +Script_KBQuery_GetTotalArticleCount 00551D10 f end=00551D5F +Script_KBArticle_BeginLoading 00551D60 f end=00551D99 +Script_KBArticle_IsLoaded 00551DA0 f end=00551DC3 +Script_KBArticle_GetData 00551DD0 f end=00551FA1 +Script_KBSystem_GetMOTD 00551FB0 f end=00551FCC +Script_KBSystem_GetServerStatus 00551FD0 f end=00551FEC +Script_KBSystem_GetServerNotice 00551FF0 f end=0055200C +Script_KBSetup_GetSubCategoryCount 005523A0 f end=00552439 +Script_KBSetup_GetSubCategoryData 00552440 f end=0055257D +Script_KBQuery_BeginLoading 00552580 f end=005526C8 +Script_SearchLFGGetJoinedID 005529A0 f end=005529D7 +Script_GetLFGTypes 00552DD0 f end=00552E10 +Script_GetLFGRoles 00552E10 f end=00552E84 +Script_GetLFGInfoLocal 00552E90 f end=00552F2F +Script_GetLFGInfoServer 00552F30 f end=00552FFE +Script_GetLFGProposalMember 00553110 f end=00553119 +Script_GetRandomDungeonBestChoice 00553120 f end=00553163 +Script_CanPartyLFGBackfill 00553170 f end=005531C2 +Script_SearchLFGGetNumResults 00553BA0 f end=00553C25 +Script_SearchLFGGetEncounterResults 00553C30 f end=00553D60 +Script_SetLFGRoles 00553D60 f end=00553E19 +Script_CompleteLFGRoleCheck 00553E20 f end=00553F46 +Script_SetLFGComment 00553F50 f end=00553F86 +Script_GetLFGQueueStats 00553F90 f end=00554157 +Script_LeaveLFG 00554160 f end=00554168 +Script_GetLFGProposal 00554370 f end=00554379 +Script_GetLFGProposalEncounter 00554440 f end=00554449 +Script_AcceptProposal 005545E0 f end=005545FB +Script_RejectProposal 00554600 f end=0055460D +Script_GetLFGRoleUpdate 00554680 f end=00554689 +Script_GetLFGRoleUpdateSlot 00554740 f end=00554749 +Script_GetLFGRoleUpdateMember 005548E0 f end=005548E9 +Script_GetAvailableRoles 005548F0 f end=00554958 +Script_SetLFGBootVote 00554A50 f end=00554A59 +Script_GetLFGBootProposal 00554BD0 f end=00554BD9 +Script_GetLFDChoiceOrder 00554BE0 f end=00554D1B +Script_GetLFRChoiceOrder 00554D20 f end=00554E5B +Script_GetLFDChoiceInfo 005551E0 f end=005553A5 +Script_GetNumRandomDungeons 005553B0 f end=005553E4 +Script_GetLFGDungeonInfo 00555590 f end=005555CC +Script_GetLFGRandomDungeonInfo 005555D0 f end=00555653 +Script_IsInLFGDungeon 00555660 f end=005556CB +Script_GetPartyLFGBackfillInfo 005556D0 f end=00555752 +Script_UnitHasLFGRandomCooldown 00555760 f end=00555839 +Script_UnitHasLFGDeserter 00555840 f end=00555919 +Script_SearchLFGGetResults 00555FD0 f end=0055627C +Script_SearchLFGGetPartyResults 00556280 f end=005564CA +Script_GetLFDChoiceCollapseState 005564D0 f end=005567D1 +Script_GetLFDChoiceEnabledState 005567E0 f end=005569CE +Script_RequestLFDPlayerLockInfo 005569D0 f end=00556A49 +Script_RequestLFDPartyLockInfo 00556A50 f end=00556AC9 +Script_SetLFGHeaderCollapsed 00556AD0 f end=00556B53 +Script_SetLFGDungeonEnabled 00556B60 f end=00556BBF +Script_LFGTeleport 00556BC0 f end=00556D70 +Script_GetLFGQueuedList 00557520 f end=00557657 +Script_JoinLFG 00557660 f end=005576A3 +Script_GetLFDChoiceLockedState 005576B0 f end=00557881 +Script_GetLFDLockPlayerCount 00557890 f end=00557925 +Script_GetLFDLockInfo 00557930 f end=00557A99 +Script_GetLFGDungeonRewards 00557AA0 f end=00557BDB +Script_GetLFGDungeonRewardInfo 00557BE0 f end=00557D56 +Script_GetLFGDungeonRewardLink 00557D60 f end=00557E31 +Script_GetLFGCompletionReward 00557E40 f end=00557F61 +Script_GetLFGCompletionRewardItem 00557F70 f end=0055805C +Script_GetLFGRandomCooldownExpiration 00558060 f end=005580DB +Script_GetLFGDeserterExpiration 005580E0 f end=0055815B +Script_IsListedInLFR 005586D0 f end=0055870F +Script_SearchLFGJoin 00559400 f end=005594D1 +Script_SearchLFGLeave 005594E0 f end=005594F6 +Script_ClearLFGDungeon 00559500 f end=005595C9 +Script_ClearAllLFGDungeons 005595D0 f end=005595D8 +Script_SetLFGDungeon 00559F50 f end=00559FE4 +Script_GetLastQueueStatusIndex 00559FF0 f end=0055A03B +Script_IsLFGDungeonJoinable 0055A040 f end=0055A0BF +Script_PartyLFGStartBackfill 0055A0C0 f end=0055A130 +Script_RefreshLFGList 0055D280 f end=0055D2A1 +Script_SearchLFGSort 0055D2B0 f end=0055D43D +Script_GetNumBindings 0055DC00 f end=0055DC23 +Script_GetCurrentBindingSet 0055DC30 f end=0055DC57 +Script_GetNumModifiedClickActions 0055DC60 f end=0055DC84 +Script_GetBinding 0055E8D0 f end=0055E9B0 +Script_GetBindingKey 0055E9B0 f end=0055EA67 +Script_GetModifiedClickAction 0055EA70 f end=0055EACE +Script_RunBinding 0055FAD0 f end=0055FB81 +Script_SetModifiedClick 0055FB90 f end=0055FC1F +Script_GetModifiedClick 0055FC20 f end=0055FCB9 +Script_IsModifiedClick 0055FCC0 f end=0055FD13 +Script_ClearOverrideBindings 00560560 f end=005605EC +Script_GetBindingAction 00562550 f end=005625F0 +Script_GetBindingByKey 005625F0 f end=0056269B +Script_SetBinding 00563520 f end=005635DF +Script_SetBindingSpell 005635E0 f end=00563700 +Script_SetBindingItem 00563700 f end=00563820 +Script_SetBindingMacro 00563820 f end=00563940 +Script_SetBindingClick 00563940 f end=00563A87 +Script_SetOverrideBinding 00563A90 f end=00563B7C +Script_SetOverrideBindingSpell 00563B80 f end=00563CAC +Script_SetOverrideBindingItem 00563CB0 f end=00563DDC +Script_SetOverrideBindingMacro 00563DE0 f end=00563F0C +Script_SetOverrideBindingClick 00563F10 f end=00564067 +Script_LoadBindings 00564070 f end=005640B2 +Script_SaveBindings 005640C0 f end=00564123 +Script_GetClickFrame 00564130 f end=005641BC +Script_SecureCmdOptionParse 00564AE0 f end=00564B8A +Script_StopMacro 00564B90 f end=00564BAD +Script_GetNumMacros 00564BB0 f end=00564C08 +Script_GetRunningMacro 00564C10 f end=00564C61 +Script_GetRunningMacroButton 00564C70 f end=00564C8C +Script_GetMacroIconInfo 00564E90 f end=00564F54 +Script_GetMacroItemIconInfo 00564F60 f end=00565024 +Script_RunMacroText 00566400 f end=00566487 +Script_GetNumMacroIcons 00566490 f end=005664D2 +Script_GetNumMacroItemIcons 005664E0 f end=00566522 +Script_GetMacroIndexByName 005666A0 f end=005666FE +Script_RunMacro 00566E80 f end=00566EAD +Script_GetMacroInfo 00566EB0 f end=00566F32 +Script_GetMacroBody 00566F40 f end=00566F6C +Script_DeleteMacro 00566F70 f end=00566F9F +Script_EditMacro 00566FA0 f end=005670CE +Script_SetMacroItem 005670D0 f end=005671F5 +Script_GetMacroItem 00567200 f end=00567313 +Script_SetMacroSpell 00567320 f end=0056744C +Script_GetMacroSpell 00567450 f end=005674F0 +Script_PickupMacro 005674F0 f end=0056751F +Script_CreateMacro 00568160 f end=005682B6 +Script_CommentatorGetNumMaps 00568730 f end=00568764 +Script_CommentatorZoomIn 00568770 f end=00568808 +Script_CommentatorZoomOut 00568810 f end=005688B2 +Script_CommentatorSetMode 005690A0 f end=0056917B +Script_CommentatorToggleMode 00569180 f end=00569229 +Script_CommentatorGetMode 00569230 f end=005692A0 +Script_CommentatorUpdatePlayerInfo 005692A0 f end=0056933F +Script_CommentatorUpdateMapInfo 00569340 f end=005693DF +Script_CommentatorGetMapInfo 005693E0 f end=0056951E +Script_CommentatorGetInstanceInfo 00569520 f end=005696DD +Script_CommentatorEnterInstance 005696E0 f end=005697AD +Script_CommentatorExitInstance 005697B0 f end=0056981C +Script_CommentatorGetNumPlayers 00569820 f end=00569901 +Script_CommentatorGetPlayerInfo 00569910 f end=00569B4C +Script_CommentatorFollowPlayer 00569B50 f end=00569CCE +Script_CommentatorLookatPlayer 00569CD0 f end=00569E46 +Script_CommentatorSetMapAndInstanceIndex 00569E50 f end=00569F99 +Script_CommentatorSetPlayerIndex 00569FA0 f end=0056A0EC +Script_CommentatorSetCamera 0056A0F0 f end=0056A29E +Script_CommentatorGetCamera 0056A2A0 f end=0056A376 +Script_CommentatorGetCurrentMapID 0056A380 f end=0056A404 +Script_CommentatorStartInstance 0056A410 f end=0056A639 +Script_CommentatorAddPlayer 0056A640 f end=0056A85E +Script_CommentatorRemovePlayer 0056A860 f end=0056AA04 +Script_CommentatorSetBattlemaster 0056AA10 f end=0056AAEC +Script_CommentatorSetMoveSpeed 0056AAF0 f end=0056AB61 +Script_CommentatorSetCameraCollision 0056AB70 f end=0056AC05 +Script_CommentatorSetTargetHeightOffset 0056AC10 f end=0056AC88 +Script_CommentatorSetSkirmishMatchmakingMode 0056AC90 f end=0056AD96 +Script_CommentatorRequestSkirmishQueueData 0056ADA0 f end=0056AE42 +Script_CommentatorRequestSkirmishMode 0056AE50 f end=0056AEF2 +Script_CommentatorGetSkirmishMode 0056AF00 f end=0056AF51 +Script_CommentatorGetSkirmishQueueCount 0056AF60 f end=0056AFB1 +Script_CommentatorGetSkirmishQueuePlayerInfo 0056AFC0 f end=0056B0AB +Script_CommentatorStartSkirmishMatch 0056B0B0 f end=0056B1DC +Script_SetSendMailShowing 0056D570 f end=0056D5B4 +Script_ClearSendMail 0056D5C0 f end=0056D5CD +Script_GetSendMailMoney 0056D5D0 f end=0056D604 +Script_SetSendMailCOD 0056D610 f end=0056D689 +Script_GetSendMailCOD 0056D690 f end=0056D6C4 +Script_GetInboxNumItems 0056D6D0 f end=0056D728 +Script_GetStationeryInfo 0056DF80 f end=0056E0DC +Script_SelectStationery 0056E0E0 f end=0056E167 +Script_GetSelectedStationeryTexture 0056E170 f end=0056E1DA +Script_GetNumPackages 0056E1E0 f end=0056E202 +Script_GetPackageInfo 0056E210 f end=0056E306 +Script_SelectPackage 0056E310 f end=0056E39D +Script_GetSendMailItemLink 0056E3A0 f end=0056E440 +Script_CheckInbox 0056E440 f end=0056E518 +Script_GetInboxHeaderInfo 0056E520 f end=0056E9AF +Script_GetInboxInvoiceInfo 0056E9B0 f end=0056EC9D +Script_GetInboxItemLink 0056ECA0 f end=0056EDE2 +Script_TakeInboxMoney 0056EDF0 f end=0056EEE2 +Script_TakeInboxTextItem 0056EEF0 f end=0056EFFA +Script_ReturnInboxItem 0056F000 f end=0056F13F +Script_DeleteInboxItem 0056F140 f end=0056F274 +Script_InboxItemCanDelete 0056F280 f end=0056F342 +Script_HasNewMail 0056F350 f end=0056F396 +Script_GetLatestThreeSenders 0056F3A0 f end=0056F404 +Script_RespondMailLockSendItem 0056F410 f end=0056F4D8 +Script_ClickSendMailItemButton 00570550 f end=005706B2 +Script_SetSendMailMoney 005706C0 f end=0057074C +Script_GetSendMailItem 00570750 f end=00570901 +Script_SendMail 00570910 f end=00570BC7 +Script_GetInboxText 00570BD0 f end=00570F0A +Script_GetInboxItem 00570F10 f end=005711BC +Script_TakeInboxItem 005711C0 f end=00571347 +Script_ComplainInboxItem 00571350 f end=005713B4 +Script_CanComplainInboxItem 005713C0 f end=0057144F +Script_AutoLootMailItem 00571450 f end=005714CA +Script_CloseMail 00571A40 f end=00571AA1 +Script_GetNumStationeries 00571AB0 f end=00571AF2 +Script_GetSendMailPrice 00571B00 f end=00571BDF +Script_GetRaidTargetIndex 00572AB0 f end=00572B3A +Script_GetNumRaidMembers 00572B40 f end=00572B74 +Script_GetRealNumRaidMembers 00572B80 f end=00572BB4 +Script_SetRaidRosterSelection 00572BC0 f end=00572C4F +Script_GetRaidRosterSelection 00572C50 f end=00572C7D +Script_GetReadyCheckTimeLeft 00572C80 f end=00572D07 +Script_GetRaidRosterInfo 00573690 f end=00573A5F +Script_IsRaidLeader 00573A60 f end=00573AA6 +Script_IsRealRaidLeader 00573AB0 f end=00573AF6 +Script_IsRaidOfficer 00573B00 f end=00573B4A +Script_SetRaidSubgroup 00573B50 f end=00573C8F +Script_SwapRaidSubgroup 00573C90 f end=00573E09 +Script_PromoteToLeader 00573E10 f end=00573EE3 +Script_PromoteToAssistant 00573EF0 f end=00573FD0 +Script_DemoteAssistant 00573FD0 f end=005740AF +Script_DoReadyCheck 005740B0 f end=005740B8 +Script_ConfirmReadyCheck 005740C0 f end=0057417E +Script_GetReadyCheckStatus 00574180 f end=00574304 +Script_ConvertToRaid 00574A00 f end=00574AA8 +Script_SetRaidTarget 00574AB0 f end=00574CF3 +Script_PlayDance 005761F0 f end=00576238 +Script_GetAutoCompleteResults 0057B3A0 f end=0057B4F4 +Script_GetAutoCompletePresenceID 0057B500 f end=0057B573 +Script_BankButtonIDToInvSlotID 0057B940 f end=0057B9B9 +Script_CloseBankFrame 0057B9C0 f end=0057B9E0 +Script_GetNumBankSlots 0057BAB0 f end=0057BB30 +Script_GetBankSlotCost 0057BB30 f end=0057BBB3 +Script_PurchaseSlot 0057BBC0 f end=0057BC8A +Script_GetNumTrackingTypes 0057F170 f end=0057F1AE +Script_GetTrackingInfo 0057F1B0 f end=0057F37A +Script_SetTracking 0057F380 f end=0057F4F0 +Script_GetTrackingTexture 0057F4F0 f end=0057F5CE +Script_GetMerchantNumItems 005841D0 f end=005841F2 +Script_GetMerchantItemLink 00584200 f end=005842C4 +Script_GetMerchantItemMaxStack 005842D0 f end=00584389 +Script_HideRepairCursor 00584390 f end=005843AE +Script_InRepairMode 005843B0 f end=005843EB +Script_GetNumBuybackItems 005843F0 f end=0058444F +Script_CloseMerchant 005846D0 f end=005846D8 +Script_GetMerchantItemCostInfo 005846E0 f end=00584820 +Script_GetMerchantItemCostItem 00584820 f end=005849E5 +Script_CanMerchantRepair 005849F0 f end=00584A59 +Script_ShowRepairCursor 00584A60 f end=00584ABE +Script_GetMerchantItemInfo 00584E10 f end=00585070 +Script_GetBuybackItemInfo 00585070 f end=005852B4 +Script_GetBuybackItemLink 005852C0 f end=00585394 +Script_PickupMerchantItem 005853A0 f end=005854B2 +Script_BuyMerchantItem 005854C0 f end=005855B7 +Script_BuybackItem 005855C0 f end=005856C1 +Script_ShowMerchantSellCursor 005856D0 f end=00585886 +Script_ShowBuybackSellCursor 00585890 f end=00585990 +Script_GetRepairAllCost 00585990 f end=00585C8E +Script_RepairAllItems 00585C90 f end=00585F57 +Script_GetTradeTargetItemLink 005865F0 f end=005866DB +Script_AcceptTrade 005866E0 f end=00586722 +Script_CancelTradeAccept 00586730 f end=00586773 +Script_GetPlayerTradeMoney 00586780 f end=005867C5 +Script_GetTargetTradeMoney 005867D0 f end=00586804 +Script_PickupTradeMoney 00586810 f end=0058686C +Script_SetTradeMoney 00586870 f end=005868D1 +Script_ClickTargetTradeButton 00586C80 f end=00586CF2 +Script_GetTradePlayerItemLink 00586D00 f end=00586D87 +Script_AddTradeMoney 00586D90 f end=00586DB5 +Script_CloseTrade 00587940 f end=005879D0 +Script_ClickTradeButton 005879D0 f end=00587C60 +Script_GetTradeTargetItemInfo 00587C60 f end=00587EAD +Script_GetTradePlayerItemInfo 00587EB0 f end=005880BB +Script_GetNumLootItems 00588540 f end=0058856A +Script_GetLootSlotInfo 00588570 f end=005886C6 +Script_GetLootSlotLink 005886D0 f end=0058874D +Script_LootSlotIsItem 00588750 f end=00588804 +Script_LootSlotIsCoin 00588810 f end=005888B0 +Script_CloseLoot 005888B0 f end=005888D6 +Script_IsFishingLoot 005888E0 f end=0058891A +Script_GetMasterLootCandidate 00588920 f end=005889CD +Script_GetLootRollItemInfo 005889D0 f end=00588C00 +Script_GetLootRollItemLink 00588C00 f end=00588CBF +Script_GetLootRollTimeLeft 00588CC0 f end=00588D59 +Script_RollOnLoot 00588D60 f end=00588DC7 +Script_ConfirmLootRoll 00588DD0 f end=00588E52 +Script_SetLootPortrait 00588F00 f end=00588F89 +Script_LootSlot 00589520 f end=00589584 +Script_ConfirmLootSlot 00589590 f end=005895F4 +Script_GiveMasterLoot 00589600 f end=005896AC +Script_ItemTextGetPage 00589B50 f end=00589B87 +Script_ItemTextGetText 00589B90 f end=00589BAB +Script_ItemTextGetItem 00589C40 f end=00589C8E +Script_ItemTextGetMaterial 00589C90 f end=00589D67 +Script_ItemTextHasNextPage 00589D70 f end=00589DBC +Script_ItemTextPrevPage 0058A110 f end=0058A148 +Script_ItemTextNextPage 0058A150 f end=0058A192 +Script_CloseItemText 0058A400 f end=0058A421 +Script_ItemTextGetCreator 0058A480 f end=0058A515 +Script_GetGossipText 0058A900 f end=0058A91B +Script_GetNumGossipOptions 0058A920 f end=0058A954 +Script_GetNumGossipAvailableQuests 0058A960 f end=0058A994 +Script_GetNumGossipActiveQuests 0058A9A0 f end=0058A9D4 +Script_GetGossipOptions 0058A9E0 f end=0058AA35 +Script_CloseGossip 0058AA40 f end=0058AA60 +Script_ForceGossip 0058AB50 f end=0058AB9C +Script_GetGossipAvailableQuests 0058B3A0 f end=0058B487 +Script_GetGossipActiveQuests 0058B490 f end=0058B587 +Script_SelectGossipOption 0058B590 f end=0058B5F7 +Script_SelectGossipAvailableQuest 0058B600 f end=0058B664 +Script_SelectGossipActiveQuest 0058B670 f end=0058B6D4 +Script_GetTitleText 0058BD10 f end=0058BD2B +Script_GetGreetingText 0058BD30 f end=0058BD4B +Script_GetQuestText 0058BD50 f end=0058BD6B +Script_GetObjectiveText 0058BD70 f end=0058BD8B +Script_GetProgressText 0058BD90 f end=0058BDAB +Script_GetRewardText 0058BDB0 f end=0058BDCB +Script_GetNumAvailableQuests 0058BDD0 f end=0058BDF2 +Script_GetNumActiveQuests 0058BE00 f end=0058BE22 +Script_GetAvailableTitle 0058BE30 f end=0058BEC4 +Script_GetActiveTitle 0058BED0 f end=0058BF63 +Script_GetAvailableLevel 0058BF70 f end=0058C003 +Script_GetActiveLevel 0058C010 f end=0058C0A3 +Script_GetRewardMoney 0058C0B0 f end=0058C0D2 +Script_GetRewardXP 0058C0E0 f end=0058C102 +Script_GetRewardHonor 0058C110 f end=0058C135 +Script_GetRewardTalents 0058C140 f end=0058C15C +Script_GetQuestMoneyToGet 0058C160 f end=0058C182 +Script_GetNumQuestRewards 0058C190 f end=0058C1E1 +Script_GetNumQuestChoices 0058C1F0 f end=0058C241 +Script_GetNumQuestItems 0058C250 f end=0058C2A1 +Script_GetQuestItemLink 0058C2B0 f end=0058C39C +Script_QuestChooseRewardError 0058C3A0 f end=0058C3B0 +Script_GetSuggestedGroupNum 0058C3B0 f end=0058C3D2 +Script_QuestFlagsPVP 0058C3E0 f end=0058C426 +Script_QuestGetAutoAccept 0058C430 f end=0058C46D +Script_GetMaxDailyQuests 0058C470 f end=0058C492 +Script_GetRewardArenaPoints 0058C4A0 f end=0058C4C2 +Script_QuestIsDaily 0058C4D0 f end=0058C50D +Script_QuestIsWeekly 0058C510 f end=0058C54D +Script_ConfirmAcceptQuest 0058C910 f end=0058C986 +Script_GetQuestBackgroundMaterial 0058C990 f end=0058CA67 +Script_CloseQuest 0058D350 f end=0058D365 +Script_IsAvailableQuestTrivial 0058D370 f end=0058D41A +Script_IsActiveQuestTrivial 0058D420 f end=0058D4CA +Script_SelectAvailableQuest 0058D4D0 f end=0058D534 +Script_SelectActiveQuest 0058D540 f end=0058D5A4 +Script_AcceptQuest 0058D5B0 f end=0058D5B8 +Script_DeclineQuest 0058D5C0 f end=0058D5C8 +Script_IsQuestCompletable 0058D5D0 f end=0058D60A +Script_CompleteQuest 0058D610 f end=0058D618 +Script_GetQuestReward 0058D620 f end=0058D670 +Script_GetRewardSpell 0058D670 f end=0058D80A +Script_GetRewardTitle 0058D810 f end=0058D971 +Script_GetQuestItemInfo 0058D980 f end=0058DAAC +Script_GetQuestSpellLink 0058DAB0 f end=0058DB2A +Script_GetDailyQuestsCompleted 0058DB30 f end=0058DBBB +Script_GetAvailableQuestInfo 0058DBC0 f end=0058DD2A +Script_NumTaxiNodes 00590710 f end=00590744 +Script_SetTaxiMap 00590D10 f end=00590D52 +Script_TaxiNodeName 00590D60 f end=00590DFE +Script_TaxiNodePosition 00590E00 f end=00590EB4 +Script_CloseTaxiMap 00590EC0 f end=00590EC8 +Script_TaxiNodeGetType 00590ED0 f end=00590F3E +Script_TaxiGetSrcX 00590F40 f end=00590FDF +Script_TaxiGetSrcY 00590FE0 f end=00591080 +Script_TaxiGetDestX 00591080 f end=00591120 +Script_TaxiGetDestY 00591120 f end=005911C0 +Script_GetNumRoutes 005911C0 f end=00591249 +Script_TaxiNodeCost 005915E0 f end=00591677 +Script_TakeTaxiNode 00591680 f end=005916E4 +Script_TaxiNodeSetCurrent 00591E60 f end=00591EC4 +Script_GetNumTrainerServices 00593D10 f end=00593D44 +Script_IsTradeskillTrainer 00593D50 f end=00593D8A +Script_GetTrainerGreetingText 00593D90 f end=00593DAB +Script_GetTrainerServiceTypeFilter 00593E10 f end=00593EA4 +Script_GetTrainerSkillLineFilter 00593EB0 f end=00593F67 +Script_CloseTrainer 00594370 f end=00594391 +Script_SelectTrainerService 005943A0 f end=00594424 +Script_GetTrainerSelectionIndex 00594430 f end=0059447B +Script_GetTrainerServiceCost 00594480 f end=0059452C +Script_GetTrainerServiceLevelReq 00594530 f end=005945AE +Script_GetTrainerServiceNumAbilityReq 005945B0 f end=0059464F +Script_GetTrainerSkillLines 00594650 f end=005946BB +Script_OpenTrainer 00595040 f end=00595084 +Script_GetTrainerServiceInfo 00595090 f end=00595148 +Script_GetTrainerServiceIcon 00595150 f end=005952E7 +Script_GetTrainerServiceSkillLine 005952F0 f end=00595470 +Script_GetTrainerServiceSkillReq 00595470 f end=005955D9 +Script_GetTrainerServiceAbilityReq 005955E0 f end=005957CC +Script_GetTrainerServiceStepReq 005957D0 f end=005959C5 +Script_GetTrainerServiceDescription 005959D0 f end=00595B59 +Script_IsTrainerServiceSkillStep 00595B60 f end=00595C3B +Script_GetTrainerServiceStepIncrease 00595C40 f end=00595E60 +Script_BuyTrainerService 00595E60 f end=00595EB6 +Script_SetTrainerServiceTypeFilter 00595EC0 f end=0059600E +Script_SetTrainerSkillLineFilter 00596010 f end=00596143 +Script_CollapseTrainerSkillLine 00596150 f end=005961E4 +Script_ExpandTrainerSkillLine 005961F0 f end=00596282 +Script_GetTrainerServiceItemLink 00596290 f end=005963BF +Script_GetTabardCreationCost 00598DD0 f end=00598E04 +Script_CloseTabardCreation 00598F30 f end=00598F38 +Script_CloseGuildRegistrar 00599F00 f end=00599F3F +Script_GetGuildCharterCost 00599F40 f end=00599F74 +Script_BuyGuildCharter 0059A130 f end=0059A1B2 +Script_TurnInGuildCharter 0059A1C0 f end=0059A1E9 +Script_GetTabardInfo 0059A1F0 f end=0059A275 +Script_IsAuctionSortReversed 0059AB90 f end=0059AD3B +Script_GetAuctionSort 0059AD40 f end=0059AE6B +Script_SortAuctionClearSort 0059AE70 f end=0059AF02 +Script_SortAuctionSetSort 0059AF10 f end=0059B037 +Script_CancelSell 0059B040 f end=0059B0AC +Script_SetAuctionsTabShowing 0059B0B0 f end=0059B0F4 +Script_GetAuctionHouseDepositRate 0059BC90 f end=0059BCF0 +Script_QueryAuctionItems 0059BCF0 f end=0059C196 +Script_GetNumAuctionItems 0059C1A0 f end=0059C2CF +Script_GetAuctionItemLink 0059C2D0 f end=0059C414 +Script_GetAuctionItemClasses 0059C420 f end=0059C479 +Script_GetAuctionItemSubClasses 0059C480 f end=0059C588 +Script_GetAuctionInvTypes 0059C590 f end=0059C737 +Script_CanSendAuctionQuery 0059C740 f end=0059C828 +Script_SetSelectedAuctionItem 0059C830 f end=0059C91A +Script_GetSelectedAuctionItem 0059C920 f end=0059C9E4 +Script_CanCancelAuction 0059C9F0 f end=0059CAA1 +Script_SortAuctionApplySort 0059CAB0 f end=0059CB68 +Script_CalculateAuctionDeposit 0059D270 f end=0059D405 +Script_ClickAuctionSellItemButton 0059D410 f end=0059D4F0 +Script_GetOwnerAuctionItems 0059D4F0 f end=0059D533 +Script_GetBidderAuctionItems 0059D540 f end=0059D5D1 +Script_GetAuctionItemInfo 0059D5E0 f end=0059DA35 +Script_PlaceAuctionBid 0059DA40 f end=0059DCFE +Script_SortAuctionItems 0059DD00 f end=0059DDEA +Script_CancelAuction 0059DDF0 f end=0059DF54 +Script_CloseAuctionHouse 0059F750 f end=0059F758 +Script_GetAuctionSellItemInfo 0059F760 f end=0059F98D +Script_StartAuction 0059F990 f end=0059FD5B +Script_GetAuctionItemTimeLeft 0059FD60 f end=0059FF23 +Script_GetNumStablePets 005A0F60 f end=005A0F94 +Script_GetNumStableSlots 005A0FA0 f end=005A0FD4 +Script_PickupStablePet 005A0FE0 f end=005A1054 +Script_GetSelectedStablePet 005A1060 f end=005A108D +Script_IsAtStableMaster 005A1090 f end=005A10CF +Script_GetStablePetInfo 005A1330 f end=005A14C8 +Script_GetNextStableSlotCost 005A14D0 f end=005A152A +Script_SetPetStablePaperdoll 005A1530 f end=005A169B +Script_GetStablePetFoodTypes 005A16A0 f end=005A17E9 +Script_ClosePetStables 005A1950 f end=005A19B5 +Script_StablePet 005A19C0 f end=005A1AB5 +Script_UnstablePet 005A1AC0 f end=005A1BC2 +Script_BuyStableSlot 005A1BD0 f end=005A1C93 +Script_ClickStablePet 005A1CA0 f end=005A1EC5 +Script_GetNumPetitionItems 005A1F70 f end=005A1FA4 +Script_GetPetitionItemInfo 005A1FB0 f end=005A20E3 +Script_ClickPetitionButton 005A2200 f end=005A2292 +Script_ClosePetitionVendor 005A24F0 f end=005A252F +Script_BuyPetition 005A2530 f end=005A25FB +Script_TurnInPetition 005A2600 f end=005A26CF +Script_TurnInArenaPetition 005A26D0 f end=005A2820 +Script_HasFilledPetition 005A2820 f end=005A287D +Script_GetNumArenaTeamMembers 005A2930 f end=005A29F4 +Script_GetArenaTeamRosterShowOffline 005A2A00 f end=005A2A3A +Script_GetCurrentArenaSeason 005A2A40 f end=005A2A6D +Script_GetPreviousArenaSeason 005A2A70 f end=005A2A9D +Script_GetArenaTeamRosterInfo 005A2FC0 f end=005A325C +Script_GetArenaTeamGdfInfo 005A3260 f end=005A3364 +Script_SetArenaTeamRosterSelection 005A3370 f end=005A340C +Script_GetArenaTeamRosterSelection 005A3410 f end=005A348C +Script_SortArenaTeamRoster 005A3490 f end=005A35DD +Script_SetArenaTeamRosterShowOffline 005A35E0 f end=005A35FD +Script_GetArenaTeam 005A3860 f end=005A3CE4 +Script_ArenaTeamRoster 005A3CF0 f end=005A3D54 +Script_PickupGuildBankMoney 005A4330 f end=005A43B3 +Script_SetCurrentGuildBankTab 005A43C0 f end=005A440B +Script_GetCurrentGuildBankTab 005A4410 f end=005A443F +Script_GetGuildBankMoney 005A4440 f end=005A4493 +Script_GetGuildBankWithdrawMoney 005A44A0 f end=005A44C2 +Script_GetNumGuildBankTabs 005A44D0 f end=005A44FC +Script_CloseGuildBankFrame 005A4500 f end=005A4520 +Script_GetNumGuildBankTransactions 005A4520 f end=005A45AC +Script_GetNumGuildBankMoneyTransactions 005A45B0 f end=005A45D2 +Script_GetGuildBankText 005A45E0 f end=005A469F +Script_GetGuildBankItemLink 005A4D30 f end=005A4E46 +Script_GetGuildBankMoneyTransaction 005A4E50 f end=005A500D +Script_QueryGuildBankTab 005A5CE0 f end=005A5D2F +Script_BuyGuildBankTab 005A5D30 f end=005A5E14 +Script_DepositGuildBankMoney 005A5E20 f end=005A5EE2 +Script_WithdrawGuildBankMoney 005A5EF0 f end=005A5F51 +Script_CanWithdrawGuildBankMoney 005A5F60 f end=005A5FF8 +Script_GetGuildBankItemInfo 005A6000 f end=005A61FA +Script_PickupGuildBankItem 005A6200 f end=005A63EA +Script_AutoStoreGuildBankItem 005A63F0 f end=005A65F2 +Script_SplitGuildBankItem 005A6600 f end=005A67EB +Script_GetGuildBankTabInfo 005A67F0 f end=005A69F9 +Script_SetGuildBankTabInfo 005A6A00 f end=005A6B12 +Script_GetGuildBankTabCost 005A6B20 f end=005A6B9C +Script_GetGuildTabardFileNames 005A6BA0 f end=005A6D50 +Script_QueryGuildBankLog 005A6D50 f end=005A6DB9 +Script_GetGuildBankTransaction 005A6DC0 f end=005A70ED +Script_QueryGuildBankText 005A7110 f end=005A7179 +Script_SetGuildBankText 005A7180 f end=005A7243 +Script_GetActionCount 005A7D10 f end=005A7D87 +Script_GetActionText 005A7D90 f end=005A7E60 +Script_IsUsableAction 005A7E60 f end=005A7F15 +Script_GetBonusBarOffset 005A7F20 f end=005A7F54 +Script_ChangeActionBarPage 005A7F60 f end=005A7FCB +Script_GetActionBarPage 005A7FD0 f end=005A8011 +Script_HasAction 005A8220 f end=005A8290 +Script_SetActionBarToggles 005A8290 f end=005A832F +Script_GetMultiCastTotemSpells 005A8330 f end=005A83B1 +Script_IsStackableAction 005A8720 f end=005A8790 +Script_GetActionBarToggles 005A8790 f end=005A8811 +Script_IsPossessBarVisible 005A8820 f end=005A88A9 +Script_IsEquippedAction 005A8BC0 f end=005A8C30 +Script_GetActionInfo 005A8F10 f end=005A91BB +Script_GetActionCooldown 005A91C0 f end=005A9288 +Script_GetActionAutocast 005A9290 f end=005A9357 +Script_GetActionTexture 005A9B30 f end=005A9B99 +Script_IsAttackAction 005A9BA0 f end=005A9C10 +Script_IsAutoRepeatAction 005A9C10 f end=005A9C80 +Script_IsConsumableAction 005A9C80 f end=005A9CF0 +Script_ActionHasRange 005A9CF0 f end=005A9D4D +Script_IsActionInRange 005A9D50 f end=005A9E17 +Script_IsCurrentAction 005AAD40 f end=005AADB0 +Script_PlaceAction 005AB840 f end=005AB896 +Script_SetMultiCastSpell 005AB8A0 f end=005AB9CD +Script_UseAction 005AC000 f end=005AC084 +Script_PickupAction 005AC090 f end=005AC0D7 +Script_RegisterStaticConstants 005AC320 f end=005AC385 +Script_GMSurveyAnswerSubmit 005AC390 f end=005AC477 +Script_GMSurveyCommentSubmit 005AC480 f end=005AC4C1 +Script_GMSurveyQuestion 005AC750 f end=005AC7C3 +Script_GMSurveyAnswer 005AC7D0 f end=005AC865 +Script_GMSurveyNumAnswers 005AC870 f end=005AC8E5 +Script_GMReportLag 005AD020 f end=005AD064 +Script_GetGMTicket 005AD070 f end=005AD078 +Script_NewGMTicket 005AD080 f end=005AD0EE +Script_UpdateGMTicket 005AD0F0 f end=005AD13F +Script_DeleteGMTicket 005AD140 f end=005AD148 +Script_GMResponseNeedMoreHelp 005AD150 f end=005AD1A3 +Script_GMResponseResolve 005AD1B0 f end=005AD1B8 +Script_GetGMStatus 005AD1C0 f end=005AD228 +Script_GMSurveySubmit 005AD230 f end=005AD238 +Script_EquipmentManagerIgnoreSlotForSave 005AD770 f end=005AD7B2 +Script_EquipmentManagerIsSlotIgnoredForSave 005AD7C0 f end=005AD812 +Script_EquipmentManagerClearIgnoredSlotsForSave 005AD820 f end=005AD828 +Script_EquipmentManagerUnignoreSlotForSave 005AD830 f end=005AD872 +Script_CanUseEquipmentSets 005AD880 f end=005AD8E3 +Script_DeleteEquipmentSet 005AE800 f end=005AE85A +Script_GetEquipmentSetLocations 005AE860 f end=005AEF83 +Script_GetEquipmentSetItemIDs 005AEF90 f end=005AF0C7 +Script_GetNumEquipmentSets 005AF0D0 f end=005AF116 +Script_GetEquipmentSetInfo 005AF120 f end=005AF1CD +Script_GetEquipmentSetInfoByName 005AF1D0 f end=005AF242 +Script_PickupEquipmentSetByName 005AF250 f end=005AF2BB +Script_PickupEquipmentSet 005AF2C0 f end=005AF317 +Script_EquipmentSetContainsLockedItems 005AF320 f end=005AF380 +Script_UseEquipmentSet 005AF380 f end=005AF3F1 +Script_RenameEquipmentSet 005AF910 f end=005AF9BA +Script_SaveEquipmentSet 005AF9C0 f end=005AFBAF +Script_GetCurrencyListSize 005AFD10 f end=005AFD32 +Script_GetCurrencyListInfo 005B0680 f end=005B093C +Script_ExpandCurrencyList 005B0940 f end=005B09AD +Script_SetCurrencyUnused 005B09B0 f end=005B0A1D +Script_SetCurrencyBackpack 005B0A20 f end=005B0A8D +Script_GetBackpackCurrencyInfo 005B0A90 f end=005B0CD2 +Script_CanShowAchievementUI 005B0CE0 f end=005B0CFC +Script_GetCategoryList 005B1390 f end=005B14A3 +Script_GetStatisticsCategoryList 005B14B0 f end=005B15BD +Script_GetCategoryInfo 005B15C0 f end=005B1689 +Script_GetPreviousAchievement 005B1690 f end=005B1713 +Script_GetAchievementInfoFromCriteria 005B1720 f end=005B18D7 +Script_GetAchievementCategory 005B18E0 f end=005B1969 +Script_GetAchievementNumRewards 005B1970 f end=005B19FA +Script_GetAchievementReward 005B1A00 f end=005B1AA7 +Script_SetAchievementComparisonUnit 005B1AB0 f end=005B1BAC +Script_QueryQuestsCompleted 005B1BB0 f end=005B1C18 +Script_GetLatestCompletedAchievements 005B1C20 f end=005B1C8E +Script_GetLatestUpdatedStats 005B1C90 f end=005B1CE7 +Script_GetLatestCompletedComparisonAchievements 005B1CF0 f end=005B1D5E +Script_GetLatestUpdatedComparisonStats 005B1D60 f end=005B1DB7 +Script_GetTotalAchievementPoints 005B1DC0 f end=005B1E3C +Script_GetComparisonAchievementPoints 005B1E40 f end=005B1EBC +Script_HasCompletedAnyAchievement 005B1EC0 f end=005B1EED +Script_GetTrackedAchievements 005B2040 f end=005B208B +Script_IsTrackedAchievement 005B2090 f end=005B2113 +Script_GetNumTrackedAchievements 005B2120 f end=005B2166 +Script_GetCategoryNumAchievements 005B38E0 f end=005B3B2C +Script_GetComparisonCategoryNumAchievements 005B3B30 f end=005B3C9B +Script_GetNumCompletedAchievements 005B3CA0 f end=005B3DBC +Script_GetNumComparisonCompletedAchievements 005B3DC0 f end=005B3EE1 +Script_GetNextAchievement 005B3EF0 f end=005B3FB2 +Script_GetAchievementInfo 005B3FC0 f end=005B475C +Script_ClearAchievementComparisonUnit 005B4760 f end=005B4768 +Script_GetAchievementComparisonInfo 005B4770 f end=005B486E +Script_AddTrackedAchievement 005B4870 f end=005B48CE +Script_RemoveTrackedAchievement 005B48D0 f end=005B490A +Script_GetQuestsCompleted 005B5290 f end=005B530A +Script_GetAchievementNumCriteria 005B5530 f end=005B5613 +Script_GetStatistic 005B5620 f end=005B58AD +Script_GetAchievementCriteriaInfo 005B58B0 f end=005B5E63 +Script_GetComparisonStatistic 005B5E70 f end=005B6101 +Script_GetAchievementLink 005B6110 f end=005B63E8 +Script_GetNumGlyphSockets 005B71E0 f end=005B7202 +Script_GetGlyphSocketInfo 005B7260 f end=005B7408 +Script_GlyphMatchesSocket 005B7410 f end=005B7597 +Script_PlaceGlyphInSocket 005B75A0 f end=005B765E +Script_RemoveGlyphFromSocket 005B7660 f end=005B7739 +Script_GetGlyphLink 005B7740 f end=005B7813 +Script_CalendarGetMonthNames 005B80E0 f end=005B8120 +Script_CalendarGetWeekdayNames 005B8120 f end=005B8160 +Script_CalendarGetDate 005B8160 f end=005B81E1 +Script_CalendarGetMinDate 005B81F0 f end=005B829E +Script_CalendarGetMaxDate 005B82A0 f end=005B8347 +Script_CalendarGetMinHistoryDate 005B8350 f end=005B840C +Script_CalendarGetMaxCreateDate 005B8410 f end=005B8499 +Script_CalendarCloseEvent 005B84A0 f end=005B84C1 +Script_CalendarEventGetNumInvites 005B84D0 f end=005B850F +Script_CalendarContextDeselectEvent 005B8510 f end=005B8536 +Script_CalendarContextEventClipboard 005B8540 f end=005B8570 +Script_CalendarEventSortInvites 005B8570 f end=005B8685 +Script_CalendarEventGetInviteSortCriterion 005B8690 f end=005B8713 +Script_CalendarEventSetStatus 005B8730 f end=005B87CC +Script_CalendarEventSetModerator 005B87D0 f end=005B8836 +Script_CalendarEventClearModerator 005B8840 f end=005B88A6 +Script_CalendarEventIsModerator 005B88B0 f end=005B88DD +Script_CalendarEventCanModerate 005B88E0 f end=005B8962 +Script_CalendarEventGetTypes 005B8970 f end=005B89B3 +Script_CalendarEventGetRepeatOptions 005B89C0 f end=005B8A03 +Script_CalendarEventHaveSettingsChanged 005B8A10 f end=005B8A4C +Script_CalendarEventCanEdit 005B8A50 f end=005B8A9D +Script_CalendarEventGetCalendarType 005B8AA0 f end=005B8ADF +Script_CalendarEventSelectInvite 005B8AE0 f end=005B8B2C +Script_CalendarCanSendInvite 005B8B30 f end=005B8B92 +Script_CalendarCanAddEvent 005B8BA0 f end=005B8C02 +Script_CalendarIsActionPending 005B8C10 f end=005B8C2E +Script_CalendarGetMonth 005B99F0 f end=005B9AB9 +Script_CalendarGetAbsMonth 005B9AC0 f end=005B9BEC +Script_CalendarGetNumDayEvents 005B9BF0 f end=005B9C94 +Script_CalendarGetDayEventSequenceInfo 005B9CA0 f end=005B9E10 +Script_CalendarGetFirstPendingInvite 005B9E10 f end=005B9EA2 +Script_CalendarOpenEvent 005B9EB0 f end=005B9F75 +Script_CalendarGetEventIndex 005B9F80 f end=005B9FFD +Script_CalendarGetRaidInfo 005BA000 f end=005BA217 +Script_CalendarEventGetInvite 005BA220 f end=005BA41D +Script_CalendarEventGetInviteResponseTime 005BA420 f end=005BA592 +Script_CalendarRemoveEvent 005BA5A0 f end=005BA5A8 +Script_CalendarContextSelectEvent 005BA5B0 f end=005BA675 +Script_CalendarContextGetEventIndex 005BA680 f end=005BA6FD +Script_CalendarContextInviteIsPending 005BA700 f end=005BA7EF +Script_CalendarContextInviteModeratorStatus 005BA7F0 f end=005BA90B +Script_CalendarContextInviteStatus 005BA910 f end=005BAA12 +Script_CalendarContextInviteType 005BAA20 f end=005BAB4F +Script_CalendarContextInviteAvailable 005BAB50 f end=005BACF9 +Script_CalendarContextInviteDecline 005BAD00 f end=005BAEA9 +Script_CalendarContextEventCanEdit 005BAEB0 f end=005BAFB7 +Script_CalendarContextEventGetCalendarType 005BAFC0 f end=005BB0BB +Script_CalendarEventRemoveInvite 005BB0C0 f end=005BB124 +Script_CalendarEventGetStatusOptions 005BB130 f end=005BB20F +Script_CalendarEventSetTitle 005BB210 f end=005BB278 +Script_CalendarEventSetDescription 005BB280 f end=005BB2E8 +Script_CalendarEventSetType 005BB2F0 f end=005BB375 +Script_CalendarEventSetRepeatOption 005BB380 f end=005BB405 +Script_CalendarEventSetSize 005BB410 f end=005BB492 +Script_CalendarEventSetDate 005BB4A0 f end=005BB595 +Script_CalendarEventSetTime 005BB5A0 f end=005BB649 +Script_CalendarEventSetLockoutDate 005BB650 f end=005BB745 +Script_CalendarEventSetLockoutTime 005BB750 f end=005BB7F9 +Script_CalendarEventSetTextureID 005BB800 f end=005BB864 +Script_CalendarEventSetLocked 005BB870 f end=005BB8AC +Script_CalendarEventClearLocked 005BB8B0 f end=005BB8EC +Script_CalendarEventSetAutoApprove 005BB8F0 f end=005BB92C +Script_CalendarEventClearAutoApprove 005BB930 f end=005BB96C +Script_CalendarEventGetTextures 005BB970 f end=005BBAF6 +Script_CalendarEventGetSelectedInvite 005BBB00 f end=005BBB3E +Script_CalendarSetMonth 005BCC00 f end=005BCC63 +Script_CalendarAddEvent 005BCC70 f end=005BCC95 +Script_CalendarNewEvent 005BCCA0 f end=005BCCA8 +Script_CalendarMassInviteGuild 005BCCB0 f end=005BCD7E +Script_CalendarNewGuildAnnouncement 005BCD80 f end=005BCD88 +Script_CalendarNewGuildEvent 005BCD90 f end=005BCD98 +Script_CalendarDefaultGuildFilter 005BCDA0 f end=005BCE52 +Script_CalendarMassInviteArenaTeam 005BCE60 f end=005BCEC4 +Script_CalendarUpdateEvent 005BCED0 f end=005BCEF5 +Script_CalendarEventInvite 005BCF00 f end=005BCF24 +Script_CalendarContextInviteTentative 005BCF30 f end=005BD038 +Script_CalendarContextInviteRemove 005BD040 f end=005BD12B +Script_CalendarContextEventSignUp 005BD130 f end=005BD21D +Script_CalendarContextEventRemove 005BD220 f end=005BD338 +Script_CalendarContextEventCopy 005BD340 f end=005BD458 +Script_CalendarContextEventPaste 005BD460 f end=005BD4E5 +Script_CalendarContextEventCanComplain 005BD4F0 f end=005BD600 +Script_CalendarContextEventComplain 005BD600 f end=005BD6D7 +Script_CalendarEventAvailable 005BD6E0 f end=005BD749 +Script_CalendarEventTentative 005BD750 f end=005BD75D +Script_CalendarEventDecline 005BD760 f end=005BD7C9 +Script_CalendarEventSignUp 005BD7D0 f end=005BD7D8 +Script_OpenCalendar 005BD7E0 f end=005BD7F1 +Script_CalendarGetEventInfo 005BD8A0 f end=005BDD85 +Script_CalendarEventHasPendingInvite 005BDD90 f end=005BDDD4 +Script_CalendarGetNumPendingInvites 005BF830 f end=005BF864 +Script_CalendarGetDayEvent 005C1070 f end=005C1475 +Script_CalendarGetHolidayInfo 005C1480 f end=005C15E1 +Script_CalendarSetAbsMonth 005C43B0 f end=005C446C +Script_GetSocketTypes 005C4550 f end=005C4625 +Script_CloseSocketInfo 005C49C0 f end=005C49CF +Script_GetSocketItemInfo 005C49D0 f end=005C4AE5 +Script_GetNumSockets 005C4AF0 f end=005C4B51 +Script_GetNewSocketInfo 005C4B60 f end=005C4D05 +Script_GetNewSocketLink 005C4D10 f end=005C4DB4 +Script_ClickSocketButton 005C4DC0 f end=005C4E94 +Script_GetSocketItemBoundTradeable 005C4EA0 f end=005C4EDA +Script_GetExistingSocketInfo 005C5160 f end=005C533D +Script_GetExistingSocketLink 005C5340 f end=005C5458 +Script_AcceptSockets 005C5460 f end=005C5468 +Script_GetSocketItemRefundable 005C5470 f end=005C54AA +Script_GetMinigameType 005C5500 f end=005C5544 +Script_MakeMinigameMove 005C5550 f end=005C55E7 +Script_GetMinigameState 005C55F0 f end=005C560E +Script_GetActiveTalentGroup 005C5810 f end=005C5876 +Script_GetNumTalentTabs 005C5CC0 f end=005C5D33 +Script_GetNumTalents 005C5D40 f end=005C5DED +Script_GetNumTalentGroups 005C5DF0 f end=005C5E6D +Script_SetActiveTalentGroup 005C5E70 f end=005C5EFC +Script_GetTalentTabInfo 005C6150 f end=005C630D +Script_GetUnspentTalentPoints 005C6310 f end=005C63AE +Script_GetPreviewTalentPointsSpent 005C63B0 f end=005C6418 +Script_GetGroupPreviewTalentPointsSpent 005C6420 f end=005C6472 +Script_LearnPreviewTalents 005C6A10 f end=005C6C56 +Script_ResetPreviewTalentPoints 005C7130 f end=005C71F1 +Script_ResetGroupPreviewTalentPoints 005C7200 f end=005C7286 +Script_GetTalentInfo 005C7800 f end=005C7CD6 +Script_GetTalentLink 005C7CE0 f end=005C7EC2 +Script_GetTalentPrereqs 005C7ED0 f end=005C80D5 +Script_LearnTalent 005C80E0 f end=005C8305 +Script_AddPreviewTalentPoints 005C9590 f end=005C968E +Script_GetNumGuildMembers 005CA130 f end=005CA185 +Script_GetGuildRosterMOTD 005CA190 f end=005CA1AB +Script_SetGuildRosterShowOffline 005CA1B0 f end=005CA1DB +Script_GetGuildRosterShowOffline 005CA1E0 f end=005CA21C +Script_GuildControlGetNumRanks 005CA220 f end=005CA254 +Script_GuildControlSetRank 005CA260 f end=005CA2A7 +Script_GuildControlSetRankFlag 005CA2B0 f end=005CA329 +Script_GetGuildInfoText 005CA330 f end=005CA34B +Script_GetNumGuildEvents 005CA350 f end=005CA372 +Script_GetGuildRosterLastOnline 005CABB0 f end=005CACF7 +Script_GuildRosterSetPublicNote 005CAD00 f end=005CAE1D +Script_GuildRosterSetOfficerNote 005CAE20 f end=005CAF40 +Script_SetGuildRosterSelection 005CAF40 f end=005CAFD0 +Script_GetGuildRosterSelection 005CAFD0 f end=005CAFFD +Script_SortGuildRoster 005CB000 f end=005CB16B +Script_GuildControlSaveRank 005CB170 f end=005CB329 +Script_GuildControlAddRank 005CB330 f end=005CB3E3 +Script_GuildControlDelRank 005CB3F0 f end=005CB461 +Script_SetGuildBankTabPermissions 005CB470 f end=005CB553 +Script_GetGuildBankTabPermissions 005CB560 f end=005CB693 +Script_SetGuildBankWithdrawLimit 005CB6A0 f end=005CB700 +Script_GetGuildBankWithdrawLimit 005CB700 f end=005CB752 +Script_SetGuildBankTabWithdraw 005CB760 f end=005CB804 +Script_GuildRoster 005CB810 f end=005CB818 +Script_SetGuildInfoText 005CB820 f end=005CB8F6 +Script_CanGuildPromote 005CBCF0 f end=005CBD75 +Script_CanGuildDemote 005CBD80 f end=005CBE08 +Script_CanGuildInvite 005CBE10 f end=005CBE95 +Script_CanGuildRemove 005CBEA0 f end=005CBF25 +Script_CanEditMOTD 005CBF30 f end=005CBFB8 +Script_CanEditPublicNote 005CBFC0 f end=005CC048 +Script_CanEditOfficerNote 005CC050 f end=005CC0D8 +Script_CanViewOfficerNote 005CC0E0 f end=005CC168 +Script_CanEditGuildInfo 005CC170 f end=005CC1F8 +Script_CanGuildBankRepair 005CC200 f end=005CC288 +Script_CanEditGuildTabInfo 005CC290 f end=005CC360 +Script_CanEditGuildEvent 005CC360 f end=005CC3D6 +Script_GuildControlGetRankFlags 005CC3E0 f end=005CC46F +Script_QueryGuildEventLog 005CC470 f end=005CC502 +Script_GetGuildRosterInfo 005CC9C0 f end=005CCC84 +Script_GuildControlGetRankName 005CCC90 f end=005CCD8E +Script_GetGuildEventInfo 005CCD90 f end=005CD098 +Script_GetNumSkillLines 005CD1B0 f end=005CD1E4 +Script_CancelSkillUps 005CD820 f end=005CD85E +Script_SetSelectedSkill 005CD860 f end=005CD8E7 +Script_GetSelectedSkill 005CD8F0 f end=005CD91D +Script_GetSkillLineInfo 005CDE20 f end=005CE2B5 +Script_AbandonSkill 005CE2C0 f end=005CE39A +Script_CollapseSkillHeader 005CE3A0 f end=005CE400 +Script_ExpandSkillHeader 005CE400 f end=005CE460 +Script_AddSkillUp 005CE460 f end=005CE4C4 +Script_RemoveSkillUp 005CE4D0 f end=005CE534 +Script_GetAdjustedSkillPoints 005CE540 f end=005CE5CB +Script_AcceptSkillUps 005CE5D0 f end=005CE6E6 +Script_BuySkillTier 005CE6F0 f end=005CE862 +Script_GetNumPetitionNames 005CEAC0 f end=005CEAF4 +Script_GetPetitionInfo 005CECE0 f end=005CEE2D +Script_GetPetitionNameInfo 005CEE30 f end=005CEEF0 +Script_ClosePetition 005CF020 f end=005CF035 +Script_CanSignPetition 005CF040 f end=005CF131 +Script_SignPetition 005CF140 f end=005CF21B +Script_OfferPetition 005CF220 f end=005CF446 +Script_RenamePetition 005CF450 f end=005CF529 +Script_StartDuel 005CF950 f end=005CF9BB +Script_AcceptDuel 005CFDB0 f end=005CFDB8 +Script_GetNumFactions 005CFF20 f end=005CFF54 +Script_IsFactionInactive 005D0740 f end=005D07B0 +Script_SetSelectedFaction 005D07B0 f end=005D0814 +Script_GetSelectedFaction 005D0820 f end=005D084D +Script_GetFactionInfo 005D1150 f end=005D11D4 +Script_GetFactionInfoByID 005D11E0 f end=005D1240 +Script_GetWatchedFactionInfo 005D1240 f end=005D1384 +Script_FactionToggleAtWar 005D1390 f end=005D141B +Script_SetWatchedFactionIndex 005D1420 f end=005D148E +Script_SetFactionInactive 005D1E50 f end=005D1ED1 +Script_SetFactionActive 005D1EE0 f end=005D1F61 +Script_CollapseFactionHeader 005D1F70 f end=005D1FB9 +Script_CollapseAllFactionHeaders 005D1FC0 f end=005D1FD3 +Script_ExpandAllFactionHeaders 005D1FE0 f end=005D1FF3 +Script_ExpandFactionHeader 005D2000 f end=005D2049 +Script_IsPetAttackActive 005D3160 f end=005D317C +Script_GetPetTimeRemaining 005D3180 f end=005D31E7 +Script_PetHasActionBar 005D3720 f end=005D3779 +Script_PetCanBeAbandoned 005D3780 f end=005D3817 +Script_PetCanBeDismissed 005D3820 f end=005D38B9 +Script_PetCanBeRenamed 005D38C0 f end=005D3957 +Script_HasPetUI 005D3960 f end=005D3A1D +Script_GetPetExperience 005D3A20 f end=005D3AF4 +Script_GetPetHappiness 005D3B00 f end=005D3BC1 +Script_GetPetFoodTypes 005D3BD0 f end=005D3CDA +Script_GetPetIcon 005D3CE0 f end=005D3D79 +Script_GetPetTalentTree 005D3D80 f end=005D3E78 +Script_GetPetActionInfo 005D4EC0 f end=005D5258 +Script_GetPetActionCooldown 005D5280 f end=005D53BA +Script_GetPetActionsUsable 005D53C0 f end=005D53FF +Script_GetPetActionSlotUsable 005D5400 f end=005D54B8 +Script_PetPassiveMode 005D54C0 f end=005D54EC +Script_PetDefensiveMode 005D54F0 f end=005D551C +Script_PetAggressiveMode 005D5520 f end=005D554C +Script_PetWait 005D5550 f end=005D557C +Script_PetFollow 005D5580 f end=005D55AC +Script_PetAttack 005D55B0 f end=005D5640 +Script_PetStopAttack 005D5640 f end=005D5648 +Script_PetAbandon 005D5650 f end=005D5658 +Script_PetDismiss 005D5660 f end=005D5668 +Script_PetRename 005D5670 f end=005D581B +Script_GetPossessInfo 005D5820 f end=005D5A05 +Script_IsPetAttackAction 005D5A10 f end=005D5A5C +Script_PickupPetAction 005D65C0 f end=005D66E5 +Script_TogglePetAutocast 005D66F0 f end=005D67A4 +Script_CastPetAction 005D67B0 f end=005D68FE +Script_ContainerIDToInventoryID 005D6F60 f end=005D6FEB +Script_GetMaxArenaCurrency 005D6FF0 f end=005D7012 +Script_SetBagPortraitTexture 005D7180 f end=005D729B +Script_GetContainerNumSlots 005D74A0 f end=005D758A +Script_GetContainerNumFreeSlots 005D7590 f end=005D7820 +Script_GetContainerFreeSlots 005D7820 f end=005D7A82 +Script_GetContainerItemInfo 005D7A90 f end=005D7C71 +Script_GetContainerItemLink 005D7C80 f end=005D7CFF +Script_GetContainerItemID 005D7D00 f end=005D7D84 +Script_GetContainerItemCooldown 005D7D90 f end=005D7EED +Script_GetContainerItemDurability 005D7EF0 f end=005D7FE6 +Script_PickupContainerItem 005D7FF0 f end=005D84E4 +Script_SplitContainerItem 005D84F0 f end=005D864E +Script_UseContainerItem 005D8650 f end=005D8B06 +Script_SocketContainerItem 005D8B10 f end=005D8BC7 +Script_ShowContainerSellCursor 005D8BD0 f end=005D8C61 +Script_GetBagName 005D8C70 f end=005D8D7F +Script_GetContainerItemPurchaseInfo 005D8D80 f end=005D8F61 +Script_GetContainerItemPurchaseItem 005D8F70 f end=005D91A1 +Script_ContainerRefundItemPurchase 005D91B0 f end=005D92F2 +Script_GetContainerItemGems 005D9300 f end=005D93FF +Script_GetContainerItemQuestInfo 005D9400 f end=005D953B +Script_GetNumTradeSkills 005DA120 f end=005DA142 +Script_GetTradeSkillItemNameFilter 005DA150 f end=005DA16C +Script_GetTradeSkillItemLevelFilter 005DA170 f end=005DA1AE +Script_GetTradeSkillSubClassFilter 005DA1B0 f end=005DA267 +Script_GetTradeskillRepeatCount 005DA270 f end=005DA2D5 +Script_StopTradeSkillRepeat 005DA2E0 f end=005DA30D +Script_IsTradeSkillLinked 005DA310 f end=005DA391 +Script_CloseTradeSkill 005DA8B0 f end=005DA8FB +Script_SelectTradeSkill 005DA900 f end=005DA967 +Script_GetTradeSkillSelectionIndex 005DA970 f end=005DA99D +Script_GetTradeSkillCooldown 005DA9A0 f end=005DAA68 +Script_GetTradeSkillSubClasses 005DAA70 f end=005DAB6C +Script_GetFirstTradeSkill 005DAB70 f end=005DABF6 +Script_DoTradeSkill 005DAC00 f end=005DACD2 +Script_GetTradeSkillInfo 005DB2A0 f end=005DB543 +Script_GetTradeSkillIcon 005DB550 f end=005DB6D2 +Script_GetTradeSkillNumMade 005DB6E0 f end=005DB808 +Script_GetTradeSkillLine 005DB810 f end=005DB919 +Script_GetTradeSkillRecipeLink 005DB920 f end=005DBA61 +Script_GetTradeSkillItemLink 005DBA70 f end=005DBBA0 +Script_GetTradeSkillNumReagents 005DBBA0 f end=005DBCB6 +Script_GetTradeSkillReagentItemLink 005DBCC0 f end=005DBE05 +Script_GetTradeSkillDescription 005DBE10 f end=005DBF0A +Script_GetTradeSkillInvSlots 005DBF10 f end=005DBF8E +Script_GetTradeSkillInvSlotFilter 005DBF90 f end=005DC0A8 +Script_GetTradeSkillListLink 005DC0B0 f end=005DC109 +Script_SetTradeSkillItemNameFilter 005DD070 f end=005DD08D +Script_SetTradeSkillItemLevelFilter 005DD090 f end=005DD0ED +Script_SetTradeSkillSubClassFilter 005DD0F0 f end=005DD22B +Script_SetTradeSkillInvSlotFilter 005DD230 f end=005DD3DD +Script_TradeSkillOnlyShowMakeable 005DD3E0 f end=005DD41A +Script_TradeSkillOnlyShowSkillUps 005DD420 f end=005DD45A +Script_CollapseTradeSkillSubClass 005DD460 f end=005DD4F6 +Script_ExpandTradeSkillSubClass 005DD500 f end=005DD594 +Script_GetTradeSkillReagentInfo 005DE400 f end=005DE619 +Script_GetTradeSkillTools 005DE620 f end=005DE8B6 +Script_GetNumQuestLogEntries 005DF010 f end=005DF094 +Script_GetQuestLogSelection 005DF0A0 f end=005DF0CD +Script_SetAbandonQuest 005DF0D0 f end=005DF0DD +Script_GetAbandonQuestName 005DF0E0 f end=005DF143 +Script_GetNumQuestLogRewards 005DF150 f end=005DF1C8 +Script_GetNumQuestLogChoices 005DF1D0 f end=005DF246 +Script_GetQuestLogItemLink 005DF250 f end=005DF395 +Script_GetQuestLogRewardTalents 005DF3A0 f end=005DF3F6 +Script_GetQuestLogRewardArenaPoints 005DF400 f end=005DF456 +Script_GetQuestLogRequiredMoney 005DF460 f end=005DF51C +Script_GetQuestLogPushable 005DF520 f end=005DF5CD +Script_GetNumQuestWatches 005DF5D0 f end=005DF604 +Script_IsQuestWatched 005DF610 f end=005DF6F7 +Script_RemoveQuestWatch 005DF700 f end=005DF77D +Script_GetQuestIndexForWatch 005DF780 f end=005DF862 +Script_GetQuestLogGroupNum 005DF870 f end=005DF89E +Script_ProcessQuestLogRewardFactions 005DF8A0 f end=005DF910 +Script_GetNumQuestLogRewardFactions 005DF910 f end=005DF932 +Script_GetQuestLogRewardFactionInfo 005DF940 f end=005DFA02 +Script_GetQuestSortIndex 005DFA10 f end=005DFA74 +Script_QuestPOIGetQuestIDByIndex 005DFA80 f end=005DFAF5 +Script_SetPOIIconOverlapDistance 005DFB00 f end=005DFB3F +Script_SetPOIIconOverlapPushDistance 005DFB40 f end=005DFB95 +Script_ShiftQuestWatches 005DFBA0 f end=005DFC40 +Script_GetQuestWatchIndex 005DFC40 f end=005DFD1D +Script_SelectQuestLogEntry 005E02F0 f end=005E0337 +Script_GetQuestLogQuestText 005E0340 f end=005E041F +Script_QuestPOIGetIconInfo 005E0590 f end=005E06C1 +Script_GetQuestLogCompletionText 005E06D0 f end=005E07F7 +Script_GetAbandonQuestItems 005E3D60 f end=005E405D +Script_AbandonQuest 005E4060 f end=005E4068 +Script_IsUnitOnQuest 005E4070 f end=005E419C +Script_GetNumQuestLeaderBoards 005E41A0 f end=005E425E +Script_GetNumQuestItemDrops 005E4260 f end=005E431E +Script_GetQuestLogTimeLeft 005E4320 f end=005E43E6 +Script_IsCurrentQuestFailed 005E43F0 f end=005E4484 +Script_GetQuestLogRewardInfo 005E4490 f end=005E4660 +Script_GetQuestLogChoiceInfo 005E4660 f end=005E4833 +Script_GetQuestLogSpellLink 005E4840 f end=005E48EE +Script_GetQuestLogRewardMoney 005E48F0 f end=005E49A3 +Script_GetQuestLogRewardXP 005E49B0 f end=005E4B64 +Script_GetQuestLogRewardHonor 005E4B70 f end=005E4C0C +Script_GetQuestLogRewardTitle 005E4C10 f end=005E4D10 +Script_GetQuestLogRewardSpell 005E4D10 f end=005E4ECB +Script_QuestLogPushQuest 005E4ED0 f end=005E4FA4 +Script_GetQuestIndexForTimer 005E4FB0 f end=005E50F7 +Script_CollapseQuestHeader 005E5100 f end=005E5149 +Script_ExpandQuestHeader 005E5150 f end=005E5199 +Script_GetQuestGreenRange 005E51A0 f end=005E51CA +Script_GetQuestLink 005E51D0 f end=005E52C2 +Script_GetQuestLogSpecialItemInfo 005E52D0 f end=005E53CB +Script_GetQuestLogSpecialItemCooldown 005E53D0 f end=005E54BB +Script_IsQuestLogSpecialItemInRange 005E54C0 f end=005E5634 +Script_UseQuestLogSpecialItem 005E5640 f end=005E56BC +Script_GetQuestWorldMapAreaID 005E56C0 f end=005E573A +Script_QuestPOIUpdateIcons 005E5740 f end=005E5748 +Script_QuestPOIGetQuestIDByVisibleIndex 005E5750 f end=005E57DC +Script_GetQuestLogTitle 005E5CC0 f end=005E5F59 +Script_GetQuestLogLeaderBoard 005E5F60 f end=005E60CF +Script_GetQuestLogItemDrop 005E60D0 f end=005E623F +Script_GetQuestTimers 005E6240 f end=005E63CE +Script_QuestMapUpdateAllQuests 005E63D0 f end=005E64AE +Script_SortQuestWatches 005E64B0 f end=005E64CF +Script_GetQuestPOILeaderBoard 005E6650 f end=005E67BC +Script_AddQuestWatch 005E67C0 f end=005E687A +Script_GetQuestResetTime 005E6DE0 f end=005E6E31 +Script_KeyRingButtonIDToInvSlotID 005E7700 f end=005E7758 +Script_HasInspectHonorData 005E7780 f end=005E77BA +Script_GetInspectHonorData 005E77C0 f end=005E7885 +Script_ClearInspectPlayer 005E7890 f end=005E78E3 +Script_GetInventorySlotInfo 005E7D60 f end=005E7E51 +Script_GetInventoryItemCooldown 005E7E60 f end=005E7F9C +Script_GetInventoryAlertStatus 005E7FA0 f end=005E8030 +Script_GetInspectArenaTeamData 005E8030 f end=005E8284 +Script_GetInventoryItemsForSlot 005E95C0 f end=005E9BB5 +Script_GetInventoryItemTexture 005E9BC0 f end=005E9D71 +Script_GetInventoryItemBroken 005E9D80 f end=005E9E31 +Script_GetInventoryItemCount 005E9E40 f end=005EA040 +Script_GetInventoryItemQuality 005EA040 f end=005EA164 +Script_GetInventoryItemDurability 005EA170 f end=005EA265 +Script_GetInventoryItemLink 005EA270 f end=005EA3DC +Script_GetInventoryItemID 005EA3E0 f end=005EA4E6 +Script_GetInventoryItemGems 005EA4F0 f end=005EA5EF +Script_PickupInventoryItem 005EA5F0 f end=005EA625 +Script_UseInventoryItem 005EA630 f end=005EA69D +Script_SocketInventoryItem 005EA6A0 f end=005EA6DA +Script_IsInventoryItemLocked 005EA6E0 f end=005EA77C +Script_PutItemInBag 005EA780 f end=005EA7F0 +Script_PutItemInBackpack 005EA7F0 f end=005EA832 +Script_PickupBagFromSlot 005EA840 f end=005EA87A +Script_CursorCanGoInSlot 005EA880 f end=005EA924 +Script_ShowInventorySellCursor 005EA930 f end=005EA9A7 +Script_SetInventoryPortraitTexture 005EA9B0 f end=005EAAEC +Script_GetGuildInfo 005EAAF0 f end=005EABF9 +Script_UpdateInventoryAlertStatus 005EAC00 f end=005EAC08 +Script_OffhandHasWeapon 005EAC10 f end=005EAC81 +Script_RequestInspectHonorData 005EAC90 f end=005EAC98 +Script_GetWeaponEnchantInfo 005EACA0 f end=005EAE8C +Script_HasWandEquipped 005EAE90 f end=005EAF27 +Script_VehicleAimGetNormPower 005F9550 f end=005F9572 +Script_IsMouselooking 005F9DD0 f end=005F9E0F +Script_VehicleAimGetAngle 005F9E10 f end=005F9E5C +Script_VehicleAimGetNormAngle 005F9E60 f end=005F9F06 +Script_VehicleAimSetNormPower 005F9F10 f end=005F9F6E +Script_IsVehicleAimAngleAdjustable 005F9F70 f end=005F9FDB +Script_IsVehicleAimPowerAdjustable 005F9FE0 f end=005FA04B +Script_DetectWowMouse 005FA050 f end=005FA05E +Script_ToggleRun 005FAAE0 f end=005FAB6D +Script_VehicleExit 005FB660 f end=005FB6C8 +Script_VehiclePrevSeat 005FB6D0 f end=005FB71B +Script_VehicleNextSeat 005FB720 f end=005FB76B +Script_VehicleAimIncrement 005FB770 f end=005FB7CB +Script_VehicleAimDecrement 005FB7D0 f end=005FB81C +Script_VehicleAimRequestAngle 005FB820 f end=005FB8B1 +Script_VehicleAimRequestNormAngle 005FB8C0 f end=005FB967 +Script_IsUsingVehicleControls 005FB970 f end=005FB9B5 +Script_CanExitVehicle 005FB9C0 f end=005FBA05 +Script_CanSwitchVehicleSeats 005FBA10 f end=005FBA55 +Script_JumpOrAscendStart 005FBF80 f end=005FC095 +Script_AscendStop 005FC0A0 f end=005FC0E2 +Script_DescendStop 005FC140 f end=005FC182 +Script_ToggleAutoRun 005FC190 f end=005FC1FA +Script_MoveForwardStart 005FC200 f end=005FC242 +Script_MoveForwardStop 005FC250 f end=005FC28F +Script_MoveBackwardStart 005FC290 f end=005FC2D2 +Script_MoveBackwardStop 005FC2E0 f end=005FC31F +Script_TurnLeftStart 005FC320 f end=005FC360 +Script_TurnLeftStop 005FC360 f end=005FC3A2 +Script_TurnRightStart 005FC3B0 f end=005FC3F0 +Script_TurnRightStop 005FC3F0 f end=005FC432 +Script_StrafeLeftStart 005FC440 f end=005FC482 +Script_StrafeLeftStop 005FC490 f end=005FC4CF +Script_StrafeRightStart 005FC4D0 f end=005FC515 +Script_StrafeRightStop 005FC520 f end=005FC562 +Script_VehicleAimUpStop 005FC570 f end=005FC5B2 +Script_VehicleAimDownStop 005FC5C0 f end=005FC602 +Script_TurnOrActionStart 005FC610 f end=005FC671 +Script_TurnOrActionStop 005FC680 f end=005FC6BB +Script_CameraOrSelectOrMoveStart 005FC6C0 f end=005FC721 +Script_CameraOrSelectOrMoveStop 005FC730 f end=005FC77E +Script_MoveAndSteerStart 005FC780 f end=005FC825 +Script_MoveAndSteerStop 005FC830 f end=005FC885 +Script_MouselookStop 005FC890 f end=005FC8D2 +Script_VehicleAimUpStart 005FC8E0 f end=005FC920 +Script_VehicleAimDownStart 005FC920 f end=005FC960 +Script_MouselookStart 005FCC10 f end=005FCC59 +Script_SetMouselookOverrideBinding 005FD550 f end=005FD5B8 +Script_MoveViewInStart 005FF080 f end=005FF093 +Script_MoveViewInStop 005FF0A0 f end=005FF0C6 +Script_MoveViewOutStart 005FF0D0 f end=005FF0E6 +Script_MoveViewOutStop 005FF0F0 f end=005FF116 +Script_MoveViewRightStart 005FF120 f end=005FF136 +Script_MoveViewRightStop 005FF140 f end=005FF166 +Script_MoveViewLeftStart 005FF170 f end=005FF186 +Script_MoveViewLeftStop 005FF190 f end=005FF1B9 +Script_MoveViewUpStart 005FF1C0 f end=005FF1D6 +Script_MoveViewUpStop 005FF1E0 f end=005FF20C +Script_MoveViewDownStart 005FF210 f end=005FF226 +Script_MoveViewDownStop 005FF230 f end=005FF25C +Script_SaveView 005FF260 f end=005FF2B7 +Script_FlipCameraYaw 005FF2C0 f end=005FF31B +Script_CameraZoomIn 006017E0 f end=00601838 +Script_CameraZoomOut 00601840 f end=00601898 +Script_VehicleCameraZoomIn 006018A0 f end=006018A9 +Script_VehicleCameraZoomOut 006018B0 f end=006018B9 +Script_SetView 006039B0 f end=00603A0F +Script_ResetView 00604C80 f end=00604CD3 +Script_NextView 00604CE0 f end=00604D0A +Script_PrevView 00604D10 f end=00604D3A +Script_GetTime 006081F0 f end=0060822A +Script_GetGameTime 00608230 f end=00608266 +Script_ConsoleExec 00608270 f end=006082B6 +Script_GetMaxCombatRatingBonus 006082C0 f end=00608364 +Script_GetWaterDetail 00608560 f end=0060857E +Script_CanSwitchVehicleSeat 00608580 f end=006085C1 +Script_GetItemStats 00608690 f end=00608760 +Script_GetItemStatDelta 00608760 f end=0060887A +Script_IsLoggedIn 0060A450 f end=0060A48A +Script_GetPlayerFacing 0060A490 f end=0060A50A +Script_FillLocalizedClassList 0060A510 f end=0060A5CE +Script_UnitExists 0060C2A0 f end=0060C342 +Script_UnitIsVisible 0060C350 f end=0060C3C5 +Script_UnitIsUnit 0060C3D0 f end=0060C4A3 +Script_UnitIsPlayer 0060C4B0 f end=0060C542 +Script_UnitIsInMyGuild 0060C550 f end=0060C6E9 +Script_UnitIsCorpse 0060C6F0 f end=0060C76F +Script_UnitIsPartyLeader 0060C770 f end=0060C810 +Script_UnitGroupRolesAssigned 0060C810 f end=0060C89F +Script_UnitIsRaidOfficer 0060C8A0 f end=0060C916 +Script_UnitInParty 0060C920 f end=0060C998 +Script_UnitPlayerOrPetInParty 0060C9A0 f end=0060CA18 +Script_UnitInRaid 0060CA20 f end=0060CA94 +Script_UnitInBattleground 0060CAA0 f end=0060CB1D +Script_UnitPlayerOrPetInRaid 0060CB20 f end=0060CB98 +Script_UnitPlayerControlled 0060CBA0 f end=0060CC29 +Script_UnitIsAFK 0060CC30 f end=0060CD44 +Script_UnitIsDND 0060CD50 f end=0060CE20 +Script_UnitIsPVP 0060CE20 f end=0060CF15 +Script_UnitIsPVPSanctuary 0060CF20 f end=0060CFA4 +Script_UnitIsPVPFreeForAll 0060CFB0 f end=0060D091 +Script_UnitFactionGroup 0060D0A0 f end=0060D27B +Script_UnitReaction 0060D280 f end=0060D328 +Script_UnitIsEnemy 0060D330 f end=0060D3CF +Script_UnitIsFriend 0060D3D0 f end=0060D52E +Script_UnitCanCooperate 0060D530 f end=0060D68E +Script_UnitCanAssist 0060D690 f end=0060D730 +Script_UnitCanAttack 0060D730 f end=0060D7CE +Script_UnitIsCharmed 0060D7D0 f end=0060D853 +Script_UnitIsPossessed 0060D860 f end=0060D8E4 +Script_PlayerCanTeleport 0060D8F0 f end=0060D961 +Script_UnitClassification 0060D970 f end=0060D9F3 +Script_UnitSelectionColor 0060DA00 f end=0060DB11 +Script_IsInGuild 0060DB20 f end=0060DB7C +Script_IsGuildLeader 0060DB80 f end=0060DBE2 +Script_IsInArenaTeam 0060DBF0 f end=0060DC69 +Script_IsArenaTeamCaptain 0060DC70 f end=0060DD3C +Script_IsResting 0060DD40 f end=0060DDA1 +Script_GetCombatRating 0060DDB0 f end=0060DE6F +Script_GetCombatRatingBonus 0060DE70 f end=0060DF2A +Script_GetDodgeChance 0060DF30 f end=0060DF8F +Script_GetBlockChance 0060DF90 f end=0060DFEF +Script_GetShieldBlock 0060DFF0 f end=0060E067 +Script_GetParryChance 0060E070 f end=0060E0CF +Script_GetCritChance 0060E0D0 f end=0060E12F +Script_GetCritChanceFromAgility 0060E130 f end=0060E1B0 +Script_GetSpellCritChanceFromIntellect 0060E1B0 f end=0060E230 +Script_GetRangedCritChance 0060E230 f end=0060E28F +Script_GetSpellCritChance 0060E290 f end=0060E30E +Script_GetSpellBonusDamage 0060E310 f end=0060E3A8 +Script_GetSpellBonusHealing 0060E3B0 f end=0060E40F +Script_GetPetSpellBonusDamage 0060E410 f end=0060E46F +Script_GetSpellPenetration 0060E470 f end=0060E4DC +Script_GetArmorPenetration 0060E4E0 f end=0060E560 +Script_GetAttackPowerForStat 0060E560 f end=0060E626 +Script_UnitGUID 0060E630 f end=0060E731 +Script_UnitName 0060E740 f end=0060E994 +Script_UnitPVPName 0060E9A0 f end=0060EA53 +Script_UnitXP 0060EA60 f end=0060EADB +Script_UnitXPMax 0060EAE0 f end=0060EB5B +Script_UnitHealth 0060EB60 f end=0060EC57 +Script_UnitHealthMax 0060EC60 f end=0060ED37 +Script_UnitPower 0060ED40 f end=0060EF3B +Script_UnitPowerMax 0060EF40 f end=0060F0F2 +Script_UnitPowerType 0060F100 f end=0060F34F +Script_UnitOnTaxi 0060F350 f end=0060F3CE +Script_UnitIsFeignDeath 0060F3D0 f end=0060F47A +Script_UnitIsDead 0060F480 f end=0060F574 +Script_UnitIsGhost 0060F580 f end=0060F675 +Script_UnitIsDeadOrGhost 0060F680 f end=0060F783 +Script_UnitIsConnected 0060F790 f end=0060F85C +Script_UnitAffectingCombat 0060F860 f end=0060F8DE +Script_UnitSex 0060F8E0 f end=0060F9D8 +Script_UnitLevel 0060F9E0 f end=0060FB91 +Script_GetMoney 0060FBA0 f end=0060FC39 +Script_GetHonorCurrency 0060FC40 f end=0060FCB5 +Script_GetArenaCurrency 0060FCC0 f end=0060FD35 +Script_UnitRace 0060FD40 f end=0060FEBC +Script_UnitClass 0060FEC0 f end=0061003C +Script_UnitClassBase 00610040 f end=00610198 +Script_UnitResistance 006101A0 f end=006102F1 +Script_UnitStat 00610300 f end=00610441 +Script_UnitAttackBothHands 00610450 f end=0061054B +Script_UnitRangedDamage 00610550 f end=006107C1 +Script_UnitRangedAttack 006107D0 f end=0061085D +Script_UnitDamage 00610860 f end=006109F2 +Script_UnitAttackSpeed 00610A00 f end=00610B59 +Script_UnitAttackPower 00610B60 f end=00610C93 +Script_UnitRangedAttackPower 00610CA0 f end=00610DD3 +Script_UnitDefense 00610DE0 f end=00610EB4 +Script_UnitArmor 00610EC0 f end=00610FA6 +Script_UnitCharacterPoints 00610FB0 f end=00611092 +Script_UnitIsTapped 00611130 f end=006111A9 +Script_UnitIsTappedByPlayer 006111B0 f end=00611229 +Script_UnitIsTappedByAllThreatList 00611230 f end=006112A9 +Script_UnitIsTrivial 006112B0 f end=00611327 +Script_UnitHasRelicSlot 00611330 f end=006113D9 +Script_SetPortraitTexture 006113E0 f end=006115F9 +Script_HasFullControl 00611600 f end=0061166E +Script_GetComboPoints 00611670 f end=00611779 +Script_UnitCreatureType 00611780 f end=00611812 +Script_UnitCreatureFamily 00611820 f end=006118B2 +Script_GetResSicknessDuration 006118C0 f end=00611A1C +Script_GetPVPSessionStats 00611A20 f end=00611ACB +Script_GetPVPYesterdayStats 00611AD0 f end=00611B7B +Script_GetPVPLifetimeStats 00611B80 f end=00611C38 +Script_UnitPVPRank 00611C40 f end=00611CA2 +Script_GetPVPRankInfo 00611CB0 f end=00611DE9 +Script_UnitCastingInfo 00611DF0 f end=0061208A +Script_UnitChannelInfo 00612090 f end=00612260 +Script_IsFlyableArea 00612260 f end=006122F4 +Script_IsIndoors 00612300 f end=0061235B +Script_IsOutdoors 00612360 f end=006123BB +Script_IsOutOfBounds 006123C0 f end=00612421 +Script_IsFalling 00612430 f end=00612497 +Script_IsSwimming 006124A0 f end=006124FC +Script_IsFlying 00612500 f end=00612592 +Script_IsMounted 006125A0 f end=00612605 +Script_IsStealthed 00612610 f end=0061266F +Script_UnitIsSameServer 00612670 f end=006127E6 +Script_GetUnitHealthModifier 006127F0 f end=00612870 +Script_GetUnitMaxHealthModifier 00612870 f end=006128FB +Script_GetUnitPowerModifier 00612900 f end=00612980 +Script_GetUnitHealthRegenRateFromSpirit 00612980 f end=00612A00 +Script_GetUnitManaRegenRateFromSpirit 00612A00 f end=00612A86 +Script_GetManaRegen 00612A90 f end=00612B38 +Script_GetPowerRegen 00612B40 f end=00612BE6 +Script_GetExpertise 00612BF0 f end=00612CA4 +Script_GetExpertisePercent 00612CB0 f end=00612D4B +Script_ReportPlayerIsPVPAFK 00612D50 f end=00612E17 +Script_PlayerIsPVPInactive 00612E20 f end=00612F08 +Script_UnitInRange 00612F10 f end=00613020 +Script_GetRuneCooldown 00613020 f end=0061313E +Script_GetRuneCount 00613140 f end=006131DB +Script_GetRuneType 006131E0 f end=00613207 +Script_GetUnitSpeed 00613290 f end=0061332B +Script_GetUnitPitch 00613330 f end=006133CB +Script_UnitInVehicle 006133D0 f end=0061349E +Script_UnitUsingVehicle 006134A0 f end=0061356E +Script_UnitControllingVehicle 00613570 f end=006135FE +Script_UnitInVehicleControlSeat 00613700 f end=00613740 +Script_UnitHasVehicleUI 00613740 f end=00613780 +Script_UnitTargetsVehicleInRaidUI 00613780 f end=006137C1 +Script_UnitVehicleSkin 006137D0 f end=00613822 +Script_UnitVehicleSeatCount 00613830 f end=006138BC +Script_UnitVehicleSeatInfo 006138C0 f end=006139A6 +Script_UnitSwitchToVehicleSeat 006139B0 f end=00613A5C +Script_UnitThreatSituation 00613A60 f end=00613B31 +Script_UnitDetailedThreatSituation 00613B40 f end=00613C85 +Script_UnitIsControlling 00613C90 f end=00613D1C +Script_CanEjectPassengerFromSeat 00613D20 f end=00613E0F +Script_EjectPassengerFromSeat 00613E10 f end=00613ECD +Script_RespondInstanceLock 00613ED0 f end=00613F8C +Script_GetPlayerInfoByGUID 00613F90 f end=0061413A +Script_IsXPUserDisabled 00614140 f end=00614187 +Script_UnitBuff 00614CA0 f end=00614CEF +Script_UnitDebuff 00614CF0 f end=00614D3F +Script_UnitAura 00614D40 f end=00614D83 +Script_GetVehicleUIIndicator 00614E60 f end=00614EEE +Script_GetVehicleUIIndicatorSeat 00614EF0 f end=00614FC6 +Script_GetNumWhoResults 006B33D0 f end=006B3428 +Script_SetWhoToUI 006B3430 f end=006B344C +Script_GetNumFriends 006B4060 f end=006B412B +Script_GetFriendInfo 006B4130 f end=006B43F3 +Script_SetSelectedFriend 006B4400 f end=006B44A8 +Script_GetSelectedFriend 006B44B0 f end=006B44E3 +Script_ShowFriends 006B44F0 f end=006B455F +Script_GetNumIgnores 006B4560 f end=006B45BB +Script_GetNumMutes 006B45C0 f end=006B461B +Script_GetIgnoreName 006B4620 f end=006B4759 +Script_GetMuteName 006B4760 f end=006B4899 +Script_SetSelectedIgnore 006B48A0 f end=006B4943 +Script_SetSelectedMute 006B4950 f end=006B49F3 +Script_GetSelectedIgnore 006B4A00 f end=006B4A33 +Script_GetSelectedMute 006B4A40 f end=006B4A73 +Script_GetWhoInfo 006B4A80 f end=006B4C7D +Script_SortWho 006B4EB0 f end=006B4EDA +Script_AddFriend 006B6AF0 f end=006B6B44 +Script_SendWho 006B6B50 f end=006B6BA0 +Script_AddOrDelIgnore 006B6BA0 f end=006B6BCB +Script_AddOrDelMute 006B6BD0 f end=006B6BFB +Script_AddIgnore 006B6C00 f end=006B6C2B +Script_AddMute 006B6C30 f end=006B6C5B +Script_IsIgnored 006B6C60 f end=006B6CE7 +Script_IsMuted 006B6CF0 f end=006B6D75 +Script_IsIgnoredOrMuted 006B6D80 f end=006B6E05 +Script_AddOrRemoveFriend 006B7B70 f end=006B7BC4 +Script_RemoveFriend 006B7BD0 f end=006B7C8A +Script_SetFriendNotes 006B7C90 f end=006B7D6F +Script_DelIgnore 006B7D70 f end=006B7D9B +Script_DelMute 006B7DA0 f end=006B7DCB +Script_CombatTextSetActiveUnit 0074D580 f end=0074D5A8 +Script_CombatLogSetRetentionTime 0074D5B0 f end=0074D5FD +Script_CombatLog_Object_IsA 0074D600 f end=0074D6A3 +Script_CombatLogGetRetentionTime 0074D9E0 f end=0074D9FF +Script_CombatLogGetCurrentEntry 0074F2B0 f end=0074F2CC +Script_CombatLogResetFilter 0074FA60 f end=0074FA6D +Script_CombatLogGetNumEntries 0074FA70 f end=0074FADD +Script_CombatLogSetCurrentEntry 0074FAE0 f end=0074FC20 +Script_CombatLogAdvanceEntry 0074FC20 f end=0074FD36 +Script_CombatLogAddFilter 0074FF70 f end=00750206 +Script_CombatLogClearEntries 00751120 f end=0075114B +Script_VoiceEnumerateOutputDevices 007DAB80 f end=007DAC34 +Script_VoiceEnumerateCaptureDevices 007DAC40 f end=007DACEA +Script_VoiceSelectOutputDevice 007DACF0 f end=007DADD2 +Script_VoiceSelectCaptureDevice 007DAE40 f end=007DAF22 +Script_VoiceGetCurrentOutputDevice 007DAF90 f end=007DAFD7 +Script_VoiceGetCurrentCaptureDevice 007DAFE0 f end=007DB027 +Script_GetNumVoiceSessions 007DB030 f end=007DB0AA +Script_GetVoiceSessionInfo 007DB0B0 f end=007DB1E3 +Script_GetVoiceCurrentSessionID 007DB1F0 f end=007DB277 +Script_SetActiveVoiceChannelBySessionID 007DB280 f end=007DB36C +Script_GetNumVoiceSessionMembersBySessionID 007DB370 f end=007DB3FB +Script_GetVoiceStatus 007DB8D0 f end=007DB9AC +Script_VoiceIsDisabledByClient 007DC910 f end=007DC94A +Script_GetVoiceSessionMemberInfoBySessionID 007DEEF0 f end=007DF0AF +Script_UnitIsTalking 007DF0B0 f end=007DF142 +Script_SpellIsTargeting 007FDCD0 f end=007FDD0A +Script_SpellCanTargetItem 007FDD10 f end=007FDD56 +Script_SpellCanTargetGlyph 007FDD60 f end=007FDDA6 +Script_SpellTargetItem 008007E0 f end=008008C7 +Script_CancelItemTempEnchantment 008021D0 f end=0080226B +Script_CannotBeResurrected 00802270 f end=008022C9 +Script_SpellCanTargetUnit 00804190 f end=0080421D +Script_CancelUnitBuff 00804220 f end=00804420 +Script_SpellStopTargeting 00809E30 f end=00809E96 +Script_SpellStopCasting 00809EA0 f end=00809F7E +Script_SpellTargetUnit 0080DC00 f end=0080DCE3 +Script_GetText 0081B720 f end=0081B7AF +Script_CreateFont 0081B7B0 f end=0081B81E +Script_GetCurrentKeyBoardFocus 0081B820 f end=0081B86C +Script_EnumerateFrames 0081B9C0 f end=0081BAAA +Script_GetNumFrames 0081BAB0 f end=0081BB15 +Script_CreateFrame 0081BB20 f end=0081BE68 +Script_GetFramesRegisteredForEvent 0081BE70 f end=0081BF4D +Script_PlaySound 009858B0 f end=0098594B +Script_PlayMusic 00985950 f end=009859AA +Script_PlaySoundFile 009859B0 f end=00985A0A +Script_StopMusic 00985A10 f end=00985A18 +Script_Sound_ChatSystem_GetNumInputDrivers 00985A20 f end=00985A4A +Script_Sound_ChatSystem_GetInputDriverNameByIndex 00985A50 f end=00985AD5 +Script_Sound_ChatSystem_GetNumOutputDrivers 00985AE0 f end=00985B0A +Script_Sound_ChatSystem_GetOutputDriverNameByIndex 00985B10 f end=00985BAD +Script_Sound_GameSystem_GetNumInputDrivers 00985BB0 f end=00985BDA +Script_Sound_GameSystem_GetInputDriverNameByIndex 00985BE0 f end=00985C65 +Script_Sound_GameSystem_GetNumOutputDrivers 00985C70 f end=00985C9A +Script_Sound_GameSystem_GetOutputDriverNameByIndex 00985CA0 f end=00985D25 +Script_Sound_GameSystem_RestartSoundSystem 00985D30 f end=00985D4E +Script_VoiceChat_StopCapture 00985D50 f end=00985D58 +Script_VoiceChat_RecordLoopbackSound 00985D60 f end=00985DC1 +Script_VoiceChat_StopRecordingLoopbackSound 00985DD0 f end=00985DD8 +Script_VoiceChat_PlayLoopbackSound 00985DE0 f end=00985DE8 +Script_VoiceChat_StopPlayingLoopbackSound 00985DF0 f end=00985DF8 +Script_VoiceChat_IsRecordingLoopbackSound 00985E00 f end=00985E2D +Script_VoiceChat_IsPlayingLoopbackSound 00985E30 f end=00985E5D +Script_VoiceChat_GetCurrentMicrophoneSignalLevel 00985E60 f end=00985E8A +Script_VoiceChat_ActivatePrimaryCaptureCallback 00985E90 f end=00985E98 +Script_VoiceChat_StartCapture 00985EF0 f end=00985F6B \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/storm/func.sym b/profile/3.3.5a-windows/symbol/storm/func.sym new file mode 100644 index 0000000..987b836 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/storm/func.sym @@ -0,0 +1,37 @@ +SCmdRegisterArgList 00773590 f end=007737C2 +SCmdProcess 00773890 f end=00773986 +SCmdProcessCommandLine 00773990 f end=007739AD +SErrSetLastError 00771870 f end=00771886 +SErrSetLogTitleString 00771890 f end=007718F2 +SErrSetLogTitleCallback 00771900 f end=00771957 +SErrRegisterHandler 00771B80 f end=00771C15 +SErrCatchUnhandledExceptions 00772B20 f end=00772B2C +SMemAlloc 0076E540 f end=0076E59A type="void* __stdcall func(uint32_t bytes, char* filename, int32_t linenumber, uint32_t flags)" +SMemFree 0076E5A0 f end=0076E5C4 type="int32_t __stdcall func(void* ptr, char* filename, int32_t linenumber, uint32_t flags)" +SMemReAlloc 0076E5E0 f end=0076E6D6 type="void* __stdcall func(void* ptr, uint32_t bytes, char* filename, int32_t linenumber, uint32_t flags)" +SMemSetDebugFlags 0076E4A0 f end=0076E4D2 +SRegLoadValue 00770840 f end=007708E9 +SRegSaveValue 007709A0 f end=007709E8 +SStrChr 0076E6E0 f end=0076E712 +SStrChrR 0076E720 f end=0076E756 +SStrCmp 0076E760 f end=0076E77B +SStrCmpI 0076E780 f end=0076E79B +SStrCopy 0076ED20 f end=0076ED98 +SStrLen 0076EE30 f end=0076EE5E +SStrPack 0076EF70 f end=0076F001 +SStrPrintf 0076F070 f end=0076F09E type="int32_t __stdcall func(char* dest, size_t maxchars, char* format, ...)" +SStrVPrintf 0076F0A0 f end=0076F0CE +SStrTokenize 0076F1E0 f end=0076F331 +SStrHashHT 0076F640 f end=0076F6B9 +SEvent__Set 00774720 f end=0077472A +SEvent__Reset 00774730 f end=0077473A +SSyncObject__Wait 00774690 f end=007746A4 +StormInitialize 007739E0 f end=007739F4 +StormSetOption 00773A80 f end=00773C81 +TSList__LinkNode 004F71A0 f end=004F724D +SCritSect__SCritSect 00774620 f end=0077462E type="SCritSect* __thiscall func(SCritSect* this)" +SCritSect__Enter 00774640 f end=00774648 type="void __thiscall func(SCritSect *this)" +SCritSect__Leave 00774650 f end=00774658 type="void __thiscall func(SCritSect *this)" +SCritSect__destructor 00774630 f end=00774638 type="void __thiscall func(SCritSect *this)" +SRgnCreate 00777980 f end=00777A78 +SRgnDelete 00777940 f end=00777971 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/tempest/func.sym b/profile/3.3.5a-windows/symbol/tempest/func.sym new file mode 100644 index 0000000..145938d --- /dev/null +++ b/profile/3.3.5a-windows/symbol/tempest/func.sym @@ -0,0 +1,23 @@ +CRndSeed__SetSeed 004C1510 f +C44Matrix__C44Matrix 00407F40 f end=00407F76 +C44Matrix__operator_assign_C44Matrix 00407F80 f end=00407FEA +C44Matrix__Determinant 004C1930 f +C44Matrix__Translate 004C1B30 f +C44Matrix__Scale_C3Vector 004C1B90 f +C44Matrix__Scale_float 004C1BF0 f +C44Matrix__C44Matrix_C4Quaternion 004C1DE0 f +operator_multiply_C44Matrix_C44Matrix 004C1F00 f +operator_multiply_C3Vector_C44Matrix 004C21B0 f +C44Matrix__operator_assignment_multiply 004C2370 f +C44Matrix__Transpose 004C23D0 f +C44Matrix__Inverse 004C2F90 f +C44Matrix__AffineInverse 004C2FC0 f +C44Matrix__AffineInvertInPlace 004C30A0 f +C44Matrix__RotationAroundZ 004C3290 f +C44Matrix__RotateAroundX 004C3300 f +C44Matrix__RotateAroundY 004C3340 f +C44Matrix__RotateAroundZ 004C3380 f +C44Matrix__Rotate 004C33C0 f +C3Vector__Normalize_1 004C3420 f +C3Vector__Normalize_2 004C3600 f +C33Matrix__operator_assign_C33Matrix 004C51B0 f \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/textblock/func.sym b/profile/3.3.5a-windows/symbol/textblock/func.sym new file mode 100644 index 0000000..8481086 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/textblock/func.sym @@ -0,0 +1,5 @@ +TextBlockCreate 004BDAA0 f end=004BDBE4 +TextBlockGenerateFont 004BE9C0 f end=004BEB8C +TextBlockGetFontPtr 004BD9D0 f end=004BD9EA +TextBlockSetStringPos 004BDBF0 f end=004BDC4C +TextBlockGetWrappedTextHeight 004BDD80 f diff --git a/profile/3.3.5a-windows/symbol/texture/func.sym b/profile/3.3.5a-windows/symbol/texture/func.sym new file mode 100644 index 0000000..d685e3e --- /dev/null +++ b/profile/3.3.5a-windows/symbol/texture/func.sym @@ -0,0 +1,45 @@ +TextureLoadImage 004B81D0 f end=004B8385 type="MipBits* func(const char* filename, uint32_t* width, uint32_t* height, PIXEL_FORMAT* dataFormat, int32_t* isOpaque, CStatus* status, uint32_t* alphaBits, int32_t a8)" +TextureFreeMippedImg 004B7300 f end=004B73D9 type="void func(MipBits* image)" +LoadTgaMips 004B78A0 f end=004B7AA0 type="int32_t __usercall func@(char* ext@, char* filename, int32_t a3, MipBits** mipBits, uint32_t* width, uint32_t* height, PIXEL_FORMAT* texFormat, int32_t* isOpaque@, uint32_t* alphaBits, PIXEL_FORMAT* dataFormat)" +LoadBlpMips 004B8070 f end=004B81CE type="int32_t __usercall func@(char* ext@, char* filename@, int32_t a3, MipBits** mipBits, uint32_t* width, uint32_t* height, uint32_t* isOpaque, uint32_t* alphaBits, PIXEL_FORMAT* dataFormat)" +CBLPFile__Pixels 006AF6A0 f end=006AF6D1 type="uint32_t __thiscall func(CBLPFile* this, uint32_t mipLevel)" +CBLPFile__Close 006AE8B0 f end=006AE8DA type="void __thiscall func(CBLPFile* this)" +CBLPFile__Open 006AFF10 f end=006AFFCF type="int32_t __thiscall func(CBLPFile* this, char* filename)" +CBLPFile__Source 006AE900 f end=006AE990 type="int32_t __thiscall func(CBLPFile* this, void* fileBits)" +CBLPFile__LockChain2 006AFFD0 f end=006B012E type="int32_t __thiscall func(CBLPFile* this, char* fileName, PIXEL_FORMAT format, MipBits** images, uint32_t mipLevel, int32_t a6)" +CBLPFile__Lock2 006AFCE0 f end=006AFF06 type="int32_t __thiscall func(CBLPFile* this, char* fileName, PIXEL_FORMAT format, uint32_t mipLevel, unsigned char* data, uint32_t* stride)" +CBLPFile__GetFormatSize 006AF730 f end=006AF7E9 type="int32_t __thiscall func(CBLPFile *this, PIXEL_FORMAT format, uint32_t mipLevel, uint32_t* size, uint32_t* stride)" +CBLPFile__DecompPalARGB8888 006AE9E0 f end=006AEB93 type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t colorSize)" +CBLPFile__DecompPalFastPath 006AE990 f end=006AE9D6 type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t colorSize)" +CBLPFile__DecompPalARGB4444DitherFloydSteinberg 006AEBA0 f end=006AEE61 type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)" +CBLPFile__DecompPalARGB1555DitherFloydSteinberg 006AEE70 f end=006AF133 type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)" +CBLPFile__DecompPalARGB565DitherFloydSteinberg 006AF140 f end=006AF33F type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)" +CBLPFile__DecompPalARGB2565DitherFloydSteinberg 006AF340 f end=006AF65D type="void __thiscall func(CBLPFile* this, uint8_t* data, void* tempbuffer, uint32_t width, uint32_t height)" +CBLPFile__DecompPal 006AF810 f end=006AF984 type="int32_t __thiscall func(CBLPFile* this, PIXEL_FORMAT format, uint32_t mipLevel, uint8_t* data, void* tempBuffer)" +CTgaFile__AddAlphaChannel_internal 006AA420 f end=006AA51E type="void __thiscall func(CTgaFile* this, uint8_t* pAlphaData, uint8_t* pNoAlphaData, uint8_t* alpha)" ; private utility method +CTgaFile__AddAlphaChannel 006AB390 f end=006AB447 type="int32_t __thiscall func(CTgaFile* this, void* pImg)" ; public method +CTgaFile__RemoveAlphaChannels 006AA870 f end=006AA948 type="int32_t __thiscall func(CTgaFile* this)" +CTgaFile__Open 006AAFB0 f end=006AB0D4 type="int32_t __thiscall func(CTgaFile* this, char* filename, int32_t a3)" +CTgaFile__Close 006AAF40 f end=006AAFA5 type="int32_t __thiscall func(CTgaFile* this)" +CTgaFile__LoadImageData 006AB4B0 f end=006AB5B8 type="int32_t __thiscall func(CTgaFile* this, int32_t flags)" +CTgaFile__ReadRawImage 006AA520 f end=006AA62F +CTgaFile__ReadRleImage 006AB220 f end=006AB381 +CTgaFile__ConvertColorMapped 006AB0E0 f end=006AB212 +CTgaFile__ReadColorMappedImage 006AB450 f end=006AB4A1 +CTgaFile__ColorMapEntryBytes 006AA350 f end=006AA379 ; UC +CTgaFile__ColorMapBytes 006AA380 f end=006AA3B0 +CTgaFile__SetTopDown 006AA700 f end=006AA81D type="void __thiscall func(CTgaFile* this, int32_t set)" +CTgaFile__ImageTGA32Pixel 006AA840 f end=006AA867 type="TGA32Pixel* __thiscall func(CTgaFile* this)" +CTgaFile__ValidateColorDepth 006AA3B0 f end=006AA3E0 type="int32_t __thiscall func(CTgaFile* this)" +CTgaFile__PreImageBytes 006AA3E0 f end=006AA41B type="uint32_t __thiscall func(CTgaFile* this)" +CTgaFile__RLEDecompressImage 006AA630 f end=006AA6F2 type="int32_t __thiscall func(CTgaFile* this, uint8_t* pRLEData, uint8_t* pData)" +TextureCalcMipCount 004B5510 f end=004B5549 type="int32_t __stdcall func(uint32_t width, uint32_t height)" +TextureAllocMippedImg 004B7220 f end=004B72F4 type="MipBits* __stdcall func(PIXEL_FORMAT format, uint32_t width, uint32_t height)" +MippedImgSet 006AB810 f end=006AB85E type="void __stdcall func(uint32_t fourCC, uint32_t width, uint32_t height, MipBits* bits)" +MippedImgAllocA 006AB760 f end=006AB7DF type="MipBits* __stdcall func(uint32_t fourCC, uint32_t width, uint32_t height, char* filename, int32_t linenumber)" +LoadPredrawnMips 004B5A00 f end=004B5BA2 +FullShrink 006AB860 f end=006ABAAF type="void _stdcall func(C4Pixel* dest, uint32_t destWidth, uint32_t destHeight, C4Pixel* source, uint32_t sourceWidth, uint32_t sourceHeight)" +TextureGenerateMips 004B5550 f end=004B55D7 +CalcLevelSize 006AB620 f end=006AB6B9 type="uint32_t __cdecl func(uint32_t level, uint32_t width, uint32_t height, uint32_t fourCC)" +CalcLevelCount 006AB700 f end=006AB75C type="uint32_t __stdcall func(uint32_t width, uint32_t height)" +GetBitDepth 006AB5C0 f end=006AB614 \ No newline at end of file diff --git a/profile/3.3.5a-windows/symbol/texture/label.sym b/profile/3.3.5a-windows/symbol/texture/label.sym new file mode 100644 index 0000000..c700436 --- /dev/null +++ b/profile/3.3.5a-windows/symbol/texture/label.sym @@ -0,0 +1,3 @@ +s_pixelFormatToMipBitsCache 009F1074 l +CBLPFile__s_oneBitAlphaLookup 00AD90C0 l type="uint8_t[2]" +CBLPFile__s_eightBitAlphaLookup 00AD90B0 l type="uint8_t[16]" \ No newline at end of file diff --git a/profile/3.3.5a-windows/x32dbg/game.dd32 b/profile/3.3.5a-windows/x32dbg/game.dd32 new file mode 100644 index 0000000..86e9201 --- /dev/null +++ b/profile/3.3.5a-windows/x32dbg/game.dd32 @@ -0,0 +1,37416 @@ +{ + "functions": [ + { + "manual": true, + "start": "0x1070", + "end": "0x1070", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1070" + }, + { + "manual": true, + "start": "0x10d0", + "end": "0x10d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10d0" + }, + { + "manual": true, + "start": "0x10e0", + "end": "0x10e0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10e0" + }, + { + "manual": true, + "start": "0x1130", + "end": "0x1130", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1130" + }, + { + "manual": true, + "start": "0x2b20", + "end": "0x2b8a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b20" + }, + { + "manual": true, + "start": "0x33b0", + "end": "0x33b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x33b0" + }, + { + "manual": true, + "start": "0x38a0", + "end": "0x38a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x38a0" + }, + { + "manual": true, + "start": "0x67f0", + "end": "0x6b66", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x67f0" + }, + { + "manual": true, + "start": "0x6b70", + "end": "0x6c64", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x6b70" + }, + { + "manual": true, + "start": "0x6c70", + "end": "0x6d63", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x6c70" + }, + { + "manual": true, + "start": "0x7f40", + "end": "0x7f75", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7f40" + }, + { + "manual": true, + "start": "0x7f80", + "end": "0x7fe9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7f80" + }, + { + "manual": true, + "start": "0x8030", + "end": "0x8048", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x8030" + }, + { + "manual": true, + "start": "0x8070", + "end": "0x80d8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x8070" + }, + { + "manual": true, + "start": "0x8110", + "end": "0x820e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x8110" + }, + { + "manual": true, + "start": "0x8210", + "end": "0x823a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x8210" + }, + { + "manual": true, + "start": "0x8240", + "end": "0x8257", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x8240" + }, + { + "manual": true, + "start": "0x8bf0", + "end": "0x8c26", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x8bf0" + }, + { + "manual": true, + "start": "0x9670", + "end": "0x96cb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x9670" + }, + { + "manual": true, + "start": "0xbaa5", + "end": "0xbace", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbaa5" + }, + { + "manual": true, + "start": "0xd3b5", + "end": "0xd3b5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd3b5" + }, + { + "manual": true, + "start": "0x217c0", + "end": "0x217d9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x217c0" + }, + { + "manual": true, + "start": "0x218c0", + "end": "0x21947", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x218c0" + }, + { + "manual": true, + "start": "0x21af0", + "end": "0x21b49", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x21af0" + }, + { + "manual": true, + "start": "0x21bb0", + "end": "0x21c97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x21bb0" + }, + { + "manual": true, + "start": "0x21ca0", + "end": "0x21cb7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x21ca0" + }, + { + "manual": true, + "start": "0x22130", + "end": "0x22138", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x22130" + }, + { + "manual": true, + "start": "0x22530", + "end": "0x227d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x22530" + }, + { + "manual": true, + "start": "0x22910", + "end": "0x229aa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x22910" + }, + { + "manual": true, + "start": "0x24b10", + "end": "0x24b40", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x24b10" + }, + { + "manual": true, + "start": "0x24b50", + "end": "0x24e43", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x24b50" + }, + { + "manual": true, + "start": "0x24e80", + "end": "0x24f45", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x24e80" + }, + { + "manual": true, + "start": "0x24f80", + "end": "0x24f97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x24f80" + }, + { + "manual": true, + "start": "0x61b00", + "end": "0x61b08", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x61b00" + }, + { + "manual": true, + "start": "0x61b50", + "end": "0x61b87", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x61b50" + }, + { + "manual": true, + "start": "0x61bd0", + "end": "0x61bf3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x61bd0" + }, + { + "manual": true, + "start": "0x61db0", + "end": "0x61dd6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x61db0" + }, + { + "manual": true, + "start": "0x61fa0", + "end": "0x61ff9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x61fa0" + }, + { + "manual": true, + "start": "0x7add0", + "end": "0x7add0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7add0" + }, + { + "manual": true, + "start": "0x7ade0", + "end": "0x7ade0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7ade0" + }, + { + "manual": true, + "start": "0x7ae10", + "end": "0x7ae10", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7ae10" + }, + { + "manual": true, + "start": "0x7ae50", + "end": "0x7ae50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7ae50" + }, + { + "manual": true, + "start": "0x7aea0", + "end": "0x7aea0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7aea0" + }, + { + "manual": true, + "start": "0x7af40", + "end": "0x7af40", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7af40" + }, + { + "manual": true, + "start": "0x7afe0", + "end": "0x7afe0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7afe0" + }, + { + "manual": true, + "start": "0x7b040", + "end": "0x7b040", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b040" + }, + { + "manual": true, + "start": "0x7b0a0", + "end": "0x7b0a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b0a0" + }, + { + "manual": true, + "start": "0x7b100", + "end": "0x7b100", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b100" + }, + { + "manual": true, + "start": "0x7b1c0", + "end": "0x7b1c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b1c0" + }, + { + "manual": true, + "start": "0x7b280", + "end": "0x7b280", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b280" + }, + { + "manual": true, + "start": "0x7b290", + "end": "0x7b290", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b290" + }, + { + "manual": true, + "start": "0x7b300", + "end": "0x7b300", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b300" + }, + { + "manual": true, + "start": "0x7b340", + "end": "0x7b370", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b340" + }, + { + "manual": true, + "start": "0x7b380", + "end": "0x7b3b2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b380" + }, + { + "manual": true, + "start": "0x7b3c0", + "end": "0x7b3f0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b3c0" + }, + { + "manual": true, + "start": "0x7b400", + "end": "0x7b439", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b400" + }, + { + "manual": true, + "start": "0x7b440", + "end": "0x7b470", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b440" + }, + { + "manual": true, + "start": "0x7b480", + "end": "0x7b55f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b480" + }, + { + "manual": true, + "start": "0x7b560", + "end": "0x7b5ec", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b560" + }, + { + "manual": true, + "start": "0x7b6b0", + "end": "0x7b6e8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b6b0" + }, + { + "manual": true, + "start": "0x7b720", + "end": "0x7b735", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b720" + }, + { + "manual": true, + "start": "0x7b760", + "end": "0x7b760", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7b760" + }, + { + "manual": true, + "start": "0x7bf30", + "end": "0x7bf45", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7bf30" + }, + { + "manual": true, + "start": "0x7bf50", + "end": "0x7bf6a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7bf50" + }, + { + "manual": true, + "start": "0x7bf70", + "end": "0x7bf81", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7bf70" + }, + { + "manual": true, + "start": "0x7bf90", + "end": "0x7bfc7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7bf90" + }, + { + "manual": true, + "start": "0x7bfd0", + "end": "0x7bfd6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7bfd0" + }, + { + "manual": true, + "start": "0x7bfe0", + "end": "0x7bfe6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7bfe0" + }, + { + "manual": true, + "start": "0x7bff0", + "end": "0x7c018", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7bff0" + }, + { + "manual": true, + "start": "0x7c020", + "end": "0x7c048", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7c020" + }, + { + "manual": true, + "start": "0x7c050", + "end": "0x7c05d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7c050" + }, + { + "manual": true, + "start": "0x7c060", + "end": "0x7c06d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7c060" + }, + { + "manual": true, + "start": "0x7c070", + "end": "0x7c07d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7c070" + }, + { + "manual": true, + "start": "0x7c080", + "end": "0x7c08d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7c080" + }, + { + "manual": true, + "start": "0x7cbf0", + "end": "0x7cc07", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7cbf0" + }, + { + "manual": true, + "start": "0x7cc20", + "end": "0x7cc40", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7cc20" + }, + { + "manual": true, + "start": "0x7cc50", + "end": "0x7cc6f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7cc50" + }, + { + "manual": true, + "start": "0x7cf80", + "end": "0x7cfeb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7cf80" + }, + { + "manual": true, + "start": "0x7cff0", + "end": "0x7d02c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7cff0" + }, + { + "manual": true, + "start": "0x7d030", + "end": "0x7d04d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d030" + }, + { + "manual": true, + "start": "0x7d080", + "end": "0x7d088", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d080" + }, + { + "manual": true, + "start": "0x7d090", + "end": "0x7d098", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d090" + }, + { + "manual": true, + "start": "0x7d0e0", + "end": "0x7d169", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d0e0" + }, + { + "manual": true, + "start": "0x7d1d0", + "end": "0x7d22f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d1d0" + }, + { + "manual": true, + "start": "0x7d230", + "end": "0x7d28f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d230" + }, + { + "manual": true, + "start": "0x7d290", + "end": "0x7d304", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d290" + }, + { + "manual": true, + "start": "0x7d310", + "end": "0x7d3ae", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d310" + }, + { + "manual": true, + "start": "0x7d3c0", + "end": "0x7d442", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d3c0" + }, + { + "manual": true, + "start": "0x7d450", + "end": "0x7d4b6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d450" + }, + { + "manual": true, + "start": "0x7d530", + "end": "0x7d59b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d530" + }, + { + "manual": true, + "start": "0x7d620", + "end": "0x7d682", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d620" + }, + { + "manual": true, + "start": "0x7d690", + "end": "0x7d6fc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d690" + }, + { + "manual": true, + "start": "0x7d770", + "end": "0x7d78c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d770" + }, + { + "manual": true, + "start": "0x7d790", + "end": "0x7d7a8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d790" + }, + { + "manual": true, + "start": "0x7d990", + "end": "0x7d9ea", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7d990" + }, + { + "manual": true, + "start": "0x7dbc0", + "end": "0x7dc13", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7dbc0" + }, + { + "manual": true, + "start": "0x7dc20", + "end": "0x7dc4f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7dc20" + }, + { + "manual": true, + "start": "0x7dc50", + "end": "0x7dc8c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7dc50" + }, + { + "manual": true, + "start": "0x7dca0", + "end": "0x7de08", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7dca0" + }, + { + "manual": true, + "start": "0x7dea0", + "end": "0x7e116", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7dea0" + }, + { + "manual": true, + "start": "0x7e910", + "end": "0x7ea68", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7e910" + }, + { + "manual": true, + "start": "0x7ec10", + "end": "0x7ec10", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7ec10" + }, + { + "manual": true, + "start": "0x7eff0", + "end": "0x7f224", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7eff0" + }, + { + "manual": true, + "start": "0x7f230", + "end": "0x7f2c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7f230" + }, + { + "manual": true, + "start": "0x7f2d0", + "end": "0x7f2eb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7f2d0" + }, + { + "manual": true, + "start": "0x7f2f0", + "end": "0x7f5b9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7f2f0" + }, + { + "manual": true, + "start": "0x7f5c0", + "end": "0x7f6b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7f5c0" + }, + { + "manual": true, + "start": "0x7fac0", + "end": "0x7fb21", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7fac0" + }, + { + "manual": true, + "start": "0x7fb80", + "end": "0x7fb91", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7fb80" + }, + { + "manual": true, + "start": "0x7fbb0", + "end": "0x7fc16", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7fbb0" + }, + { + "manual": true, + "start": "0x7fc20", + "end": "0x7fc35", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7fc20" + }, + { + "manual": true, + "start": "0x7fc90", + "end": "0x7fdd3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x7fc90" + }, + { + "manual": true, + "start": "0x800a0", + "end": "0x800ee", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x800a0" + }, + { + "manual": true, + "start": "0x80410", + "end": "0x804a7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x80410" + }, + { + "manual": true, + "start": "0x804b0", + "end": "0x804b9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x804b0" + }, + { + "manual": true, + "start": "0x804c0", + "end": "0x804e5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x804c0" + }, + { + "manual": true, + "start": "0x804f0", + "end": "0x805f3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x804f0" + }, + { + "manual": true, + "start": "0x806a0", + "end": "0x8071e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x806a0" + }, + { + "manual": true, + "start": "0x80a50", + "end": "0x80ac1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x80a50" + }, + { + "manual": true, + "start": "0x80ad0", + "end": "0x80bca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x80ad0" + }, + { + "manual": true, + "start": "0x80bd0", + "end": "0x80d27", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x80bd0" + }, + { + "manual": true, + "start": "0x80d30", + "end": "0x80dd0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x80d30" + }, + { + "manual": true, + "start": "0x80ea0", + "end": "0x80ed8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x80ea0" + }, + { + "manual": true, + "start": "0x80f70", + "end": "0x80fc9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x80f70" + }, + { + "manual": true, + "start": "0x81100", + "end": "0x81288", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x81100" + }, + { + "manual": true, + "start": "0x81290", + "end": "0x8138e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x81290" + }, + { + "manual": true, + "start": "0x81390", + "end": "0x814e3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x81390" + }, + { + "manual": true, + "start": "0x829d0", + "end": "0x829e8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x829d0" + }, + { + "manual": true, + "start": "0x829f0", + "end": "0x82a12", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x829f0" + }, + { + "manual": true, + "start": "0x82a20", + "end": "0x82a3b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x82a20" + }, + { + "manual": true, + "start": "0x82a40", + "end": "0x82a5c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x82a40" + }, + { + "manual": true, + "start": "0x93bf0", + "end": "0x93c08", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x93bf0" + }, + { + "manual": true, + "start": "0xa8500", + "end": "0xa8521", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xa8500" + }, + { + "manual": true, + "start": "0xa8720", + "end": "0xa8b57", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xa8720" + }, + { + "manual": true, + "start": "0xa8bb0", + "end": "0xa8c82", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xa8bb0" + }, + { + "manual": true, + "start": "0xa8d10", + "end": "0xa8dbe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xa8d10" + }, + { + "manual": true, + "start": "0xb5510", + "end": "0xb5548", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xb5510" + }, + { + "manual": true, + "start": "0xb5550", + "end": "0xb55d6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xb5550" + }, + { + "manual": true, + "start": "0xb5a00", + "end": "0xb5ba1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xb5a00" + }, + { + "manual": true, + "start": "0xb7220", + "end": "0xb72f3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xb7220" + }, + { + "manual": true, + "start": "0xb7300", + "end": "0xb73d8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xb7300" + }, + { + "manual": true, + "start": "0xb78a0", + "end": "0xb7a9f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xb78a0" + }, + { + "manual": true, + "start": "0xb8070", + "end": "0xb81cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xb8070" + }, + { + "manual": true, + "start": "0xb81d0", + "end": "0xb8384", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xb81d0" + }, + { + "manual": true, + "start": "0xbd9d0", + "end": "0xbd9e9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbd9d0" + }, + { + "manual": true, + "start": "0xbdaa0", + "end": "0xbdbe3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbdaa0" + }, + { + "manual": true, + "start": "0xbdbf0", + "end": "0xbdc4b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbdbf0" + }, + { + "manual": true, + "start": "0xbdd80", + "end": "0xbdd80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbdd80" + }, + { + "manual": true, + "start": "0xbe9c0", + "end": "0xbeb8b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbe9c0" + }, + { + "manual": true, + "start": "0xbec70", + "end": "0xbec87", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbec70" + }, + { + "manual": true, + "start": "0xbecf0", + "end": "0xbee5d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbecf0" + }, + { + "manual": true, + "start": "0xbee60", + "end": "0xbf0b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbee60" + }, + { + "manual": true, + "start": "0xbf0c0", + "end": "0xbf0e1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbf0c0" + }, + { + "manual": true, + "start": "0xbf770", + "end": "0xbfa4d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbf770" + }, + { + "manual": true, + "start": "0xbfca0", + "end": "0xbfcd3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xbfca0" + }, + { + "manual": true, + "start": "0xc1510", + "end": "0xc1510", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc1510" + }, + { + "manual": true, + "start": "0xc1930", + "end": "0xc1930", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc1930" + }, + { + "manual": true, + "start": "0xc1b30", + "end": "0xc1b30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc1b30" + }, + { + "manual": true, + "start": "0xc1b90", + "end": "0xc1b90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc1b90" + }, + { + "manual": true, + "start": "0xc1bf0", + "end": "0xc1bf0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc1bf0" + }, + { + "manual": true, + "start": "0xc1de0", + "end": "0xc1de0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc1de0" + }, + { + "manual": true, + "start": "0xc1f00", + "end": "0xc1f00", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc1f00" + }, + { + "manual": true, + "start": "0xc21b0", + "end": "0xc21b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc21b0" + }, + { + "manual": true, + "start": "0xc2370", + "end": "0xc2370", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc2370" + }, + { + "manual": true, + "start": "0xc23d0", + "end": "0xc23d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc23d0" + }, + { + "manual": true, + "start": "0xc2f90", + "end": "0xc2f90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc2f90" + }, + { + "manual": true, + "start": "0xc2fc0", + "end": "0xc2fc0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc2fc0" + }, + { + "manual": true, + "start": "0xc30a0", + "end": "0xc30a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc30a0" + }, + { + "manual": true, + "start": "0xc3290", + "end": "0xc3290", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc3290" + }, + { + "manual": true, + "start": "0xc3300", + "end": "0xc3300", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc3300" + }, + { + "manual": true, + "start": "0xc3340", + "end": "0xc3340", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc3340" + }, + { + "manual": true, + "start": "0xc3380", + "end": "0xc3380", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc3380" + }, + { + "manual": true, + "start": "0xc33c0", + "end": "0xc33c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc33c0" + }, + { + "manual": true, + "start": "0xc3420", + "end": "0xc3420", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc3420" + }, + { + "manual": true, + "start": "0xc3600", + "end": "0xc3600", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc3600" + }, + { + "manual": true, + "start": "0xc51b0", + "end": "0xc51b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xc51b0" + }, + { + "manual": true, + "start": "0xd7f60", + "end": "0xd7f81", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd7f60" + }, + { + "manual": true, + "start": "0xd80c0", + "end": "0xd81ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd80c0" + }, + { + "manual": true, + "start": "0xd82a0", + "end": "0xd82b7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd82a0" + }, + { + "manual": true, + "start": "0xd82c0", + "end": "0xd834c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd82c0" + }, + { + "manual": true, + "start": "0xd8860", + "end": "0xd8923", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd8860" + }, + { + "manual": true, + "start": "0xd8930", + "end": "0xd8a2c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd8930" + }, + { + "manual": true, + "start": "0xd8a30", + "end": "0xd8b9b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd8a30" + }, + { + "manual": true, + "start": "0xd8bd0", + "end": "0xd8c55", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd8bd0" + }, + { + "manual": true, + "start": "0xd9500", + "end": "0xd9581", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd9500" + }, + { + "manual": true, + "start": "0xd95c0", + "end": "0xd960c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd95c0" + }, + { + "manual": true, + "start": "0xd98d0", + "end": "0xd99d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xd98d0" + }, + { + "manual": true, + "start": "0xda3d0", + "end": "0xda4a7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xda3d0" + }, + { + "manual": true, + "start": "0xda4b0", + "end": "0xda50c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xda4b0" + }, + { + "manual": true, + "start": "0xda5f0", + "end": "0xda9c3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xda5f0" + }, + { + "manual": true, + "start": "0xda9d0", + "end": "0xdab3c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xda9d0" + }, + { + "manual": true, + "start": "0xdab40", + "end": "0xdb9e3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xdab40" + }, + { + "manual": true, + "start": "0xdb9f0", + "end": "0xdbbbe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xdb9f0" + }, + { + "manual": true, + "start": "0xdbfd0", + "end": "0xdbff2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xdbfd0" + }, + { + "manual": true, + "start": "0xdce40", + "end": "0xdce5d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xdce40" + }, + { + "manual": true, + "start": "0xdd400", + "end": "0xdd411", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xdd400" + }, + { + "manual": true, + "start": "0xdd420", + "end": "0xdd42c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xdd420" + }, + { + "manual": true, + "start": "0xdd610", + "end": "0xdd670", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xdd610" + }, + { + "manual": true, + "start": "0xddc20", + "end": "0xddc50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xddc20" + }, + { + "manual": true, + "start": "0xe4a40", + "end": "0xe4a9d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xe4a40" + }, + { + "manual": true, + "start": "0xf71a0", + "end": "0xf724c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xf71a0" + }, + { + "manual": true, + "start": "0xfbd00", + "end": "0xfbd12", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfbd00" + }, + { + "manual": true, + "start": "0xfbd20", + "end": "0xfbd35", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfbd20" + }, + { + "manual": true, + "start": "0xfbd40", + "end": "0xfbd8f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfbd40" + }, + { + "manual": true, + "start": "0xfbd90", + "end": "0xfbf5c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfbd90" + }, + { + "manual": true, + "start": "0xfbf60", + "end": "0xfc017", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfbf60" + }, + { + "manual": true, + "start": "0xfc020", + "end": "0xfc0b3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc020" + }, + { + "manual": true, + "start": "0xfc0c0", + "end": "0xfc168", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc0c0" + }, + { + "manual": true, + "start": "0xfc170", + "end": "0xfc248", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc170" + }, + { + "manual": true, + "start": "0xfc250", + "end": "0xfc328", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc250" + }, + { + "manual": true, + "start": "0xfc330", + "end": "0xfc3ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc330" + }, + { + "manual": true, + "start": "0xfc3d0", + "end": "0xfc460", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc3d0" + }, + { + "manual": true, + "start": "0xfc470", + "end": "0xfc5aa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc470" + }, + { + "manual": true, + "start": "0xfc5b0", + "end": "0xfc658", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc5b0" + }, + { + "manual": true, + "start": "0xfc660", + "end": "0xfc6da", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc660" + }, + { + "manual": true, + "start": "0xfc6e0", + "end": "0xfc75a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc6e0" + }, + { + "manual": true, + "start": "0xfc760", + "end": "0xfc806", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc760" + }, + { + "manual": true, + "start": "0xfc810", + "end": "0xfc88a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc810" + }, + { + "manual": true, + "start": "0xfc890", + "end": "0xfc99d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc890" + }, + { + "manual": true, + "start": "0xfc9a0", + "end": "0xfca4a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfc9a0" + }, + { + "manual": true, + "start": "0xfca50", + "end": "0xfca83", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfca50" + }, + { + "manual": true, + "start": "0xfcbf0", + "end": "0xfcc51", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfcbf0" + }, + { + "manual": true, + "start": "0xfcc60", + "end": "0xfcca2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfcc60" + }, + { + "manual": true, + "start": "0xfccb0", + "end": "0xfcce9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfccb0" + }, + { + "manual": true, + "start": "0xfccf0", + "end": "0xfcde8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfccf0" + }, + { + "manual": true, + "start": "0xfcdf0", + "end": "0xfcee6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfcdf0" + }, + { + "manual": true, + "start": "0xfe630", + "end": "0xfe64b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe630" + }, + { + "manual": true, + "start": "0xfe650", + "end": "0xfe714", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe650" + }, + { + "manual": true, + "start": "0xfe720", + "end": "0xfe805", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe720" + }, + { + "manual": true, + "start": "0xfe810", + "end": "0xfe82b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe810" + }, + { + "manual": true, + "start": "0xfe830", + "end": "0xfe84b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe830" + }, + { + "manual": true, + "start": "0xfe850", + "end": "0xfe94d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe850" + }, + { + "manual": true, + "start": "0xfe950", + "end": "0xfe96b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe950" + }, + { + "manual": true, + "start": "0xfe970", + "end": "0xfe98b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe970" + }, + { + "manual": true, + "start": "0xfe990", + "end": "0xfe9ab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe990" + }, + { + "manual": true, + "start": "0xfe9b0", + "end": "0xfe9cb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe9b0" + }, + { + "manual": true, + "start": "0xfe9d0", + "end": "0xfe9eb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe9d0" + }, + { + "manual": true, + "start": "0xfe9f0", + "end": "0xfea0b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfe9f0" + }, + { + "manual": true, + "start": "0xfea10", + "end": "0xfea2b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfea10" + }, + { + "manual": true, + "start": "0xfea30", + "end": "0xfea4b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfea30" + }, + { + "manual": true, + "start": "0xfea50", + "end": "0xfea6b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfea50" + }, + { + "manual": true, + "start": "0xfea70", + "end": "0xfea8b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfea70" + }, + { + "manual": true, + "start": "0xfea90", + "end": "0xfeaab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfea90" + }, + { + "manual": true, + "start": "0xfeab0", + "end": "0xfeacb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfeab0" + }, + { + "manual": true, + "start": "0xfead0", + "end": "0xfeaeb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfead0" + }, + { + "manual": true, + "start": "0xfeaf0", + "end": "0xfed0b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfeaf0" + }, + { + "manual": true, + "start": "0xfed10", + "end": "0xfedb4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfed10" + }, + { + "manual": true, + "start": "0xfedc0", + "end": "0xfeed0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfedc0" + }, + { + "manual": true, + "start": "0xfeee0", + "end": "0xfefe4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfeee0" + }, + { + "manual": true, + "start": "0xfeff0", + "end": "0xff0c6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xfeff0" + }, + { + "manual": true, + "start": "0xff0d0", + "end": "0xff1f8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xff0d0" + }, + { + "manual": true, + "start": "0xff200", + "end": "0xff2b3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xff200" + }, + { + "manual": true, + "start": "0xff2c0", + "end": "0xff4e9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xff2c0" + }, + { + "manual": true, + "start": "0xff580", + "end": "0xffa00", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xff580" + }, + { + "manual": true, + "start": "0xffa10", + "end": "0xffa60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xffa10" + }, + { + "manual": true, + "start": "0xffa70", + "end": "0xffadf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xffa70" + }, + { + "manual": true, + "start": "0xffae0", + "end": "0xffb4f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xffae0" + }, + { + "manual": true, + "start": "0xffb50", + "end": "0xffc22", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xffb50" + }, + { + "manual": true, + "start": "0xffc30", + "end": "0xffc4b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xffc30" + }, + { + "manual": true, + "start": "0xffc50", + "end": "0xffcb7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xffc50" + }, + { + "manual": true, + "start": "0xffcc0", + "end": "0xffcdb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0xffcc0" + }, + { + "manual": true, + "start": "0x100560", + "end": "0x100750", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x100560" + }, + { + "manual": true, + "start": "0x100760", + "end": "0x10078d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x100760" + }, + { + "manual": true, + "start": "0x100810", + "end": "0x100905", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x100810" + }, + { + "manual": true, + "start": "0x100910", + "end": "0x100974", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x100910" + }, + { + "manual": true, + "start": "0x100980", + "end": "0x100ad8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x100980" + }, + { + "manual": true, + "start": "0x100ae0", + "end": "0x100bd5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x100ae0" + }, + { + "manual": true, + "start": "0x100be0", + "end": "0x100c7e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x100be0" + }, + { + "manual": true, + "start": "0x100c80", + "end": "0x100d74", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x100c80" + }, + { + "manual": true, + "start": "0x101140", + "end": "0x101245", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x101140" + }, + { + "manual": true, + "start": "0x101250", + "end": "0x1012e6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x101250" + }, + { + "manual": true, + "start": "0x1012f0", + "end": "0x1013f5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1012f0" + }, + { + "manual": true, + "start": "0x101400", + "end": "0x101496", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x101400" + }, + { + "manual": true, + "start": "0x101db0", + "end": "0x101ef7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x101db0" + }, + { + "manual": true, + "start": "0x101f00", + "end": "0x102263", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x101f00" + }, + { + "manual": true, + "start": "0x104e10", + "end": "0x104e48", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x104e10" + }, + { + "manual": true, + "start": "0x104e50", + "end": "0x104f26", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x104e50" + }, + { + "manual": true, + "start": "0x104f30", + "end": "0x10518b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x104f30" + }, + { + "manual": true, + "start": "0x105190", + "end": "0x1052d6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x105190" + }, + { + "manual": true, + "start": "0x1052e0", + "end": "0x105353", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1052e0" + }, + { + "manual": true, + "start": "0x105360", + "end": "0x1053d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x105360" + }, + { + "manual": true, + "start": "0x1096d0", + "end": "0x109717", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1096d0" + }, + { + "manual": true, + "start": "0x10d170", + "end": "0x10d89f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10d170" + }, + { + "manual": true, + "start": "0x10d8a0", + "end": "0x10d8ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10d8a0" + }, + { + "manual": true, + "start": "0x10daa0", + "end": "0x10dab3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10daa0" + }, + { + "manual": true, + "start": "0x10dac0", + "end": "0x10dad3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10dac0" + }, + { + "manual": true, + "start": "0x10dae0", + "end": "0x10dc00", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10dae0" + }, + { + "manual": true, + "start": "0x10dc10", + "end": "0x10ddd4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10dc10" + }, + { + "manual": true, + "start": "0x10ed00", + "end": "0x10edc4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10ed00" + }, + { + "manual": true, + "start": "0x10f830", + "end": "0x10f883", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10f830" + }, + { + "manual": true, + "start": "0x10f890", + "end": "0x10f8e6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10f890" + }, + { + "manual": true, + "start": "0x10f8f0", + "end": "0x10f942", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10f8f0" + }, + { + "manual": true, + "start": "0x10f950", + "end": "0x10f987", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10f950" + }, + { + "manual": true, + "start": "0x10f990", + "end": "0x10fe76", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10f990" + }, + { + "manual": true, + "start": "0x10fe80", + "end": "0x10fe97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10fe80" + }, + { + "manual": true, + "start": "0x10ff30", + "end": "0x10ff43", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10ff30" + }, + { + "manual": true, + "start": "0x10ff50", + "end": "0x110034", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x10ff50" + }, + { + "manual": true, + "start": "0x110040", + "end": "0x1100b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110040" + }, + { + "manual": true, + "start": "0x1100c0", + "end": "0x110144", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1100c0" + }, + { + "manual": true, + "start": "0x110150", + "end": "0x1101cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110150" + }, + { + "manual": true, + "start": "0x1101d0", + "end": "0x1101f8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1101d0" + }, + { + "manual": true, + "start": "0x110200", + "end": "0x110226", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110200" + }, + { + "manual": true, + "start": "0x110230", + "end": "0x1102a7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110230" + }, + { + "manual": true, + "start": "0x1102b0", + "end": "0x1102d6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1102b0" + }, + { + "manual": true, + "start": "0x1102e0", + "end": "0x110357", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1102e0" + }, + { + "manual": true, + "start": "0x110360", + "end": "0x110388", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110360" + }, + { + "manual": true, + "start": "0x110390", + "end": "0x11040a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110390" + }, + { + "manual": true, + "start": "0x110410", + "end": "0x110428", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110410" + }, + { + "manual": true, + "start": "0x110430", + "end": "0x110442", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110430" + }, + { + "manual": true, + "start": "0x110450", + "end": "0x110462", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110450" + }, + { + "manual": true, + "start": "0x110470", + "end": "0x110490", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110470" + }, + { + "manual": true, + "start": "0x1104a0", + "end": "0x11091f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1104a0" + }, + { + "manual": true, + "start": "0x110920", + "end": "0x110927", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110920" + }, + { + "manual": true, + "start": "0x110930", + "end": "0x110972", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110930" + }, + { + "manual": true, + "start": "0x110980", + "end": "0x1109c2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110980" + }, + { + "manual": true, + "start": "0x1109d0", + "end": "0x1109d7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1109d0" + }, + { + "manual": true, + "start": "0x1109e0", + "end": "0x1109e7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1109e0" + }, + { + "manual": true, + "start": "0x1109f0", + "end": "0x1109fe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1109f0" + }, + { + "manual": true, + "start": "0x110a00", + "end": "0x110a0c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110a00" + }, + { + "manual": true, + "start": "0x110a10", + "end": "0x110ab2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110a10" + }, + { + "manual": true, + "start": "0x110ac0", + "end": "0x110b28", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110ac0" + }, + { + "manual": true, + "start": "0x110b30", + "end": "0x110b71", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110b30" + }, + { + "manual": true, + "start": "0x110b80", + "end": "0x110b87", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110b80" + }, + { + "manual": true, + "start": "0x110b90", + "end": "0x110ba5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110b90" + }, + { + "manual": true, + "start": "0x110bb0", + "end": "0x110bc7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110bb0" + }, + { + "manual": true, + "start": "0x110bd0", + "end": "0x110c52", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110bd0" + }, + { + "manual": true, + "start": "0x110c60", + "end": "0x110cf5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110c60" + }, + { + "manual": true, + "start": "0x110d00", + "end": "0x110dac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110d00" + }, + { + "manual": true, + "start": "0x110db0", + "end": "0x110db7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110db0" + }, + { + "manual": true, + "start": "0x110dc0", + "end": "0x110dcc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110dc0" + }, + { + "manual": true, + "start": "0x110dd0", + "end": "0x110ddc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110dd0" + }, + { + "manual": true, + "start": "0x110de0", + "end": "0x110dfc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110de0" + }, + { + "manual": true, + "start": "0x110e00", + "end": "0x110e1b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110e00" + }, + { + "manual": true, + "start": "0x110e20", + "end": "0x110ee9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110e20" + }, + { + "manual": true, + "start": "0x110f20", + "end": "0x110fb8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110f20" + }, + { + "manual": true, + "start": "0x110fc0", + "end": "0x1110c6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x110fc0" + }, + { + "manual": true, + "start": "0x1110d0", + "end": "0x11114f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1110d0" + }, + { + "manual": true, + "start": "0x111150", + "end": "0x1111fe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111150" + }, + { + "manual": true, + "start": "0x111200", + "end": "0x111233", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111200" + }, + { + "manual": true, + "start": "0x111240", + "end": "0x111422", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111240" + }, + { + "manual": true, + "start": "0x111430", + "end": "0x111504", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111430" + }, + { + "manual": true, + "start": "0x111510", + "end": "0x111522", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111510" + }, + { + "manual": true, + "start": "0x111530", + "end": "0x111600", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111530" + }, + { + "manual": true, + "start": "0x111610", + "end": "0x111630", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111610" + }, + { + "manual": true, + "start": "0x111640", + "end": "0x111652", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111640" + }, + { + "manual": true, + "start": "0x111660", + "end": "0x11171b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111660" + }, + { + "manual": true, + "start": "0x111720", + "end": "0x1117bd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111720" + }, + { + "manual": true, + "start": "0x1117c0", + "end": "0x111828", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1117c0" + }, + { + "manual": true, + "start": "0x111830", + "end": "0x111837", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111830" + }, + { + "manual": true, + "start": "0x111840", + "end": "0x1118f4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111840" + }, + { + "manual": true, + "start": "0x111900", + "end": "0x111939", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111900" + }, + { + "manual": true, + "start": "0x111940", + "end": "0x1119f4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111940" + }, + { + "manual": true, + "start": "0x111a00", + "end": "0x111a39", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111a00" + }, + { + "manual": true, + "start": "0x111a40", + "end": "0x111a50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111a40" + }, + { + "manual": true, + "start": "0x111a60", + "end": "0x111b2f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111a60" + }, + { + "manual": true, + "start": "0x111b30", + "end": "0x111c31", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111b30" + }, + { + "manual": true, + "start": "0x111c40", + "end": "0x111c79", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111c40" + }, + { + "manual": true, + "start": "0x111c80", + "end": "0x111cbb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111c80" + }, + { + "manual": true, + "start": "0x111cc0", + "end": "0x111d14", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111cc0" + }, + { + "manual": true, + "start": "0x111d20", + "end": "0x111d27", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111d20" + }, + { + "manual": true, + "start": "0x111d30", + "end": "0x111dca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111d30" + }, + { + "manual": true, + "start": "0x111dd0", + "end": "0x111e7c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111dd0" + }, + { + "manual": true, + "start": "0x111e80", + "end": "0x111f81", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111e80" + }, + { + "manual": true, + "start": "0x111f90", + "end": "0x111f97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111f90" + }, + { + "manual": true, + "start": "0x111fa0", + "end": "0x111fa7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111fa0" + }, + { + "manual": true, + "start": "0x111fb0", + "end": "0x111fdf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111fb0" + }, + { + "manual": true, + "start": "0x111fe0", + "end": "0x112089", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x111fe0" + }, + { + "manual": true, + "start": "0x112090", + "end": "0x1120dc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x112090" + }, + { + "manual": true, + "start": "0x114430", + "end": "0x1144b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114430" + }, + { + "manual": true, + "start": "0x1144c0", + "end": "0x114517", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1144c0" + }, + { + "manual": true, + "start": "0x114520", + "end": "0x114579", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114520" + }, + { + "manual": true, + "start": "0x114580", + "end": "0x114601", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114580" + }, + { + "manual": true, + "start": "0x114610", + "end": "0x11466a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114610" + }, + { + "manual": true, + "start": "0x114670", + "end": "0x1146ca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114670" + }, + { + "manual": true, + "start": "0x1146d0", + "end": "0x114755", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1146d0" + }, + { + "manual": true, + "start": "0x114760", + "end": "0x1147ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114760" + }, + { + "manual": true, + "start": "0x1147c0", + "end": "0x11481a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1147c0" + }, + { + "manual": true, + "start": "0x114820", + "end": "0x1148a5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114820" + }, + { + "manual": true, + "start": "0x1148b0", + "end": "0x114b93", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1148b0" + }, + { + "manual": true, + "start": "0x114ba0", + "end": "0x114c0e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114ba0" + }, + { + "manual": true, + "start": "0x114c10", + "end": "0x114d39", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114c10" + }, + { + "manual": true, + "start": "0x114d40", + "end": "0x114e22", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114d40" + }, + { + "manual": true, + "start": "0x114e30", + "end": "0x114f51", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114e30" + }, + { + "manual": true, + "start": "0x114f60", + "end": "0x115009", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x114f60" + }, + { + "manual": true, + "start": "0x115010", + "end": "0x1150d5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115010" + }, + { + "manual": true, + "start": "0x1150e0", + "end": "0x1150f7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1150e0" + }, + { + "manual": true, + "start": "0x115100", + "end": "0x11513f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115100" + }, + { + "manual": true, + "start": "0x115140", + "end": "0x115179", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115140" + }, + { + "manual": true, + "start": "0x115180", + "end": "0x1151b9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115180" + }, + { + "manual": true, + "start": "0x1151c0", + "end": "0x1151f9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1151c0" + }, + { + "manual": true, + "start": "0x115200", + "end": "0x115527", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115200" + }, + { + "manual": true, + "start": "0x115560", + "end": "0x11556c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115560" + }, + { + "manual": true, + "start": "0x115570", + "end": "0x115594", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115570" + }, + { + "manual": true, + "start": "0x1155a0", + "end": "0x1155c4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1155a0" + }, + { + "manual": true, + "start": "0x1155d0", + "end": "0x1155f4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1155d0" + }, + { + "manual": true, + "start": "0x115600", + "end": "0x115624", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115600" + }, + { + "manual": true, + "start": "0x115630", + "end": "0x115697", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115630" + }, + { + "manual": true, + "start": "0x1156a0", + "end": "0x11574b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1156a0" + }, + { + "manual": true, + "start": "0x115750", + "end": "0x115786", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115750" + }, + { + "manual": true, + "start": "0x115790", + "end": "0x115808", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115790" + }, + { + "manual": true, + "start": "0x115810", + "end": "0x11587a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115810" + }, + { + "manual": true, + "start": "0x115880", + "end": "0x1158f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115880" + }, + { + "manual": true, + "start": "0x115950", + "end": "0x1159b4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115950" + }, + { + "manual": true, + "start": "0x1159c0", + "end": "0x1159f9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1159c0" + }, + { + "manual": true, + "start": "0x115a00", + "end": "0x115a42", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115a00" + }, + { + "manual": true, + "start": "0x115a50", + "end": "0x115a83", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115a50" + }, + { + "manual": true, + "start": "0x115a90", + "end": "0x115b6c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115a90" + }, + { + "manual": true, + "start": "0x115b70", + "end": "0x115bd7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115b70" + }, + { + "manual": true, + "start": "0x115be0", + "end": "0x115c47", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115be0" + }, + { + "manual": true, + "start": "0x115c50", + "end": "0x115cb7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115c50" + }, + { + "manual": true, + "start": "0x115cc0", + "end": "0x115dca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115cc0" + }, + { + "manual": true, + "start": "0x115dd0", + "end": "0x115eab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115dd0" + }, + { + "manual": true, + "start": "0x115eb0", + "end": "0x115fe3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115eb0" + }, + { + "manual": true, + "start": "0x115ff0", + "end": "0x116123", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x115ff0" + }, + { + "manual": true, + "start": "0x116130", + "end": "0x11620b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116130" + }, + { + "manual": true, + "start": "0x116210", + "end": "0x116271", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116210" + }, + { + "manual": true, + "start": "0x116280", + "end": "0x1162d4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116280" + }, + { + "manual": true, + "start": "0x1162e0", + "end": "0x116334", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1162e0" + }, + { + "manual": true, + "start": "0x116340", + "end": "0x116408", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116340" + }, + { + "manual": true, + "start": "0x116410", + "end": "0x1164a3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116410" + }, + { + "manual": true, + "start": "0x1164b0", + "end": "0x116504", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1164b0" + }, + { + "manual": true, + "start": "0x116510", + "end": "0x116573", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116510" + }, + { + "manual": true, + "start": "0x116580", + "end": "0x1165d7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116580" + }, + { + "manual": true, + "start": "0x1165e0", + "end": "0x11660c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1165e0" + }, + { + "manual": true, + "start": "0x116610", + "end": "0x1166e7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116610" + }, + { + "manual": true, + "start": "0x1166f0", + "end": "0x116757", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1166f0" + }, + { + "manual": true, + "start": "0x116760", + "end": "0x116799", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116760" + }, + { + "manual": true, + "start": "0x1167a0", + "end": "0x1167d2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1167a0" + }, + { + "manual": true, + "start": "0x1167e0", + "end": "0x11683f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1167e0" + }, + { + "manual": true, + "start": "0x116840", + "end": "0x1168a7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116840" + }, + { + "manual": true, + "start": "0x1168b0", + "end": "0x116965", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1168b0" + }, + { + "manual": true, + "start": "0x116970", + "end": "0x116a92", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116970" + }, + { + "manual": true, + "start": "0x116aa0", + "end": "0x116b19", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116aa0" + }, + { + "manual": true, + "start": "0x116b20", + "end": "0x116b81", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116b20" + }, + { + "manual": true, + "start": "0x116b90", + "end": "0x116be0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116b90" + }, + { + "manual": true, + "start": "0x116bf0", + "end": "0x116c55", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116bf0" + }, + { + "manual": true, + "start": "0x116c60", + "end": "0x116ec7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116c60" + }, + { + "manual": true, + "start": "0x116ed0", + "end": "0x117012", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x116ed0" + }, + { + "manual": true, + "start": "0x117020", + "end": "0x1170f4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117020" + }, + { + "manual": true, + "start": "0x117100", + "end": "0x1171e6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117100" + }, + { + "manual": true, + "start": "0x1171f0", + "end": "0x1172df", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1171f0" + }, + { + "manual": true, + "start": "0x1172e0", + "end": "0x1173d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1172e0" + }, + { + "manual": true, + "start": "0x1173e0", + "end": "0x117528", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1173e0" + }, + { + "manual": true, + "start": "0x117530", + "end": "0x1176e4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117530" + }, + { + "manual": true, + "start": "0x117890", + "end": "0x1179a2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117890" + }, + { + "manual": true, + "start": "0x1179b0", + "end": "0x117a96", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1179b0" + }, + { + "manual": true, + "start": "0x117aa0", + "end": "0x117b4d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117aa0" + }, + { + "manual": true, + "start": "0x117b50", + "end": "0x117bdb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117b50" + }, + { + "manual": true, + "start": "0x117c20", + "end": "0x117c57", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117c20" + }, + { + "manual": true, + "start": "0x117c60", + "end": "0x117d13", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117c60" + }, + { + "manual": true, + "start": "0x117d20", + "end": "0x117d2c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117d20" + }, + { + "manual": true, + "start": "0x117d30", + "end": "0x117d69", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117d30" + }, + { + "manual": true, + "start": "0x117d70", + "end": "0x117df0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x117d70" + }, + { + "manual": true, + "start": "0x11a3b0", + "end": "0x11a3c1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a3b0" + }, + { + "manual": true, + "start": "0x11a3d0", + "end": "0x11a527", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a3d0" + }, + { + "manual": true, + "start": "0x11a530", + "end": "0x11a5b7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a530" + }, + { + "manual": true, + "start": "0x11a5c0", + "end": "0x11a647", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a5c0" + }, + { + "manual": true, + "start": "0x11a650", + "end": "0x11a67e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a650" + }, + { + "manual": true, + "start": "0x11a680", + "end": "0x11a6aa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a680" + }, + { + "manual": true, + "start": "0x11a6b0", + "end": "0x11a6d8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a6b0" + }, + { + "manual": true, + "start": "0x11a6e0", + "end": "0x11a795", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a6e0" + }, + { + "manual": true, + "start": "0x11a7a0", + "end": "0x11a875", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a7a0" + }, + { + "manual": true, + "start": "0x11a880", + "end": "0x11a8b9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a880" + }, + { + "manual": true, + "start": "0x11a8c0", + "end": "0x11aa84", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11a8c0" + }, + { + "manual": true, + "start": "0x11aa90", + "end": "0x11aaba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11aa90" + }, + { + "manual": true, + "start": "0x11aac0", + "end": "0x11aaea", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11aac0" + }, + { + "manual": true, + "start": "0x11aaf0", + "end": "0x11ab1a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11aaf0" + }, + { + "manual": true, + "start": "0x11ab20", + "end": "0x11ab97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11ab20" + }, + { + "manual": true, + "start": "0x11aba0", + "end": "0x11abc8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11aba0" + }, + { + "manual": true, + "start": "0x11abd0", + "end": "0x11abf8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11abd0" + }, + { + "manual": true, + "start": "0x11ac00", + "end": "0x11ac28", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11ac00" + }, + { + "manual": true, + "start": "0x11ac30", + "end": "0x11ac58", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11ac30" + }, + { + "manual": true, + "start": "0x11ac60", + "end": "0x11ac88", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11ac60" + }, + { + "manual": true, + "start": "0x11ac90", + "end": "0x11acc8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11ac90" + }, + { + "manual": true, + "start": "0x11acd0", + "end": "0x11adc8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11acd0" + }, + { + "manual": true, + "start": "0x11add0", + "end": "0x11ae78", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11add0" + }, + { + "manual": true, + "start": "0x11ae80", + "end": "0x11aee5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11ae80" + }, + { + "manual": true, + "start": "0x11aef0", + "end": "0x11af4e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11aef0" + }, + { + "manual": true, + "start": "0x11af50", + "end": "0x11afae", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11af50" + }, + { + "manual": true, + "start": "0x11afb0", + "end": "0x11b041", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11afb0" + }, + { + "manual": true, + "start": "0x11b050", + "end": "0x11b107", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b050" + }, + { + "manual": true, + "start": "0x11b110", + "end": "0x11b1cc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b110" + }, + { + "manual": true, + "start": "0x11b1d0", + "end": "0x11b238", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b1d0" + }, + { + "manual": true, + "start": "0x11b240", + "end": "0x11b3a5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b240" + }, + { + "manual": true, + "start": "0x11b3b0", + "end": "0x11b40e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b3b0" + }, + { + "manual": true, + "start": "0x11b410", + "end": "0x11b4db", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b410" + }, + { + "manual": true, + "start": "0x11b4e0", + "end": "0x11b69e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b4e0" + }, + { + "manual": true, + "start": "0x11b6a0", + "end": "0x11b6dd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b6a0" + }, + { + "manual": true, + "start": "0x11b6e0", + "end": "0x11b73a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b6e0" + }, + { + "manual": true, + "start": "0x11b740", + "end": "0x11b79a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b740" + }, + { + "manual": true, + "start": "0x11b7a0", + "end": "0x11b7fa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b7a0" + }, + { + "manual": true, + "start": "0x11b800", + "end": "0x11b8a3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b800" + }, + { + "manual": true, + "start": "0x11b8b0", + "end": "0x11b954", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b8b0" + }, + { + "manual": true, + "start": "0x11b960", + "end": "0x11ba4f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11b960" + }, + { + "manual": true, + "start": "0x11ba50", + "end": "0x11bc92", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11ba50" + }, + { + "manual": true, + "start": "0x11bca0", + "end": "0x11bcfb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11bca0" + }, + { + "manual": true, + "start": "0x11bd00", + "end": "0x11bd58", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11bd00" + }, + { + "manual": true, + "start": "0x11bd60", + "end": "0x11bdc0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11bd60" + }, + { + "manual": true, + "start": "0x11bdd0", + "end": "0x11bf46", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11bdd0" + }, + { + "manual": true, + "start": "0x11bf50", + "end": "0x11bf8e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11bf50" + }, + { + "manual": true, + "start": "0x11bf90", + "end": "0x11bfcd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11bf90" + }, + { + "manual": true, + "start": "0x11bfd0", + "end": "0x11c032", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11bfd0" + }, + { + "manual": true, + "start": "0x11c040", + "end": "0x11c0a2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11c040" + }, + { + "manual": true, + "start": "0x11c0b0", + "end": "0x11c0fe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11c0b0" + }, + { + "manual": true, + "start": "0x11c100", + "end": "0x11c14e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11c100" + }, + { + "manual": true, + "start": "0x11c150", + "end": "0x11c2d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11c150" + }, + { + "manual": true, + "start": "0x11c2e0", + "end": "0x11c44b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11c2e0" + }, + { + "manual": true, + "start": "0x11c450", + "end": "0x11c68d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11c450" + }, + { + "manual": true, + "start": "0x11c690", + "end": "0x11c731", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11c690" + }, + { + "manual": true, + "start": "0x11c740", + "end": "0x11c86b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11c740" + }, + { + "manual": true, + "start": "0x11c870", + "end": "0x11c9b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11c870" + }, + { + "manual": true, + "start": "0x11c9c0", + "end": "0x11cb2f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11c9c0" + }, + { + "manual": true, + "start": "0x11cb30", + "end": "0x11cb9b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11cb30" + }, + { + "manual": true, + "start": "0x11cba0", + "end": "0x11cc0b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11cba0" + }, + { + "manual": true, + "start": "0x11cc10", + "end": "0x11ccf7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11cc10" + }, + { + "manual": true, + "start": "0x11cd00", + "end": "0x11cda9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11cd00" + }, + { + "manual": true, + "start": "0x11cdb0", + "end": "0x11d0a4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11cdb0" + }, + { + "manual": true, + "start": "0x11d0b0", + "end": "0x11d0f9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d0b0" + }, + { + "manual": true, + "start": "0x11d100", + "end": "0x11d160", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d100" + }, + { + "manual": true, + "start": "0x11d170", + "end": "0x11d1ac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d170" + }, + { + "manual": true, + "start": "0x11d1b0", + "end": "0x11d221", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d1b0" + }, + { + "manual": true, + "start": "0x11d230", + "end": "0x11d2a1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d230" + }, + { + "manual": true, + "start": "0x11d2b0", + "end": "0x11d321", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d2b0" + }, + { + "manual": true, + "start": "0x11d330", + "end": "0x11d502", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d330" + }, + { + "manual": true, + "start": "0x11d520", + "end": "0x11d583", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d520" + }, + { + "manual": true, + "start": "0x11d590", + "end": "0x11d597", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d590" + }, + { + "manual": true, + "start": "0x11d5a0", + "end": "0x11d5fb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d5a0" + }, + { + "manual": true, + "start": "0x11d600", + "end": "0x11d705", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x11d600" + }, + { + "manual": true, + "start": "0x1222e0", + "end": "0x122313", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1222e0" + }, + { + "manual": true, + "start": "0x122320", + "end": "0x12247e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122320" + }, + { + "manual": true, + "start": "0x122480", + "end": "0x1224ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122480" + }, + { + "manual": true, + "start": "0x1224c0", + "end": "0x1225d6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1224c0" + }, + { + "manual": true, + "start": "0x1225e0", + "end": "0x1225ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1225e0" + }, + { + "manual": true, + "start": "0x122600", + "end": "0x12270a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122600" + }, + { + "manual": true, + "start": "0x122710", + "end": "0x12286f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122710" + }, + { + "manual": true, + "start": "0x122870", + "end": "0x12294b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122870" + }, + { + "manual": true, + "start": "0x122950", + "end": "0x122979", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122950" + }, + { + "manual": true, + "start": "0x122980", + "end": "0x122a15", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122980" + }, + { + "manual": true, + "start": "0x122a20", + "end": "0x122ae3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122a20" + }, + { + "manual": true, + "start": "0x122af0", + "end": "0x122bb3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122af0" + }, + { + "manual": true, + "start": "0x122bc0", + "end": "0x122c83", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122bc0" + }, + { + "manual": true, + "start": "0x122c90", + "end": "0x122d53", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122c90" + }, + { + "manual": true, + "start": "0x122d60", + "end": "0x122e23", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122d60" + }, + { + "manual": true, + "start": "0x122e30", + "end": "0x122f6b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122e30" + }, + { + "manual": true, + "start": "0x122f70", + "end": "0x122f89", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122f70" + }, + { + "manual": true, + "start": "0x122f90", + "end": "0x122f9f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122f90" + }, + { + "manual": true, + "start": "0x122fa0", + "end": "0x122fa7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122fa0" + }, + { + "manual": true, + "start": "0x122fb0", + "end": "0x12308b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x122fb0" + }, + { + "manual": true, + "start": "0x123090", + "end": "0x123152", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x123090" + }, + { + "manual": true, + "start": "0x123160", + "end": "0x12320d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x123160" + }, + { + "manual": true, + "start": "0x123260", + "end": "0x12335f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x123260" + }, + { + "manual": true, + "start": "0x123360", + "end": "0x123367", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x123360" + }, + { + "manual": true, + "start": "0x123370", + "end": "0x1233c4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x123370" + }, + { + "manual": true, + "start": "0x1233d0", + "end": "0x12349c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1233d0" + }, + { + "manual": true, + "start": "0x124980", + "end": "0x1249b6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x124980" + }, + { + "manual": true, + "start": "0x125a30", + "end": "0x125a8a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125a30" + }, + { + "manual": true, + "start": "0x125a90", + "end": "0x125aca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125a90" + }, + { + "manual": true, + "start": "0x125ad0", + "end": "0x125b0a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125ad0" + }, + { + "manual": true, + "start": "0x125b10", + "end": "0x125b4a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125b10" + }, + { + "manual": true, + "start": "0x125b50", + "end": "0x125b8a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125b50" + }, + { + "manual": true, + "start": "0x125b90", + "end": "0x125bca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125b90" + }, + { + "manual": true, + "start": "0x125bd0", + "end": "0x125bf1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125bd0" + }, + { + "manual": true, + "start": "0x125c00", + "end": "0x125c21", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125c00" + }, + { + "manual": true, + "start": "0x125c30", + "end": "0x125cc3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125c30" + }, + { + "manual": true, + "start": "0x125cd0", + "end": "0x125d63", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125cd0" + }, + { + "manual": true, + "start": "0x125d70", + "end": "0x125de5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125d70" + }, + { + "manual": true, + "start": "0x125df0", + "end": "0x125e4e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125df0" + }, + { + "manual": true, + "start": "0x125e50", + "end": "0x125eae", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125e50" + }, + { + "manual": true, + "start": "0x125eb0", + "end": "0x125fb0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125eb0" + }, + { + "manual": true, + "start": "0x125fc0", + "end": "0x12604a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x125fc0" + }, + { + "manual": true, + "start": "0x126050", + "end": "0x12619b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x126050" + }, + { + "manual": true, + "start": "0x1261a0", + "end": "0x1262c3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1261a0" + }, + { + "manual": true, + "start": "0x1262d0", + "end": "0x1262d7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1262d0" + }, + { + "manual": true, + "start": "0x1262e0", + "end": "0x126361", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1262e0" + }, + { + "manual": true, + "start": "0x127f00", + "end": "0x127fd3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x127f00" + }, + { + "manual": true, + "start": "0x128920", + "end": "0x128ae0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x128920" + }, + { + "manual": true, + "start": "0x12a980", + "end": "0x12aec5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12a980" + }, + { + "manual": true, + "start": "0x12b470", + "end": "0x12b4d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12b470" + }, + { + "manual": true, + "start": "0x12b4e0", + "end": "0x12b543", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12b4e0" + }, + { + "manual": true, + "start": "0x12c110", + "end": "0x12c186", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12c110" + }, + { + "manual": true, + "start": "0x12c190", + "end": "0x12c1c3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12c190" + }, + { + "manual": true, + "start": "0x12c1d0", + "end": "0x12c269", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12c1d0" + }, + { + "manual": true, + "start": "0x12c270", + "end": "0x12c29c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12c270" + }, + { + "manual": true, + "start": "0x12c2a0", + "end": "0x12c2c1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12c2a0" + }, + { + "manual": true, + "start": "0x12c2d0", + "end": "0x12c309", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12c2d0" + }, + { + "manual": true, + "start": "0x12c310", + "end": "0x12c349", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12c310" + }, + { + "manual": true, + "start": "0x12c350", + "end": "0x12c36b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12c350" + }, + { + "manual": true, + "start": "0x12ccd0", + "end": "0x12cd25", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12ccd0" + }, + { + "manual": true, + "start": "0x12cd30", + "end": "0x12cd85", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12cd30" + }, + { + "manual": true, + "start": "0x12cd90", + "end": "0x12cedc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12cd90" + }, + { + "manual": true, + "start": "0x12cf00", + "end": "0x12cf5f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12cf00" + }, + { + "manual": true, + "start": "0x12cf60", + "end": "0x12cff5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12cf60" + }, + { + "manual": true, + "start": "0x12d000", + "end": "0x12d052", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12d000" + }, + { + "manual": true, + "start": "0x12d990", + "end": "0x12d9b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12d990" + }, + { + "manual": true, + "start": "0x12d9c0", + "end": "0x12daeb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12d9c0" + }, + { + "manual": true, + "start": "0x12daf0", + "end": "0x12dc1b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12daf0" + }, + { + "manual": true, + "start": "0x12dc20", + "end": "0x12de53", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12dc20" + }, + { + "manual": true, + "start": "0x12de60", + "end": "0x12df34", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12de60" + }, + { + "manual": true, + "start": "0x12e1b0", + "end": "0x12e3f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12e1b0" + }, + { + "manual": true, + "start": "0x12e400", + "end": "0x12e411", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12e400" + }, + { + "manual": true, + "start": "0x12e420", + "end": "0x12e474", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12e420" + }, + { + "manual": true, + "start": "0x12e4f0", + "end": "0x12e511", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12e4f0" + }, + { + "manual": true, + "start": "0x12e850", + "end": "0x12e9a5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12e850" + }, + { + "manual": true, + "start": "0x12e9b0", + "end": "0x12e9cb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12e9b0" + }, + { + "manual": true, + "start": "0x12e9d0", + "end": "0x12e9eb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12e9d0" + }, + { + "manual": true, + "start": "0x12ed60", + "end": "0x12ed7b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12ed60" + }, + { + "manual": true, + "start": "0x12ed80", + "end": "0x12ed87", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12ed80" + }, + { + "manual": true, + "start": "0x12eef0", + "end": "0x12eef7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12eef0" + }, + { + "manual": true, + "start": "0x12f900", + "end": "0x12f90a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12f900" + }, + { + "manual": true, + "start": "0x12fdd0", + "end": "0x12fe5e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x12fdd0" + }, + { + "manual": true, + "start": "0x1301d0", + "end": "0x130238", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1301d0" + }, + { + "manual": true, + "start": "0x130240", + "end": "0x1302a7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x130240" + }, + { + "manual": true, + "start": "0x130700", + "end": "0x13074c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x130700" + }, + { + "manual": true, + "start": "0x130750", + "end": "0x13079e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x130750" + }, + { + "manual": true, + "start": "0x1307a0", + "end": "0x130817", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1307a0" + }, + { + "manual": true, + "start": "0x130820", + "end": "0x130827", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x130820" + }, + { + "manual": true, + "start": "0x130830", + "end": "0x130837", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x130830" + }, + { + "manual": true, + "start": "0x1308d0", + "end": "0x13091e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1308d0" + }, + { + "manual": true, + "start": "0x130ec0", + "end": "0x130f12", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x130ec0" + }, + { + "manual": true, + "start": "0x130f20", + "end": "0x130f57", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x130f20" + }, + { + "manual": true, + "start": "0x132af0", + "end": "0x132af6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x132af0" + }, + { + "manual": true, + "start": "0x1343f0", + "end": "0x134580", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1343f0" + }, + { + "manual": true, + "start": "0x134590", + "end": "0x1346eb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x134590" + }, + { + "manual": true, + "start": "0x1349f0", + "end": "0x134b5b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1349f0" + }, + { + "manual": true, + "start": "0x134ed0", + "end": "0x134f72", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x134ed0" + }, + { + "manual": true, + "start": "0x134f80", + "end": "0x13507a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x134f80" + }, + { + "manual": true, + "start": "0x135080", + "end": "0x135170", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135080" + }, + { + "manual": true, + "start": "0x135180", + "end": "0x13537d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135180" + }, + { + "manual": true, + "start": "0x135380", + "end": "0x13548a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135380" + }, + { + "manual": true, + "start": "0x135490", + "end": "0x1355b1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135490" + }, + { + "manual": true, + "start": "0x1355c0", + "end": "0x135655", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1355c0" + }, + { + "manual": true, + "start": "0x135660", + "end": "0x1356f5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135660" + }, + { + "manual": true, + "start": "0x135700", + "end": "0x135795", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135700" + }, + { + "manual": true, + "start": "0x1357a0", + "end": "0x13585d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1357a0" + }, + { + "manual": true, + "start": "0x135860", + "end": "0x13591d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135860" + }, + { + "manual": true, + "start": "0x135920", + "end": "0x135a9a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135920" + }, + { + "manual": true, + "start": "0x135aa0", + "end": "0x135c53", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135aa0" + }, + { + "manual": true, + "start": "0x135c60", + "end": "0x135cd8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135c60" + }, + { + "manual": true, + "start": "0x135ce0", + "end": "0x135ea3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135ce0" + }, + { + "manual": true, + "start": "0x135eb0", + "end": "0x136025", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x135eb0" + }, + { + "manual": true, + "start": "0x136030", + "end": "0x136106", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136030" + }, + { + "manual": true, + "start": "0x136110", + "end": "0x13621e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136110" + }, + { + "manual": true, + "start": "0x136220", + "end": "0x136328", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136220" + }, + { + "manual": true, + "start": "0x136330", + "end": "0x1363fa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136330" + }, + { + "manual": true, + "start": "0x136400", + "end": "0x1364d6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136400" + }, + { + "manual": true, + "start": "0x1364e0", + "end": "0x1365a5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1364e0" + }, + { + "manual": true, + "start": "0x1365b0", + "end": "0x13669b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1365b0" + }, + { + "manual": true, + "start": "0x1366a0", + "end": "0x13678c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1366a0" + }, + { + "manual": true, + "start": "0x136790", + "end": "0x13688a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136790" + }, + { + "manual": true, + "start": "0x136890", + "end": "0x136966", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136890" + }, + { + "manual": true, + "start": "0x136970", + "end": "0x136a8f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136970" + }, + { + "manual": true, + "start": "0x136a90", + "end": "0x136b55", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136a90" + }, + { + "manual": true, + "start": "0x136b60", + "end": "0x136c4b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136b60" + }, + { + "manual": true, + "start": "0x136c50", + "end": "0x136d3c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136c50" + }, + { + "manual": true, + "start": "0x136d40", + "end": "0x136e3a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136d40" + }, + { + "manual": true, + "start": "0x136e40", + "end": "0x137008", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x136e40" + }, + { + "manual": true, + "start": "0x137010", + "end": "0x13706b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x137010" + }, + { + "manual": true, + "start": "0x137070", + "end": "0x1370c9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x137070" + }, + { + "manual": true, + "start": "0x1370d0", + "end": "0x13723d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1370d0" + }, + { + "manual": true, + "start": "0x137240", + "end": "0x13750e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x137240" + }, + { + "manual": true, + "start": "0x137510", + "end": "0x1375f7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x137510" + }, + { + "manual": true, + "start": "0x137600", + "end": "0x1376ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x137600" + }, + { + "manual": true, + "start": "0x1376c0", + "end": "0x1377b2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1376c0" + }, + { + "manual": true, + "start": "0x1377c0", + "end": "0x13789f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1377c0" + }, + { + "manual": true, + "start": "0x1378a0", + "end": "0x137942", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1378a0" + }, + { + "manual": true, + "start": "0x137950", + "end": "0x1379f2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x137950" + }, + { + "manual": true, + "start": "0x137a00", + "end": "0x137a5d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x137a00" + }, + { + "manual": true, + "start": "0x139bf0", + "end": "0x139cb7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x139bf0" + }, + { + "manual": true, + "start": "0x139cc0", + "end": "0x139d6a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x139cc0" + }, + { + "manual": true, + "start": "0x139d70", + "end": "0x139f81", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x139d70" + }, + { + "manual": true, + "start": "0x139f90", + "end": "0x13a024", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x139f90" + }, + { + "manual": true, + "start": "0x13a030", + "end": "0x13a14f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13a030" + }, + { + "manual": true, + "start": "0x13a150", + "end": "0x13a2f5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13a150" + }, + { + "manual": true, + "start": "0x13a300", + "end": "0x13a538", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13a300" + }, + { + "manual": true, + "start": "0x13a540", + "end": "0x13a65d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13a540" + }, + { + "manual": true, + "start": "0x13a660", + "end": "0x13a741", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13a660" + }, + { + "manual": true, + "start": "0x13b5c0", + "end": "0x13b5f3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13b5c0" + }, + { + "manual": true, + "start": "0x13b650", + "end": "0x13b6b5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13b650" + }, + { + "manual": true, + "start": "0x13b6c0", + "end": "0x13b738", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13b6c0" + }, + { + "manual": true, + "start": "0x13be70", + "end": "0x13c0a4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13be70" + }, + { + "manual": true, + "start": "0x13c0b0", + "end": "0x13c0e3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13c0b0" + }, + { + "manual": true, + "start": "0x13c0f0", + "end": "0x13c176", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13c0f0" + }, + { + "manual": true, + "start": "0x13c180", + "end": "0x13c29b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13c180" + }, + { + "manual": true, + "start": "0x13c2a0", + "end": "0x13c303", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13c2a0" + }, + { + "manual": true, + "start": "0x13c310", + "end": "0x13c392", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13c310" + }, + { + "manual": true, + "start": "0x13c3a0", + "end": "0x13c425", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13c3a0" + }, + { + "manual": true, + "start": "0x13dd10", + "end": "0x13dd20", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13dd10" + }, + { + "manual": true, + "start": "0x13dd30", + "end": "0x13de08", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13dd30" + }, + { + "manual": true, + "start": "0x13de10", + "end": "0x13de50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13de10" + }, + { + "manual": true, + "start": "0x13de60", + "end": "0x13de88", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13de60" + }, + { + "manual": true, + "start": "0x13de90", + "end": "0x13e059", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13de90" + }, + { + "manual": true, + "start": "0x13e060", + "end": "0x13e2b5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13e060" + }, + { + "manual": true, + "start": "0x13e2c0", + "end": "0x13e48f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13e2c0" + }, + { + "manual": true, + "start": "0x13e490", + "end": "0x13e5d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13e490" + }, + { + "manual": true, + "start": "0x13e5e0", + "end": "0x13e6a2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13e5e0" + }, + { + "manual": true, + "start": "0x13e6b0", + "end": "0x13e7d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13e6b0" + }, + { + "manual": true, + "start": "0x13e7e0", + "end": "0x13e80b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x13e7e0" + }, + { + "manual": true, + "start": "0x140310", + "end": "0x1405a8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x140310" + }, + { + "manual": true, + "start": "0x1407f0", + "end": "0x1408d5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1407f0" + }, + { + "manual": true, + "start": "0x1408e0", + "end": "0x140a25", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1408e0" + }, + { + "manual": true, + "start": "0x140a30", + "end": "0x140d65", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x140a30" + }, + { + "manual": true, + "start": "0x140d70", + "end": "0x140de2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x140d70" + }, + { + "manual": true, + "start": "0x140df0", + "end": "0x140e74", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x140df0" + }, + { + "manual": true, + "start": "0x140e80", + "end": "0x14100b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x140e80" + }, + { + "manual": true, + "start": "0x141010", + "end": "0x1410dd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141010" + }, + { + "manual": true, + "start": "0x1410e0", + "end": "0x14113b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1410e0" + }, + { + "manual": true, + "start": "0x141140", + "end": "0x14119b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141140" + }, + { + "manual": true, + "start": "0x1411a0", + "end": "0x1411fb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1411a0" + }, + { + "manual": true, + "start": "0x141200", + "end": "0x141241", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141200" + }, + { + "manual": true, + "start": "0x141250", + "end": "0x1412b9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141250" + }, + { + "manual": true, + "start": "0x1412c0", + "end": "0x141335", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1412c0" + }, + { + "manual": true, + "start": "0x141340", + "end": "0x14141c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141340" + }, + { + "manual": true, + "start": "0x141420", + "end": "0x1414fc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141420" + }, + { + "manual": true, + "start": "0x141500", + "end": "0x1415cb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141500" + }, + { + "manual": true, + "start": "0x1415d0", + "end": "0x141678", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1415d0" + }, + { + "manual": true, + "start": "0x141680", + "end": "0x1417fa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141680" + }, + { + "manual": true, + "start": "0x141800", + "end": "0x1418ec", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141800" + }, + { + "manual": true, + "start": "0x1418f0", + "end": "0x1419e0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1418f0" + }, + { + "manual": true, + "start": "0x1419f0", + "end": "0x141ae3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1419f0" + }, + { + "manual": true, + "start": "0x141af0", + "end": "0x141c50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141af0" + }, + { + "manual": true, + "start": "0x141c60", + "end": "0x141dee", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x141c60" + }, + { + "manual": true, + "start": "0x143020", + "end": "0x143053", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x143020" + }, + { + "manual": true, + "start": "0x143060", + "end": "0x143093", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x143060" + }, + { + "manual": true, + "start": "0x1430a0", + "end": "0x1432b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1430a0" + }, + { + "manual": true, + "start": "0x1432c0", + "end": "0x1434d8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1432c0" + }, + { + "manual": true, + "start": "0x1434e0", + "end": "0x143532", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1434e0" + }, + { + "manual": true, + "start": "0x143540", + "end": "0x143592", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x143540" + }, + { + "manual": true, + "start": "0x1435a0", + "end": "0x1435fc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1435a0" + }, + { + "manual": true, + "start": "0x143600", + "end": "0x143641", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x143600" + }, + { + "manual": true, + "start": "0x144b20", + "end": "0x144b8c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x144b20" + }, + { + "manual": true, + "start": "0x144b90", + "end": "0x144c3a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x144b90" + }, + { + "manual": true, + "start": "0x144c40", + "end": "0x144c9c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x144c40" + }, + { + "manual": true, + "start": "0x144ca0", + "end": "0x144d39", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x144ca0" + }, + { + "manual": true, + "start": "0x144d40", + "end": "0x144e02", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x144d40" + }, + { + "manual": true, + "start": "0x144e10", + "end": "0x144e70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x144e10" + }, + { + "manual": true, + "start": "0x144e80", + "end": "0x144fb1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x144e80" + }, + { + "manual": true, + "start": "0x144fc0", + "end": "0x14504f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x144fc0" + }, + { + "manual": true, + "start": "0x145050", + "end": "0x145101", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x145050" + }, + { + "manual": true, + "start": "0x145110", + "end": "0x14587f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x145110" + }, + { + "manual": true, + "start": "0x145880", + "end": "0x145940", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x145880" + }, + { + "manual": true, + "start": "0x145950", + "end": "0x1459bc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x145950" + }, + { + "manual": true, + "start": "0x1459c0", + "end": "0x145a28", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1459c0" + }, + { + "manual": true, + "start": "0x145a30", + "end": "0x145c7a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x145a30" + }, + { + "manual": true, + "start": "0x145c80", + "end": "0x145e56", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x145c80" + }, + { + "manual": true, + "start": "0x145e60", + "end": "0x145f11", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x145e60" + }, + { + "manual": true, + "start": "0x145f20", + "end": "0x145fd1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x145f20" + }, + { + "manual": true, + "start": "0x145fe0", + "end": "0x145fe7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x145fe0" + }, + { + "manual": true, + "start": "0x145ff0", + "end": "0x1460f6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x145ff0" + }, + { + "manual": true, + "start": "0x146290", + "end": "0x1462b9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x146290" + }, + { + "manual": true, + "start": "0x1469e0", + "end": "0x146a82", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1469e0" + }, + { + "manual": true, + "start": "0x146a90", + "end": "0x146c4b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x146a90" + }, + { + "manual": true, + "start": "0x146c50", + "end": "0x146e75", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x146c50" + }, + { + "manual": true, + "start": "0x146e80", + "end": "0x146ee9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x146e80" + }, + { + "manual": true, + "start": "0x146ef0", + "end": "0x146fda", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x146ef0" + }, + { + "manual": true, + "start": "0x147b80", + "end": "0x147c01", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x147b80" + }, + { + "manual": true, + "start": "0x147c10", + "end": "0x147c1c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x147c10" + }, + { + "manual": true, + "start": "0x148720", + "end": "0x148753", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x148720" + }, + { + "manual": true, + "start": "0x148d40", + "end": "0x148f48", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x148d40" + }, + { + "manual": true, + "start": "0x149ad0", + "end": "0x149b3f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149ad0" + }, + { + "manual": true, + "start": "0x149b40", + "end": "0x149b7a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149b40" + }, + { + "manual": true, + "start": "0x149b80", + "end": "0x149c36", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149b80" + }, + { + "manual": true, + "start": "0x149c40", + "end": "0x149cc4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149c40" + }, + { + "manual": true, + "start": "0x149cd0", + "end": "0x149d2f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149cd0" + }, + { + "manual": true, + "start": "0x149d30", + "end": "0x149dc5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149d30" + }, + { + "manual": true, + "start": "0x149dd0", + "end": "0x149e72", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149dd0" + }, + { + "manual": true, + "start": "0x149e80", + "end": "0x149eb3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149e80" + }, + { + "manual": true, + "start": "0x149ec0", + "end": "0x149f12", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149ec0" + }, + { + "manual": true, + "start": "0x149f20", + "end": "0x149f53", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149f20" + }, + { + "manual": true, + "start": "0x149f60", + "end": "0x14a031", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x149f60" + }, + { + "manual": true, + "start": "0x14a040", + "end": "0x14a0d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14a040" + }, + { + "manual": true, + "start": "0x14a0e0", + "end": "0x14a139", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14a0e0" + }, + { + "manual": true, + "start": "0x14a140", + "end": "0x14a173", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14a140" + }, + { + "manual": true, + "start": "0x14a180", + "end": "0x14a27b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14a180" + }, + { + "manual": true, + "start": "0x14a280", + "end": "0x14a2b9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14a280" + }, + { + "manual": true, + "start": "0x14a2c0", + "end": "0x14a2f3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14a2c0" + }, + { + "manual": true, + "start": "0x14a300", + "end": "0x14a360", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14a300" + }, + { + "manual": true, + "start": "0x14a370", + "end": "0x14a3d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14a370" + }, + { + "manual": true, + "start": "0x14baa0", + "end": "0x14bad3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14baa0" + }, + { + "manual": true, + "start": "0x14bae0", + "end": "0x14bb3c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14bae0" + }, + { + "manual": true, + "start": "0x14bb40", + "end": "0x14bbc5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14bb40" + }, + { + "manual": true, + "start": "0x14bbd0", + "end": "0x14bc23", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14bbd0" + }, + { + "manual": true, + "start": "0x14bc30", + "end": "0x14be78", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14bc30" + }, + { + "manual": true, + "start": "0x14be90", + "end": "0x14c11f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14be90" + }, + { + "manual": true, + "start": "0x14c120", + "end": "0x14c166", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c120" + }, + { + "manual": true, + "start": "0x14c170", + "end": "0x14c247", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c170" + }, + { + "manual": true, + "start": "0x14c250", + "end": "0x14c2df", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c250" + }, + { + "manual": true, + "start": "0x14c2e0", + "end": "0x14c4cf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c2e0" + }, + { + "manual": true, + "start": "0x14c4d0", + "end": "0x14c6d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c4d0" + }, + { + "manual": true, + "start": "0x14c6e0", + "end": "0x14c73c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c6e0" + }, + { + "manual": true, + "start": "0x14c740", + "end": "0x14c79f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c740" + }, + { + "manual": true, + "start": "0x14c7a0", + "end": "0x14c807", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c7a0" + }, + { + "manual": true, + "start": "0x14c810", + "end": "0x14c86f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c810" + }, + { + "manual": true, + "start": "0x14c870", + "end": "0x14c891", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c870" + }, + { + "manual": true, + "start": "0x14c8a0", + "end": "0x14c9d2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c8a0" + }, + { + "manual": true, + "start": "0x14c9f0", + "end": "0x14ca21", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14c9f0" + }, + { + "manual": true, + "start": "0x14d770", + "end": "0x14d8e1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14d770" + }, + { + "manual": true, + "start": "0x14d8f0", + "end": "0x14d98f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14d8f0" + }, + { + "manual": true, + "start": "0x14d990", + "end": "0x14da0f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14d990" + }, + { + "manual": true, + "start": "0x14da10", + "end": "0x14dc90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14da10" + }, + { + "manual": true, + "start": "0x14dca0", + "end": "0x14dca7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14dca0" + }, + { + "manual": true, + "start": "0x14dcb0", + "end": "0x14dcb7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14dcb0" + }, + { + "manual": true, + "start": "0x14dcc0", + "end": "0x14ddf0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14dcc0" + }, + { + "manual": true, + "start": "0x14de00", + "end": "0x14e006", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14de00" + }, + { + "manual": true, + "start": "0x14e010", + "end": "0x14e15d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14e010" + }, + { + "manual": true, + "start": "0x14e160", + "end": "0x14e190", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14e160" + }, + { + "manual": true, + "start": "0x14e1a0", + "end": "0x14e1bf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14e1a0" + }, + { + "manual": true, + "start": "0x14e1c0", + "end": "0x14e1f0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14e1c0" + }, + { + "manual": true, + "start": "0x14e200", + "end": "0x14e21f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14e200" + }, + { + "manual": true, + "start": "0x14e6d0", + "end": "0x14e716", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14e6d0" + }, + { + "manual": true, + "start": "0x14ea60", + "end": "0x14ea88", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14ea60" + }, + { + "manual": true, + "start": "0x14ea90", + "end": "0x14eb0a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14ea90" + }, + { + "manual": true, + "start": "0x14eb10", + "end": "0x14eb3a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14eb10" + }, + { + "manual": true, + "start": "0x14eb40", + "end": "0x14ebb9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14eb40" + }, + { + "manual": true, + "start": "0x14ebc0", + "end": "0x14ebfa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14ebc0" + }, + { + "manual": true, + "start": "0x14ed80", + "end": "0x14ee57", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14ed80" + }, + { + "manual": true, + "start": "0x14ee60", + "end": "0x14ef86", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14ee60" + }, + { + "manual": true, + "start": "0x14ef90", + "end": "0x14efd4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14ef90" + }, + { + "manual": true, + "start": "0x14f430", + "end": "0x14f49c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14f430" + }, + { + "manual": true, + "start": "0x14f4a0", + "end": "0x14f560", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14f4a0" + }, + { + "manual": true, + "start": "0x14f570", + "end": "0x14f683", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14f570" + }, + { + "manual": true, + "start": "0x14f690", + "end": "0x14f81c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14f690" + }, + { + "manual": true, + "start": "0x14f820", + "end": "0x14f8a9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14f820" + }, + { + "manual": true, + "start": "0x14f8b0", + "end": "0x14f97a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14f8b0" + }, + { + "manual": true, + "start": "0x14f980", + "end": "0x14fb0a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x14f980" + }, + { + "manual": true, + "start": "0x151720", + "end": "0x151758", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151720" + }, + { + "manual": true, + "start": "0x151760", + "end": "0x151782", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151760" + }, + { + "manual": true, + "start": "0x151790", + "end": "0x1517cf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151790" + }, + { + "manual": true, + "start": "0x1517d0", + "end": "0x1518b2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1517d0" + }, + { + "manual": true, + "start": "0x1518c0", + "end": "0x1518ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1518c0" + }, + { + "manual": true, + "start": "0x151900", + "end": "0x1519e2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151900" + }, + { + "manual": true, + "start": "0x1519f0", + "end": "0x151a2f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1519f0" + }, + { + "manual": true, + "start": "0x151a30", + "end": "0x151b3c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151a30" + }, + { + "manual": true, + "start": "0x151b40", + "end": "0x151b8e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151b40" + }, + { + "manual": true, + "start": "0x151b90", + "end": "0x151bb2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151b90" + }, + { + "manual": true, + "start": "0x151bc0", + "end": "0x151bff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151bc0" + }, + { + "manual": true, + "start": "0x151c00", + "end": "0x151d0c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151c00" + }, + { + "manual": true, + "start": "0x151d10", + "end": "0x151d5e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151d10" + }, + { + "manual": true, + "start": "0x151d60", + "end": "0x151d98", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151d60" + }, + { + "manual": true, + "start": "0x151da0", + "end": "0x151dc2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151da0" + }, + { + "manual": true, + "start": "0x151dd0", + "end": "0x151fa0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151dd0" + }, + { + "manual": true, + "start": "0x151fb0", + "end": "0x151fcb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151fb0" + }, + { + "manual": true, + "start": "0x151fd0", + "end": "0x151feb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151fd0" + }, + { + "manual": true, + "start": "0x151ff0", + "end": "0x15200b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x151ff0" + }, + { + "manual": true, + "start": "0x1523a0", + "end": "0x152438", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1523a0" + }, + { + "manual": true, + "start": "0x152440", + "end": "0x15257c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x152440" + }, + { + "manual": true, + "start": "0x152580", + "end": "0x1526c7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x152580" + }, + { + "manual": true, + "start": "0x1529a0", + "end": "0x1529d6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1529a0" + }, + { + "manual": true, + "start": "0x152dd0", + "end": "0x152e0f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x152dd0" + }, + { + "manual": true, + "start": "0x152e10", + "end": "0x152e83", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x152e10" + }, + { + "manual": true, + "start": "0x152e90", + "end": "0x152f2e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x152e90" + }, + { + "manual": true, + "start": "0x152f30", + "end": "0x152ffd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x152f30" + }, + { + "manual": true, + "start": "0x153110", + "end": "0x153118", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x153110" + }, + { + "manual": true, + "start": "0x153120", + "end": "0x153162", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x153120" + }, + { + "manual": true, + "start": "0x153170", + "end": "0x1531c1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x153170" + }, + { + "manual": true, + "start": "0x153ba0", + "end": "0x153c24", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x153ba0" + }, + { + "manual": true, + "start": "0x153c30", + "end": "0x153d5f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x153c30" + }, + { + "manual": true, + "start": "0x153d60", + "end": "0x153e18", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x153d60" + }, + { + "manual": true, + "start": "0x153e20", + "end": "0x153f45", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x153e20" + }, + { + "manual": true, + "start": "0x153f50", + "end": "0x153f85", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x153f50" + }, + { + "manual": true, + "start": "0x153f90", + "end": "0x154156", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x153f90" + }, + { + "manual": true, + "start": "0x154160", + "end": "0x154167", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x154160" + }, + { + "manual": true, + "start": "0x154370", + "end": "0x154378", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x154370" + }, + { + "manual": true, + "start": "0x154440", + "end": "0x154448", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x154440" + }, + { + "manual": true, + "start": "0x1545e0", + "end": "0x1545fa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1545e0" + }, + { + "manual": true, + "start": "0x154600", + "end": "0x15460c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x154600" + }, + { + "manual": true, + "start": "0x154680", + "end": "0x154688", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x154680" + }, + { + "manual": true, + "start": "0x154740", + "end": "0x154748", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x154740" + }, + { + "manual": true, + "start": "0x1548e0", + "end": "0x1548e8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1548e0" + }, + { + "manual": true, + "start": "0x1548f0", + "end": "0x154957", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1548f0" + }, + { + "manual": true, + "start": "0x154a50", + "end": "0x154a58", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x154a50" + }, + { + "manual": true, + "start": "0x154bd0", + "end": "0x154bd8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x154bd0" + }, + { + "manual": true, + "start": "0x154be0", + "end": "0x154d1a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x154be0" + }, + { + "manual": true, + "start": "0x154d20", + "end": "0x154e5a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x154d20" + }, + { + "manual": true, + "start": "0x1551e0", + "end": "0x1553a4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1551e0" + }, + { + "manual": true, + "start": "0x1553b0", + "end": "0x1553e3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1553b0" + }, + { + "manual": true, + "start": "0x155590", + "end": "0x1555cb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x155590" + }, + { + "manual": true, + "start": "0x1555d0", + "end": "0x155652", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1555d0" + }, + { + "manual": true, + "start": "0x155660", + "end": "0x1556ca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x155660" + }, + { + "manual": true, + "start": "0x1556d0", + "end": "0x155751", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1556d0" + }, + { + "manual": true, + "start": "0x155760", + "end": "0x155838", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x155760" + }, + { + "manual": true, + "start": "0x155840", + "end": "0x155918", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x155840" + }, + { + "manual": true, + "start": "0x155fd0", + "end": "0x15627b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x155fd0" + }, + { + "manual": true, + "start": "0x156280", + "end": "0x1564c9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x156280" + }, + { + "manual": true, + "start": "0x1564d0", + "end": "0x1567d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1564d0" + }, + { + "manual": true, + "start": "0x1567e0", + "end": "0x1569cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1567e0" + }, + { + "manual": true, + "start": "0x1569d0", + "end": "0x156a48", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1569d0" + }, + { + "manual": true, + "start": "0x156a50", + "end": "0x156ac8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x156a50" + }, + { + "manual": true, + "start": "0x156ad0", + "end": "0x156b52", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x156ad0" + }, + { + "manual": true, + "start": "0x156b60", + "end": "0x156bbe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x156b60" + }, + { + "manual": true, + "start": "0x156bc0", + "end": "0x156d6f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x156bc0" + }, + { + "manual": true, + "start": "0x157520", + "end": "0x157656", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x157520" + }, + { + "manual": true, + "start": "0x157660", + "end": "0x1576a2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x157660" + }, + { + "manual": true, + "start": "0x1576b0", + "end": "0x157880", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1576b0" + }, + { + "manual": true, + "start": "0x157890", + "end": "0x157924", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x157890" + }, + { + "manual": true, + "start": "0x157930", + "end": "0x157a98", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x157930" + }, + { + "manual": true, + "start": "0x157aa0", + "end": "0x157bda", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x157aa0" + }, + { + "manual": true, + "start": "0x157be0", + "end": "0x157d55", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x157be0" + }, + { + "manual": true, + "start": "0x157d60", + "end": "0x157e30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x157d60" + }, + { + "manual": true, + "start": "0x157e40", + "end": "0x157f60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x157e40" + }, + { + "manual": true, + "start": "0x157f70", + "end": "0x15805b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x157f70" + }, + { + "manual": true, + "start": "0x158060", + "end": "0x1580da", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x158060" + }, + { + "manual": true, + "start": "0x1580e0", + "end": "0x15815a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1580e0" + }, + { + "manual": true, + "start": "0x1586d0", + "end": "0x15870e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1586d0" + }, + { + "manual": true, + "start": "0x159400", + "end": "0x1594d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x159400" + }, + { + "manual": true, + "start": "0x1594e0", + "end": "0x1594f5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1594e0" + }, + { + "manual": true, + "start": "0x159500", + "end": "0x1595c8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x159500" + }, + { + "manual": true, + "start": "0x1595d0", + "end": "0x1595d7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1595d0" + }, + { + "manual": true, + "start": "0x159f50", + "end": "0x159fe3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x159f50" + }, + { + "manual": true, + "start": "0x159ff0", + "end": "0x15a03a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x159ff0" + }, + { + "manual": true, + "start": "0x15a040", + "end": "0x15a0be", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15a040" + }, + { + "manual": true, + "start": "0x15a0c0", + "end": "0x15a12f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15a0c0" + }, + { + "manual": true, + "start": "0x15d280", + "end": "0x15d2a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15d280" + }, + { + "manual": true, + "start": "0x15d2b0", + "end": "0x15d43c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15d2b0" + }, + { + "manual": true, + "start": "0x15dc00", + "end": "0x15dc22", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15dc00" + }, + { + "manual": true, + "start": "0x15dc30", + "end": "0x15dc56", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15dc30" + }, + { + "manual": true, + "start": "0x15dc60", + "end": "0x15dc83", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15dc60" + }, + { + "manual": true, + "start": "0x15e8d0", + "end": "0x15e9af", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15e8d0" + }, + { + "manual": true, + "start": "0x15e9b0", + "end": "0x15ea66", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15e9b0" + }, + { + "manual": true, + "start": "0x15ea70", + "end": "0x15eacd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15ea70" + }, + { + "manual": true, + "start": "0x15fad0", + "end": "0x15fb80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15fad0" + }, + { + "manual": true, + "start": "0x15fb90", + "end": "0x15fc1e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15fb90" + }, + { + "manual": true, + "start": "0x15fc20", + "end": "0x15fcb8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15fc20" + }, + { + "manual": true, + "start": "0x15fcc0", + "end": "0x15fd12", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x15fcc0" + }, + { + "manual": true, + "start": "0x160560", + "end": "0x1605eb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x160560" + }, + { + "manual": true, + "start": "0x162550", + "end": "0x1625ef", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x162550" + }, + { + "manual": true, + "start": "0x1625f0", + "end": "0x16269a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1625f0" + }, + { + "manual": true, + "start": "0x163520", + "end": "0x1635de", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x163520" + }, + { + "manual": true, + "start": "0x1635e0", + "end": "0x1636ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1635e0" + }, + { + "manual": true, + "start": "0x163700", + "end": "0x16381f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x163700" + }, + { + "manual": true, + "start": "0x163820", + "end": "0x16393f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x163820" + }, + { + "manual": true, + "start": "0x163940", + "end": "0x163a86", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x163940" + }, + { + "manual": true, + "start": "0x163a90", + "end": "0x163b7b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x163a90" + }, + { + "manual": true, + "start": "0x163b80", + "end": "0x163cab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x163b80" + }, + { + "manual": true, + "start": "0x163cb0", + "end": "0x163ddb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x163cb0" + }, + { + "manual": true, + "start": "0x163de0", + "end": "0x163f0b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x163de0" + }, + { + "manual": true, + "start": "0x163f10", + "end": "0x164066", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x163f10" + }, + { + "manual": true, + "start": "0x164070", + "end": "0x1640b1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x164070" + }, + { + "manual": true, + "start": "0x1640c0", + "end": "0x164122", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1640c0" + }, + { + "manual": true, + "start": "0x164130", + "end": "0x1641bb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x164130" + }, + { + "manual": true, + "start": "0x164ae0", + "end": "0x164b89", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x164ae0" + }, + { + "manual": true, + "start": "0x164b90", + "end": "0x164bac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x164b90" + }, + { + "manual": true, + "start": "0x164bb0", + "end": "0x164c07", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x164bb0" + }, + { + "manual": true, + "start": "0x164c10", + "end": "0x164c60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x164c10" + }, + { + "manual": true, + "start": "0x164c70", + "end": "0x164c8b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x164c70" + }, + { + "manual": true, + "start": "0x164e90", + "end": "0x164f53", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x164e90" + }, + { + "manual": true, + "start": "0x164f60", + "end": "0x165023", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x164f60" + }, + { + "manual": true, + "start": "0x166400", + "end": "0x166486", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x166400" + }, + { + "manual": true, + "start": "0x166490", + "end": "0x1664d1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x166490" + }, + { + "manual": true, + "start": "0x1664e0", + "end": "0x166521", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1664e0" + }, + { + "manual": true, + "start": "0x1666a0", + "end": "0x1666fd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1666a0" + }, + { + "manual": true, + "start": "0x166e80", + "end": "0x166eac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x166e80" + }, + { + "manual": true, + "start": "0x166eb0", + "end": "0x166f31", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x166eb0" + }, + { + "manual": true, + "start": "0x166f40", + "end": "0x166f6b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x166f40" + }, + { + "manual": true, + "start": "0x166f70", + "end": "0x166f9e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x166f70" + }, + { + "manual": true, + "start": "0x166fa0", + "end": "0x1670cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x166fa0" + }, + { + "manual": true, + "start": "0x1670d0", + "end": "0x1671f4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1670d0" + }, + { + "manual": true, + "start": "0x167200", + "end": "0x167312", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x167200" + }, + { + "manual": true, + "start": "0x167320", + "end": "0x16744b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x167320" + }, + { + "manual": true, + "start": "0x167450", + "end": "0x1674ef", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x167450" + }, + { + "manual": true, + "start": "0x1674f0", + "end": "0x16751e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1674f0" + }, + { + "manual": true, + "start": "0x168160", + "end": "0x1682b5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x168160" + }, + { + "manual": true, + "start": "0x168730", + "end": "0x168763", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x168730" + }, + { + "manual": true, + "start": "0x168770", + "end": "0x168807", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x168770" + }, + { + "manual": true, + "start": "0x168810", + "end": "0x1688b1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x168810" + }, + { + "manual": true, + "start": "0x1690a0", + "end": "0x16917a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1690a0" + }, + { + "manual": true, + "start": "0x169180", + "end": "0x169228", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x169180" + }, + { + "manual": true, + "start": "0x169230", + "end": "0x16929f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x169230" + }, + { + "manual": true, + "start": "0x1692a0", + "end": "0x16933e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1692a0" + }, + { + "manual": true, + "start": "0x169340", + "end": "0x1693de", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x169340" + }, + { + "manual": true, + "start": "0x1693e0", + "end": "0x16951d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1693e0" + }, + { + "manual": true, + "start": "0x169520", + "end": "0x1696dc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x169520" + }, + { + "manual": true, + "start": "0x1696e0", + "end": "0x1697ac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1696e0" + }, + { + "manual": true, + "start": "0x1697b0", + "end": "0x16981b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1697b0" + }, + { + "manual": true, + "start": "0x169820", + "end": "0x169900", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x169820" + }, + { + "manual": true, + "start": "0x169910", + "end": "0x169b4b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x169910" + }, + { + "manual": true, + "start": "0x169b50", + "end": "0x169ccd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x169b50" + }, + { + "manual": true, + "start": "0x169cd0", + "end": "0x169e45", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x169cd0" + }, + { + "manual": true, + "start": "0x169e50", + "end": "0x169f98", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x169e50" + }, + { + "manual": true, + "start": "0x169fa0", + "end": "0x16a0eb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x169fa0" + }, + { + "manual": true, + "start": "0x16a0f0", + "end": "0x16a29d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16a0f0" + }, + { + "manual": true, + "start": "0x16a2a0", + "end": "0x16a375", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16a2a0" + }, + { + "manual": true, + "start": "0x16a380", + "end": "0x16a403", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16a380" + }, + { + "manual": true, + "start": "0x16a410", + "end": "0x16a638", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16a410" + }, + { + "manual": true, + "start": "0x16a640", + "end": "0x16a85d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16a640" + }, + { + "manual": true, + "start": "0x16a860", + "end": "0x16aa03", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16a860" + }, + { + "manual": true, + "start": "0x16aa10", + "end": "0x16aaeb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16aa10" + }, + { + "manual": true, + "start": "0x16aaf0", + "end": "0x16ab60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16aaf0" + }, + { + "manual": true, + "start": "0x16ab70", + "end": "0x16ac04", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16ab70" + }, + { + "manual": true, + "start": "0x16ac10", + "end": "0x16ac87", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16ac10" + }, + { + "manual": true, + "start": "0x16ac90", + "end": "0x16ad95", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16ac90" + }, + { + "manual": true, + "start": "0x16ada0", + "end": "0x16ae41", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16ada0" + }, + { + "manual": true, + "start": "0x16ae50", + "end": "0x16aef1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16ae50" + }, + { + "manual": true, + "start": "0x16af00", + "end": "0x16af50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16af00" + }, + { + "manual": true, + "start": "0x16af60", + "end": "0x16afb0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16af60" + }, + { + "manual": true, + "start": "0x16afc0", + "end": "0x16b0aa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16afc0" + }, + { + "manual": true, + "start": "0x16b0b0", + "end": "0x16b1db", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16b0b0" + }, + { + "manual": true, + "start": "0x16d570", + "end": "0x16d5b3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16d570" + }, + { + "manual": true, + "start": "0x16d5c0", + "end": "0x16d5cc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16d5c0" + }, + { + "manual": true, + "start": "0x16d5d0", + "end": "0x16d603", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16d5d0" + }, + { + "manual": true, + "start": "0x16d610", + "end": "0x16d688", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16d610" + }, + { + "manual": true, + "start": "0x16d690", + "end": "0x16d6c3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16d690" + }, + { + "manual": true, + "start": "0x16d6d0", + "end": "0x16d727", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16d6d0" + }, + { + "manual": true, + "start": "0x16df80", + "end": "0x16e0db", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16df80" + }, + { + "manual": true, + "start": "0x16e0e0", + "end": "0x16e166", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16e0e0" + }, + { + "manual": true, + "start": "0x16e170", + "end": "0x16e1d9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16e170" + }, + { + "manual": true, + "start": "0x16e1e0", + "end": "0x16e201", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16e1e0" + }, + { + "manual": true, + "start": "0x16e210", + "end": "0x16e305", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16e210" + }, + { + "manual": true, + "start": "0x16e310", + "end": "0x16e39c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16e310" + }, + { + "manual": true, + "start": "0x16e3a0", + "end": "0x16e43f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16e3a0" + }, + { + "manual": true, + "start": "0x16e440", + "end": "0x16e517", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16e440" + }, + { + "manual": true, + "start": "0x16e520", + "end": "0x16e9ae", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16e520" + }, + { + "manual": true, + "start": "0x16e9b0", + "end": "0x16ec9c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16e9b0" + }, + { + "manual": true, + "start": "0x16eca0", + "end": "0x16ede1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16eca0" + }, + { + "manual": true, + "start": "0x16edf0", + "end": "0x16eee1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16edf0" + }, + { + "manual": true, + "start": "0x16eef0", + "end": "0x16eff9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16eef0" + }, + { + "manual": true, + "start": "0x16f000", + "end": "0x16f13e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16f000" + }, + { + "manual": true, + "start": "0x16f140", + "end": "0x16f273", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16f140" + }, + { + "manual": true, + "start": "0x16f280", + "end": "0x16f341", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16f280" + }, + { + "manual": true, + "start": "0x16f350", + "end": "0x16f395", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16f350" + }, + { + "manual": true, + "start": "0x16f3a0", + "end": "0x16f403", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16f3a0" + }, + { + "manual": true, + "start": "0x16f410", + "end": "0x16f4d7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x16f410" + }, + { + "manual": true, + "start": "0x170550", + "end": "0x1706b1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x170550" + }, + { + "manual": true, + "start": "0x1706c0", + "end": "0x17074b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1706c0" + }, + { + "manual": true, + "start": "0x170750", + "end": "0x170900", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x170750" + }, + { + "manual": true, + "start": "0x170910", + "end": "0x170bc6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x170910" + }, + { + "manual": true, + "start": "0x170bd0", + "end": "0x170f09", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x170bd0" + }, + { + "manual": true, + "start": "0x170f10", + "end": "0x1711bb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x170f10" + }, + { + "manual": true, + "start": "0x1711c0", + "end": "0x171346", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1711c0" + }, + { + "manual": true, + "start": "0x171350", + "end": "0x1713b3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x171350" + }, + { + "manual": true, + "start": "0x1713c0", + "end": "0x17144e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1713c0" + }, + { + "manual": true, + "start": "0x171450", + "end": "0x1714c9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x171450" + }, + { + "manual": true, + "start": "0x171a40", + "end": "0x171aa0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x171a40" + }, + { + "manual": true, + "start": "0x171ab0", + "end": "0x171af1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x171ab0" + }, + { + "manual": true, + "start": "0x171b00", + "end": "0x171bde", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x171b00" + }, + { + "manual": true, + "start": "0x172ab0", + "end": "0x172b39", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x172ab0" + }, + { + "manual": true, + "start": "0x172b40", + "end": "0x172b73", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x172b40" + }, + { + "manual": true, + "start": "0x172b80", + "end": "0x172bb3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x172b80" + }, + { + "manual": true, + "start": "0x172bc0", + "end": "0x172c4e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x172bc0" + }, + { + "manual": true, + "start": "0x172c50", + "end": "0x172c7c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x172c50" + }, + { + "manual": true, + "start": "0x172c80", + "end": "0x172d06", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x172c80" + }, + { + "manual": true, + "start": "0x173690", + "end": "0x173a5e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x173690" + }, + { + "manual": true, + "start": "0x173a60", + "end": "0x173aa5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x173a60" + }, + { + "manual": true, + "start": "0x173ab0", + "end": "0x173af5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x173ab0" + }, + { + "manual": true, + "start": "0x173b00", + "end": "0x173b49", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x173b00" + }, + { + "manual": true, + "start": "0x173b50", + "end": "0x173c8e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x173b50" + }, + { + "manual": true, + "start": "0x173c90", + "end": "0x173e08", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x173c90" + }, + { + "manual": true, + "start": "0x173e10", + "end": "0x173ee2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x173e10" + }, + { + "manual": true, + "start": "0x173ef0", + "end": "0x173fcf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x173ef0" + }, + { + "manual": true, + "start": "0x173fd0", + "end": "0x1740ae", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x173fd0" + }, + { + "manual": true, + "start": "0x1740b0", + "end": "0x1740b7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1740b0" + }, + { + "manual": true, + "start": "0x1740c0", + "end": "0x17417d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1740c0" + }, + { + "manual": true, + "start": "0x174180", + "end": "0x174303", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x174180" + }, + { + "manual": true, + "start": "0x174a00", + "end": "0x174aa7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x174a00" + }, + { + "manual": true, + "start": "0x174ab0", + "end": "0x174cf2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x174ab0" + }, + { + "manual": true, + "start": "0x1761f0", + "end": "0x176237", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1761f0" + }, + { + "manual": true, + "start": "0x17b3a0", + "end": "0x17b4f3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17b3a0" + }, + { + "manual": true, + "start": "0x17b500", + "end": "0x17b572", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17b500" + }, + { + "manual": true, + "start": "0x17b940", + "end": "0x17b9b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17b940" + }, + { + "manual": true, + "start": "0x17b9c0", + "end": "0x17b9df", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17b9c0" + }, + { + "manual": true, + "start": "0x17bab0", + "end": "0x17bb2f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17bab0" + }, + { + "manual": true, + "start": "0x17bb30", + "end": "0x17bbb2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17bb30" + }, + { + "manual": true, + "start": "0x17bbc0", + "end": "0x17bc89", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17bbc0" + }, + { + "manual": true, + "start": "0x17c420", + "end": "0x17c449", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17c420" + }, + { + "manual": true, + "start": "0x17f170", + "end": "0x17f1ad", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17f170" + }, + { + "manual": true, + "start": "0x17f1b0", + "end": "0x17f379", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17f1b0" + }, + { + "manual": true, + "start": "0x17f380", + "end": "0x17f4ef", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17f380" + }, + { + "manual": true, + "start": "0x17f4f0", + "end": "0x17f5cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x17f4f0" + }, + { + "manual": true, + "start": "0x1841d0", + "end": "0x1841f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1841d0" + }, + { + "manual": true, + "start": "0x184200", + "end": "0x1842c3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x184200" + }, + { + "manual": true, + "start": "0x1842d0", + "end": "0x184388", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1842d0" + }, + { + "manual": true, + "start": "0x184390", + "end": "0x1843ad", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x184390" + }, + { + "manual": true, + "start": "0x1843b0", + "end": "0x1843ea", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1843b0" + }, + { + "manual": true, + "start": "0x1843f0", + "end": "0x18444e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1843f0" + }, + { + "manual": true, + "start": "0x1846d0", + "end": "0x1846d7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1846d0" + }, + { + "manual": true, + "start": "0x1846e0", + "end": "0x18481f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1846e0" + }, + { + "manual": true, + "start": "0x184820", + "end": "0x1849e4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x184820" + }, + { + "manual": true, + "start": "0x1849f0", + "end": "0x184a58", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1849f0" + }, + { + "manual": true, + "start": "0x184a60", + "end": "0x184abd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x184a60" + }, + { + "manual": true, + "start": "0x184e10", + "end": "0x18506f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x184e10" + }, + { + "manual": true, + "start": "0x185070", + "end": "0x1852b3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x185070" + }, + { + "manual": true, + "start": "0x1852c0", + "end": "0x185393", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1852c0" + }, + { + "manual": true, + "start": "0x1853a0", + "end": "0x1854b1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1853a0" + }, + { + "manual": true, + "start": "0x1854c0", + "end": "0x1855b6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1854c0" + }, + { + "manual": true, + "start": "0x1855c0", + "end": "0x1856c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1855c0" + }, + { + "manual": true, + "start": "0x1856d0", + "end": "0x185885", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1856d0" + }, + { + "manual": true, + "start": "0x185890", + "end": "0x18598f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x185890" + }, + { + "manual": true, + "start": "0x185990", + "end": "0x185c8d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x185990" + }, + { + "manual": true, + "start": "0x185c90", + "end": "0x185f56", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x185c90" + }, + { + "manual": true, + "start": "0x1865f0", + "end": "0x1866da", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1865f0" + }, + { + "manual": true, + "start": "0x1866e0", + "end": "0x186721", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1866e0" + }, + { + "manual": true, + "start": "0x186730", + "end": "0x186772", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x186730" + }, + { + "manual": true, + "start": "0x186780", + "end": "0x1867c4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x186780" + }, + { + "manual": true, + "start": "0x1867d0", + "end": "0x186803", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1867d0" + }, + { + "manual": true, + "start": "0x186810", + "end": "0x18686b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x186810" + }, + { + "manual": true, + "start": "0x186870", + "end": "0x1868d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x186870" + }, + { + "manual": true, + "start": "0x186c80", + "end": "0x186cf1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x186c80" + }, + { + "manual": true, + "start": "0x186d00", + "end": "0x186d86", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x186d00" + }, + { + "manual": true, + "start": "0x186d90", + "end": "0x186db4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x186d90" + }, + { + "manual": true, + "start": "0x187940", + "end": "0x1879cf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x187940" + }, + { + "manual": true, + "start": "0x1879d0", + "end": "0x187c5f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1879d0" + }, + { + "manual": true, + "start": "0x187c60", + "end": "0x187eac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x187c60" + }, + { + "manual": true, + "start": "0x187eb0", + "end": "0x1880ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x187eb0" + }, + { + "manual": true, + "start": "0x188540", + "end": "0x188569", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x188540" + }, + { + "manual": true, + "start": "0x188570", + "end": "0x1886c5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x188570" + }, + { + "manual": true, + "start": "0x1886d0", + "end": "0x18874c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1886d0" + }, + { + "manual": true, + "start": "0x188750", + "end": "0x188803", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x188750" + }, + { + "manual": true, + "start": "0x188810", + "end": "0x1888af", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x188810" + }, + { + "manual": true, + "start": "0x1888b0", + "end": "0x1888d5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1888b0" + }, + { + "manual": true, + "start": "0x1888e0", + "end": "0x188919", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1888e0" + }, + { + "manual": true, + "start": "0x188920", + "end": "0x1889cc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x188920" + }, + { + "manual": true, + "start": "0x1889d0", + "end": "0x188bff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1889d0" + }, + { + "manual": true, + "start": "0x188c00", + "end": "0x188cbe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x188c00" + }, + { + "manual": true, + "start": "0x188cc0", + "end": "0x188d58", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x188cc0" + }, + { + "manual": true, + "start": "0x188d60", + "end": "0x188dc6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x188d60" + }, + { + "manual": true, + "start": "0x188dd0", + "end": "0x188e51", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x188dd0" + }, + { + "manual": true, + "start": "0x188f00", + "end": "0x188f88", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x188f00" + }, + { + "manual": true, + "start": "0x189520", + "end": "0x189583", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x189520" + }, + { + "manual": true, + "start": "0x189590", + "end": "0x1895f3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x189590" + }, + { + "manual": true, + "start": "0x189600", + "end": "0x1896ab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x189600" + }, + { + "manual": true, + "start": "0x189b50", + "end": "0x189b86", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x189b50" + }, + { + "manual": true, + "start": "0x189b90", + "end": "0x189baa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x189b90" + }, + { + "manual": true, + "start": "0x189c40", + "end": "0x189c8d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x189c40" + }, + { + "manual": true, + "start": "0x189c90", + "end": "0x189d66", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x189c90" + }, + { + "manual": true, + "start": "0x189d70", + "end": "0x189dbb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x189d70" + }, + { + "manual": true, + "start": "0x18a110", + "end": "0x18a147", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18a110" + }, + { + "manual": true, + "start": "0x18a150", + "end": "0x18a191", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18a150" + }, + { + "manual": true, + "start": "0x18a400", + "end": "0x18a420", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18a400" + }, + { + "manual": true, + "start": "0x18a480", + "end": "0x18a514", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18a480" + }, + { + "manual": true, + "start": "0x18a900", + "end": "0x18a91a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18a900" + }, + { + "manual": true, + "start": "0x18a920", + "end": "0x18a953", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18a920" + }, + { + "manual": true, + "start": "0x18a960", + "end": "0x18a993", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18a960" + }, + { + "manual": true, + "start": "0x18a9a0", + "end": "0x18a9d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18a9a0" + }, + { + "manual": true, + "start": "0x18a9e0", + "end": "0x18aa34", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18a9e0" + }, + { + "manual": true, + "start": "0x18aa40", + "end": "0x18aa5f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18aa40" + }, + { + "manual": true, + "start": "0x18ab50", + "end": "0x18ab9b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18ab50" + }, + { + "manual": true, + "start": "0x18b3a0", + "end": "0x18b486", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18b3a0" + }, + { + "manual": true, + "start": "0x18b490", + "end": "0x18b586", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18b490" + }, + { + "manual": true, + "start": "0x18b590", + "end": "0x18b5f6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18b590" + }, + { + "manual": true, + "start": "0x18b600", + "end": "0x18b663", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18b600" + }, + { + "manual": true, + "start": "0x18b670", + "end": "0x18b6d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18b670" + }, + { + "manual": true, + "start": "0x18bd10", + "end": "0x18bd2a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18bd10" + }, + { + "manual": true, + "start": "0x18bd30", + "end": "0x18bd4a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18bd30" + }, + { + "manual": true, + "start": "0x18bd50", + "end": "0x18bd6a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18bd50" + }, + { + "manual": true, + "start": "0x18bd70", + "end": "0x18bd8a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18bd70" + }, + { + "manual": true, + "start": "0x18bd90", + "end": "0x18bdaa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18bd90" + }, + { + "manual": true, + "start": "0x18bdb0", + "end": "0x18bdca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18bdb0" + }, + { + "manual": true, + "start": "0x18bdd0", + "end": "0x18bdf1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18bdd0" + }, + { + "manual": true, + "start": "0x18be00", + "end": "0x18be21", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18be00" + }, + { + "manual": true, + "start": "0x18be30", + "end": "0x18bec3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18be30" + }, + { + "manual": true, + "start": "0x18bed0", + "end": "0x18bf62", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18bed0" + }, + { + "manual": true, + "start": "0x18bf70", + "end": "0x18c002", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18bf70" + }, + { + "manual": true, + "start": "0x18c010", + "end": "0x18c0a2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c010" + }, + { + "manual": true, + "start": "0x18c0b0", + "end": "0x18c0d1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c0b0" + }, + { + "manual": true, + "start": "0x18c0e0", + "end": "0x18c101", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c0e0" + }, + { + "manual": true, + "start": "0x18c110", + "end": "0x18c134", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c110" + }, + { + "manual": true, + "start": "0x18c140", + "end": "0x18c15b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c140" + }, + { + "manual": true, + "start": "0x18c160", + "end": "0x18c181", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c160" + }, + { + "manual": true, + "start": "0x18c190", + "end": "0x18c1e0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c190" + }, + { + "manual": true, + "start": "0x18c1f0", + "end": "0x18c240", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c1f0" + }, + { + "manual": true, + "start": "0x18c250", + "end": "0x18c2a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c250" + }, + { + "manual": true, + "start": "0x18c2b0", + "end": "0x18c39b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c2b0" + }, + { + "manual": true, + "start": "0x18c3a0", + "end": "0x18c3af", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c3a0" + }, + { + "manual": true, + "start": "0x18c3b0", + "end": "0x18c3d1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c3b0" + }, + { + "manual": true, + "start": "0x18c3e0", + "end": "0x18c425", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c3e0" + }, + { + "manual": true, + "start": "0x18c430", + "end": "0x18c46c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c430" + }, + { + "manual": true, + "start": "0x18c470", + "end": "0x18c491", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c470" + }, + { + "manual": true, + "start": "0x18c4a0", + "end": "0x18c4c1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c4a0" + }, + { + "manual": true, + "start": "0x18c4d0", + "end": "0x18c50c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c4d0" + }, + { + "manual": true, + "start": "0x18c510", + "end": "0x18c54c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c510" + }, + { + "manual": true, + "start": "0x18c910", + "end": "0x18c985", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c910" + }, + { + "manual": true, + "start": "0x18c990", + "end": "0x18ca66", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18c990" + }, + { + "manual": true, + "start": "0x18d350", + "end": "0x18d364", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d350" + }, + { + "manual": true, + "start": "0x18d370", + "end": "0x18d419", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d370" + }, + { + "manual": true, + "start": "0x18d420", + "end": "0x18d4c9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d420" + }, + { + "manual": true, + "start": "0x18d4d0", + "end": "0x18d533", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d4d0" + }, + { + "manual": true, + "start": "0x18d540", + "end": "0x18d5a3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d540" + }, + { + "manual": true, + "start": "0x18d5b0", + "end": "0x18d5b7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d5b0" + }, + { + "manual": true, + "start": "0x18d5c0", + "end": "0x18d5c7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d5c0" + }, + { + "manual": true, + "start": "0x18d5d0", + "end": "0x18d609", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d5d0" + }, + { + "manual": true, + "start": "0x18d610", + "end": "0x18d617", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d610" + }, + { + "manual": true, + "start": "0x18d620", + "end": "0x18d66f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d620" + }, + { + "manual": true, + "start": "0x18d670", + "end": "0x18d809", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d670" + }, + { + "manual": true, + "start": "0x18d810", + "end": "0x18d970", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d810" + }, + { + "manual": true, + "start": "0x18d980", + "end": "0x18daab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18d980" + }, + { + "manual": true, + "start": "0x18dab0", + "end": "0x18db29", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18dab0" + }, + { + "manual": true, + "start": "0x18db30", + "end": "0x18dbba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18db30" + }, + { + "manual": true, + "start": "0x18dbc0", + "end": "0x18dd29", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x18dbc0" + }, + { + "manual": true, + "start": "0x190710", + "end": "0x190743", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x190710" + }, + { + "manual": true, + "start": "0x190d10", + "end": "0x190d51", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x190d10" + }, + { + "manual": true, + "start": "0x190d60", + "end": "0x190dfd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x190d60" + }, + { + "manual": true, + "start": "0x190e00", + "end": "0x190eb3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x190e00" + }, + { + "manual": true, + "start": "0x190ec0", + "end": "0x190ec7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x190ec0" + }, + { + "manual": true, + "start": "0x190ed0", + "end": "0x190f3d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x190ed0" + }, + { + "manual": true, + "start": "0x190f40", + "end": "0x190fde", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x190f40" + }, + { + "manual": true, + "start": "0x190fe0", + "end": "0x19107f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x190fe0" + }, + { + "manual": true, + "start": "0x191080", + "end": "0x19111f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x191080" + }, + { + "manual": true, + "start": "0x191120", + "end": "0x1911bf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x191120" + }, + { + "manual": true, + "start": "0x1911c0", + "end": "0x191248", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1911c0" + }, + { + "manual": true, + "start": "0x1915e0", + "end": "0x191676", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1915e0" + }, + { + "manual": true, + "start": "0x191680", + "end": "0x1916e3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x191680" + }, + { + "manual": true, + "start": "0x191e60", + "end": "0x191ec3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x191e60" + }, + { + "manual": true, + "start": "0x193d10", + "end": "0x193d43", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x193d10" + }, + { + "manual": true, + "start": "0x193d50", + "end": "0x193d89", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x193d50" + }, + { + "manual": true, + "start": "0x193d90", + "end": "0x193daa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x193d90" + }, + { + "manual": true, + "start": "0x193e10", + "end": "0x193ea3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x193e10" + }, + { + "manual": true, + "start": "0x193eb0", + "end": "0x193f66", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x193eb0" + }, + { + "manual": true, + "start": "0x194370", + "end": "0x194390", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x194370" + }, + { + "manual": true, + "start": "0x1943a0", + "end": "0x194423", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1943a0" + }, + { + "manual": true, + "start": "0x194430", + "end": "0x19447a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x194430" + }, + { + "manual": true, + "start": "0x194480", + "end": "0x19452b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x194480" + }, + { + "manual": true, + "start": "0x194530", + "end": "0x1945ad", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x194530" + }, + { + "manual": true, + "start": "0x1945b0", + "end": "0x19464e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1945b0" + }, + { + "manual": true, + "start": "0x194650", + "end": "0x1946ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x194650" + }, + { + "manual": true, + "start": "0x195040", + "end": "0x195083", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x195040" + }, + { + "manual": true, + "start": "0x195090", + "end": "0x195147", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x195090" + }, + { + "manual": true, + "start": "0x195150", + "end": "0x1952e6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x195150" + }, + { + "manual": true, + "start": "0x1952f0", + "end": "0x19546f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1952f0" + }, + { + "manual": true, + "start": "0x195470", + "end": "0x1955d8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x195470" + }, + { + "manual": true, + "start": "0x1955e0", + "end": "0x1957cb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1955e0" + }, + { + "manual": true, + "start": "0x1957d0", + "end": "0x1959c4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1957d0" + }, + { + "manual": true, + "start": "0x1959d0", + "end": "0x195b58", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1959d0" + }, + { + "manual": true, + "start": "0x195b60", + "end": "0x195c3a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x195b60" + }, + { + "manual": true, + "start": "0x195c40", + "end": "0x195e5f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x195c40" + }, + { + "manual": true, + "start": "0x195e60", + "end": "0x195eb5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x195e60" + }, + { + "manual": true, + "start": "0x195ec0", + "end": "0x19600d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x195ec0" + }, + { + "manual": true, + "start": "0x196010", + "end": "0x196142", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x196010" + }, + { + "manual": true, + "start": "0x196150", + "end": "0x1961e3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x196150" + }, + { + "manual": true, + "start": "0x1961f0", + "end": "0x196281", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1961f0" + }, + { + "manual": true, + "start": "0x196290", + "end": "0x1963be", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x196290" + }, + { + "manual": true, + "start": "0x198dd0", + "end": "0x198e03", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x198dd0" + }, + { + "manual": true, + "start": "0x198f30", + "end": "0x198f37", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x198f30" + }, + { + "manual": true, + "start": "0x199f00", + "end": "0x199f3e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x199f00" + }, + { + "manual": true, + "start": "0x199f40", + "end": "0x199f73", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x199f40" + }, + { + "manual": true, + "start": "0x19a130", + "end": "0x19a1b1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19a130" + }, + { + "manual": true, + "start": "0x19a1c0", + "end": "0x19a1e8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19a1c0" + }, + { + "manual": true, + "start": "0x19a1f0", + "end": "0x19a274", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19a1f0" + }, + { + "manual": true, + "start": "0x19ab90", + "end": "0x19ad3a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19ab90" + }, + { + "manual": true, + "start": "0x19ad40", + "end": "0x19ae6a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19ad40" + }, + { + "manual": true, + "start": "0x19ae70", + "end": "0x19af01", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19ae70" + }, + { + "manual": true, + "start": "0x19af10", + "end": "0x19b036", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19af10" + }, + { + "manual": true, + "start": "0x19b040", + "end": "0x19b0ab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19b040" + }, + { + "manual": true, + "start": "0x19b0b0", + "end": "0x19b0f3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19b0b0" + }, + { + "manual": true, + "start": "0x19bc90", + "end": "0x19bcef", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19bc90" + }, + { + "manual": true, + "start": "0x19bcf0", + "end": "0x19c195", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19bcf0" + }, + { + "manual": true, + "start": "0x19c1a0", + "end": "0x19c2ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19c1a0" + }, + { + "manual": true, + "start": "0x19c2d0", + "end": "0x19c413", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19c2d0" + }, + { + "manual": true, + "start": "0x19c420", + "end": "0x19c478", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19c420" + }, + { + "manual": true, + "start": "0x19c480", + "end": "0x19c587", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19c480" + }, + { + "manual": true, + "start": "0x19c590", + "end": "0x19c736", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19c590" + }, + { + "manual": true, + "start": "0x19c740", + "end": "0x19c827", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19c740" + }, + { + "manual": true, + "start": "0x19c830", + "end": "0x19c919", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19c830" + }, + { + "manual": true, + "start": "0x19c920", + "end": "0x19c9e3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19c920" + }, + { + "manual": true, + "start": "0x19c9f0", + "end": "0x19caa0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19c9f0" + }, + { + "manual": true, + "start": "0x19cab0", + "end": "0x19cb67", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19cab0" + }, + { + "manual": true, + "start": "0x19d270", + "end": "0x19d404", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19d270" + }, + { + "manual": true, + "start": "0x19d410", + "end": "0x19d4ef", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19d410" + }, + { + "manual": true, + "start": "0x19d4f0", + "end": "0x19d532", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19d4f0" + }, + { + "manual": true, + "start": "0x19d540", + "end": "0x19d5d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19d540" + }, + { + "manual": true, + "start": "0x19d5e0", + "end": "0x19da34", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19d5e0" + }, + { + "manual": true, + "start": "0x19da40", + "end": "0x19dcfd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19da40" + }, + { + "manual": true, + "start": "0x19dd00", + "end": "0x19dde9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19dd00" + }, + { + "manual": true, + "start": "0x19ddf0", + "end": "0x19df53", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19ddf0" + }, + { + "manual": true, + "start": "0x19f750", + "end": "0x19f757", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19f750" + }, + { + "manual": true, + "start": "0x19f760", + "end": "0x19f98c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19f760" + }, + { + "manual": true, + "start": "0x19f990", + "end": "0x19fd5a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19f990" + }, + { + "manual": true, + "start": "0x19fd60", + "end": "0x19ff22", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x19fd60" + }, + { + "manual": true, + "start": "0x1a0f60", + "end": "0x1a0f93", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a0f60" + }, + { + "manual": true, + "start": "0x1a0fa0", + "end": "0x1a0fd3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a0fa0" + }, + { + "manual": true, + "start": "0x1a0fe0", + "end": "0x1a1053", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a0fe0" + }, + { + "manual": true, + "start": "0x1a1060", + "end": "0x1a108c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a1060" + }, + { + "manual": true, + "start": "0x1a1090", + "end": "0x1a10ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a1090" + }, + { + "manual": true, + "start": "0x1a1330", + "end": "0x1a14c7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a1330" + }, + { + "manual": true, + "start": "0x1a14d0", + "end": "0x1a1529", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a14d0" + }, + { + "manual": true, + "start": "0x1a1530", + "end": "0x1a169a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a1530" + }, + { + "manual": true, + "start": "0x1a16a0", + "end": "0x1a17e8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a16a0" + }, + { + "manual": true, + "start": "0x1a1950", + "end": "0x1a19b4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a1950" + }, + { + "manual": true, + "start": "0x1a19c0", + "end": "0x1a1ab4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a19c0" + }, + { + "manual": true, + "start": "0x1a1ac0", + "end": "0x1a1bc1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a1ac0" + }, + { + "manual": true, + "start": "0x1a1bd0", + "end": "0x1a1c92", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a1bd0" + }, + { + "manual": true, + "start": "0x1a1ca0", + "end": "0x1a1ec4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a1ca0" + }, + { + "manual": true, + "start": "0x1a1f70", + "end": "0x1a1fa3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a1f70" + }, + { + "manual": true, + "start": "0x1a1fb0", + "end": "0x1a20e2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a1fb0" + }, + { + "manual": true, + "start": "0x1a2200", + "end": "0x1a2291", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a2200" + }, + { + "manual": true, + "start": "0x1a24f0", + "end": "0x1a252e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a24f0" + }, + { + "manual": true, + "start": "0x1a2530", + "end": "0x1a25fa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a2530" + }, + { + "manual": true, + "start": "0x1a2600", + "end": "0x1a26ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a2600" + }, + { + "manual": true, + "start": "0x1a26d0", + "end": "0x1a281f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a26d0" + }, + { + "manual": true, + "start": "0x1a2820", + "end": "0x1a287c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a2820" + }, + { + "manual": true, + "start": "0x1a2930", + "end": "0x1a29f3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a2930" + }, + { + "manual": true, + "start": "0x1a2a00", + "end": "0x1a2a39", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a2a00" + }, + { + "manual": true, + "start": "0x1a2a40", + "end": "0x1a2a6c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a2a40" + }, + { + "manual": true, + "start": "0x1a2a70", + "end": "0x1a2a9c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a2a70" + }, + { + "manual": true, + "start": "0x1a2fc0", + "end": "0x1a325b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a2fc0" + }, + { + "manual": true, + "start": "0x1a3260", + "end": "0x1a3363", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a3260" + }, + { + "manual": true, + "start": "0x1a3370", + "end": "0x1a340b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a3370" + }, + { + "manual": true, + "start": "0x1a3410", + "end": "0x1a348b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a3410" + }, + { + "manual": true, + "start": "0x1a3490", + "end": "0x1a35dc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a3490" + }, + { + "manual": true, + "start": "0x1a35e0", + "end": "0x1a35fc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a35e0" + }, + { + "manual": true, + "start": "0x1a3860", + "end": "0x1a3ce3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a3860" + }, + { + "manual": true, + "start": "0x1a3cf0", + "end": "0x1a3d53", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a3cf0" + }, + { + "manual": true, + "start": "0x1a4330", + "end": "0x1a43b2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a4330" + }, + { + "manual": true, + "start": "0x1a43c0", + "end": "0x1a440a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a43c0" + }, + { + "manual": true, + "start": "0x1a4410", + "end": "0x1a443e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a4410" + }, + { + "manual": true, + "start": "0x1a4440", + "end": "0x1a4492", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a4440" + }, + { + "manual": true, + "start": "0x1a44a0", + "end": "0x1a44c1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a44a0" + }, + { + "manual": true, + "start": "0x1a44d0", + "end": "0x1a44fb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a44d0" + }, + { + "manual": true, + "start": "0x1a4500", + "end": "0x1a451f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a4500" + }, + { + "manual": true, + "start": "0x1a4520", + "end": "0x1a45ab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a4520" + }, + { + "manual": true, + "start": "0x1a45b0", + "end": "0x1a45d1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a45b0" + }, + { + "manual": true, + "start": "0x1a45e0", + "end": "0x1a469e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a45e0" + }, + { + "manual": true, + "start": "0x1a4d30", + "end": "0x1a4e45", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a4d30" + }, + { + "manual": true, + "start": "0x1a4e50", + "end": "0x1a500c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a4e50" + }, + { + "manual": true, + "start": "0x1a5ce0", + "end": "0x1a5d2e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a5ce0" + }, + { + "manual": true, + "start": "0x1a5d30", + "end": "0x1a5e13", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a5d30" + }, + { + "manual": true, + "start": "0x1a5e20", + "end": "0x1a5ee1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a5e20" + }, + { + "manual": true, + "start": "0x1a5ef0", + "end": "0x1a5f50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a5ef0" + }, + { + "manual": true, + "start": "0x1a5f60", + "end": "0x1a5ff7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a5f60" + }, + { + "manual": true, + "start": "0x1a6000", + "end": "0x1a61f9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a6000" + }, + { + "manual": true, + "start": "0x1a6200", + "end": "0x1a63e9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a6200" + }, + { + "manual": true, + "start": "0x1a63f0", + "end": "0x1a65f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a63f0" + }, + { + "manual": true, + "start": "0x1a6600", + "end": "0x1a67ea", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a6600" + }, + { + "manual": true, + "start": "0x1a67f0", + "end": "0x1a69f8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a67f0" + }, + { + "manual": true, + "start": "0x1a6a00", + "end": "0x1a6b11", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a6a00" + }, + { + "manual": true, + "start": "0x1a6b20", + "end": "0x1a6b9b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a6b20" + }, + { + "manual": true, + "start": "0x1a6ba0", + "end": "0x1a6d4f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a6ba0" + }, + { + "manual": true, + "start": "0x1a6d50", + "end": "0x1a6db8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a6d50" + }, + { + "manual": true, + "start": "0x1a6dc0", + "end": "0x1a70ec", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a6dc0" + }, + { + "manual": true, + "start": "0x1a7110", + "end": "0x1a7178", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a7110" + }, + { + "manual": true, + "start": "0x1a7180", + "end": "0x1a7242", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a7180" + }, + { + "manual": true, + "start": "0x1a7d10", + "end": "0x1a7d86", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a7d10" + }, + { + "manual": true, + "start": "0x1a7d90", + "end": "0x1a7e5f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a7d90" + }, + { + "manual": true, + "start": "0x1a7e60", + "end": "0x1a7f14", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a7e60" + }, + { + "manual": true, + "start": "0x1a7f20", + "end": "0x1a7f53", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a7f20" + }, + { + "manual": true, + "start": "0x1a7f60", + "end": "0x1a7fca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a7f60" + }, + { + "manual": true, + "start": "0x1a7fd0", + "end": "0x1a8010", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a7fd0" + }, + { + "manual": true, + "start": "0x1a8220", + "end": "0x1a828f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a8220" + }, + { + "manual": true, + "start": "0x1a8290", + "end": "0x1a832e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a8290" + }, + { + "manual": true, + "start": "0x1a8330", + "end": "0x1a83b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a8330" + }, + { + "manual": true, + "start": "0x1a8720", + "end": "0x1a878f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a8720" + }, + { + "manual": true, + "start": "0x1a8790", + "end": "0x1a8810", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a8790" + }, + { + "manual": true, + "start": "0x1a8820", + "end": "0x1a88a8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a8820" + }, + { + "manual": true, + "start": "0x1a8bc0", + "end": "0x1a8c2f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a8bc0" + }, + { + "manual": true, + "start": "0x1a8f10", + "end": "0x1a91ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a8f10" + }, + { + "manual": true, + "start": "0x1a91c0", + "end": "0x1a9287", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a91c0" + }, + { + "manual": true, + "start": "0x1a9290", + "end": "0x1a9356", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a9290" + }, + { + "manual": true, + "start": "0x1a9b30", + "end": "0x1a9b98", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a9b30" + }, + { + "manual": true, + "start": "0x1a9ba0", + "end": "0x1a9c0f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a9ba0" + }, + { + "manual": true, + "start": "0x1a9c10", + "end": "0x1a9c7f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a9c10" + }, + { + "manual": true, + "start": "0x1a9c80", + "end": "0x1a9cef", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a9c80" + }, + { + "manual": true, + "start": "0x1a9cf0", + "end": "0x1a9d4c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a9cf0" + }, + { + "manual": true, + "start": "0x1a9d50", + "end": "0x1a9e16", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1a9d50" + }, + { + "manual": true, + "start": "0x1aad40", + "end": "0x1aadaf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1aad40" + }, + { + "manual": true, + "start": "0x1ab840", + "end": "0x1ab895", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ab840" + }, + { + "manual": true, + "start": "0x1ab8a0", + "end": "0x1ab9cc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ab8a0" + }, + { + "manual": true, + "start": "0x1ac000", + "end": "0x1ac083", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ac000" + }, + { + "manual": true, + "start": "0x1ac090", + "end": "0x1ac0d6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ac090" + }, + { + "manual": true, + "start": "0x1ac320", + "end": "0x1ac384", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ac320" + }, + { + "manual": true, + "start": "0x1ac390", + "end": "0x1ac476", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ac390" + }, + { + "manual": true, + "start": "0x1ac480", + "end": "0x1ac4c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ac480" + }, + { + "manual": true, + "start": "0x1ac750", + "end": "0x1ac7c2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ac750" + }, + { + "manual": true, + "start": "0x1ac7d0", + "end": "0x1ac864", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ac7d0" + }, + { + "manual": true, + "start": "0x1ac870", + "end": "0x1ac8e4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ac870" + }, + { + "manual": true, + "start": "0x1ad020", + "end": "0x1ad063", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad020" + }, + { + "manual": true, + "start": "0x1ad070", + "end": "0x1ad077", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad070" + }, + { + "manual": true, + "start": "0x1ad080", + "end": "0x1ad0ed", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad080" + }, + { + "manual": true, + "start": "0x1ad0f0", + "end": "0x1ad13e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad0f0" + }, + { + "manual": true, + "start": "0x1ad140", + "end": "0x1ad147", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad140" + }, + { + "manual": true, + "start": "0x1ad150", + "end": "0x1ad1a2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad150" + }, + { + "manual": true, + "start": "0x1ad1b0", + "end": "0x1ad1b7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad1b0" + }, + { + "manual": true, + "start": "0x1ad1c0", + "end": "0x1ad227", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad1c0" + }, + { + "manual": true, + "start": "0x1ad230", + "end": "0x1ad237", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad230" + }, + { + "manual": true, + "start": "0x1ad770", + "end": "0x1ad7b1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad770" + }, + { + "manual": true, + "start": "0x1ad7c0", + "end": "0x1ad811", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad7c0" + }, + { + "manual": true, + "start": "0x1ad820", + "end": "0x1ad827", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad820" + }, + { + "manual": true, + "start": "0x1ad830", + "end": "0x1ad871", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad830" + }, + { + "manual": true, + "start": "0x1ad880", + "end": "0x1ad8e2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ad880" + }, + { + "manual": true, + "start": "0x1ae800", + "end": "0x1ae859", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ae800" + }, + { + "manual": true, + "start": "0x1ae860", + "end": "0x1aef82", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ae860" + }, + { + "manual": true, + "start": "0x1aef90", + "end": "0x1af0c6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1aef90" + }, + { + "manual": true, + "start": "0x1af0d0", + "end": "0x1af115", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1af0d0" + }, + { + "manual": true, + "start": "0x1af120", + "end": "0x1af1cc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1af120" + }, + { + "manual": true, + "start": "0x1af1d0", + "end": "0x1af241", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1af1d0" + }, + { + "manual": true, + "start": "0x1af250", + "end": "0x1af2ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1af250" + }, + { + "manual": true, + "start": "0x1af2c0", + "end": "0x1af316", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1af2c0" + }, + { + "manual": true, + "start": "0x1af320", + "end": "0x1af37f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1af320" + }, + { + "manual": true, + "start": "0x1af380", + "end": "0x1af3f0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1af380" + }, + { + "manual": true, + "start": "0x1af910", + "end": "0x1af9b9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1af910" + }, + { + "manual": true, + "start": "0x1af9c0", + "end": "0x1afbae", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1af9c0" + }, + { + "manual": true, + "start": "0x1afd10", + "end": "0x1afd31", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1afd10" + }, + { + "manual": true, + "start": "0x1b0680", + "end": "0x1b093b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b0680" + }, + { + "manual": true, + "start": "0x1b0940", + "end": "0x1b09ac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b0940" + }, + { + "manual": true, + "start": "0x1b09b0", + "end": "0x1b0a1c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b09b0" + }, + { + "manual": true, + "start": "0x1b0a20", + "end": "0x1b0a8c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b0a20" + }, + { + "manual": true, + "start": "0x1b0a90", + "end": "0x1b0cd1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b0a90" + }, + { + "manual": true, + "start": "0x1b0ce0", + "end": "0x1b0cfb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b0ce0" + }, + { + "manual": true, + "start": "0x1b1390", + "end": "0x1b14a2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1390" + }, + { + "manual": true, + "start": "0x1b14b0", + "end": "0x1b15bc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b14b0" + }, + { + "manual": true, + "start": "0x1b15c0", + "end": "0x1b1688", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b15c0" + }, + { + "manual": true, + "start": "0x1b1690", + "end": "0x1b1712", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1690" + }, + { + "manual": true, + "start": "0x1b1720", + "end": "0x1b18d6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1720" + }, + { + "manual": true, + "start": "0x1b18e0", + "end": "0x1b1968", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b18e0" + }, + { + "manual": true, + "start": "0x1b1970", + "end": "0x1b19f9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1970" + }, + { + "manual": true, + "start": "0x1b1a00", + "end": "0x1b1aa6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1a00" + }, + { + "manual": true, + "start": "0x1b1ab0", + "end": "0x1b1bab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1ab0" + }, + { + "manual": true, + "start": "0x1b1bb0", + "end": "0x1b1c17", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1bb0" + }, + { + "manual": true, + "start": "0x1b1c20", + "end": "0x1b1c8d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1c20" + }, + { + "manual": true, + "start": "0x1b1c90", + "end": "0x1b1ce6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1c90" + }, + { + "manual": true, + "start": "0x1b1cf0", + "end": "0x1b1d5d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1cf0" + }, + { + "manual": true, + "start": "0x1b1d60", + "end": "0x1b1db6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1d60" + }, + { + "manual": true, + "start": "0x1b1dc0", + "end": "0x1b1e3b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1dc0" + }, + { + "manual": true, + "start": "0x1b1e40", + "end": "0x1b1ebb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1e40" + }, + { + "manual": true, + "start": "0x1b1ec0", + "end": "0x1b1eec", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b1ec0" + }, + { + "manual": true, + "start": "0x1b2040", + "end": "0x1b208a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b2040" + }, + { + "manual": true, + "start": "0x1b2090", + "end": "0x1b2112", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b2090" + }, + { + "manual": true, + "start": "0x1b2120", + "end": "0x1b2165", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b2120" + }, + { + "manual": true, + "start": "0x1b38e0", + "end": "0x1b3b2b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b38e0" + }, + { + "manual": true, + "start": "0x1b3b30", + "end": "0x1b3c9a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b3b30" + }, + { + "manual": true, + "start": "0x1b3ca0", + "end": "0x1b3dbb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b3ca0" + }, + { + "manual": true, + "start": "0x1b3dc0", + "end": "0x1b3ee0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b3dc0" + }, + { + "manual": true, + "start": "0x1b3ef0", + "end": "0x1b3fb1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b3ef0" + }, + { + "manual": true, + "start": "0x1b3fc0", + "end": "0x1b475b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b3fc0" + }, + { + "manual": true, + "start": "0x1b4760", + "end": "0x1b4767", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b4760" + }, + { + "manual": true, + "start": "0x1b4770", + "end": "0x1b486d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b4770" + }, + { + "manual": true, + "start": "0x1b4870", + "end": "0x1b48cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b4870" + }, + { + "manual": true, + "start": "0x1b48d0", + "end": "0x1b4909", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b48d0" + }, + { + "manual": true, + "start": "0x1b5290", + "end": "0x1b5309", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b5290" + }, + { + "manual": true, + "start": "0x1b5530", + "end": "0x1b5612", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b5530" + }, + { + "manual": true, + "start": "0x1b5620", + "end": "0x1b58ac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b5620" + }, + { + "manual": true, + "start": "0x1b58b0", + "end": "0x1b5e62", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b58b0" + }, + { + "manual": true, + "start": "0x1b5e70", + "end": "0x1b6100", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b5e70" + }, + { + "manual": true, + "start": "0x1b6110", + "end": "0x1b63e7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b6110" + }, + { + "manual": true, + "start": "0x1b71e0", + "end": "0x1b7201", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b71e0" + }, + { + "manual": true, + "start": "0x1b7260", + "end": "0x1b7407", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b7260" + }, + { + "manual": true, + "start": "0x1b7410", + "end": "0x1b7596", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b7410" + }, + { + "manual": true, + "start": "0x1b75a0", + "end": "0x1b765d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b75a0" + }, + { + "manual": true, + "start": "0x1b7660", + "end": "0x1b7738", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b7660" + }, + { + "manual": true, + "start": "0x1b7740", + "end": "0x1b7812", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b7740" + }, + { + "manual": true, + "start": "0x1b80e0", + "end": "0x1b811f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b80e0" + }, + { + "manual": true, + "start": "0x1b8120", + "end": "0x1b815f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8120" + }, + { + "manual": true, + "start": "0x1b8160", + "end": "0x1b81e0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8160" + }, + { + "manual": true, + "start": "0x1b81f0", + "end": "0x1b829d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b81f0" + }, + { + "manual": true, + "start": "0x1b82a0", + "end": "0x1b8346", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b82a0" + }, + { + "manual": true, + "start": "0x1b8350", + "end": "0x1b840b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8350" + }, + { + "manual": true, + "start": "0x1b8410", + "end": "0x1b8498", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8410" + }, + { + "manual": true, + "start": "0x1b84a0", + "end": "0x1b84c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b84a0" + }, + { + "manual": true, + "start": "0x1b84d0", + "end": "0x1b850e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b84d0" + }, + { + "manual": true, + "start": "0x1b8510", + "end": "0x1b8535", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8510" + }, + { + "manual": true, + "start": "0x1b8540", + "end": "0x1b856f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8540" + }, + { + "manual": true, + "start": "0x1b8570", + "end": "0x1b8684", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8570" + }, + { + "manual": true, + "start": "0x1b8690", + "end": "0x1b8712", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8690" + }, + { + "manual": true, + "start": "0x1b8730", + "end": "0x1b87cb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8730" + }, + { + "manual": true, + "start": "0x1b87d0", + "end": "0x1b8835", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b87d0" + }, + { + "manual": true, + "start": "0x1b8840", + "end": "0x1b88a5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8840" + }, + { + "manual": true, + "start": "0x1b88b0", + "end": "0x1b88dc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b88b0" + }, + { + "manual": true, + "start": "0x1b88e0", + "end": "0x1b8961", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b88e0" + }, + { + "manual": true, + "start": "0x1b8970", + "end": "0x1b89b2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8970" + }, + { + "manual": true, + "start": "0x1b89c0", + "end": "0x1b8a02", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b89c0" + }, + { + "manual": true, + "start": "0x1b8a10", + "end": "0x1b8a4b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8a10" + }, + { + "manual": true, + "start": "0x1b8a50", + "end": "0x1b8a9c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8a50" + }, + { + "manual": true, + "start": "0x1b8aa0", + "end": "0x1b8ade", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8aa0" + }, + { + "manual": true, + "start": "0x1b8ae0", + "end": "0x1b8b2b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8ae0" + }, + { + "manual": true, + "start": "0x1b8b30", + "end": "0x1b8b91", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8b30" + }, + { + "manual": true, + "start": "0x1b8ba0", + "end": "0x1b8c01", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8ba0" + }, + { + "manual": true, + "start": "0x1b8c10", + "end": "0x1b8c2d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b8c10" + }, + { + "manual": true, + "start": "0x1b99f0", + "end": "0x1b9ab8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b99f0" + }, + { + "manual": true, + "start": "0x1b9ac0", + "end": "0x1b9beb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b9ac0" + }, + { + "manual": true, + "start": "0x1b9bf0", + "end": "0x1b9c93", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b9bf0" + }, + { + "manual": true, + "start": "0x1b9ca0", + "end": "0x1b9e0f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b9ca0" + }, + { + "manual": true, + "start": "0x1b9e10", + "end": "0x1b9ea1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b9e10" + }, + { + "manual": true, + "start": "0x1b9eb0", + "end": "0x1b9f74", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b9eb0" + }, + { + "manual": true, + "start": "0x1b9f80", + "end": "0x1b9ffc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1b9f80" + }, + { + "manual": true, + "start": "0x1ba000", + "end": "0x1ba216", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ba000" + }, + { + "manual": true, + "start": "0x1ba220", + "end": "0x1ba41c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ba220" + }, + { + "manual": true, + "start": "0x1ba420", + "end": "0x1ba591", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ba420" + }, + { + "manual": true, + "start": "0x1ba5a0", + "end": "0x1ba5a7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ba5a0" + }, + { + "manual": true, + "start": "0x1ba5b0", + "end": "0x1ba674", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ba5b0" + }, + { + "manual": true, + "start": "0x1ba680", + "end": "0x1ba6fc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ba680" + }, + { + "manual": true, + "start": "0x1ba700", + "end": "0x1ba7ee", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ba700" + }, + { + "manual": true, + "start": "0x1ba7f0", + "end": "0x1ba90a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ba7f0" + }, + { + "manual": true, + "start": "0x1ba910", + "end": "0x1baa11", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ba910" + }, + { + "manual": true, + "start": "0x1baa20", + "end": "0x1bab4e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1baa20" + }, + { + "manual": true, + "start": "0x1bab50", + "end": "0x1bacf8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bab50" + }, + { + "manual": true, + "start": "0x1bad00", + "end": "0x1baea8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bad00" + }, + { + "manual": true, + "start": "0x1baeb0", + "end": "0x1bafb6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1baeb0" + }, + { + "manual": true, + "start": "0x1bafc0", + "end": "0x1bb0ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bafc0" + }, + { + "manual": true, + "start": "0x1bb0c0", + "end": "0x1bb123", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb0c0" + }, + { + "manual": true, + "start": "0x1bb130", + "end": "0x1bb20e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb130" + }, + { + "manual": true, + "start": "0x1bb210", + "end": "0x1bb277", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb210" + }, + { + "manual": true, + "start": "0x1bb280", + "end": "0x1bb2e7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb280" + }, + { + "manual": true, + "start": "0x1bb2f0", + "end": "0x1bb374", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb2f0" + }, + { + "manual": true, + "start": "0x1bb380", + "end": "0x1bb404", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb380" + }, + { + "manual": true, + "start": "0x1bb410", + "end": "0x1bb491", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb410" + }, + { + "manual": true, + "start": "0x1bb4a0", + "end": "0x1bb594", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb4a0" + }, + { + "manual": true, + "start": "0x1bb5a0", + "end": "0x1bb648", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb5a0" + }, + { + "manual": true, + "start": "0x1bb650", + "end": "0x1bb744", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb650" + }, + { + "manual": true, + "start": "0x1bb750", + "end": "0x1bb7f8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb750" + }, + { + "manual": true, + "start": "0x1bb800", + "end": "0x1bb863", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb800" + }, + { + "manual": true, + "start": "0x1bb870", + "end": "0x1bb8ab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb870" + }, + { + "manual": true, + "start": "0x1bb8b0", + "end": "0x1bb8eb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb8b0" + }, + { + "manual": true, + "start": "0x1bb8f0", + "end": "0x1bb92b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb8f0" + }, + { + "manual": true, + "start": "0x1bb930", + "end": "0x1bb96b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb930" + }, + { + "manual": true, + "start": "0x1bb970", + "end": "0x1bbaf5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bb970" + }, + { + "manual": true, + "start": "0x1bbb00", + "end": "0x1bbb3d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bbb00" + }, + { + "manual": true, + "start": "0x1bcc00", + "end": "0x1bcc62", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bcc00" + }, + { + "manual": true, + "start": "0x1bcc70", + "end": "0x1bcc94", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bcc70" + }, + { + "manual": true, + "start": "0x1bcca0", + "end": "0x1bcca7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bcca0" + }, + { + "manual": true, + "start": "0x1bccb0", + "end": "0x1bcd7d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bccb0" + }, + { + "manual": true, + "start": "0x1bcd80", + "end": "0x1bcd87", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bcd80" + }, + { + "manual": true, + "start": "0x1bcd90", + "end": "0x1bcd97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bcd90" + }, + { + "manual": true, + "start": "0x1bcda0", + "end": "0x1bce51", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bcda0" + }, + { + "manual": true, + "start": "0x1bce60", + "end": "0x1bcec3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bce60" + }, + { + "manual": true, + "start": "0x1bced0", + "end": "0x1bcef4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bced0" + }, + { + "manual": true, + "start": "0x1bcf00", + "end": "0x1bcf23", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bcf00" + }, + { + "manual": true, + "start": "0x1bcf30", + "end": "0x1bd037", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bcf30" + }, + { + "manual": true, + "start": "0x1bd040", + "end": "0x1bd12a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd040" + }, + { + "manual": true, + "start": "0x1bd130", + "end": "0x1bd21c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd130" + }, + { + "manual": true, + "start": "0x1bd220", + "end": "0x1bd337", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd220" + }, + { + "manual": true, + "start": "0x1bd340", + "end": "0x1bd457", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd340" + }, + { + "manual": true, + "start": "0x1bd460", + "end": "0x1bd4e4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd460" + }, + { + "manual": true, + "start": "0x1bd4f0", + "end": "0x1bd5ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd4f0" + }, + { + "manual": true, + "start": "0x1bd600", + "end": "0x1bd6d6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd600" + }, + { + "manual": true, + "start": "0x1bd6e0", + "end": "0x1bd748", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd6e0" + }, + { + "manual": true, + "start": "0x1bd750", + "end": "0x1bd75c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd750" + }, + { + "manual": true, + "start": "0x1bd760", + "end": "0x1bd7c8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd760" + }, + { + "manual": true, + "start": "0x1bd7d0", + "end": "0x1bd7d7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd7d0" + }, + { + "manual": true, + "start": "0x1bd7e0", + "end": "0x1bd7f0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd7e0" + }, + { + "manual": true, + "start": "0x1bd8a0", + "end": "0x1bdd84", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bd8a0" + }, + { + "manual": true, + "start": "0x1bdd90", + "end": "0x1bddd3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bdd90" + }, + { + "manual": true, + "start": "0x1bf830", + "end": "0x1bf863", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1bf830" + }, + { + "manual": true, + "start": "0x1c1070", + "end": "0x1c1474", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c1070" + }, + { + "manual": true, + "start": "0x1c1480", + "end": "0x1c15e0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c1480" + }, + { + "manual": true, + "start": "0x1c43b0", + "end": "0x1c446b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c43b0" + }, + { + "manual": true, + "start": "0x1c4550", + "end": "0x1c4624", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c4550" + }, + { + "manual": true, + "start": "0x1c49c0", + "end": "0x1c49ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c49c0" + }, + { + "manual": true, + "start": "0x1c49d0", + "end": "0x1c4ae4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c49d0" + }, + { + "manual": true, + "start": "0x1c4af0", + "end": "0x1c4b50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c4af0" + }, + { + "manual": true, + "start": "0x1c4b60", + "end": "0x1c4d04", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c4b60" + }, + { + "manual": true, + "start": "0x1c4d10", + "end": "0x1c4db3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c4d10" + }, + { + "manual": true, + "start": "0x1c4dc0", + "end": "0x1c4e93", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c4dc0" + }, + { + "manual": true, + "start": "0x1c4ea0", + "end": "0x1c4ed9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c4ea0" + }, + { + "manual": true, + "start": "0x1c5160", + "end": "0x1c533c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5160" + }, + { + "manual": true, + "start": "0x1c5340", + "end": "0x1c5457", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5340" + }, + { + "manual": true, + "start": "0x1c5460", + "end": "0x1c5467", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5460" + }, + { + "manual": true, + "start": "0x1c5470", + "end": "0x1c54a9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5470" + }, + { + "manual": true, + "start": "0x1c5500", + "end": "0x1c5543", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5500" + }, + { + "manual": true, + "start": "0x1c5550", + "end": "0x1c55e6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5550" + }, + { + "manual": true, + "start": "0x1c55f0", + "end": "0x1c560d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c55f0" + }, + { + "manual": true, + "start": "0x1c5810", + "end": "0x1c5875", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5810" + }, + { + "manual": true, + "start": "0x1c5cc0", + "end": "0x1c5d32", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5cc0" + }, + { + "manual": true, + "start": "0x1c5d40", + "end": "0x1c5dec", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5d40" + }, + { + "manual": true, + "start": "0x1c5df0", + "end": "0x1c5e6c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5df0" + }, + { + "manual": true, + "start": "0x1c5e70", + "end": "0x1c5efb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c5e70" + }, + { + "manual": true, + "start": "0x1c6150", + "end": "0x1c630c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c6150" + }, + { + "manual": true, + "start": "0x1c6310", + "end": "0x1c63ad", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c6310" + }, + { + "manual": true, + "start": "0x1c63b0", + "end": "0x1c6417", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c63b0" + }, + { + "manual": true, + "start": "0x1c6420", + "end": "0x1c6471", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c6420" + }, + { + "manual": true, + "start": "0x1c6a10", + "end": "0x1c6c55", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c6a10" + }, + { + "manual": true, + "start": "0x1c7130", + "end": "0x1c71f0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c7130" + }, + { + "manual": true, + "start": "0x1c7200", + "end": "0x1c7285", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c7200" + }, + { + "manual": true, + "start": "0x1c7800", + "end": "0x1c7cd5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c7800" + }, + { + "manual": true, + "start": "0x1c7ce0", + "end": "0x1c7ec1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c7ce0" + }, + { + "manual": true, + "start": "0x1c7ed0", + "end": "0x1c80d4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c7ed0" + }, + { + "manual": true, + "start": "0x1c80e0", + "end": "0x1c8304", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c80e0" + }, + { + "manual": true, + "start": "0x1c9590", + "end": "0x1c968d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1c9590" + }, + { + "manual": true, + "start": "0x1ca130", + "end": "0x1ca184", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ca130" + }, + { + "manual": true, + "start": "0x1ca190", + "end": "0x1ca1aa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ca190" + }, + { + "manual": true, + "start": "0x1ca1b0", + "end": "0x1ca1da", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ca1b0" + }, + { + "manual": true, + "start": "0x1ca1e0", + "end": "0x1ca21b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ca1e0" + }, + { + "manual": true, + "start": "0x1ca220", + "end": "0x1ca253", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ca220" + }, + { + "manual": true, + "start": "0x1ca260", + "end": "0x1ca2a6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ca260" + }, + { + "manual": true, + "start": "0x1ca2b0", + "end": "0x1ca328", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ca2b0" + }, + { + "manual": true, + "start": "0x1ca330", + "end": "0x1ca34a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ca330" + }, + { + "manual": true, + "start": "0x1ca350", + "end": "0x1ca371", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ca350" + }, + { + "manual": true, + "start": "0x1cabb0", + "end": "0x1cacf6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cabb0" + }, + { + "manual": true, + "start": "0x1cad00", + "end": "0x1cae1c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cad00" + }, + { + "manual": true, + "start": "0x1cae20", + "end": "0x1caf3f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cae20" + }, + { + "manual": true, + "start": "0x1caf40", + "end": "0x1cafcf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1caf40" + }, + { + "manual": true, + "start": "0x1cafd0", + "end": "0x1caffc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cafd0" + }, + { + "manual": true, + "start": "0x1cb000", + "end": "0x1cb16a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb000" + }, + { + "manual": true, + "start": "0x1cb170", + "end": "0x1cb328", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb170" + }, + { + "manual": true, + "start": "0x1cb330", + "end": "0x1cb3e2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb330" + }, + { + "manual": true, + "start": "0x1cb3f0", + "end": "0x1cb460", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb3f0" + }, + { + "manual": true, + "start": "0x1cb470", + "end": "0x1cb552", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb470" + }, + { + "manual": true, + "start": "0x1cb560", + "end": "0x1cb692", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb560" + }, + { + "manual": true, + "start": "0x1cb6a0", + "end": "0x1cb6ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb6a0" + }, + { + "manual": true, + "start": "0x1cb700", + "end": "0x1cb751", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb700" + }, + { + "manual": true, + "start": "0x1cb760", + "end": "0x1cb803", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb760" + }, + { + "manual": true, + "start": "0x1cb810", + "end": "0x1cb817", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb810" + }, + { + "manual": true, + "start": "0x1cb820", + "end": "0x1cb8f5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cb820" + }, + { + "manual": true, + "start": "0x1cbcf0", + "end": "0x1cbd74", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cbcf0" + }, + { + "manual": true, + "start": "0x1cbd80", + "end": "0x1cbe07", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cbd80" + }, + { + "manual": true, + "start": "0x1cbe10", + "end": "0x1cbe94", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cbe10" + }, + { + "manual": true, + "start": "0x1cbea0", + "end": "0x1cbf24", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cbea0" + }, + { + "manual": true, + "start": "0x1cbf30", + "end": "0x1cbfb7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cbf30" + }, + { + "manual": true, + "start": "0x1cbfc0", + "end": "0x1cc047", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cbfc0" + }, + { + "manual": true, + "start": "0x1cc050", + "end": "0x1cc0d7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cc050" + }, + { + "manual": true, + "start": "0x1cc0e0", + "end": "0x1cc167", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cc0e0" + }, + { + "manual": true, + "start": "0x1cc170", + "end": "0x1cc1f7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cc170" + }, + { + "manual": true, + "start": "0x1cc200", + "end": "0x1cc287", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cc200" + }, + { + "manual": true, + "start": "0x1cc290", + "end": "0x1cc35f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cc290" + }, + { + "manual": true, + "start": "0x1cc360", + "end": "0x1cc3d5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cc360" + }, + { + "manual": true, + "start": "0x1cc3e0", + "end": "0x1cc46e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cc3e0" + }, + { + "manual": true, + "start": "0x1cc470", + "end": "0x1cc501", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cc470" + }, + { + "manual": true, + "start": "0x1cc9c0", + "end": "0x1ccc83", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cc9c0" + }, + { + "manual": true, + "start": "0x1ccc90", + "end": "0x1ccd8d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ccc90" + }, + { + "manual": true, + "start": "0x1ccd90", + "end": "0x1cd097", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ccd90" + }, + { + "manual": true, + "start": "0x1cd1b0", + "end": "0x1cd1e3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cd1b0" + }, + { + "manual": true, + "start": "0x1cd820", + "end": "0x1cd85d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cd820" + }, + { + "manual": true, + "start": "0x1cd860", + "end": "0x1cd8e6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cd860" + }, + { + "manual": true, + "start": "0x1cd8f0", + "end": "0x1cd91c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cd8f0" + }, + { + "manual": true, + "start": "0x1cde20", + "end": "0x1ce2b4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cde20" + }, + { + "manual": true, + "start": "0x1ce2c0", + "end": "0x1ce399", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ce2c0" + }, + { + "manual": true, + "start": "0x1ce3a0", + "end": "0x1ce3ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ce3a0" + }, + { + "manual": true, + "start": "0x1ce400", + "end": "0x1ce45f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ce400" + }, + { + "manual": true, + "start": "0x1ce460", + "end": "0x1ce4c3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ce460" + }, + { + "manual": true, + "start": "0x1ce4d0", + "end": "0x1ce533", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ce4d0" + }, + { + "manual": true, + "start": "0x1ce540", + "end": "0x1ce5ca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ce540" + }, + { + "manual": true, + "start": "0x1ce5d0", + "end": "0x1ce6e5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ce5d0" + }, + { + "manual": true, + "start": "0x1ce6f0", + "end": "0x1ce861", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ce6f0" + }, + { + "manual": true, + "start": "0x1ceac0", + "end": "0x1ceaf3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ceac0" + }, + { + "manual": true, + "start": "0x1cece0", + "end": "0x1cee2c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cece0" + }, + { + "manual": true, + "start": "0x1cee30", + "end": "0x1ceeef", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cee30" + }, + { + "manual": true, + "start": "0x1cf020", + "end": "0x1cf034", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cf020" + }, + { + "manual": true, + "start": "0x1cf040", + "end": "0x1cf130", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cf040" + }, + { + "manual": true, + "start": "0x1cf140", + "end": "0x1cf21a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cf140" + }, + { + "manual": true, + "start": "0x1cf220", + "end": "0x1cf445", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cf220" + }, + { + "manual": true, + "start": "0x1cf450", + "end": "0x1cf528", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cf450" + }, + { + "manual": true, + "start": "0x1cf950", + "end": "0x1cf9ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cf950" + }, + { + "manual": true, + "start": "0x1cfdb0", + "end": "0x1cfdb7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cfdb0" + }, + { + "manual": true, + "start": "0x1cff20", + "end": "0x1cff53", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1cff20" + }, + { + "manual": true, + "start": "0x1d0740", + "end": "0x1d07af", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d0740" + }, + { + "manual": true, + "start": "0x1d07b0", + "end": "0x1d0813", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d07b0" + }, + { + "manual": true, + "start": "0x1d0820", + "end": "0x1d084c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d0820" + }, + { + "manual": true, + "start": "0x1d1150", + "end": "0x1d11d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d1150" + }, + { + "manual": true, + "start": "0x1d11e0", + "end": "0x1d123f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d11e0" + }, + { + "manual": true, + "start": "0x1d1240", + "end": "0x1d1383", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d1240" + }, + { + "manual": true, + "start": "0x1d1390", + "end": "0x1d141a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d1390" + }, + { + "manual": true, + "start": "0x1d1420", + "end": "0x1d148d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d1420" + }, + { + "manual": true, + "start": "0x1d1e50", + "end": "0x1d1ed0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d1e50" + }, + { + "manual": true, + "start": "0x1d1ee0", + "end": "0x1d1f60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d1ee0" + }, + { + "manual": true, + "start": "0x1d1f70", + "end": "0x1d1fb8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d1f70" + }, + { + "manual": true, + "start": "0x1d1fc0", + "end": "0x1d1fd2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d1fc0" + }, + { + "manual": true, + "start": "0x1d1fe0", + "end": "0x1d1ff2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d1fe0" + }, + { + "manual": true, + "start": "0x1d2000", + "end": "0x1d2048", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d2000" + }, + { + "manual": true, + "start": "0x1d3160", + "end": "0x1d317b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3160" + }, + { + "manual": true, + "start": "0x1d3180", + "end": "0x1d31e6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3180" + }, + { + "manual": true, + "start": "0x1d3720", + "end": "0x1d3778", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3720" + }, + { + "manual": true, + "start": "0x1d3780", + "end": "0x1d3816", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3780" + }, + { + "manual": true, + "start": "0x1d3820", + "end": "0x1d38b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3820" + }, + { + "manual": true, + "start": "0x1d38c0", + "end": "0x1d3956", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d38c0" + }, + { + "manual": true, + "start": "0x1d3960", + "end": "0x1d3a1c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3960" + }, + { + "manual": true, + "start": "0x1d3a20", + "end": "0x1d3af3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3a20" + }, + { + "manual": true, + "start": "0x1d3b00", + "end": "0x1d3bc0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3b00" + }, + { + "manual": true, + "start": "0x1d3bd0", + "end": "0x1d3cd9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3bd0" + }, + { + "manual": true, + "start": "0x1d3ce0", + "end": "0x1d3d78", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3ce0" + }, + { + "manual": true, + "start": "0x1d3d80", + "end": "0x1d3e77", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d3d80" + }, + { + "manual": true, + "start": "0x1d4ec0", + "end": "0x1d5257", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d4ec0" + }, + { + "manual": true, + "start": "0x1d5280", + "end": "0x1d53b9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5280" + }, + { + "manual": true, + "start": "0x1d53c0", + "end": "0x1d53fe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d53c0" + }, + { + "manual": true, + "start": "0x1d5400", + "end": "0x1d54b7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5400" + }, + { + "manual": true, + "start": "0x1d54c0", + "end": "0x1d54eb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d54c0" + }, + { + "manual": true, + "start": "0x1d54f0", + "end": "0x1d551b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d54f0" + }, + { + "manual": true, + "start": "0x1d5520", + "end": "0x1d554b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5520" + }, + { + "manual": true, + "start": "0x1d5550", + "end": "0x1d557b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5550" + }, + { + "manual": true, + "start": "0x1d5580", + "end": "0x1d55ab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5580" + }, + { + "manual": true, + "start": "0x1d55b0", + "end": "0x1d563f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d55b0" + }, + { + "manual": true, + "start": "0x1d5640", + "end": "0x1d5647", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5640" + }, + { + "manual": true, + "start": "0x1d5650", + "end": "0x1d5657", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5650" + }, + { + "manual": true, + "start": "0x1d5660", + "end": "0x1d5667", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5660" + }, + { + "manual": true, + "start": "0x1d5670", + "end": "0x1d581a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5670" + }, + { + "manual": true, + "start": "0x1d5820", + "end": "0x1d5a04", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5820" + }, + { + "manual": true, + "start": "0x1d5a10", + "end": "0x1d5a5b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d5a10" + }, + { + "manual": true, + "start": "0x1d65c0", + "end": "0x1d66e4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d65c0" + }, + { + "manual": true, + "start": "0x1d66f0", + "end": "0x1d67a3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d66f0" + }, + { + "manual": true, + "start": "0x1d67b0", + "end": "0x1d68fd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d67b0" + }, + { + "manual": true, + "start": "0x1d6f60", + "end": "0x1d6fea", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d6f60" + }, + { + "manual": true, + "start": "0x1d6ff0", + "end": "0x1d7011", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d6ff0" + }, + { + "manual": true, + "start": "0x1d7180", + "end": "0x1d729a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d7180" + }, + { + "manual": true, + "start": "0x1d74a0", + "end": "0x1d7589", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d74a0" + }, + { + "manual": true, + "start": "0x1d7590", + "end": "0x1d781f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d7590" + }, + { + "manual": true, + "start": "0x1d7820", + "end": "0x1d7a81", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d7820" + }, + { + "manual": true, + "start": "0x1d7a90", + "end": "0x1d7c70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d7a90" + }, + { + "manual": true, + "start": "0x1d7c80", + "end": "0x1d7cfe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d7c80" + }, + { + "manual": true, + "start": "0x1d7d00", + "end": "0x1d7d83", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d7d00" + }, + { + "manual": true, + "start": "0x1d7d90", + "end": "0x1d7eec", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d7d90" + }, + { + "manual": true, + "start": "0x1d7ef0", + "end": "0x1d7fe5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d7ef0" + }, + { + "manual": true, + "start": "0x1d7ff0", + "end": "0x1d84e3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d7ff0" + }, + { + "manual": true, + "start": "0x1d84f0", + "end": "0x1d864d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d84f0" + }, + { + "manual": true, + "start": "0x1d8650", + "end": "0x1d8b05", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d8650" + }, + { + "manual": true, + "start": "0x1d8b10", + "end": "0x1d8bc6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d8b10" + }, + { + "manual": true, + "start": "0x1d8bd0", + "end": "0x1d8c60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d8bd0" + }, + { + "manual": true, + "start": "0x1d8c70", + "end": "0x1d8d7e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d8c70" + }, + { + "manual": true, + "start": "0x1d8d80", + "end": "0x1d8f60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d8d80" + }, + { + "manual": true, + "start": "0x1d8f70", + "end": "0x1d91a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d8f70" + }, + { + "manual": true, + "start": "0x1d91b0", + "end": "0x1d92f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d91b0" + }, + { + "manual": true, + "start": "0x1d9300", + "end": "0x1d93fe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d9300" + }, + { + "manual": true, + "start": "0x1d9400", + "end": "0x1d953a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1d9400" + }, + { + "manual": true, + "start": "0x1da120", + "end": "0x1da141", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da120" + }, + { + "manual": true, + "start": "0x1da150", + "end": "0x1da16b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da150" + }, + { + "manual": true, + "start": "0x1da170", + "end": "0x1da1ad", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da170" + }, + { + "manual": true, + "start": "0x1da1b0", + "end": "0x1da266", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da1b0" + }, + { + "manual": true, + "start": "0x1da270", + "end": "0x1da2d4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da270" + }, + { + "manual": true, + "start": "0x1da2e0", + "end": "0x1da30c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da2e0" + }, + { + "manual": true, + "start": "0x1da310", + "end": "0x1da390", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da310" + }, + { + "manual": true, + "start": "0x1da8b0", + "end": "0x1da8fa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da8b0" + }, + { + "manual": true, + "start": "0x1da900", + "end": "0x1da966", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da900" + }, + { + "manual": true, + "start": "0x1da970", + "end": "0x1da99c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da970" + }, + { + "manual": true, + "start": "0x1da9a0", + "end": "0x1daa67", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1da9a0" + }, + { + "manual": true, + "start": "0x1daa70", + "end": "0x1dab6b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1daa70" + }, + { + "manual": true, + "start": "0x1dab70", + "end": "0x1dabf5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dab70" + }, + { + "manual": true, + "start": "0x1dac00", + "end": "0x1dacd1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dac00" + }, + { + "manual": true, + "start": "0x1db2a0", + "end": "0x1db542", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1db2a0" + }, + { + "manual": true, + "start": "0x1db550", + "end": "0x1db6d1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1db550" + }, + { + "manual": true, + "start": "0x1db6e0", + "end": "0x1db807", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1db6e0" + }, + { + "manual": true, + "start": "0x1db810", + "end": "0x1db918", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1db810" + }, + { + "manual": true, + "start": "0x1db920", + "end": "0x1dba60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1db920" + }, + { + "manual": true, + "start": "0x1dba70", + "end": "0x1dbb9f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dba70" + }, + { + "manual": true, + "start": "0x1dbba0", + "end": "0x1dbcb5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dbba0" + }, + { + "manual": true, + "start": "0x1dbcc0", + "end": "0x1dbe04", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dbcc0" + }, + { + "manual": true, + "start": "0x1dbe10", + "end": "0x1dbf09", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dbe10" + }, + { + "manual": true, + "start": "0x1dbf10", + "end": "0x1dbf8d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dbf10" + }, + { + "manual": true, + "start": "0x1dbf90", + "end": "0x1dc0a7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dbf90" + }, + { + "manual": true, + "start": "0x1dc0b0", + "end": "0x1dc108", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dc0b0" + }, + { + "manual": true, + "start": "0x1dd070", + "end": "0x1dd08c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dd070" + }, + { + "manual": true, + "start": "0x1dd090", + "end": "0x1dd0ec", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dd090" + }, + { + "manual": true, + "start": "0x1dd0f0", + "end": "0x1dd22a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dd0f0" + }, + { + "manual": true, + "start": "0x1dd230", + "end": "0x1dd3dc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dd230" + }, + { + "manual": true, + "start": "0x1dd3e0", + "end": "0x1dd419", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dd3e0" + }, + { + "manual": true, + "start": "0x1dd420", + "end": "0x1dd459", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dd420" + }, + { + "manual": true, + "start": "0x1dd460", + "end": "0x1dd4f5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dd460" + }, + { + "manual": true, + "start": "0x1dd500", + "end": "0x1dd593", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dd500" + }, + { + "manual": true, + "start": "0x1de400", + "end": "0x1de618", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1de400" + }, + { + "manual": true, + "start": "0x1de620", + "end": "0x1de8b5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1de620" + }, + { + "manual": true, + "start": "0x1df010", + "end": "0x1df093", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df010" + }, + { + "manual": true, + "start": "0x1df0a0", + "end": "0x1df0cc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df0a0" + }, + { + "manual": true, + "start": "0x1df0d0", + "end": "0x1df0dc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df0d0" + }, + { + "manual": true, + "start": "0x1df0e0", + "end": "0x1df142", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df0e0" + }, + { + "manual": true, + "start": "0x1df150", + "end": "0x1df1c7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df150" + }, + { + "manual": true, + "start": "0x1df1d0", + "end": "0x1df245", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df1d0" + }, + { + "manual": true, + "start": "0x1df250", + "end": "0x1df394", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df250" + }, + { + "manual": true, + "start": "0x1df3a0", + "end": "0x1df3f5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df3a0" + }, + { + "manual": true, + "start": "0x1df400", + "end": "0x1df455", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df400" + }, + { + "manual": true, + "start": "0x1df460", + "end": "0x1df51b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df460" + }, + { + "manual": true, + "start": "0x1df520", + "end": "0x1df5cc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df520" + }, + { + "manual": true, + "start": "0x1df5d0", + "end": "0x1df603", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df5d0" + }, + { + "manual": true, + "start": "0x1df610", + "end": "0x1df6f6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df610" + }, + { + "manual": true, + "start": "0x1df700", + "end": "0x1df77c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df700" + }, + { + "manual": true, + "start": "0x1df780", + "end": "0x1df861", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df780" + }, + { + "manual": true, + "start": "0x1df870", + "end": "0x1df89d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df870" + }, + { + "manual": true, + "start": "0x1df8a0", + "end": "0x1df90f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df8a0" + }, + { + "manual": true, + "start": "0x1df910", + "end": "0x1df931", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df910" + }, + { + "manual": true, + "start": "0x1df940", + "end": "0x1dfa01", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1df940" + }, + { + "manual": true, + "start": "0x1dfa10", + "end": "0x1dfa73", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dfa10" + }, + { + "manual": true, + "start": "0x1dfa80", + "end": "0x1dfaf4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dfa80" + }, + { + "manual": true, + "start": "0x1dfb00", + "end": "0x1dfb3e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dfb00" + }, + { + "manual": true, + "start": "0x1dfb40", + "end": "0x1dfb94", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dfb40" + }, + { + "manual": true, + "start": "0x1dfba0", + "end": "0x1dfc3f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dfba0" + }, + { + "manual": true, + "start": "0x1dfc40", + "end": "0x1dfd1c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1dfc40" + }, + { + "manual": true, + "start": "0x1e02f0", + "end": "0x1e0336", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e02f0" + }, + { + "manual": true, + "start": "0x1e0340", + "end": "0x1e041e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e0340" + }, + { + "manual": true, + "start": "0x1e0590", + "end": "0x1e06c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e0590" + }, + { + "manual": true, + "start": "0x1e06d0", + "end": "0x1e07f6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e06d0" + }, + { + "manual": true, + "start": "0x1e3d60", + "end": "0x1e405c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e3d60" + }, + { + "manual": true, + "start": "0x1e4060", + "end": "0x1e4067", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4060" + }, + { + "manual": true, + "start": "0x1e4070", + "end": "0x1e419b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4070" + }, + { + "manual": true, + "start": "0x1e41a0", + "end": "0x1e425d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e41a0" + }, + { + "manual": true, + "start": "0x1e4260", + "end": "0x1e431d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4260" + }, + { + "manual": true, + "start": "0x1e4320", + "end": "0x1e43e5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4320" + }, + { + "manual": true, + "start": "0x1e43f0", + "end": "0x1e4483", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e43f0" + }, + { + "manual": true, + "start": "0x1e4490", + "end": "0x1e465f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4490" + }, + { + "manual": true, + "start": "0x1e4660", + "end": "0x1e4832", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4660" + }, + { + "manual": true, + "start": "0x1e4840", + "end": "0x1e48ed", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4840" + }, + { + "manual": true, + "start": "0x1e48f0", + "end": "0x1e49a2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e48f0" + }, + { + "manual": true, + "start": "0x1e49b0", + "end": "0x1e4b63", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e49b0" + }, + { + "manual": true, + "start": "0x1e4b70", + "end": "0x1e4c0b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4b70" + }, + { + "manual": true, + "start": "0x1e4c10", + "end": "0x1e4d0f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4c10" + }, + { + "manual": true, + "start": "0x1e4d10", + "end": "0x1e4eca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4d10" + }, + { + "manual": true, + "start": "0x1e4ed0", + "end": "0x1e4fa3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4ed0" + }, + { + "manual": true, + "start": "0x1e4fb0", + "end": "0x1e50f6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e4fb0" + }, + { + "manual": true, + "start": "0x1e5100", + "end": "0x1e5148", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e5100" + }, + { + "manual": true, + "start": "0x1e5150", + "end": "0x1e5198", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e5150" + }, + { + "manual": true, + "start": "0x1e51a0", + "end": "0x1e51c9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e51a0" + }, + { + "manual": true, + "start": "0x1e51d0", + "end": "0x1e52c1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e51d0" + }, + { + "manual": true, + "start": "0x1e52d0", + "end": "0x1e53ca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e52d0" + }, + { + "manual": true, + "start": "0x1e53d0", + "end": "0x1e54ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e53d0" + }, + { + "manual": true, + "start": "0x1e54c0", + "end": "0x1e5633", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e54c0" + }, + { + "manual": true, + "start": "0x1e5640", + "end": "0x1e56bb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e5640" + }, + { + "manual": true, + "start": "0x1e56c0", + "end": "0x1e5739", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e56c0" + }, + { + "manual": true, + "start": "0x1e5740", + "end": "0x1e5747", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e5740" + }, + { + "manual": true, + "start": "0x1e5750", + "end": "0x1e57db", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e5750" + }, + { + "manual": true, + "start": "0x1e5cc0", + "end": "0x1e5f58", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e5cc0" + }, + { + "manual": true, + "start": "0x1e5f60", + "end": "0x1e60ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e5f60" + }, + { + "manual": true, + "start": "0x1e60d0", + "end": "0x1e623e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e60d0" + }, + { + "manual": true, + "start": "0x1e6240", + "end": "0x1e63cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e6240" + }, + { + "manual": true, + "start": "0x1e63d0", + "end": "0x1e64ad", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e63d0" + }, + { + "manual": true, + "start": "0x1e64b0", + "end": "0x1e64ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e64b0" + }, + { + "manual": true, + "start": "0x1e6650", + "end": "0x1e67bb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e6650" + }, + { + "manual": true, + "start": "0x1e67c0", + "end": "0x1e6879", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e67c0" + }, + { + "manual": true, + "start": "0x1e6de0", + "end": "0x1e6e30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e6de0" + }, + { + "manual": true, + "start": "0x1e7700", + "end": "0x1e7757", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e7700" + }, + { + "manual": true, + "start": "0x1e7780", + "end": "0x1e77b9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e7780" + }, + { + "manual": true, + "start": "0x1e77c0", + "end": "0x1e7884", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e77c0" + }, + { + "manual": true, + "start": "0x1e7890", + "end": "0x1e78e2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e7890" + }, + { + "manual": true, + "start": "0x1e7d60", + "end": "0x1e7e50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e7d60" + }, + { + "manual": true, + "start": "0x1e7e60", + "end": "0x1e7f9b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e7e60" + }, + { + "manual": true, + "start": "0x1e7fa0", + "end": "0x1e802f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e7fa0" + }, + { + "manual": true, + "start": "0x1e8030", + "end": "0x1e8283", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e8030" + }, + { + "manual": true, + "start": "0x1e95c0", + "end": "0x1e9bb4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e95c0" + }, + { + "manual": true, + "start": "0x1e9bc0", + "end": "0x1e9d70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e9bc0" + }, + { + "manual": true, + "start": "0x1e9d80", + "end": "0x1e9e30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e9d80" + }, + { + "manual": true, + "start": "0x1e9e40", + "end": "0x1ea03f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1e9e40" + }, + { + "manual": true, + "start": "0x1ea040", + "end": "0x1ea163", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea040" + }, + { + "manual": true, + "start": "0x1ea170", + "end": "0x1ea264", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea170" + }, + { + "manual": true, + "start": "0x1ea270", + "end": "0x1ea3db", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea270" + }, + { + "manual": true, + "start": "0x1ea3e0", + "end": "0x1ea4e5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea3e0" + }, + { + "manual": true, + "start": "0x1ea4f0", + "end": "0x1ea5ee", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea4f0" + }, + { + "manual": true, + "start": "0x1ea5f0", + "end": "0x1ea624", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea5f0" + }, + { + "manual": true, + "start": "0x1ea630", + "end": "0x1ea69c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea630" + }, + { + "manual": true, + "start": "0x1ea6a0", + "end": "0x1ea6d9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea6a0" + }, + { + "manual": true, + "start": "0x1ea6e0", + "end": "0x1ea77b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea6e0" + }, + { + "manual": true, + "start": "0x1ea780", + "end": "0x1ea7ef", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea780" + }, + { + "manual": true, + "start": "0x1ea7f0", + "end": "0x1ea831", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea7f0" + }, + { + "manual": true, + "start": "0x1ea840", + "end": "0x1ea879", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea840" + }, + { + "manual": true, + "start": "0x1ea880", + "end": "0x1ea923", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea880" + }, + { + "manual": true, + "start": "0x1ea930", + "end": "0x1ea9a6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea930" + }, + { + "manual": true, + "start": "0x1ea9b0", + "end": "0x1eaaeb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ea9b0" + }, + { + "manual": true, + "start": "0x1eaaf0", + "end": "0x1eabf8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1eaaf0" + }, + { + "manual": true, + "start": "0x1eac00", + "end": "0x1eac07", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1eac00" + }, + { + "manual": true, + "start": "0x1eac10", + "end": "0x1eac80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1eac10" + }, + { + "manual": true, + "start": "0x1eac90", + "end": "0x1eac97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1eac90" + }, + { + "manual": true, + "start": "0x1eaca0", + "end": "0x1eae8b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1eaca0" + }, + { + "manual": true, + "start": "0x1eae90", + "end": "0x1eaf26", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1eae90" + }, + { + "manual": true, + "start": "0x1eeb70", + "end": "0x1eeb70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1eeb70" + }, + { + "manual": true, + "start": "0x1f9550", + "end": "0x1f9571", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1f9550" + }, + { + "manual": true, + "start": "0x1f9dd0", + "end": "0x1f9e0e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1f9dd0" + }, + { + "manual": true, + "start": "0x1f9e10", + "end": "0x1f9e5b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1f9e10" + }, + { + "manual": true, + "start": "0x1f9e60", + "end": "0x1f9f05", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1f9e60" + }, + { + "manual": true, + "start": "0x1f9f10", + "end": "0x1f9f6d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1f9f10" + }, + { + "manual": true, + "start": "0x1f9f70", + "end": "0x1f9fda", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1f9f70" + }, + { + "manual": true, + "start": "0x1f9fe0", + "end": "0x1fa04a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1f9fe0" + }, + { + "manual": true, + "start": "0x1fa050", + "end": "0x1fa05d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fa050" + }, + { + "manual": true, + "start": "0x1faae0", + "end": "0x1fab6c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1faae0" + }, + { + "manual": true, + "start": "0x1fb660", + "end": "0x1fb6c7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fb660" + }, + { + "manual": true, + "start": "0x1fb6d0", + "end": "0x1fb71a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fb6d0" + }, + { + "manual": true, + "start": "0x1fb720", + "end": "0x1fb76a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fb720" + }, + { + "manual": true, + "start": "0x1fb770", + "end": "0x1fb7ca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fb770" + }, + { + "manual": true, + "start": "0x1fb7d0", + "end": "0x1fb81b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fb7d0" + }, + { + "manual": true, + "start": "0x1fb820", + "end": "0x1fb8b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fb820" + }, + { + "manual": true, + "start": "0x1fb8c0", + "end": "0x1fb966", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fb8c0" + }, + { + "manual": true, + "start": "0x1fb970", + "end": "0x1fb9b4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fb970" + }, + { + "manual": true, + "start": "0x1fb9c0", + "end": "0x1fba04", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fb9c0" + }, + { + "manual": true, + "start": "0x1fba10", + "end": "0x1fba54", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fba10" + }, + { + "manual": true, + "start": "0x1fbf80", + "end": "0x1fc094", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fbf80" + }, + { + "manual": true, + "start": "0x1fc0a0", + "end": "0x1fc0e1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc0a0" + }, + { + "manual": true, + "start": "0x1fc140", + "end": "0x1fc181", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc140" + }, + { + "manual": true, + "start": "0x1fc190", + "end": "0x1fc1f9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc190" + }, + { + "manual": true, + "start": "0x1fc200", + "end": "0x1fc241", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc200" + }, + { + "manual": true, + "start": "0x1fc250", + "end": "0x1fc28e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc250" + }, + { + "manual": true, + "start": "0x1fc290", + "end": "0x1fc2d1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc290" + }, + { + "manual": true, + "start": "0x1fc2e0", + "end": "0x1fc31e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc2e0" + }, + { + "manual": true, + "start": "0x1fc320", + "end": "0x1fc35f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc320" + }, + { + "manual": true, + "start": "0x1fc360", + "end": "0x1fc3a1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc360" + }, + { + "manual": true, + "start": "0x1fc3b0", + "end": "0x1fc3ef", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc3b0" + }, + { + "manual": true, + "start": "0x1fc3f0", + "end": "0x1fc431", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc3f0" + }, + { + "manual": true, + "start": "0x1fc440", + "end": "0x1fc481", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc440" + }, + { + "manual": true, + "start": "0x1fc490", + "end": "0x1fc4ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc490" + }, + { + "manual": true, + "start": "0x1fc4d0", + "end": "0x1fc514", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc4d0" + }, + { + "manual": true, + "start": "0x1fc520", + "end": "0x1fc561", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc520" + }, + { + "manual": true, + "start": "0x1fc570", + "end": "0x1fc5b1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc570" + }, + { + "manual": true, + "start": "0x1fc5c0", + "end": "0x1fc601", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc5c0" + }, + { + "manual": true, + "start": "0x1fc610", + "end": "0x1fc670", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc610" + }, + { + "manual": true, + "start": "0x1fc680", + "end": "0x1fc6ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc680" + }, + { + "manual": true, + "start": "0x1fc6c0", + "end": "0x1fc720", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc6c0" + }, + { + "manual": true, + "start": "0x1fc730", + "end": "0x1fc77d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc730" + }, + { + "manual": true, + "start": "0x1fc780", + "end": "0x1fc824", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc780" + }, + { + "manual": true, + "start": "0x1fc830", + "end": "0x1fc884", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc830" + }, + { + "manual": true, + "start": "0x1fc890", + "end": "0x1fc8d1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc890" + }, + { + "manual": true, + "start": "0x1fc8e0", + "end": "0x1fc91f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc8e0" + }, + { + "manual": true, + "start": "0x1fc920", + "end": "0x1fc95f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fc920" + }, + { + "manual": true, + "start": "0x1fcc10", + "end": "0x1fcc58", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fcc10" + }, + { + "manual": true, + "start": "0x1fd550", + "end": "0x1fd5b7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1fd550" + }, + { + "manual": true, + "start": "0x1ff080", + "end": "0x1ff092", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff080" + }, + { + "manual": true, + "start": "0x1ff0a0", + "end": "0x1ff0c5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff0a0" + }, + { + "manual": true, + "start": "0x1ff0d0", + "end": "0x1ff0e5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff0d0" + }, + { + "manual": true, + "start": "0x1ff0f0", + "end": "0x1ff115", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff0f0" + }, + { + "manual": true, + "start": "0x1ff120", + "end": "0x1ff135", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff120" + }, + { + "manual": true, + "start": "0x1ff140", + "end": "0x1ff165", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff140" + }, + { + "manual": true, + "start": "0x1ff170", + "end": "0x1ff185", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff170" + }, + { + "manual": true, + "start": "0x1ff190", + "end": "0x1ff1b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff190" + }, + { + "manual": true, + "start": "0x1ff1c0", + "end": "0x1ff1d5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff1c0" + }, + { + "manual": true, + "start": "0x1ff1e0", + "end": "0x1ff20b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff1e0" + }, + { + "manual": true, + "start": "0x1ff210", + "end": "0x1ff225", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff210" + }, + { + "manual": true, + "start": "0x1ff230", + "end": "0x1ff25b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff230" + }, + { + "manual": true, + "start": "0x1ff260", + "end": "0x1ff2b6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff260" + }, + { + "manual": true, + "start": "0x1ff2c0", + "end": "0x1ff31a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x1ff2c0" + }, + { + "manual": true, + "start": "0x2017e0", + "end": "0x201837", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2017e0" + }, + { + "manual": true, + "start": "0x201840", + "end": "0x201897", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x201840" + }, + { + "manual": true, + "start": "0x2018a0", + "end": "0x2018a8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2018a0" + }, + { + "manual": true, + "start": "0x2018b0", + "end": "0x2018b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2018b0" + }, + { + "manual": true, + "start": "0x2039b0", + "end": "0x203a0e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2039b0" + }, + { + "manual": true, + "start": "0x204c80", + "end": "0x204cd2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x204c80" + }, + { + "manual": true, + "start": "0x204ce0", + "end": "0x204d09", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x204ce0" + }, + { + "manual": true, + "start": "0x204d10", + "end": "0x204d39", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x204d10" + }, + { + "manual": true, + "start": "0x2081f0", + "end": "0x208229", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2081f0" + }, + { + "manual": true, + "start": "0x208230", + "end": "0x208265", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x208230" + }, + { + "manual": true, + "start": "0x208270", + "end": "0x2082b5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x208270" + }, + { + "manual": true, + "start": "0x2082c0", + "end": "0x208363", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2082c0" + }, + { + "manual": true, + "start": "0x208560", + "end": "0x20857d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x208560" + }, + { + "manual": true, + "start": "0x208580", + "end": "0x2085c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x208580" + }, + { + "manual": true, + "start": "0x208690", + "end": "0x20875f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x208690" + }, + { + "manual": true, + "start": "0x208760", + "end": "0x208879", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x208760" + }, + { + "manual": true, + "start": "0x20a450", + "end": "0x20a489", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20a450" + }, + { + "manual": true, + "start": "0x20a490", + "end": "0x20a509", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20a490" + }, + { + "manual": true, + "start": "0x20a510", + "end": "0x20a5cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20a510" + }, + { + "manual": true, + "start": "0x20c2a0", + "end": "0x20c341", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c2a0" + }, + { + "manual": true, + "start": "0x20c350", + "end": "0x20c3c4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c350" + }, + { + "manual": true, + "start": "0x20c3d0", + "end": "0x20c4a2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c3d0" + }, + { + "manual": true, + "start": "0x20c4b0", + "end": "0x20c541", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c4b0" + }, + { + "manual": true, + "start": "0x20c550", + "end": "0x20c6e8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c550" + }, + { + "manual": true, + "start": "0x20c6f0", + "end": "0x20c76e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c6f0" + }, + { + "manual": true, + "start": "0x20c770", + "end": "0x20c80f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c770" + }, + { + "manual": true, + "start": "0x20c810", + "end": "0x20c89e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c810" + }, + { + "manual": true, + "start": "0x20c8a0", + "end": "0x20c915", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c8a0" + }, + { + "manual": true, + "start": "0x20c920", + "end": "0x20c997", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c920" + }, + { + "manual": true, + "start": "0x20c9a0", + "end": "0x20ca17", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20c9a0" + }, + { + "manual": true, + "start": "0x20ca20", + "end": "0x20ca93", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20ca20" + }, + { + "manual": true, + "start": "0x20caa0", + "end": "0x20cb1c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20caa0" + }, + { + "manual": true, + "start": "0x20cb20", + "end": "0x20cb97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20cb20" + }, + { + "manual": true, + "start": "0x20cba0", + "end": "0x20cc28", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20cba0" + }, + { + "manual": true, + "start": "0x20cc30", + "end": "0x20cd43", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20cc30" + }, + { + "manual": true, + "start": "0x20cd50", + "end": "0x20ce1f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20cd50" + }, + { + "manual": true, + "start": "0x20ce20", + "end": "0x20cf14", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20ce20" + }, + { + "manual": true, + "start": "0x20cf20", + "end": "0x20cfa3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20cf20" + }, + { + "manual": true, + "start": "0x20cfb0", + "end": "0x20d090", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20cfb0" + }, + { + "manual": true, + "start": "0x20d0a0", + "end": "0x20d27a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d0a0" + }, + { + "manual": true, + "start": "0x20d280", + "end": "0x20d327", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d280" + }, + { + "manual": true, + "start": "0x20d330", + "end": "0x20d3ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d330" + }, + { + "manual": true, + "start": "0x20d3d0", + "end": "0x20d52d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d3d0" + }, + { + "manual": true, + "start": "0x20d530", + "end": "0x20d68d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d530" + }, + { + "manual": true, + "start": "0x20d690", + "end": "0x20d72f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d690" + }, + { + "manual": true, + "start": "0x20d730", + "end": "0x20d7cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d730" + }, + { + "manual": true, + "start": "0x20d7d0", + "end": "0x20d852", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d7d0" + }, + { + "manual": true, + "start": "0x20d860", + "end": "0x20d8e3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d860" + }, + { + "manual": true, + "start": "0x20d8f0", + "end": "0x20d960", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d8f0" + }, + { + "manual": true, + "start": "0x20d970", + "end": "0x20d9f2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20d970" + }, + { + "manual": true, + "start": "0x20da00", + "end": "0x20db10", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20da00" + }, + { + "manual": true, + "start": "0x20db20", + "end": "0x20db7b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20db20" + }, + { + "manual": true, + "start": "0x20db80", + "end": "0x20dbe1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20db80" + }, + { + "manual": true, + "start": "0x20dbf0", + "end": "0x20dc68", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20dbf0" + }, + { + "manual": true, + "start": "0x20dc70", + "end": "0x20dd3b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20dc70" + }, + { + "manual": true, + "start": "0x20dd40", + "end": "0x20dda0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20dd40" + }, + { + "manual": true, + "start": "0x20ddb0", + "end": "0x20de6e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20ddb0" + }, + { + "manual": true, + "start": "0x20de70", + "end": "0x20df29", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20de70" + }, + { + "manual": true, + "start": "0x20df30", + "end": "0x20df8e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20df30" + }, + { + "manual": true, + "start": "0x20df90", + "end": "0x20dfee", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20df90" + }, + { + "manual": true, + "start": "0x20dff0", + "end": "0x20e066", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20dff0" + }, + { + "manual": true, + "start": "0x20e070", + "end": "0x20e0ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e070" + }, + { + "manual": true, + "start": "0x20e0d0", + "end": "0x20e12e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e0d0" + }, + { + "manual": true, + "start": "0x20e130", + "end": "0x20e1af", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e130" + }, + { + "manual": true, + "start": "0x20e1b0", + "end": "0x20e22f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e1b0" + }, + { + "manual": true, + "start": "0x20e230", + "end": "0x20e28e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e230" + }, + { + "manual": true, + "start": "0x20e290", + "end": "0x20e30d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e290" + }, + { + "manual": true, + "start": "0x20e310", + "end": "0x20e3a7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e310" + }, + { + "manual": true, + "start": "0x20e3b0", + "end": "0x20e40e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e3b0" + }, + { + "manual": true, + "start": "0x20e410", + "end": "0x20e46e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e410" + }, + { + "manual": true, + "start": "0x20e470", + "end": "0x20e4db", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e470" + }, + { + "manual": true, + "start": "0x20e4e0", + "end": "0x20e55f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e4e0" + }, + { + "manual": true, + "start": "0x20e560", + "end": "0x20e625", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e560" + }, + { + "manual": true, + "start": "0x20e630", + "end": "0x20e730", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e630" + }, + { + "manual": true, + "start": "0x20e740", + "end": "0x20e993", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e740" + }, + { + "manual": true, + "start": "0x20e9a0", + "end": "0x20ea52", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20e9a0" + }, + { + "manual": true, + "start": "0x20ea60", + "end": "0x20eada", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20ea60" + }, + { + "manual": true, + "start": "0x20eae0", + "end": "0x20eb5a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20eae0" + }, + { + "manual": true, + "start": "0x20eb60", + "end": "0x20ec56", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20eb60" + }, + { + "manual": true, + "start": "0x20ec60", + "end": "0x20ed36", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20ec60" + }, + { + "manual": true, + "start": "0x20ed40", + "end": "0x20ef3a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20ed40" + }, + { + "manual": true, + "start": "0x20ef40", + "end": "0x20f0f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20ef40" + }, + { + "manual": true, + "start": "0x20f100", + "end": "0x20f34e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20f100" + }, + { + "manual": true, + "start": "0x20f350", + "end": "0x20f3cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20f350" + }, + { + "manual": true, + "start": "0x20f3d0", + "end": "0x20f479", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20f3d0" + }, + { + "manual": true, + "start": "0x20f480", + "end": "0x20f573", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20f480" + }, + { + "manual": true, + "start": "0x20f580", + "end": "0x20f674", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20f580" + }, + { + "manual": true, + "start": "0x20f680", + "end": "0x20f782", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20f680" + }, + { + "manual": true, + "start": "0x20f790", + "end": "0x20f85b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20f790" + }, + { + "manual": true, + "start": "0x20f860", + "end": "0x20f8dd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20f860" + }, + { + "manual": true, + "start": "0x20f8e0", + "end": "0x20f9d7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20f8e0" + }, + { + "manual": true, + "start": "0x20f9e0", + "end": "0x20fb90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20f9e0" + }, + { + "manual": true, + "start": "0x20fba0", + "end": "0x20fc38", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20fba0" + }, + { + "manual": true, + "start": "0x20fc40", + "end": "0x20fcb4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20fc40" + }, + { + "manual": true, + "start": "0x20fcc0", + "end": "0x20fd34", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20fcc0" + }, + { + "manual": true, + "start": "0x20fd40", + "end": "0x20febb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20fd40" + }, + { + "manual": true, + "start": "0x20fec0", + "end": "0x21003b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x20fec0" + }, + { + "manual": true, + "start": "0x210040", + "end": "0x210197", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210040" + }, + { + "manual": true, + "start": "0x2101a0", + "end": "0x2102f0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2101a0" + }, + { + "manual": true, + "start": "0x210300", + "end": "0x210440", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210300" + }, + { + "manual": true, + "start": "0x210450", + "end": "0x21054a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210450" + }, + { + "manual": true, + "start": "0x210550", + "end": "0x2107c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210550" + }, + { + "manual": true, + "start": "0x2107d0", + "end": "0x21085c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2107d0" + }, + { + "manual": true, + "start": "0x210860", + "end": "0x2109f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210860" + }, + { + "manual": true, + "start": "0x210a00", + "end": "0x210b58", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210a00" + }, + { + "manual": true, + "start": "0x210b60", + "end": "0x210c92", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210b60" + }, + { + "manual": true, + "start": "0x210ca0", + "end": "0x210dd2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210ca0" + }, + { + "manual": true, + "start": "0x210de0", + "end": "0x210eb3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210de0" + }, + { + "manual": true, + "start": "0x210ec0", + "end": "0x210fa5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210ec0" + }, + { + "manual": true, + "start": "0x210fb0", + "end": "0x211091", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x210fb0" + }, + { + "manual": true, + "start": "0x211130", + "end": "0x2111a8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211130" + }, + { + "manual": true, + "start": "0x2111b0", + "end": "0x211228", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2111b0" + }, + { + "manual": true, + "start": "0x211230", + "end": "0x2112a8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211230" + }, + { + "manual": true, + "start": "0x2112b0", + "end": "0x211326", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2112b0" + }, + { + "manual": true, + "start": "0x211330", + "end": "0x2113d8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211330" + }, + { + "manual": true, + "start": "0x2113e0", + "end": "0x2115f8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2113e0" + }, + { + "manual": true, + "start": "0x211600", + "end": "0x21166d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211600" + }, + { + "manual": true, + "start": "0x211670", + "end": "0x211778", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211670" + }, + { + "manual": true, + "start": "0x211780", + "end": "0x211811", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211780" + }, + { + "manual": true, + "start": "0x211820", + "end": "0x2118b1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211820" + }, + { + "manual": true, + "start": "0x2118c0", + "end": "0x211a1b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2118c0" + }, + { + "manual": true, + "start": "0x211a20", + "end": "0x211aca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211a20" + }, + { + "manual": true, + "start": "0x211ad0", + "end": "0x211b7a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211ad0" + }, + { + "manual": true, + "start": "0x211b80", + "end": "0x211c37", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211b80" + }, + { + "manual": true, + "start": "0x211c40", + "end": "0x211ca1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211c40" + }, + { + "manual": true, + "start": "0x211cb0", + "end": "0x211de8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211cb0" + }, + { + "manual": true, + "start": "0x211df0", + "end": "0x212089", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x211df0" + }, + { + "manual": true, + "start": "0x212090", + "end": "0x21225f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212090" + }, + { + "manual": true, + "start": "0x212260", + "end": "0x2122f3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212260" + }, + { + "manual": true, + "start": "0x212300", + "end": "0x21235a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212300" + }, + { + "manual": true, + "start": "0x212360", + "end": "0x2123ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212360" + }, + { + "manual": true, + "start": "0x2123c0", + "end": "0x212420", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2123c0" + }, + { + "manual": true, + "start": "0x212430", + "end": "0x212496", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212430" + }, + { + "manual": true, + "start": "0x2124a0", + "end": "0x2124fb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2124a0" + }, + { + "manual": true, + "start": "0x212500", + "end": "0x212591", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212500" + }, + { + "manual": true, + "start": "0x2125a0", + "end": "0x212604", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2125a0" + }, + { + "manual": true, + "start": "0x212610", + "end": "0x21266e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212610" + }, + { + "manual": true, + "start": "0x212670", + "end": "0x2127e5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212670" + }, + { + "manual": true, + "start": "0x2127f0", + "end": "0x21286f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2127f0" + }, + { + "manual": true, + "start": "0x212870", + "end": "0x2128fa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212870" + }, + { + "manual": true, + "start": "0x212900", + "end": "0x21297f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212900" + }, + { + "manual": true, + "start": "0x212980", + "end": "0x2129ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212980" + }, + { + "manual": true, + "start": "0x212a00", + "end": "0x212a85", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212a00" + }, + { + "manual": true, + "start": "0x212a90", + "end": "0x212b37", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212a90" + }, + { + "manual": true, + "start": "0x212b40", + "end": "0x212be5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212b40" + }, + { + "manual": true, + "start": "0x212bf0", + "end": "0x212ca3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212bf0" + }, + { + "manual": true, + "start": "0x212cb0", + "end": "0x212d4a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212cb0" + }, + { + "manual": true, + "start": "0x212d50", + "end": "0x212e16", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212d50" + }, + { + "manual": true, + "start": "0x212e20", + "end": "0x212f07", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212e20" + }, + { + "manual": true, + "start": "0x212f10", + "end": "0x21301f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x212f10" + }, + { + "manual": true, + "start": "0x213020", + "end": "0x21313d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213020" + }, + { + "manual": true, + "start": "0x213140", + "end": "0x2131da", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213140" + }, + { + "manual": true, + "start": "0x2131e0", + "end": "0x213206", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2131e0" + }, + { + "manual": true, + "start": "0x213290", + "end": "0x21332a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213290" + }, + { + "manual": true, + "start": "0x213330", + "end": "0x2133ca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213330" + }, + { + "manual": true, + "start": "0x2133d0", + "end": "0x21349d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2133d0" + }, + { + "manual": true, + "start": "0x2134a0", + "end": "0x21356d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2134a0" + }, + { + "manual": true, + "start": "0x213570", + "end": "0x2135fd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213570" + }, + { + "manual": true, + "start": "0x213700", + "end": "0x21373f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213700" + }, + { + "manual": true, + "start": "0x213740", + "end": "0x21377f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213740" + }, + { + "manual": true, + "start": "0x213780", + "end": "0x2137c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213780" + }, + { + "manual": true, + "start": "0x2137d0", + "end": "0x213821", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2137d0" + }, + { + "manual": true, + "start": "0x213830", + "end": "0x2138bb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213830" + }, + { + "manual": true, + "start": "0x2138c0", + "end": "0x2139a5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2138c0" + }, + { + "manual": true, + "start": "0x2139b0", + "end": "0x213a5b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2139b0" + }, + { + "manual": true, + "start": "0x213a60", + "end": "0x213b30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213a60" + }, + { + "manual": true, + "start": "0x213b40", + "end": "0x213c84", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213b40" + }, + { + "manual": true, + "start": "0x213c90", + "end": "0x213d1b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213c90" + }, + { + "manual": true, + "start": "0x213d20", + "end": "0x213e0e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213d20" + }, + { + "manual": true, + "start": "0x213e10", + "end": "0x213ecc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213e10" + }, + { + "manual": true, + "start": "0x213ed0", + "end": "0x213f8b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213ed0" + }, + { + "manual": true, + "start": "0x213f90", + "end": "0x214139", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x213f90" + }, + { + "manual": true, + "start": "0x214140", + "end": "0x214186", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x214140" + }, + { + "manual": true, + "start": "0x214ca0", + "end": "0x214cee", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x214ca0" + }, + { + "manual": true, + "start": "0x214cf0", + "end": "0x214d3e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x214cf0" + }, + { + "manual": true, + "start": "0x214d40", + "end": "0x214d82", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x214d40" + }, + { + "manual": true, + "start": "0x214e60", + "end": "0x214eed", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x214e60" + }, + { + "manual": true, + "start": "0x214ef0", + "end": "0x214fc5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x214ef0" + }, + { + "manual": true, + "start": "0x2160b0", + "end": "0x216210", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2160b0" + }, + { + "manual": true, + "start": "0x2162c0", + "end": "0x2163ac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2162c0" + }, + { + "manual": true, + "start": "0x2163b0", + "end": "0x2164a4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2163b0" + }, + { + "manual": true, + "start": "0x216800", + "end": "0x21682d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x216800" + }, + { + "manual": true, + "start": "0x216ad0", + "end": "0x216ae7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x216ad0" + }, + { + "manual": true, + "start": "0x232050", + "end": "0x232050", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x232050" + }, + { + "manual": true, + "start": "0x253a10", + "end": "0x253a10", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x253a10" + }, + { + "manual": true, + "start": "0x281290", + "end": "0x281300", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x281290" + }, + { + "manual": true, + "start": "0x2813b0", + "end": "0x2813cc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2813b0" + }, + { + "manual": true, + "start": "0x2813d0", + "end": "0x2813eb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2813d0" + }, + { + "manual": true, + "start": "0x2817e0", + "end": "0x2817f4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2817e0" + }, + { + "manual": true, + "start": "0x281ab0", + "end": "0x281afa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x281ab0" + }, + { + "manual": true, + "start": "0x281b00", + "end": "0x281b00", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x281b00" + }, + { + "manual": true, + "start": "0x281be0", + "end": "0x281caa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x281be0" + }, + { + "manual": true, + "start": "0x281cb0", + "end": "0x281d86", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x281cb0" + }, + { + "manual": true, + "start": "0x282340", + "end": "0x28239d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x282340" + }, + { + "manual": true, + "start": "0x282400", + "end": "0x282780", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x282400" + }, + { + "manual": true, + "start": "0x2828c0", + "end": "0x2828fd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2828c0" + }, + { + "manual": true, + "start": "0x282a00", + "end": "0x282a32", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x282a00" + }, + { + "manual": true, + "start": "0x282cb0", + "end": "0x282cca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x282cb0" + }, + { + "manual": true, + "start": "0x282d00", + "end": "0x282d0f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x282d00" + }, + { + "manual": true, + "start": "0x282d20", + "end": "0x282d26", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x282d20" + }, + { + "manual": true, + "start": "0x282d40", + "end": "0x282d47", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x282d40" + }, + { + "manual": true, + "start": "0x282d70", + "end": "0x282d75", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x282d70" + }, + { + "manual": true, + "start": "0x282e50", + "end": "0x282e65", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x282e50" + }, + { + "manual": true, + "start": "0x282f40", + "end": "0x282f65", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x282f40" + }, + { + "manual": true, + "start": "0x283080", + "end": "0x2830a3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283080" + }, + { + "manual": true, + "start": "0x2830b0", + "end": "0x2830f8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2830b0" + }, + { + "manual": true, + "start": "0x283100", + "end": "0x283120", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283100" + }, + { + "manual": true, + "start": "0x283130", + "end": "0x283141", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283130" + }, + { + "manual": true, + "start": "0x283150", + "end": "0x283170", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283150" + }, + { + "manual": true, + "start": "0x283180", + "end": "0x28319f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283180" + }, + { + "manual": true, + "start": "0x2833a0", + "end": "0x2833dc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2833a0" + }, + { + "manual": true, + "start": "0x2833e0", + "end": "0x283553", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2833e0" + }, + { + "manual": true, + "start": "0x283560", + "end": "0x283576", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283560" + }, + { + "manual": true, + "start": "0x283580", + "end": "0x2835d5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283580" + }, + { + "manual": true, + "start": "0x2835e0", + "end": "0x283601", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2835e0" + }, + { + "manual": true, + "start": "0x283610", + "end": "0x283631", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283610" + }, + { + "manual": true, + "start": "0x283640", + "end": "0x28364f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283640" + }, + { + "manual": true, + "start": "0x283650", + "end": "0x283656", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283650" + }, + { + "manual": true, + "start": "0x283660", + "end": "0x28366f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x283660" + }, + { + "manual": true, + "start": "0x2840f0", + "end": "0x28416b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2840f0" + }, + { + "manual": true, + "start": "0x284190", + "end": "0x2841ae", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284190" + }, + { + "manual": true, + "start": "0x284360", + "end": "0x2843af", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284360" + }, + { + "manual": true, + "start": "0x284440", + "end": "0x2844b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284440" + }, + { + "manual": true, + "start": "0x2847d0", + "end": "0x284842", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2847d0" + }, + { + "manual": true, + "start": "0x284850", + "end": "0x28489e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284850" + }, + { + "manual": true, + "start": "0x2848a0", + "end": "0x2848ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2848a0" + }, + { + "manual": true, + "start": "0x284900", + "end": "0x28492c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284900" + }, + { + "manual": true, + "start": "0x284970", + "end": "0x284ac7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284970" + }, + { + "manual": true, + "start": "0x284ad0", + "end": "0x284b49", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284ad0" + }, + { + "manual": true, + "start": "0x284b50", + "end": "0x284b98", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284b50" + }, + { + "manual": true, + "start": "0x284c20", + "end": "0x284c3d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284c20" + }, + { + "manual": true, + "start": "0x284c40", + "end": "0x284d06", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284c40" + }, + { + "manual": true, + "start": "0x284d10", + "end": "0x284d6b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x284d10" + }, + { + "manual": true, + "start": "0x285970", + "end": "0x2859da", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x285970" + }, + { + "manual": true, + "start": "0x2859e0", + "end": "0x285a64", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2859e0" + }, + { + "manual": true, + "start": "0x2859e0", + "end": "0x285a64", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2859e0" + }, + { + "manual": true, + "start": "0x285a70", + "end": "0x285b4d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x285a70" + }, + { + "manual": true, + "start": "0x285b50", + "end": "0x285bfd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x285b50" + }, + { + "manual": true, + "start": "0x285c60", + "end": "0x285cca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x285c60" + }, + { + "manual": true, + "start": "0x285eb0", + "end": "0x285f32", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x285eb0" + }, + { + "manual": true, + "start": "0x285f50", + "end": "0x285faf", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x285f50" + }, + { + "manual": true, + "start": "0x285fb0", + "end": "0x286115", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x285fb0" + }, + { + "manual": true, + "start": "0x287660", + "end": "0x2876c8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x287660" + }, + { + "manual": true, + "start": "0x2876d0", + "end": "0x28773e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2876d0" + }, + { + "manual": true, + "start": "0x287a90", + "end": "0x287fc9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x287a90" + }, + { + "manual": true, + "start": "0x288340", + "end": "0x288371", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x288340" + }, + { + "manual": true, + "start": "0x288690", + "end": "0x28903e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x288690" + }, + { + "manual": true, + "start": "0x2897c0", + "end": "0x289a48", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2897c0" + }, + { + "manual": true, + "start": "0x289a50", + "end": "0x289a6e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x289a50" + }, + { + "manual": true, + "start": "0x289ef0", + "end": "0x289f13", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x289ef0" + }, + { + "manual": true, + "start": "0x28bbc0", + "end": "0x28bd14", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28bbc0" + }, + { + "manual": true, + "start": "0x28bf20", + "end": "0x28bf43", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28bf20" + }, + { + "manual": true, + "start": "0x28c220", + "end": "0x28c243", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28c220" + }, + { + "manual": true, + "start": "0x28e180", + "end": "0x28e1e7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28e180" + }, + { + "manual": true, + "start": "0x28e250", + "end": "0x28e447", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28e250" + }, + { + "manual": true, + "start": "0x28e720", + "end": "0x28e741", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28e720" + }, + { + "manual": true, + "start": "0x28e750", + "end": "0x28e7d5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28e750" + }, + { + "manual": true, + "start": "0x28e810", + "end": "0x28e8f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28e810" + }, + { + "manual": true, + "start": "0x28e900", + "end": "0x28e974", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28e900" + }, + { + "manual": true, + "start": "0x28ebb0", + "end": "0x28ed77", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28ebb0" + }, + { + "manual": true, + "start": "0x28ed80", + "end": "0x28ee12", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28ed80" + }, + { + "manual": true, + "start": "0x28ee20", + "end": "0x28f36c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28ee20" + }, + { + "manual": true, + "start": "0x28f3d0", + "end": "0x28f691", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28f3d0" + }, + { + "manual": true, + "start": "0x28fa60", + "end": "0x28fadb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28fa60" + }, + { + "manual": true, + "start": "0x28fae0", + "end": "0x28fb06", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28fae0" + }, + { + "manual": true, + "start": "0x28fb10", + "end": "0x28fcdb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28fb10" + }, + { + "manual": true, + "start": "0x28fce0", + "end": "0x28fcfd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28fce0" + }, + { + "manual": true, + "start": "0x28fd00", + "end": "0x28fd48", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28fd00" + }, + { + "manual": true, + "start": "0x28fd50", + "end": "0x28fe7f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x28fd50" + }, + { + "manual": true, + "start": "0x290230", + "end": "0x29038c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x290230" + }, + { + "manual": true, + "start": "0x2904d0", + "end": "0x2905e7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2904d0" + }, + { + "manual": true, + "start": "0x290680", + "end": "0x290741", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x290680" + }, + { + "manual": true, + "start": "0x290750", + "end": "0x290820", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x290750" + }, + { + "manual": true, + "start": "0x29fb00", + "end": "0x29fb67", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x29fb00" + }, + { + "manual": true, + "start": "0x29fb70", + "end": "0x29fbb7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x29fb70" + }, + { + "manual": true, + "start": "0x2a00c0", + "end": "0x2a0101", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a00c0" + }, + { + "manual": true, + "start": "0x2a0360", + "end": "0x2a0833", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a0360" + }, + { + "manual": true, + "start": "0x2a1a90", + "end": "0x2a1c23", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a1a90" + }, + { + "manual": true, + "start": "0x2a2c00", + "end": "0x2a2d7d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a2c00" + }, + { + "manual": true, + "start": "0x2a2d80", + "end": "0x2a3061", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a2d80" + }, + { + "manual": true, + "start": "0x2a3070", + "end": "0x2a30ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a3070" + }, + { + "manual": true, + "start": "0x2a3350", + "end": "0x2a3416", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a3350" + }, + { + "manual": true, + "start": "0x2a3420", + "end": "0x2a3448", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a3420" + }, + { + "manual": true, + "start": "0x2a3450", + "end": "0x2a3610", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a3450" + }, + { + "manual": true, + "start": "0x2a3620", + "end": "0x2a3715", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a3620" + }, + { + "manual": true, + "start": "0x2a3810", + "end": "0x2a386d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a3810" + }, + { + "manual": true, + "start": "0x2a39e0", + "end": "0x2a3a58", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a39e0" + }, + { + "manual": true, + "start": "0x2a3a60", + "end": "0x2a3c33", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a3a60" + }, + { + "manual": true, + "start": "0x2a3c40", + "end": "0x2a40f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a3c40" + }, + { + "manual": true, + "start": "0x2a4190", + "end": "0x2a41eb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a4190" + }, + { + "manual": true, + "start": "0x2a41f0", + "end": "0x2a424b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a41f0" + }, + { + "manual": true, + "start": "0x2a4700", + "end": "0x2a4845", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a4700" + }, + { + "manual": true, + "start": "0x2a4850", + "end": "0x2a48fd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a4850" + }, + { + "manual": true, + "start": "0x2a4900", + "end": "0x2a4ab2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a4900" + }, + { + "manual": true, + "start": "0x2a4c30", + "end": "0x2a5498", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a4c30" + }, + { + "manual": true, + "start": "0x2a5540", + "end": "0x2a5676", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a5540" + }, + { + "manual": true, + "start": "0x2a5700", + "end": "0x2a5933", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a5700" + }, + { + "manual": true, + "start": "0x2a5940", + "end": "0x2a59f4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a5940" + }, + { + "manual": true, + "start": "0x2a5a00", + "end": "0x2a5a24", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a5a00" + }, + { + "manual": true, + "start": "0x2a5a30", + "end": "0x2a5a91", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a5a30" + }, + { + "manual": true, + "start": "0x2a5c70", + "end": "0x2a5d47", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a5c70" + }, + { + "manual": true, + "start": "0x2a5e10", + "end": "0x2a5e35", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a5e10" + }, + { + "manual": true, + "start": "0x2a5ef0", + "end": "0x2a5fde", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a5ef0" + }, + { + "manual": true, + "start": "0x2a74b0", + "end": "0x2a7537", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a74b0" + }, + { + "manual": true, + "start": "0x2a9920", + "end": "0x2a99d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a9920" + }, + { + "manual": true, + "start": "0x2a9b40", + "end": "0x2a9d87", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a9b40" + }, + { + "manual": true, + "start": "0x2a9e00", + "end": "0x2a9e08", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a9e00" + }, + { + "manual": true, + "start": "0x2a9fe0", + "end": "0x2aa06c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2a9fe0" + }, + { + "manual": true, + "start": "0x2aa070", + "end": "0x2aa0c4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa070" + }, + { + "manual": true, + "start": "0x2aa0d0", + "end": "0x2aa124", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa0d0" + }, + { + "manual": true, + "start": "0x2aa130", + "end": "0x2aa189", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa130" + }, + { + "manual": true, + "start": "0x2aa2f0", + "end": "0x2aa345", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa2f0" + }, + { + "manual": true, + "start": "0x2aa350", + "end": "0x2aa378", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa350" + }, + { + "manual": true, + "start": "0x2aa380", + "end": "0x2aa3af", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa380" + }, + { + "manual": true, + "start": "0x2aa3b0", + "end": "0x2aa3df", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa3b0" + }, + { + "manual": true, + "start": "0x2aa3e0", + "end": "0x2aa41a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa3e0" + }, + { + "manual": true, + "start": "0x2aa420", + "end": "0x2aa51d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa420" + }, + { + "manual": true, + "start": "0x2aa520", + "end": "0x2aa62e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa520" + }, + { + "manual": true, + "start": "0x2aa630", + "end": "0x2aa6f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa630" + }, + { + "manual": true, + "start": "0x2aa700", + "end": "0x2aa81c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa700" + }, + { + "manual": true, + "start": "0x2aa840", + "end": "0x2aa866", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa840" + }, + { + "manual": true, + "start": "0x2aa870", + "end": "0x2aa947", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aa870" + }, + { + "manual": true, + "start": "0x2aaf40", + "end": "0x2aafa4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aaf40" + }, + { + "manual": true, + "start": "0x2aafb0", + "end": "0x2ab0d3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aafb0" + }, + { + "manual": true, + "start": "0x2ab0e0", + "end": "0x2ab211", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab0e0" + }, + { + "manual": true, + "start": "0x2ab220", + "end": "0x2ab380", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab220" + }, + { + "manual": true, + "start": "0x2ab390", + "end": "0x2ab446", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab390" + }, + { + "manual": true, + "start": "0x2ab450", + "end": "0x2ab4a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab450" + }, + { + "manual": true, + "start": "0x2ab4b0", + "end": "0x2ab5b7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab4b0" + }, + { + "manual": true, + "start": "0x2ab5c0", + "end": "0x2ab613", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab5c0" + }, + { + "manual": true, + "start": "0x2ab620", + "end": "0x2ab6b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab620" + }, + { + "manual": true, + "start": "0x2ab700", + "end": "0x2ab75b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab700" + }, + { + "manual": true, + "start": "0x2ab760", + "end": "0x2ab7de", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab760" + }, + { + "manual": true, + "start": "0x2ab810", + "end": "0x2ab85d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab810" + }, + { + "manual": true, + "start": "0x2ab860", + "end": "0x2abaae", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ab860" + }, + { + "manual": true, + "start": "0x2ae8b0", + "end": "0x2ae8d9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ae8b0" + }, + { + "manual": true, + "start": "0x2ae900", + "end": "0x2ae98f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ae900" + }, + { + "manual": true, + "start": "0x2ae990", + "end": "0x2ae9d5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ae990" + }, + { + "manual": true, + "start": "0x2ae9e0", + "end": "0x2aeb92", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2ae9e0" + }, + { + "manual": true, + "start": "0x2aeba0", + "end": "0x2aee60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aeba0" + }, + { + "manual": true, + "start": "0x2aee70", + "end": "0x2af132", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aee70" + }, + { + "manual": true, + "start": "0x2af140", + "end": "0x2af33e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2af140" + }, + { + "manual": true, + "start": "0x2af340", + "end": "0x2af65c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2af340" + }, + { + "manual": true, + "start": "0x2af6a0", + "end": "0x2af6d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2af6a0" + }, + { + "manual": true, + "start": "0x2af730", + "end": "0x2af7e8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2af730" + }, + { + "manual": true, + "start": "0x2af810", + "end": "0x2af983", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2af810" + }, + { + "manual": true, + "start": "0x2afce0", + "end": "0x2aff05", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2afce0" + }, + { + "manual": true, + "start": "0x2aff10", + "end": "0x2affce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2aff10" + }, + { + "manual": true, + "start": "0x2affd0", + "end": "0x2b012d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2affd0" + }, + { + "manual": true, + "start": "0x2b0960", + "end": "0x2b0960", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b0960" + }, + { + "manual": true, + "start": "0x2b1b80", + "end": "0x2b1b80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b1b80" + }, + { + "manual": true, + "start": "0x2b1b90", + "end": "0x2b1b90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b1b90" + }, + { + "manual": true, + "start": "0x2b1ba0", + "end": "0x2b1ba0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b1ba0" + }, + { + "manual": true, + "start": "0x2b33d0", + "end": "0x2b3427", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b33d0" + }, + { + "manual": true, + "start": "0x2b3430", + "end": "0x2b344b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b3430" + }, + { + "manual": true, + "start": "0x2b4060", + "end": "0x2b412a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4060" + }, + { + "manual": true, + "start": "0x2b4130", + "end": "0x2b43f2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4130" + }, + { + "manual": true, + "start": "0x2b4400", + "end": "0x2b44a7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4400" + }, + { + "manual": true, + "start": "0x2b44b0", + "end": "0x2b44e2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b44b0" + }, + { + "manual": true, + "start": "0x2b44f0", + "end": "0x2b455e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b44f0" + }, + { + "manual": true, + "start": "0x2b4560", + "end": "0x2b45ba", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4560" + }, + { + "manual": true, + "start": "0x2b45c0", + "end": "0x2b461a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b45c0" + }, + { + "manual": true, + "start": "0x2b4620", + "end": "0x2b4758", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4620" + }, + { + "manual": true, + "start": "0x2b4760", + "end": "0x2b4898", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4760" + }, + { + "manual": true, + "start": "0x2b48a0", + "end": "0x2b4942", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b48a0" + }, + { + "manual": true, + "start": "0x2b4950", + "end": "0x2b49f2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4950" + }, + { + "manual": true, + "start": "0x2b4a00", + "end": "0x2b4a32", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4a00" + }, + { + "manual": true, + "start": "0x2b4a40", + "end": "0x2b4a72", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4a40" + }, + { + "manual": true, + "start": "0x2b4a80", + "end": "0x2b4c7c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4a80" + }, + { + "manual": true, + "start": "0x2b4eb0", + "end": "0x2b4ed9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b4eb0" + }, + { + "manual": true, + "start": "0x2b6af0", + "end": "0x2b6b43", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b6af0" + }, + { + "manual": true, + "start": "0x2b6b50", + "end": "0x2b6b9f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b6b50" + }, + { + "manual": true, + "start": "0x2b6ba0", + "end": "0x2b6bca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b6ba0" + }, + { + "manual": true, + "start": "0x2b6bd0", + "end": "0x2b6bfa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b6bd0" + }, + { + "manual": true, + "start": "0x2b6c00", + "end": "0x2b6c2a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b6c00" + }, + { + "manual": true, + "start": "0x2b6c30", + "end": "0x2b6c5a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b6c30" + }, + { + "manual": true, + "start": "0x2b6c60", + "end": "0x2b6ce6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b6c60" + }, + { + "manual": true, + "start": "0x2b6cf0", + "end": "0x2b6d74", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b6cf0" + }, + { + "manual": true, + "start": "0x2b6d80", + "end": "0x2b6e04", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b6d80" + }, + { + "manual": true, + "start": "0x2b7b70", + "end": "0x2b7bc3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b7b70" + }, + { + "manual": true, + "start": "0x2b7bd0", + "end": "0x2b7c89", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b7bd0" + }, + { + "manual": true, + "start": "0x2b7c90", + "end": "0x2b7d6e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b7c90" + }, + { + "manual": true, + "start": "0x2b7d70", + "end": "0x2b7d9a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b7d70" + }, + { + "manual": true, + "start": "0x2b7da0", + "end": "0x2b7dca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2b7da0" + }, + { + "manual": true, + "start": "0x2bce10", + "end": "0x2bce31", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bce10" + }, + { + "manual": true, + "start": "0x2bce40", + "end": "0x2bce51", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bce40" + }, + { + "manual": true, + "start": "0x2bce60", + "end": "0x2bce97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bce60" + }, + { + "manual": true, + "start": "0x2bcea0", + "end": "0x2bcee6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bcea0" + }, + { + "manual": true, + "start": "0x2bd020", + "end": "0x2bd068", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bd020" + }, + { + "manual": true, + "start": "0x2bd0a0", + "end": "0x2bd0bd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bd0a0" + }, + { + "manual": true, + "start": "0x2bd0c0", + "end": "0x2bd0de", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bd0c0" + }, + { + "manual": true, + "start": "0x2bd5a0", + "end": "0x2bd89c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bd5a0" + }, + { + "manual": true, + "start": "0x2bdfc0", + "end": "0x2be013", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bdfc0" + }, + { + "manual": true, + "start": "0x2be020", + "end": "0x2be220", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2be020" + }, + { + "manual": true, + "start": "0x2be2b0", + "end": "0x2be38f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2be2b0" + }, + { + "manual": true, + "start": "0x2be390", + "end": "0x2be3ac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2be390" + }, + { + "manual": true, + "start": "0x2be3b0", + "end": "0x2be3dc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2be3b0" + }, + { + "manual": true, + "start": "0x2be3e0", + "end": "0x2bee86", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2be3e0" + }, + { + "manual": true, + "start": "0x2bf160", + "end": "0x2bf201", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bf160" + }, + { + "manual": true, + "start": "0x2bf370", + "end": "0x2bf4b1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bf370" + }, + { + "manual": true, + "start": "0x2bf6d0", + "end": "0x2bfb5f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bf6d0" + }, + { + "manual": true, + "start": "0x2bfda0", + "end": "0x2bfdfd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bfda0" + }, + { + "manual": true, + "start": "0x2bfe00", + "end": "0x2bfe5b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bfe00" + }, + { + "manual": true, + "start": "0x2bfe60", + "end": "0x2c004c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2bfe60" + }, + { + "manual": true, + "start": "0x2c8cc0", + "end": "0x2c8e6a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x2c8cc0" + }, + { + "manual": true, + "start": "0x343550", + "end": "0x343550", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x343550" + }, + { + "manual": true, + "start": "0x343560", + "end": "0x343560", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x343560" + }, + { + "manual": true, + "start": "0x34d580", + "end": "0x34d5a7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x34d580" + }, + { + "manual": true, + "start": "0x34d5b0", + "end": "0x34d5fc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x34d5b0" + }, + { + "manual": true, + "start": "0x34d600", + "end": "0x34d6a2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x34d600" + }, + { + "manual": true, + "start": "0x34d9e0", + "end": "0x34d9fe", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x34d9e0" + }, + { + "manual": true, + "start": "0x34f2b0", + "end": "0x34f2cb", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x34f2b0" + }, + { + "manual": true, + "start": "0x34fa60", + "end": "0x34fa6c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x34fa60" + }, + { + "manual": true, + "start": "0x34fa70", + "end": "0x34fadc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x34fa70" + }, + { + "manual": true, + "start": "0x34fae0", + "end": "0x34fc1f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x34fae0" + }, + { + "manual": true, + "start": "0x34fc20", + "end": "0x34fd35", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x34fc20" + }, + { + "manual": true, + "start": "0x34ff70", + "end": "0x350205", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x34ff70" + }, + { + "manual": true, + "start": "0x351120", + "end": "0x35114a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x351120" + }, + { + "manual": true, + "start": "0x363730", + "end": "0x3637cc", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x363730" + }, + { + "manual": true, + "start": "0x3637d0", + "end": "0x36382a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3637d0" + }, + { + "manual": true, + "start": "0x363830", + "end": "0x363854", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x363830" + }, + { + "manual": true, + "start": "0x363860", + "end": "0x363995", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x363860" + }, + { + "manual": true, + "start": "0x3639a0", + "end": "0x3639ce", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3639a0" + }, + { + "manual": true, + "start": "0x3639d0", + "end": "0x363a53", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3639d0" + }, + { + "manual": true, + "start": "0x363a60", + "end": "0x363aa9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x363a60" + }, + { + "manual": true, + "start": "0x363b40", + "end": "0x363b82", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x363b40" + }, + { + "manual": true, + "start": "0x363b90", + "end": "0x363bd5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x363b90" + }, + { + "manual": true, + "start": "0x363be0", + "end": "0x363c09", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x363be0" + }, + { + "manual": true, + "start": "0x363c50", + "end": "0x363c5c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x363c50" + }, + { + "manual": true, + "start": "0x363d60", + "end": "0x363d70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x363d60" + }, + { + "manual": true, + "start": "0x363df0", + "end": "0x364038", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x363df0" + }, + { + "manual": true, + "start": "0x364040", + "end": "0x364195", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x364040" + }, + { + "manual": true, + "start": "0x3641a0", + "end": "0x3643e9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3641a0" + }, + { + "manual": true, + "start": "0x3643f0", + "end": "0x364412", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3643f0" + }, + { + "manual": true, + "start": "0x364520", + "end": "0x3645d2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x364520" + }, + { + "manual": true, + "start": "0x3645e0", + "end": "0x364787", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3645e0" + }, + { + "manual": true, + "start": "0x364800", + "end": "0x364984", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x364800" + }, + { + "manual": true, + "start": "0x364990", + "end": "0x364a02", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x364990" + }, + { + "manual": true, + "start": "0x364a10", + "end": "0x364b87", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x364a10" + }, + { + "manual": true, + "start": "0x364b90", + "end": "0x364e4e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x364b90" + }, + { + "manual": true, + "start": "0x365270", + "end": "0x365358", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x365270" + }, + { + "manual": true, + "start": "0x3653b0", + "end": "0x3653ff", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3653b0" + }, + { + "manual": true, + "start": "0x3658a0", + "end": "0x3659be", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3658a0" + }, + { + "manual": true, + "start": "0x3659c0", + "end": "0x365ae4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3659c0" + }, + { + "manual": true, + "start": "0x365af0", + "end": "0x365fb1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x365af0" + }, + { + "manual": true, + "start": "0x365ff0", + "end": "0x3660c1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x365ff0" + }, + { + "manual": true, + "start": "0x366140", + "end": "0x366294", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x366140" + }, + { + "manual": true, + "start": "0x366530", + "end": "0x3665c1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x366530" + }, + { + "manual": true, + "start": "0x3668c0", + "end": "0x366935", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3668c0" + }, + { + "manual": true, + "start": "0x367100", + "end": "0x36719b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x367100" + }, + { + "manual": true, + "start": "0x3673f0", + "end": "0x367433", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3673f0" + }, + { + "manual": true, + "start": "0x367fc0", + "end": "0x3681e8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x367fc0" + }, + { + "manual": true, + "start": "0x368340", + "end": "0x368401", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x368340" + }, + { + "manual": true, + "start": "0x368410", + "end": "0x36841a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x368410" + }, + { + "manual": true, + "start": "0x368440", + "end": "0x36845a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x368440" + }, + { + "manual": true, + "start": "0x3689e0", + "end": "0x368a18", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3689e0" + }, + { + "manual": true, + "start": "0x369100", + "end": "0x3691b2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x369100" + }, + { + "manual": true, + "start": "0x369230", + "end": "0x369235", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x369230" + }, + { + "manual": true, + "start": "0x36ab80", + "end": "0x36b286", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36ab80" + }, + { + "manual": true, + "start": "0x36e4a0", + "end": "0x36e4d1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36e4a0" + }, + { + "manual": true, + "start": "0x36e540", + "end": "0x36e599", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36e540" + }, + { + "manual": true, + "start": "0x36e5a0", + "end": "0x36e5c3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36e5a0" + }, + { + "manual": true, + "start": "0x36e5e0", + "end": "0x36e6d5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36e5e0" + }, + { + "manual": true, + "start": "0x36e6e0", + "end": "0x36e711", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36e6e0" + }, + { + "manual": true, + "start": "0x36e720", + "end": "0x36e755", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36e720" + }, + { + "manual": true, + "start": "0x36e760", + "end": "0x36e77a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36e760" + }, + { + "manual": true, + "start": "0x36e780", + "end": "0x36e79a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36e780" + }, + { + "manual": true, + "start": "0x36ed20", + "end": "0x36ed97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36ed20" + }, + { + "manual": true, + "start": "0x36ee30", + "end": "0x36ee5d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36ee30" + }, + { + "manual": true, + "start": "0x36ef70", + "end": "0x36f000", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36ef70" + }, + { + "manual": true, + "start": "0x36f070", + "end": "0x36f09d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36f070" + }, + { + "manual": true, + "start": "0x36f0a0", + "end": "0x36f0cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36f0a0" + }, + { + "manual": true, + "start": "0x36f1e0", + "end": "0x36f330", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36f1e0" + }, + { + "manual": true, + "start": "0x36f640", + "end": "0x36f6b8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x36f640" + }, + { + "manual": true, + "start": "0x370840", + "end": "0x3708e8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x370840" + }, + { + "manual": true, + "start": "0x3709a0", + "end": "0x3709e7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3709a0" + }, + { + "manual": true, + "start": "0x371870", + "end": "0x371885", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x371870" + }, + { + "manual": true, + "start": "0x371890", + "end": "0x3718f1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x371890" + }, + { + "manual": true, + "start": "0x371900", + "end": "0x371956", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x371900" + }, + { + "manual": true, + "start": "0x371b80", + "end": "0x371c14", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x371b80" + }, + { + "manual": true, + "start": "0x372b20", + "end": "0x372b2b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x372b20" + }, + { + "manual": true, + "start": "0x373590", + "end": "0x3737c1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x373590" + }, + { + "manual": true, + "start": "0x373890", + "end": "0x373985", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x373890" + }, + { + "manual": true, + "start": "0x373990", + "end": "0x3739ac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x373990" + }, + { + "manual": true, + "start": "0x3739e0", + "end": "0x3739f3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3739e0" + }, + { + "manual": true, + "start": "0x373a80", + "end": "0x373c80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x373a80" + }, + { + "manual": true, + "start": "0x374620", + "end": "0x37462d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x374620" + }, + { + "manual": true, + "start": "0x374630", + "end": "0x374637", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x374630" + }, + { + "manual": true, + "start": "0x374640", + "end": "0x374647", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x374640" + }, + { + "manual": true, + "start": "0x374650", + "end": "0x374657", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x374650" + }, + { + "manual": true, + "start": "0x374660", + "end": "0x374674", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x374660" + }, + { + "manual": true, + "start": "0x374690", + "end": "0x3746a3", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x374690" + }, + { + "manual": true, + "start": "0x374720", + "end": "0x374729", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x374720" + }, + { + "manual": true, + "start": "0x374730", + "end": "0x374739", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x374730" + }, + { + "manual": true, + "start": "0x377940", + "end": "0x377970", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x377940" + }, + { + "manual": true, + "start": "0x377980", + "end": "0x377a77", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x377980" + }, + { + "manual": true, + "start": "0x3dab80", + "end": "0x3dac33", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3dab80" + }, + { + "manual": true, + "start": "0x3dac40", + "end": "0x3dace9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3dac40" + }, + { + "manual": true, + "start": "0x3dacf0", + "end": "0x3dadd1", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3dacf0" + }, + { + "manual": true, + "start": "0x3dae40", + "end": "0x3daf21", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3dae40" + }, + { + "manual": true, + "start": "0x3daf90", + "end": "0x3dafd6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3daf90" + }, + { + "manual": true, + "start": "0x3dafe0", + "end": "0x3db026", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3dafe0" + }, + { + "manual": true, + "start": "0x3db030", + "end": "0x3db0a9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3db030" + }, + { + "manual": true, + "start": "0x3db0b0", + "end": "0x3db1e2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3db0b0" + }, + { + "manual": true, + "start": "0x3db1f0", + "end": "0x3db276", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3db1f0" + }, + { + "manual": true, + "start": "0x3db280", + "end": "0x3db36b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3db280" + }, + { + "manual": true, + "start": "0x3db370", + "end": "0x3db3fa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3db370" + }, + { + "manual": true, + "start": "0x3db8d0", + "end": "0x3db9ab", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3db8d0" + }, + { + "manual": true, + "start": "0x3dc910", + "end": "0x3dc949", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3dc910" + }, + { + "manual": true, + "start": "0x3deef0", + "end": "0x3df0ae", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3deef0" + }, + { + "manual": true, + "start": "0x3df0b0", + "end": "0x3df141", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3df0b0" + }, + { + "manual": true, + "start": "0x3fdcd0", + "end": "0x3fdd09", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3fdcd0" + }, + { + "manual": true, + "start": "0x3fdd10", + "end": "0x3fdd55", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3fdd10" + }, + { + "manual": true, + "start": "0x3fdd60", + "end": "0x3fdda5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x3fdd60" + }, + { + "manual": true, + "start": "0x4007e0", + "end": "0x4008c6", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x4007e0" + }, + { + "manual": true, + "start": "0x4021d0", + "end": "0x40226a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x4021d0" + }, + { + "manual": true, + "start": "0x402270", + "end": "0x4022c8", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x402270" + }, + { + "manual": true, + "start": "0x404190", + "end": "0x40421c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x404190" + }, + { + "manual": true, + "start": "0x404220", + "end": "0x40441f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x404220" + }, + { + "manual": true, + "start": "0x409e30", + "end": "0x409e95", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x409e30" + }, + { + "manual": true, + "start": "0x409ea0", + "end": "0x409f7d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x409ea0" + }, + { + "manual": true, + "start": "0x40dc00", + "end": "0x40dce2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x40dc00" + }, + { + "manual": true, + "start": "0x419ea0", + "end": "0x41a2b4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x419ea0" + }, + { + "manual": true, + "start": "0x41b530", + "end": "0x41b548", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x41b530" + }, + { + "manual": true, + "start": "0x41b720", + "end": "0x41b7ae", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x41b720" + }, + { + "manual": true, + "start": "0x41b7b0", + "end": "0x41b81d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x41b7b0" + }, + { + "manual": true, + "start": "0x41b820", + "end": "0x41b86b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x41b820" + }, + { + "manual": true, + "start": "0x41b9c0", + "end": "0x41baa9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x41b9c0" + }, + { + "manual": true, + "start": "0x41bab0", + "end": "0x41bb14", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x41bab0" + }, + { + "manual": true, + "start": "0x41bb20", + "end": "0x41be67", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x41bb20" + }, + { + "manual": true, + "start": "0x41be70", + "end": "0x41bf4c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x41be70" + }, + { + "manual": true, + "start": "0x44dbd0", + "end": "0x44dbd0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44dbd0" + }, + { + "manual": true, + "start": "0x44dbf0", + "end": "0x44dbf0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44dbf0" + }, + { + "manual": true, + "start": "0x44dcc0", + "end": "0x44dcc0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44dcc0" + }, + { + "manual": true, + "start": "0x44deb0", + "end": "0x44deb0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44deb0" + }, + { + "manual": true, + "start": "0x44df20", + "end": "0x44df20", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44df20" + }, + { + "manual": true, + "start": "0x44df60", + "end": "0x44df60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44df60" + }, + { + "manual": true, + "start": "0x44e030", + "end": "0x44e030", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44e030" + }, + { + "manual": true, + "start": "0x44e0e0", + "end": "0x44e0e0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44e0e0" + }, + { + "manual": true, + "start": "0x44e1c0", + "end": "0x44e1c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44e1c0" + }, + { + "manual": true, + "start": "0x44e280", + "end": "0x44e280", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44e280" + }, + { + "manual": true, + "start": "0x44e2a0", + "end": "0x44e2a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44e2a0" + }, + { + "manual": true, + "start": "0x44e350", + "end": "0x44e350", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44e350" + }, + { + "manual": true, + "start": "0x44e600", + "end": "0x44e600", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44e600" + }, + { + "manual": true, + "start": "0x44e670", + "end": "0x44e670", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44e670" + }, + { + "manual": true, + "start": "0x44e970", + "end": "0x44e970", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44e970" + }, + { + "manual": true, + "start": "0x44f280", + "end": "0x44f280", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44f280" + }, + { + "manual": true, + "start": "0x44f7a0", + "end": "0x44f7a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x44f7a0" + }, + { + "manual": true, + "start": "0x450920", + "end": "0x450920", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x450920" + }, + { + "manual": true, + "start": "0x4562e0", + "end": "0x4562e0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x4562e0" + }, + { + "manual": true, + "start": "0x456370", + "end": "0x456370", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x456370" + }, + { + "manual": true, + "start": "0x456760", + "end": "0x456760", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x456760" + }, + { + "manual": true, + "start": "0x457ca0", + "end": "0x457ca0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x457ca0" + }, + { + "manual": true, + "start": "0x4695b0", + "end": "0x4695fa", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x4695b0" + }, + { + "manual": true, + "start": "0x469720", + "end": "0x469756", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x469720" + }, + { + "manual": true, + "start": "0x469760", + "end": "0x4697d2", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x469760" + }, + { + "manual": true, + "start": "0x469d90", + "end": "0x469d9c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x469d90" + }, + { + "manual": true, + "start": "0x469db0", + "end": "0x469df5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x469db0" + }, + { + "manual": true, + "start": "0x469e00", + "end": "0x46a019", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x469e00" + }, + { + "manual": true, + "start": "0x46a020", + "end": "0x46a062", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46a020" + }, + { + "manual": true, + "start": "0x46a0d0", + "end": "0x46a12f", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46a0d0" + }, + { + "manual": true, + "start": "0x46a130", + "end": "0x46a193", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46a130" + }, + { + "manual": true, + "start": "0x46a1a0", + "end": "0x46a20b", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46a1a0" + }, + { + "manual": true, + "start": "0x46ae20", + "end": "0x46ae2a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46ae20" + }, + { + "manual": true, + "start": "0x46b0c0", + "end": "0x46b0ca", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46b0c0" + }, + { + "manual": true, + "start": "0x46b240", + "end": "0x46b27c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46b240" + }, + { + "manual": true, + "start": "0x46bbd0", + "end": "0x46bc2e", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46bbd0" + }, + { + "manual": true, + "start": "0x46bc30", + "end": "0x46bc9d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46bc30" + }, + { + "manual": true, + "start": "0x46be50", + "end": "0x46be9a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46be50" + }, + { + "manual": true, + "start": "0x46bea0", + "end": "0x46bebd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46bea0" + }, + { + "manual": true, + "start": "0x46c6a0", + "end": "0x46c6cd", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46c6a0" + }, + { + "manual": true, + "start": "0x46d0a0", + "end": "0x46d0b7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46d0a0" + }, + { + "manual": true, + "start": "0x46d0c0", + "end": "0x46d0de", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46d0c0" + }, + { + "manual": true, + "start": "0x46f5a0", + "end": "0x46f5e9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46f5a0" + }, + { + "manual": true, + "start": "0x46f760", + "end": "0x46f874", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46f760" + }, + { + "manual": true, + "start": "0x46f880", + "end": "0x46f901", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x46f880" + }, + { + "manual": true, + "start": "0x4722a0", + "end": "0x4722be", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x4722a0" + }, + { + "manual": true, + "start": "0x4e5250", + "end": "0x4e5252", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x4e5250" + }, + { + "manual": true, + "start": "0x55bfb0", + "end": "0x55bfb5", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x55bfb0" + }, + { + "manual": true, + "start": "0x55cec0", + "end": "0x55cf38", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x55cec0" + }, + { + "manual": true, + "start": "0x55cf40", + "end": "0x55cfad", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x55cf40" + }, + { + "manual": true, + "start": "0x55cfb0", + "end": "0x55d076", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x55cfb0" + }, + { + "manual": true, + "start": "0x55d110", + "end": "0x55d110", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x55d110" + }, + { + "manual": true, + "start": "0x55d1b0", + "end": "0x55d1b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x55d1b0" + }, + { + "manual": true, + "start": "0x5858b0", + "end": "0x58594a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5858b0" + }, + { + "manual": true, + "start": "0x585950", + "end": "0x5859a9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585950" + }, + { + "manual": true, + "start": "0x5859b0", + "end": "0x585a09", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5859b0" + }, + { + "manual": true, + "start": "0x585a10", + "end": "0x585a17", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585a10" + }, + { + "manual": true, + "start": "0x585a20", + "end": "0x585a49", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585a20" + }, + { + "manual": true, + "start": "0x585a50", + "end": "0x585ad4", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585a50" + }, + { + "manual": true, + "start": "0x585ae0", + "end": "0x585b09", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585ae0" + }, + { + "manual": true, + "start": "0x585b10", + "end": "0x585bac", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585b10" + }, + { + "manual": true, + "start": "0x585bb0", + "end": "0x585bd9", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585bb0" + }, + { + "manual": true, + "start": "0x585be0", + "end": "0x585c64", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585be0" + }, + { + "manual": true, + "start": "0x585c70", + "end": "0x585c99", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585c70" + }, + { + "manual": true, + "start": "0x585ca0", + "end": "0x585d24", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585ca0" + }, + { + "manual": true, + "start": "0x585d30", + "end": "0x585d4d", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585d30" + }, + { + "manual": true, + "start": "0x585d50", + "end": "0x585d57", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585d50" + }, + { + "manual": true, + "start": "0x585d60", + "end": "0x585dc0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585d60" + }, + { + "manual": true, + "start": "0x585dd0", + "end": "0x585dd7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585dd0" + }, + { + "manual": true, + "start": "0x585de0", + "end": "0x585de7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585de0" + }, + { + "manual": true, + "start": "0x585df0", + "end": "0x585df7", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585df0" + }, + { + "manual": true, + "start": "0x585e00", + "end": "0x585e2c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585e00" + }, + { + "manual": true, + "start": "0x585e30", + "end": "0x585e5c", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585e30" + }, + { + "manual": true, + "start": "0x585e60", + "end": "0x585e89", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585e60" + }, + { + "manual": true, + "start": "0x585e90", + "end": "0x585e97", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585e90" + }, + { + "manual": true, + "start": "0x585ef0", + "end": "0x585f6a", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x585ef0" + }, + { + "manual": true, + "start": "0x5d34b0", + "end": "0x5d34b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5d34b0" + }, + { + "manual": true, + "start": "0x5d34c0", + "end": "0x5d34c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5d34c0" + }, + { + "manual": true, + "start": "0x5d4260", + "end": "0x5d4260", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5d4260" + }, + { + "manual": true, + "start": "0x5db620", + "end": "0x5db620", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5db620" + }, + { + "manual": true, + "start": "0x5db630", + "end": "0x5db630", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5db630" + }, + { + "manual": true, + "start": "0x5dd930", + "end": "0x5dd930", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd930" + }, + { + "manual": true, + "start": "0x5dd940", + "end": "0x5dd940", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd940" + }, + { + "manual": true, + "start": "0x5dd950", + "end": "0x5dd950", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd950" + }, + { + "manual": true, + "start": "0x5dd960", + "end": "0x5dd960", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd960" + }, + { + "manual": true, + "start": "0x5dd970", + "end": "0x5dd970", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd970" + }, + { + "manual": true, + "start": "0x5dd980", + "end": "0x5dd980", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd980" + }, + { + "manual": true, + "start": "0x5dd990", + "end": "0x5dd990", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd990" + }, + { + "manual": true, + "start": "0x5dd9a0", + "end": "0x5dd9a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd9a0" + }, + { + "manual": true, + "start": "0x5dd9b0", + "end": "0x5dd9b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd9b0" + }, + { + "manual": true, + "start": "0x5dd9c0", + "end": "0x5dd9c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd9c0" + }, + { + "manual": true, + "start": "0x5dd9d0", + "end": "0x5dd9d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd9d0" + }, + { + "manual": true, + "start": "0x5dd9e0", + "end": "0x5dd9e0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd9e0" + }, + { + "manual": true, + "start": "0x5dd9f0", + "end": "0x5dd9f0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dd9f0" + }, + { + "manual": true, + "start": "0x5dda00", + "end": "0x5dda00", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dda00" + }, + { + "manual": true, + "start": "0x5dda10", + "end": "0x5dda10", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dda10" + }, + { + "manual": true, + "start": "0x5dda20", + "end": "0x5dda20", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dda20" + }, + { + "manual": true, + "start": "0x5dda30", + "end": "0x5dda30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dda30" + }, + { + "manual": true, + "start": "0x5dda40", + "end": "0x5dda40", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dda40" + }, + { + "manual": true, + "start": "0x5dda50", + "end": "0x5dda50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dda50" + }, + { + "manual": true, + "start": "0x5dda60", + "end": "0x5dda60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dda60" + }, + { + "manual": true, + "start": "0x5dda70", + "end": "0x5dda70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dda70" + }, + { + "manual": true, + "start": "0x5dda80", + "end": "0x5dda80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dda80" + }, + { + "manual": true, + "start": "0x5dda90", + "end": "0x5dda90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dda90" + }, + { + "manual": true, + "start": "0x5ddaa0", + "end": "0x5ddaa0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddaa0" + }, + { + "manual": true, + "start": "0x5ddab0", + "end": "0x5ddab0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddab0" + }, + { + "manual": true, + "start": "0x5ddac0", + "end": "0x5ddac0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddac0" + }, + { + "manual": true, + "start": "0x5ddad0", + "end": "0x5ddad0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddad0" + }, + { + "manual": true, + "start": "0x5ddae0", + "end": "0x5ddae0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddae0" + }, + { + "manual": true, + "start": "0x5ddaf0", + "end": "0x5ddaf0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddaf0" + }, + { + "manual": true, + "start": "0x5ddb00", + "end": "0x5ddb00", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddb00" + }, + { + "manual": true, + "start": "0x5ddb10", + "end": "0x5ddb10", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddb10" + }, + { + "manual": true, + "start": "0x5ddb20", + "end": "0x5ddb20", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddb20" + }, + { + "manual": true, + "start": "0x5ddb30", + "end": "0x5ddb30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddb30" + }, + { + "manual": true, + "start": "0x5ddb40", + "end": "0x5ddb40", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddb40" + }, + { + "manual": true, + "start": "0x5ddb50", + "end": "0x5ddb50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddb50" + }, + { + "manual": true, + "start": "0x5ddb60", + "end": "0x5ddb60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddb60" + }, + { + "manual": true, + "start": "0x5ddb70", + "end": "0x5ddb70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddb70" + }, + { + "manual": true, + "start": "0x5ddb80", + "end": "0x5ddb80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddb80" + }, + { + "manual": true, + "start": "0x5ddb90", + "end": "0x5ddb90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddb90" + }, + { + "manual": true, + "start": "0x5ddba0", + "end": "0x5ddba0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddba0" + }, + { + "manual": true, + "start": "0x5ddbb0", + "end": "0x5ddbb0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddbb0" + }, + { + "manual": true, + "start": "0x5ddbc0", + "end": "0x5ddbc0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddbc0" + }, + { + "manual": true, + "start": "0x5ddbd0", + "end": "0x5ddbd0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddbd0" + }, + { + "manual": true, + "start": "0x5ddbe0", + "end": "0x5ddbe0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddbe0" + }, + { + "manual": true, + "start": "0x5ddbf0", + "end": "0x5ddbf0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddbf0" + }, + { + "manual": true, + "start": "0x5ddc00", + "end": "0x5ddc00", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddc00" + }, + { + "manual": true, + "start": "0x5ddc10", + "end": "0x5ddc10", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddc10" + }, + { + "manual": true, + "start": "0x5ddc20", + "end": "0x5ddc20", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddc20" + }, + { + "manual": true, + "start": "0x5ddc30", + "end": "0x5ddc30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddc30" + }, + { + "manual": true, + "start": "0x5ddc40", + "end": "0x5ddc40", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddc40" + }, + { + "manual": true, + "start": "0x5ddc50", + "end": "0x5ddc50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddc50" + }, + { + "manual": true, + "start": "0x5ddc60", + "end": "0x5ddc60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddc60" + }, + { + "manual": true, + "start": "0x5ddc70", + "end": "0x5ddc70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddc70" + }, + { + "manual": true, + "start": "0x5ddc80", + "end": "0x5ddc80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddc80" + }, + { + "manual": true, + "start": "0x5ddc90", + "end": "0x5ddc90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddc90" + }, + { + "manual": true, + "start": "0x5ddca0", + "end": "0x5ddca0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddca0" + }, + { + "manual": true, + "start": "0x5ddcb0", + "end": "0x5ddcb0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddcb0" + }, + { + "manual": true, + "start": "0x5ddcc0", + "end": "0x5ddcc0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddcc0" + }, + { + "manual": true, + "start": "0x5ddcd0", + "end": "0x5ddcd0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddcd0" + }, + { + "manual": true, + "start": "0x5ddce0", + "end": "0x5ddce0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddce0" + }, + { + "manual": true, + "start": "0x5ddcf0", + "end": "0x5ddcf0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddcf0" + }, + { + "manual": true, + "start": "0x5ddd00", + "end": "0x5ddd00", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddd00" + }, + { + "manual": true, + "start": "0x5ddd10", + "end": "0x5ddd10", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddd10" + }, + { + "manual": true, + "start": "0x5ddd20", + "end": "0x5ddd20", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddd20" + }, + { + "manual": true, + "start": "0x5ddd30", + "end": "0x5ddd30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddd30" + }, + { + "manual": true, + "start": "0x5ddd40", + "end": "0x5ddd40", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddd40" + }, + { + "manual": true, + "start": "0x5ddd50", + "end": "0x5ddd50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddd50" + }, + { + "manual": true, + "start": "0x5ddd60", + "end": "0x5ddd60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddd60" + }, + { + "manual": true, + "start": "0x5ddd70", + "end": "0x5ddd70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddd70" + }, + { + "manual": true, + "start": "0x5ddd80", + "end": "0x5ddd80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddd80" + }, + { + "manual": true, + "start": "0x5ddd90", + "end": "0x5ddd90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddd90" + }, + { + "manual": true, + "start": "0x5ddda0", + "end": "0x5ddda0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddda0" + }, + { + "manual": true, + "start": "0x5dddb0", + "end": "0x5dddb0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dddb0" + }, + { + "manual": true, + "start": "0x5dddc0", + "end": "0x5dddc0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dddc0" + }, + { + "manual": true, + "start": "0x5dddd0", + "end": "0x5dddd0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dddd0" + }, + { + "manual": true, + "start": "0x5ddde0", + "end": "0x5ddde0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddde0" + }, + { + "manual": true, + "start": "0x5dddf0", + "end": "0x5dddf0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dddf0" + }, + { + "manual": true, + "start": "0x5dde00", + "end": "0x5dde00", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dde00" + }, + { + "manual": true, + "start": "0x5dde10", + "end": "0x5dde10", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dde10" + }, + { + "manual": true, + "start": "0x5dde20", + "end": "0x5dde20", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dde20" + }, + { + "manual": true, + "start": "0x5dde30", + "end": "0x5dde30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dde30" + }, + { + "manual": true, + "start": "0x5dde40", + "end": "0x5dde40", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dde40" + }, + { + "manual": true, + "start": "0x5dde50", + "end": "0x5dde50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dde50" + }, + { + "manual": true, + "start": "0x5dde60", + "end": "0x5dde60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dde60" + }, + { + "manual": true, + "start": "0x5dde70", + "end": "0x5dde70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dde70" + }, + { + "manual": true, + "start": "0x5dde80", + "end": "0x5dde80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dde80" + }, + { + "manual": true, + "start": "0x5dde90", + "end": "0x5dde90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dde90" + }, + { + "manual": true, + "start": "0x5ddea0", + "end": "0x5ddea0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddea0" + }, + { + "manual": true, + "start": "0x5ddeb0", + "end": "0x5ddeb0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddeb0" + }, + { + "manual": true, + "start": "0x5ddec0", + "end": "0x5ddec0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddec0" + }, + { + "manual": true, + "start": "0x5dded0", + "end": "0x5dded0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5dded0" + }, + { + "manual": true, + "start": "0x5ddee0", + "end": "0x5ddee0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddee0" + }, + { + "manual": true, + "start": "0x5ddef0", + "end": "0x5ddef0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddef0" + }, + { + "manual": true, + "start": "0x5ddf00", + "end": "0x5ddf00", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddf00" + }, + { + "manual": true, + "start": "0x5ddf10", + "end": "0x5ddf10", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddf10" + }, + { + "manual": true, + "start": "0x5ddf20", + "end": "0x5ddf20", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddf20" + }, + { + "manual": true, + "start": "0x5ddf30", + "end": "0x5ddf30", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddf30" + }, + { + "manual": true, + "start": "0x5ddf40", + "end": "0x5ddf40", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddf40" + }, + { + "manual": true, + "start": "0x5ddf50", + "end": "0x5ddf50", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddf50" + }, + { + "manual": true, + "start": "0x5ddf60", + "end": "0x5ddf60", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddf60" + }, + { + "manual": true, + "start": "0x5ddf70", + "end": "0x5ddf70", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddf70" + }, + { + "manual": true, + "start": "0x5ddf80", + "end": "0x5ddf80", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddf80" + }, + { + "manual": true, + "start": "0x5ddf90", + "end": "0x5ddf90", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddf90" + }, + { + "manual": true, + "start": "0x5ddfa0", + "end": "0x5ddfa0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddfa0" + }, + { + "manual": true, + "start": "0x5ddfb0", + "end": "0x5ddfb0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddfb0" + }, + { + "manual": true, + "start": "0x5ddfc0", + "end": "0x5ddfc0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddfc0" + }, + { + "manual": true, + "start": "0x5ddfd0", + "end": "0x5ddfd0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddfd0" + }, + { + "manual": true, + "start": "0x5ddfe0", + "end": "0x5ddfe0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddfe0" + }, + { + "manual": true, + "start": "0x5ddff0", + "end": "0x5ddff0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5ddff0" + }, + { + "manual": true, + "start": "0x5de000", + "end": "0x5de000", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de000" + }, + { + "manual": true, + "start": "0x5de010", + "end": "0x5de010", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de010" + }, + { + "manual": true, + "start": "0x5de020", + "end": "0x5de020", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de020" + }, + { + "manual": true, + "start": "0x5de030", + "end": "0x5de030", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de030" + }, + { + "manual": true, + "start": "0x5de040", + "end": "0x5de040", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de040" + }, + { + "manual": true, + "start": "0x5de050", + "end": "0x5de050", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de050" + }, + { + "manual": true, + "start": "0x5de060", + "end": "0x5de060", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de060" + }, + { + "manual": true, + "start": "0x5de070", + "end": "0x5de070", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de070" + }, + { + "manual": true, + "start": "0x5de080", + "end": "0x5de080", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de080" + }, + { + "manual": true, + "start": "0x5de090", + "end": "0x5de090", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de090" + }, + { + "manual": true, + "start": "0x5de0a0", + "end": "0x5de0a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de0a0" + }, + { + "manual": true, + "start": "0x5de0b0", + "end": "0x5de0b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de0b0" + }, + { + "manual": true, + "start": "0x5de0c0", + "end": "0x5de0c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de0c0" + }, + { + "manual": true, + "start": "0x5de0d0", + "end": "0x5de0d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de0d0" + }, + { + "manual": true, + "start": "0x5de0e0", + "end": "0x5de0e0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de0e0" + }, + { + "manual": true, + "start": "0x5de0f0", + "end": "0x5de0f0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de0f0" + }, + { + "manual": true, + "start": "0x5de100", + "end": "0x5de100", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de100" + }, + { + "manual": true, + "start": "0x5de110", + "end": "0x5de110", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de110" + }, + { + "manual": true, + "start": "0x5de120", + "end": "0x5de120", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de120" + }, + { + "manual": true, + "start": "0x5de130", + "end": "0x5de130", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de130" + }, + { + "manual": true, + "start": "0x5de140", + "end": "0x5de140", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de140" + }, + { + "manual": true, + "start": "0x5de150", + "end": "0x5de150", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de150" + }, + { + "manual": true, + "start": "0x5de160", + "end": "0x5de160", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de160" + }, + { + "manual": true, + "start": "0x5de170", + "end": "0x5de170", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de170" + }, + { + "manual": true, + "start": "0x5de180", + "end": "0x5de180", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de180" + }, + { + "manual": true, + "start": "0x5de190", + "end": "0x5de190", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de190" + }, + { + "manual": true, + "start": "0x5de1a0", + "end": "0x5de1a0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de1a0" + }, + { + "manual": true, + "start": "0x5de1b0", + "end": "0x5de1b0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de1b0" + }, + { + "manual": true, + "start": "0x5de1c0", + "end": "0x5de1c0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de1c0" + }, + { + "manual": true, + "start": "0x5de1d0", + "end": "0x5de1d0", + "module": "wow.exe", + "icount": "0x0", + "parent": "0x5de1d0" + } + ], + "labels": [ + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__FetchWrite", + "address": "0x1070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__IsRead", + "address": "0x10d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Reset", + "address": "0x10e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Finalize", + "address": "0x1130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SetPaths", + "address": "0x2b20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ClientKillTimer", + "address": "0x33b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__destructor", + "address": "0x38a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "InitializeGlobal", + "address": "0x67f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "DestroyGlobal", + "address": "0x6b70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CommonMain", + "address": "0x6c70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__C44Matrix", + "address": "0x7f40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__operator_assign_C44Matrix", + "address": "0x7f80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxXformSetProjection", + "address": "0x8030" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxXformViewport", + "address": "0x8070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxXformProjNativeTranspose", + "address": "0x8110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxShaderConstantsSet", + "address": "0x8210" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxRsSet_CGxShader", + "address": "0x8240" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxRsSet_int32_t", + "address": "0x8bf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__RsPush", + "address": "0x9670" + }, + { + "manual": true, + "module": "wow.exe", + "text": "purecall", + "address": "0xbaa5" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_1", + "address": "0xd3b5" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__FileIsLocal", + "address": "0x217c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__GetFileSize", + "address": "0x218c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__SetDataPath", + "address": "0x21af0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__SetFilePointer", + "address": "0x21bb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__Unload", + "address": "0x21ca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__IsStreamingMode", + "address": "0x22130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__Read", + "address": "0x22530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__Close", + "address": "0x22910" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__FileExistsEx", + "address": "0x24b10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__OpenEx", + "address": "0x24b50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__Load", + "address": "0x24e80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SFile__Open", + "address": "0x24f80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsCloseFile", + "address": "0x61b00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsReadFile", + "address": "0x61b50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsGetFileSize", + "address": "0x61bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsSetCurrentDirectory", + "address": "0x61db0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsCreateFile", + "address": "0x61fa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_2", + "address": "0x7add0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__GetBufferParams", + "address": "0x7ade0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__DetachBuffer", + "address": "0x7ae10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__InternalDestroy", + "address": "0x7ae50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__InternalFetchWrite", + "address": "0x7aea0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Set", + "address": "0x7af40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Put_uint8_t", + "address": "0x7afe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Put_uint16_t", + "address": "0x7b040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Put_uint32_t", + "address": "0x7b0a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Put_uint64_t", + "address": "0x7b100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__PutArray", + "address": "0x7b1c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__PutData", + "address": "0x7b280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__FetchRead", + "address": "0x7b290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__PutString", + "address": "0x7b300" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Get_uint8_t", + "address": "0x7b340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Get_uint16_t", + "address": "0x7b380" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Get_uint32_t", + "address": "0x7b3c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Get_uint64_t", + "address": "0x7b400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__Get_float", + "address": "0x7b440" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__GetString", + "address": "0x7b480" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__GetArray", + "address": "0x7b560" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataStore__GetDataInSitu", + "address": "0x7b6b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CmdLineProcess", + "address": "0x7b720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "j_nullsub_3", + "address": "0x7b760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "HandleClose", + "address": "0x7bf30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "HandleCreate", + "address": "0x7bf50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "HandleDuplicate", + "address": "0x7bf70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CoordinateSetAspectRatio", + "address": "0x7bf90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CoordinateGetAspectRatio", + "address": "0x7bfd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CoordinateGetAspectCompensation", + "address": "0x7bfe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "NDCToDDC", + "address": "0x7bff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "DDCToNDC", + "address": "0x7c020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "DDCToNDCWidth", + "address": "0x7c050" + }, + { + "manual": true, + "module": "wow.exe", + "text": "DDCToNDCHeight", + "address": "0x7c060" + }, + { + "manual": true, + "module": "wow.exe", + "text": "NDCToDDCWidth", + "address": "0x7c070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "NDCToDDCHeight", + "address": "0x7c080" + }, + { + "manual": true, + "module": "wow.exe", + "text": "PropSelectContext", + "address": "0x7cbf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "PropGet", + "address": "0x7cc20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "PropSet", + "address": "0x7cc50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "RCString__Copy", + "address": "0x7cf80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventInitialize", + "address": "0x7cff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventDestroy", + "address": "0x7d030" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventCreateContextEx", + "address": "0x7d080" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventSetConfirmCloseCallback", + "address": "0x7d090" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CSRWLock__Enter", + "address": "0x7d0e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventIsButtonDown", + "address": "0x7d1d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventIsKeyDown", + "address": "0x7d230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventPostCloseEx", + "address": "0x7d290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventQueuePost", + "address": "0x7d310" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventRegisterEx", + "address": "0x7d3c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventUnregisterEx", + "address": "0x7d450" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventSetTimer", + "address": "0x7d530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventKillTimer", + "address": "0x7d620" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventSetMouseMode", + "address": "0x7d690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventRegister", + "address": "0x7d770" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventUnregister", + "address": "0x7d790" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtSchedulerShutdown", + "address": "0x7d990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SynthesizeIdle", + "address": "0x7dbc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SynthesizePoll", + "address": "0x7dc20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SynthesizePaint", + "address": "0x7dc50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventForceIdleProcessing", + "address": "0x7dca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtSchedulerDestroy", + "address": "0x7dea0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "InitializeSchedulerThread", + "address": "0x7e910" + }, + { + "manual": true, + "module": "wow.exe", + "text": "AttachContextToThread", + "address": "0x7ec10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SchedulerThreadProcProcess", + "address": "0x7eff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SchedulerThreadProc", + "address": "0x7f230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventDoMessageLoop", + "address": "0x7f2d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtSchedulerInitialize", + "address": "0x7f2f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtSchedulerCreateContext", + "address": "0x7f5c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "PostMouseModeChanged", + "address": "0x7fac0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtInputDestroy", + "address": "0x7fb80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtInputSetMouseMode", + "address": "0x7fbb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtInputSetConfirmCloseCallback", + "address": "0x7fc20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConvertPosition", + "address": "0x7fc90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtInputGetMousePosition", + "address": "0x800a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtInputProcess", + "address": "0x80410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtQueueDestroy", + "address": "0x804b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtQueueCheckSyncMouseState", + "address": "0x804c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtQueueRegister", + "address": "0x804f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtQueuePost", + "address": "0x806a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtQueueCheckSyncKeyState", + "address": "0x80a50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtQueueDispatch", + "address": "0x80ad0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtQueueDispatchAll", + "address": "0x80bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtQueueUnregister", + "address": "0x80d30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventDestroy_cleanup", + "address": "0x80ea0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtTimerGetNextTime", + "address": "0x80f70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtTimerDispatch", + "address": "0x81100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtTimerKill", + "address": "0x81290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IEvtTimerSet", + "address": "0x81390" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxBufLock", + "address": "0x829d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxBufUnlock", + "address": "0x829f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxBufStream", + "address": "0x82a20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxDraw", + "address": "0x82a40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxCapsWindowSizeInScreenCoords", + "address": "0x93bf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ScrnLayerSetRect", + "address": "0xa8500" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OnPaint", + "address": "0xa8720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ScrnLayerCreate", + "address": "0xa8bb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontShutdown", + "address": "0xa8d10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TextureCalcMipCount", + "address": "0xb5510" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TextureGenerateMips", + "address": "0xb5550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "LoadPredrawnMips", + "address": "0xb5a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TextureAllocMippedImg", + "address": "0xb7220" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TextureFreeMippedImg", + "address": "0xb7300" + }, + { + "manual": true, + "module": "wow.exe", + "text": "LoadTgaMips", + "address": "0xb78a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "LoadBlpMips", + "address": "0xb8070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TextureLoadImage", + "address": "0xb81d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TextBlockGetFontPtr", + "address": "0xbd9d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TextBlockCreate", + "address": "0xbdaa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TextBlockSetStringPos", + "address": "0xbdbf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TextBlockGetWrappedTextHeight", + "address": "0xbdd80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TextBlockGenerateFont", + "address": "0xbe9c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxXformProjection", + "address": "0xbec70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CCamera__SetupWorldProjection", + "address": "0xbecf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CameraSetupScreenProjection", + "address": "0xbee60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CameraSetupWorldProjection", + "address": "0xbf0c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CCamera__CCamera", + "address": "0xbf770" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CameraCreate", + "address": "0xbfca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CRndSeed__SetSeed", + "address": "0xc1510" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__Determinant", + "address": "0xc1930" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__Translate", + "address": "0xc1b30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__Scale_C3Vector", + "address": "0xc1b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__Scale_float", + "address": "0xc1bf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__C44Matrix_C4Quaternion", + "address": "0xc1de0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "operator_multiply_C44Matrix_C44Matrix", + "address": "0xc1f00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "operator_multiply_C3Vector_C44Matrix", + "address": "0xc21b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__operator_assignment_multiply", + "address": "0xc2370" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__Transpose", + "address": "0xc23d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__Inverse", + "address": "0xc2f90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__AffineInverse", + "address": "0xc2fc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__AffineInvertInPlace", + "address": "0xc30a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__RotationAroundZ", + "address": "0xc3290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__RotateAroundX", + "address": "0xc3300" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__RotateAroundY", + "address": "0xc3340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__RotateAroundZ", + "address": "0xc3380" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C44Matrix__Rotate", + "address": "0xc33c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C3Vector__Normalize_1", + "address": "0xc3420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C3Vector__Normalize_2", + "address": "0xc3600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "C33Matrix__operator_assign_C33Matrix", + "address": "0xc51b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__SetCurrentAccount", + "address": "0xd7f60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__DisplayLoginStatus", + "address": "0xd80c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__SetScreen", + "address": "0xd82a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__UpdateCurrentScreen", + "address": "0xd82c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__HandleDisplaySizeChanged", + "address": "0xd8860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__Suspend", + "address": "0xd8930" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__LoginServerLogin", + "address": "0xd8a30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__ChangeRealm", + "address": "0xd8bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__OnKickReasonMsg", + "address": "0xd9500" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__GetCharacterList", + "address": "0xd95c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__StatusDialogClick", + "address": "0xd98d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__LogConnectionStatus", + "address": "0xda3d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__SetLoginStateAndResult", + "address": "0xda4b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__Resume", + "address": "0xda5f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__NetDisconnectHandler", + "address": "0xda9d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__Idle", + "address": "0xdab40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__Initialize", + "address": "0xdb9f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLocale", + "address": "0xdbfd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsWindowsClient", + "address": "0xdce40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RestartGx", + "address": "0xdd400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RestoreVideoStereoDefaults", + "address": "0xdd420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMovieResolution", + "address": "0xdd610" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetExpansionLevel", + "address": "0xddc20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__SurveyDownloadCancel", + "address": "0xe4a40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "TSList__LinkNode", + "address": "0xf71a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LoggingChat", + "address": "0xfbd00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LoggingCombat", + "address": "0xfbd20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActiveVoiceChannel", + "address": "0xfbd40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetChatWindowInfo", + "address": "0xfbd90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetChatWindowSavedPosition", + "address": "0xfbf60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetChatWindowSavedDimensions", + "address": "0xfc020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetChatWindowMessages", + "address": "0xfc0c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddChatWindowMessages", + "address": "0xfc170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RemoveChatWindowMessages", + "address": "0xfc250" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatWindowName", + "address": "0xfc330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatWindowSize", + "address": "0xfc3d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatWindowColor", + "address": "0xfc470" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatWindowAlpha", + "address": "0xfc5b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatWindowLocked", + "address": "0xfc660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatWindowUninteractable", + "address": "0xfc6e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatWindowDocked", + "address": "0xfc760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatWindowShown", + "address": "0xfc810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatWindowSavedPosition", + "address": "0xfc890" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatWindowSavedDimensions", + "address": "0xfc9a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumSavedInstances", + "address": "0xfca50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsVoiceChatEnabled", + "address": "0xfcbf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsVoiceChatAllowed", + "address": "0xfcc60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsVoiceChatAllowedByServer", + "address": "0xfccb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsSilenced", + "address": "0xfccf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMuteStatus", + "address": "0xfcdf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ListChannelByName", + "address": "0xfe630" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetChannelList", + "address": "0xfe650" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChannelPassword", + "address": "0xfe720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChannelOwner", + "address": "0xfe810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DisplayChannelOwner", + "address": "0xfe830" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetChannelName", + "address": "0xfe850" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelModerator", + "address": "0xfe950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelUnmoderator", + "address": "0xfe970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelMute", + "address": "0xfe990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelUnmute", + "address": "0xfe9b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelInvite", + "address": "0xfe9d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelKick", + "address": "0xfe9f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelBan", + "address": "0xfea10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelUnban", + "address": "0xfea30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelToggleAnnouncements", + "address": "0xfea50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelVoiceOn", + "address": "0xfea70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelVoiceOff", + "address": "0xfea90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DisplayChannelVoiceOn", + "address": "0xfeab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DisplayChannelVoiceOff", + "address": "0xfead0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChangeChatColor", + "address": "0xfeaf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResetChatColors", + "address": "0xfed10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChatColorNameByClass", + "address": "0xfedc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetChatTypeIndex", + "address": "0xfeee0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetChatWindowChannels", + "address": "0xfeff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RemoveChatWindowChannel", + "address": "0xff0d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EnumerateServerChannels", + "address": "0xff200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSavedInstanceInfo", + "address": "0xff2c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetChannelDisplayInfo", + "address": "0xff580" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSelectedDisplayChannel", + "address": "0xffa10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsDisplayChannelOwner", + "address": "0xffa70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsDisplayChannelModerator", + "address": "0xffae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsSilenced", + "address": "0xffb50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetChannelWatch", + "address": "0xffc30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearChannelWatch", + "address": "0xffc50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeclineInvite", + "address": "0xffcc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SendAddonMessage", + "address": "0x100560" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumLanguages", + "address": "0x100760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLanguageByIndex", + "address": "0x100810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetDefaultLanguage", + "address": "0x100910" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DoEmote", + "address": "0x100980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetActiveVoiceChannel", + "address": "0x100ae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RequestRaidInfo", + "address": "0x100be0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanComplainChat", + "address": "0x100c80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelSilenceVoice", + "address": "0x101140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelSilenceAll", + "address": "0x101250" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelUnSilenceVoice", + "address": "0x1012f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChannelUnSilenceAll", + "address": "0x101400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddChatWindowChannel", + "address": "0x101db0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResetChatWindows", + "address": "0x101f00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumDisplayChannels", + "address": "0x104e10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSelectedDisplayChannel", + "address": "0x104e50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetChannelRosterInfo", + "address": "0x104f30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumChannelMembers", + "address": "0x105190" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CollapseChannelHeader", + "address": "0x1052e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ExpandChannelHeader", + "address": "0x105360" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LeaveChannelByName", + "address": "0x1096d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SendChatMessage", + "address": "0x10d170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SendSystemMessage", + "address": "0x10d8a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_JoinTemporaryChannel", + "address": "0x10daa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_JoinPermanentChannel", + "address": "0x10dac0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ListChannels", + "address": "0x10dae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSavedInstanceExtend", + "address": "0x10dc10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ComplainChat", + "address": "0x10ed00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_FrameXML_Debug", + "address": "0x10f830" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBuildInfo", + "address": "0x10f890" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetLayoutMode", + "address": "0x10f8f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMouseButtonClicked", + "address": "0x10f950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetConsoleKey", + "address": "0x10f990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsDebugBuild", + "address": "0x10fe80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RegisterCVar", + "address": "0x10ff30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCVarInfo", + "address": "0x10ff50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCVar", + "address": "0x110040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCVarBool", + "address": "0x1100c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCVarDefault", + "address": "0x110150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetWaterDetail", + "address": "0x1101d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetFarclip", + "address": "0x110200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetFarclip", + "address": "0x110230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTexLodBias", + "address": "0x1102b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTexLodBias", + "address": "0x1102e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBaseMip", + "address": "0x110360" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetBaseMip", + "address": "0x110390" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Stuck", + "address": "0x110410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Logout", + "address": "0x110430" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Quit", + "address": "0x110450" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetFramerate", + "address": "0x110470" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetCursor", + "address": "0x1104a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResetCursor", + "address": "0x110920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ReportBug", + "address": "0x110930" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ReportSuggestion", + "address": "0x110980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BeginTrade", + "address": "0x1109d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelTrade", + "address": "0x1109e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ForceLogout", + "address": "0x1109f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ForceQuit", + "address": "0x110a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCursorPosition", + "address": "0x110a10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNetStats", + "address": "0x110ac0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RunScript", + "address": "0x110b30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ReplaceTradeEnchant", + "address": "0x110b80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsMacClient", + "address": "0x110b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ReadFile", + "address": "0x110bb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCoinIcon", + "address": "0x110bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCoinText", + "address": "0x110c60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCoinTextureString", + "address": "0x110d00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConfirmBindOnUse", + "address": "0x110db0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RestoreVideoResolutionDefaults", + "address": "0x110dc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RestoreVideoEffectsDefaults", + "address": "0x110dd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetEuropeanNumbers", + "address": "0x110de0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRealmName", + "address": "0x110e00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemQualityColor", + "address": "0x110e20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemFamily", + "address": "0x110f20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemCooldown", + "address": "0x110fc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsCurrentItem", + "address": "0x1110d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsEquippableItem", + "address": "0x111150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumAddOns", + "address": "0x111200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAddOnInfo", + "address": "0x111240" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAddOnMetadata", + "address": "0x111430" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UpdateAddOnMemoryUsage", + "address": "0x111510" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAddOnMemoryUsage", + "address": "0x111530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetScriptCPUUsage", + "address": "0x111610" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UpdateAddOnCPUUsage", + "address": "0x111640" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAddOnCPUUsage", + "address": "0x111660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetFunctionCPUUsage", + "address": "0x111720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetEventCPUUsage", + "address": "0x1117c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResetCPUUsage", + "address": "0x111830" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EnableAddOn", + "address": "0x111840" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EnableAllAddOns", + "address": "0x111900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DisableAddOn", + "address": "0x111940" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DisableAllAddOns", + "address": "0x111a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResetDisabledAddOns", + "address": "0x111a40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsAddOnLoadOnDemand", + "address": "0x111a60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsAddOnLoaded", + "address": "0x111b30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBillingTimeRested", + "address": "0x111c40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetExistingLocales", + "address": "0x111c80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_InCombatLockdown", + "address": "0x111cc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoicePushToTalkStop", + "address": "0x111d20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSummonFriendCooldown", + "address": "0x111d30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumDeclensionSets", + "address": "0x111dd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeclineName", + "address": "0x111e80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UploadSettings", + "address": "0x111f90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DownloadSettings", + "address": "0x111fa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsDesaturateSupported", + "address": "0x111fb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetThreatStatusColor", + "address": "0x111fe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConsoleAddMessage", + "address": "0x112090" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsModifierKeyDown", + "address": "0x114430" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsLeftShiftKeyDown", + "address": "0x1144c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsRightShiftKeyDown", + "address": "0x114520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsShiftKeyDown", + "address": "0x114580" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsLeftControlKeyDown", + "address": "0x114610" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsRightControlKeyDown", + "address": "0x114670" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsControlKeyDown", + "address": "0x1146d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsLeftAltKeyDown", + "address": "0x114760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsRightAltKeyDown", + "address": "0x1147c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsAltKeyDown", + "address": "0x114820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsMouseButtonDown", + "address": "0x1148b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMouseButtonName", + "address": "0x114ba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetCVar", + "address": "0x114c10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCVarMin", + "address": "0x114d40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCVarMax", + "address": "0x114e30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCVarAbsoluteMin", + "address": "0x114f60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCVarAbsoluteMax", + "address": "0x115010" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Screenshot", + "address": "0x1150e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CursorHasItem", + "address": "0x115100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CursorHasSpell", + "address": "0x115140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CursorHasMacro", + "address": "0x115180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CursorHasMoney", + "address": "0x1151c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCursorInfo", + "address": "0x115200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetDirectionFinished", + "address": "0x115560" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetZoneText", + "address": "0x115570" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRealZoneText", + "address": "0x1155a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSubZoneText", + "address": "0x1155d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMinimapZoneText", + "address": "0x115600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResetInstances", + "address": "0x115630" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsInInstance", + "address": "0x1156a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInstanceDifficulty", + "address": "0x115750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetDungeonDifficulty", + "address": "0x115790" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRaidDifficulty", + "address": "0x115810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RequestTimePlayed", + "address": "0x115880" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResurrectGetOfferer", + "address": "0x115950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResurrectHasSickness", + "address": "0x1159c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResurrectHasTimer", + "address": "0x115a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCursorMoney", + "address": "0x115a50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildSetMOTD", + "address": "0x115a90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildLeave", + "address": "0x115b70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildDisband", + "address": "0x115be0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildInfo", + "address": "0x115c50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ArenaTeamInviteByName", + "address": "0x115cc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ArenaTeamLeave", + "address": "0x115dd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ArenaTeamUninviteByName", + "address": "0x115eb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ArenaTeamSetLeaderByName", + "address": "0x115ff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ArenaTeamDisband", + "address": "0x116130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetReleaseTimeRemaining", + "address": "0x116210" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCorpseRecoveryDelay", + "address": "0x116280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInstanceBootTimeRemaining", + "address": "0x1162e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInstanceLockTimeRemaining", + "address": "0x116340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInstanceLockTimeRemainingEncounter", + "address": "0x116410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSummonConfirmTimeLeft", + "address": "0x1164b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSummonConfirmSummoner", + "address": "0x116510" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSummonConfirmAreaName", + "address": "0x116580" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumTitles", + "address": "0x1165e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RandomRoll", + "address": "0x116610" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_OpeningCinematic", + "address": "0x1166f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_InCinematic", + "address": "0x116760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ReplaceEnchant", + "address": "0x1167a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsSubZonePVPPOI", + "address": "0x1167e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TogglePVP", + "address": "0x116840" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetPVP", + "address": "0x1168b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetPortraitToTexture", + "address": "0x116970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGMTicketCategories", + "address": "0x116aa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBindLocation", + "address": "0x116b20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAreaSpiritHealerTime", + "address": "0x116b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMouseFocus", + "address": "0x116bf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemInfo", + "address": "0x116c60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemUniqueness", + "address": "0x116ed0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemIcon", + "address": "0x117020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemSpell", + "address": "0x117100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsHelpfulItem", + "address": "0x1171f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsHarmfulItem", + "address": "0x1172e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsConsumableItem", + "address": "0x1173e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsDressableItem", + "address": "0x117530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetFrameCPUUsage", + "address": "0x117890" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAddOnDependencies", + "address": "0x1179b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMirrorTimerProgress", + "address": "0x117aa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTaxiBenchmarkMode", + "address": "0x117b50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetUIVisibility", + "address": "0x117c20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTotemTimeLeft", + "address": "0x117c60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeclineLevelGrant", + "address": "0x117d20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsThreatWarningEnabled", + "address": "0x117d30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanMapChangeDifficulty", + "address": "0x117d70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearCursor", + "address": "0x11a3b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EquipCursorItem", + "address": "0x11a3d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EquipPendingItem", + "address": "0x11a530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelPendingEquip", + "address": "0x11a5c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AttackTarget", + "address": "0x11a650" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AutoEquipCursorItem", + "address": "0x11a680" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ToggleSheath", + "address": "0x11a6b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_InviteUnit", + "address": "0x11a6e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UninviteUnit", + "address": "0x11a7a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanShowResetInstances", + "address": "0x11a880" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInstanceInfo", + "address": "0x11a8c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RepopMe", + "address": "0x11aa90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptResurrect", + "address": "0x11aac0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeclineResurrect", + "address": "0x11aaf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptGroup", + "address": "0x11ab20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeclineGroup", + "address": "0x11aba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptGuild", + "address": "0x11abd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeclineGuild", + "address": "0x11ac00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptArenaTeam", + "address": "0x11ac30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeclineArenaTeam", + "address": "0x11ac60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelLogout", + "address": "0x11ac90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasSoulstone", + "address": "0x11acd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UseSoulstone", + "address": "0x11add0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasKey", + "address": "0x11ae80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetScreenWidth", + "address": "0x11aef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetScreenHeight", + "address": "0x11af50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetDamageBonusStat", + "address": "0x11afb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConfirmSummon", + "address": "0x11b050" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelSummon", + "address": "0x11b110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SitStandOrDescendStart", + "address": "0x11b1d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CheckInteractDistance", + "address": "0x11b240" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentTitle", + "address": "0x11b3b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsTitleKnown", + "address": "0x11b410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTitleName", + "address": "0x11b4e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptXPLoss", + "address": "0x11b6a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CheckSpiritHealerDist", + "address": "0x11b6e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CheckTalentMasterDist", + "address": "0x11b740" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CheckBinderDist", + "address": "0x11b7a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RetrieveCorpse", + "address": "0x11b800" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRestState", + "address": "0x11b8b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetXPExhaustion", + "address": "0x11b960" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetZonePVPInfo", + "address": "0x11ba50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPVPDesired", + "address": "0x11bca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPVPTimer", + "address": "0x11bd00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsPVPTimerRunning", + "address": "0x11bd60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DropItemOnUnit", + "address": "0x11bdd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConfirmTalentWipe", + "address": "0x11bf50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConfirmBinder", + "address": "0x11bf90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowingHelm", + "address": "0x11bfd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowingCloak", + "address": "0x11c040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowHelm", + "address": "0x11c0b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowCloak", + "address": "0x11c100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemGem", + "address": "0x11c150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemCount", + "address": "0x11c2e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsUsableItem", + "address": "0x11c450" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsEquippedItem", + "address": "0x11c690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsEquippedItemType", + "address": "0x11c740" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ItemHasRange", + "address": "0x11c870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsItemInRange", + "address": "0x11c9c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PartialPlayTime", + "address": "0x11cb30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_NoPlayTime", + "address": "0x11cba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMirrorTimerInfo", + "address": "0x11cc10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UseItemByName", + "address": "0x11cd00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EquipItemByName", + "address": "0x11cdb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StopAttack", + "address": "0x11d0b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTaxiBenchmarkMode", + "address": "0x11d100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Dismount", + "address": "0x11d170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsReferAFriendLinked", + "address": "0x11d1b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanGrantLevel", + "address": "0x11d230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanSummonFriend", + "address": "0x11d2b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTotemInfo", + "address": "0x11d330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DestroyTotem", + "address": "0x11d520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GameMovieFinished", + "address": "0x11d590" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAllowLowLevelRaid", + "address": "0x11d5a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetAllowLowLevelRaid", + "address": "0x11d600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ReloadUI", + "address": "0x1222e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeleteCursorItem", + "address": "0x122320" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_FocusUnit", + "address": "0x122480" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_FollowUnit", + "address": "0x1224c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearFocus", + "address": "0x1225e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_InitiateTrade", + "address": "0x122600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanInspect", + "address": "0x122710" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_NotifyInspect", + "address": "0x122870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DropCursorMoney", + "address": "0x122950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupPlayerMoney", + "address": "0x122980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildInvite", + "address": "0x122a20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildUninvite", + "address": "0x122af0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildPromote", + "address": "0x122bc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildDemote", + "address": "0x122c90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildSetLeader", + "address": "0x122d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetCurrentTitle", + "address": "0x122e30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BindEnchant", + "address": "0x122f70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_NotWhileDeadError", + "address": "0x122f90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelAreaSpiritHeal", + "address": "0x122fa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupItem", + "address": "0x122fb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StartAttack", + "address": "0x123090" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GrantLevel", + "address": "0x123160" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SummonFriend", + "address": "0x123260" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptLevelGrant", + "address": "0x123360" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EndRefund", + "address": "0x123370" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EndBoundTradeable", + "address": "0x1233d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StopCinematic", + "address": "0x124980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetUnit", + "address": "0x125a30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetNearest", + "address": "0x125a90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetNearestEnemy", + "address": "0x125ad0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetNearestEnemyPlayer", + "address": "0x125b10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetNearestFriend", + "address": "0x125b50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetNearestFriendPlayer", + "address": "0x125b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetNearestPartyMember", + "address": "0x125bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetNearestRaidMember", + "address": "0x125c00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetDirectionEnemy", + "address": "0x125c30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetDirectionFriend", + "address": "0x125cd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetLastTarget", + "address": "0x125d70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetLastEnemy", + "address": "0x125df0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetLastFriend", + "address": "0x125e50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AssistUnit", + "address": "0x125eb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearTarget", + "address": "0x125fc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetDungeonDifficulty", + "address": "0x126050" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetRaidDifficulty", + "address": "0x1261a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptAreaSpiritHeal", + "address": "0x1262d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TargetTotem", + "address": "0x1262e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_InteractUnit", + "address": "0x127f00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LoadAddOn", + "address": "0x128920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGameUI__Initialize", + "address": "0x12a980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RegisterForSave", + "address": "0x12b470" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RegisterForSavePerCharacter", + "address": "0x12b4e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumPartyMembers", + "address": "0x12c110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRealNumPartyMembers", + "address": "0x12c190" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPartyMember", + "address": "0x12c1d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPartyLeaderIndex", + "address": "0x12c270" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLootThreshold", + "address": "0x12c2a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetOptOutOfLoot", + "address": "0x12c2d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsPartyLFG", + "address": "0x12c310" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasLFGRestrictions", + "address": "0x12c350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsPartyLeader", + "address": "0x12ccd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsRealPartyLeader", + "address": "0x12cd30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLootMethod", + "address": "0x12cd90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetOptOutOfLoot", + "address": "0x12cf00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPartyAssignment", + "address": "0x12cf60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanChangePlayerDifficulty", + "address": "0x12d000" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LeaveParty", + "address": "0x12d990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SilenceMember", + "address": "0x12d9c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnSilenceMember", + "address": "0x12daf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetLootMethod", + "address": "0x12dc20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetLootThreshold", + "address": "0x12de60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetPartyAssignment", + "address": "0x12e1b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearPartyAssignment", + "address": "0x12e400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChangePlayerDifficulty", + "address": "0x12e420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanAlterSkin", + "address": "0x12e4f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBarberShopStyleInfo", + "address": "0x12e850" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetHairCustomization", + "address": "0x12e9b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetFacialHairCustomization", + "address": "0x12e9d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBarberShopTotalCost", + "address": "0x12ed60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelBarberShop", + "address": "0x12ed80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ApplyBarberShopStyle", + "address": "0x12eef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BarberShopReset", + "address": "0x12f900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetNextBarberShopStyle", + "address": "0x12fdd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNextCompleatedTutorial", + "address": "0x1301d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPrevCompleatedTutorial", + "address": "0x130240" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanResetTutorials", + "address": "0x130700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_FlagTutorial", + "address": "0x130750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsTutorialFlagged", + "address": "0x1307a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearTutorials", + "address": "0x130820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResetTutorials", + "address": "0x130830" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TriggerTutorial", + "address": "0x1308d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNConnected", + "address": "0x130ec0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsBNLogin", + "address": "0x130f20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__Caps", + "address": "0x132af0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetInfo", + "address": "0x1343f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetNumFriends", + "address": "0x134590" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetNumFriendToons", + "address": "0x1349f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNRemoveFriend", + "address": "0x134ed0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetFriendNote", + "address": "0x134f80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetNumFriendInvites", + "address": "0x135080" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetFriendInviteInfo", + "address": "0x135180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSendFriendInvite", + "address": "0x135380" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSendFriendInviteByID", + "address": "0x135490" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNAcceptFriendInvite", + "address": "0x1355c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNDeclineFriendInvite", + "address": "0x135660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNReportFriendInvite", + "address": "0x135700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetAFK", + "address": "0x1357a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetDND", + "address": "0x135860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetCustomMessage", + "address": "0x135920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetCustomMessageTable", + "address": "0x135aa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetFocus", + "address": "0x135c60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNCreateConversation", + "address": "0x135ce0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNInviteToConversation", + "address": "0x135eb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNLeaveConversation", + "address": "0x136030" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSendConversationMessage", + "address": "0x136110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetNumConversationMembers", + "address": "0x136220" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetConversationInfo", + "address": "0x136330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetNumBlocked", + "address": "0x136400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNIsBlocked", + "address": "0x1364e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetBlocked", + "address": "0x1365b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetSelectedBlock", + "address": "0x1366a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetSelectedBlock", + "address": "0x136790" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetNumBlockedToons", + "address": "0x136890" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetBlockedToonInfo", + "address": "0x136970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNIsToonBlocked", + "address": "0x136a90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetToonBlocked", + "address": "0x136b60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetSelectedToonBlock", + "address": "0x136c50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetSelectedToonBlock", + "address": "0x136d40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNReportPlayer", + "address": "0x136e40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNFeaturesEnabledAndConnected", + "address": "0x137010" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNFeaturesEnabled", + "address": "0x137070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetNumFOF", + "address": "0x1370d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetFOFInfo", + "address": "0x137240" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetSelectedFriend", + "address": "0x137510" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetSelectedFriend", + "address": "0x137600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSetMatureLanguageFilter", + "address": "0x1376c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetMatureLanguageFilter", + "address": "0x1377c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNIsSelf", + "address": "0x1378a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNIsFriend", + "address": "0x137950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetMaxPlayersInConversation", + "address": "0x137a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetFriendInfo", + "address": "0x139bf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetFriendInfoByID", + "address": "0x139cc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetFriendToonInfo", + "address": "0x139d70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetToonInfo", + "address": "0x139f90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNSendWhisper", + "address": "0x13a030" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetConversationMemberInfo", + "address": "0x13a150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNListConversation", + "address": "0x13a300" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNGetBlockedInfo", + "address": "0x13a540" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BNRequestFOFInfo", + "address": "0x13a660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumSpellTabs", + "address": "0x13b5c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetKnownSlotFromHighestRankSlot", + "address": "0x13b650" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_FindSpellBookSlotByID", + "address": "0x13b6c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellTabInfo", + "address": "0x13be70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumShapeshiftForms", + "address": "0x13c0b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CastShapeshiftForm", + "address": "0x13c0f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetShapeshiftFormCooldown", + "address": "0x13c180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumCompanions", + "address": "0x13c2a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupCompanion", + "address": "0x13c310" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsSpellKnown", + "address": "0x13c3a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UpdateSpells", + "address": "0x13dd10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasPetSpells", + "address": "0x13dd30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetShapeshiftForm", + "address": "0x13de10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelShapeshiftForm", + "address": "0x13de60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetShapeshiftFormInfo", + "address": "0x13de90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CastSpellByID", + "address": "0x13e060" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCompanionInfo", + "address": "0x13e2c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCompanionCooldown", + "address": "0x13e490" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CallCompanion", + "address": "0x13e5e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DismissCompanion", + "address": "0x13e6b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SummonRandomCritter", + "address": "0x13e7e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CastSpellByName", + "address": "0x140310" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellName", + "address": "0x1407f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellLink", + "address": "0x1408e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellInfo", + "address": "0x140a30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellTexture", + "address": "0x140d70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellCount", + "address": "0x140df0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellCooldown", + "address": "0x140e80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellAutocast", + "address": "0x141010" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ToggleSpellAutocast", + "address": "0x1410e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EnableSpellAutocast", + "address": "0x141140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DisableSpellAutocast", + "address": "0x1411a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupSpell", + "address": "0x141200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CastSpell", + "address": "0x141250" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsSelectedSpell", + "address": "0x1412c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsPassiveSpell", + "address": "0x141340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsAttackSpell", + "address": "0x141420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsCurrentSpell", + "address": "0x141500" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsAutoRepeatSpell", + "address": "0x1415d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsUsableSpell", + "address": "0x141680" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsHelpfulSpell", + "address": "0x141800" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsHarmfulSpell", + "address": "0x1418f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsConsumableSpell", + "address": "0x1419f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SpellHasRange", + "address": "0x141af0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsSpellInRange", + "address": "0x141c60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumMapLandmarks", + "address": "0x143020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumMapOverlays", + "address": "0x143060" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PositionWorldMapArrowFrame", + "address": "0x1430a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PositionMiniWorldMapArrowFrame", + "address": "0x1432c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowWorldMapArrowFrame", + "address": "0x1434e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowMiniWorldMapArrowFrame", + "address": "0x143540" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetWintergraspWaitTime", + "address": "0x1435a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanQueueForWintergrasp", + "address": "0x143600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMapContinents", + "address": "0x144b20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMapZones", + "address": "0x144b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DungeonUsesTerrainMap", + "address": "0x144c40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMapInfo", + "address": "0x144ca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentMapContinent", + "address": "0x144d40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentMapAreaID", + "address": "0x144e10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentMapZone", + "address": "0x144e80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentMapDungeonLevel", + "address": "0x144fc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsZoomOutAvailable", + "address": "0x145050" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UpdateMapHighlight", + "address": "0x145110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPlayerMapPosition", + "address": "0x145880" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCorpseMapPosition", + "address": "0x145950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetDeathReleasePosition", + "address": "0x1459c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMapLandmarkInfo", + "address": "0x145a30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMapOverlayInfo", + "address": "0x145c80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CreateWorldMapArrowFrame", + "address": "0x145e60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CreateMiniWorldMapArrowFrame", + "address": "0x145f20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UpdateWorldMapArrowFrames", + "address": "0x145fe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_InitWorldMapPing", + "address": "0x145ff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumDungeonMapLevels", + "address": "0x146290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetMapZoom", + "address": "0x1469e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ZoomOut", + "address": "0x146a90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetMapByID", + "address": "0x146c50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ProcessMapClick", + "address": "0x146e80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClickLandmark", + "address": "0x146ef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetDungeonMapLevel", + "address": "0x147b80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetMapToCurrentZone", + "address": "0x147c10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumWorldStateUI", + "address": "0x148720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetWorldStateUIInfo", + "address": "0x148d40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsActiveBattlefieldArena", + "address": "0x149ad0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseBattlefield", + "address": "0x149b40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldPortExpiration", + "address": "0x149b80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldInstanceExpiration", + "address": "0x149c40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldInstanceRunTime", + "address": "0x149cd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldEstimatedWaitTime", + "address": "0x149d30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldTimeWaited", + "address": "0x149dd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumBattlefieldScores", + "address": "0x149e80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldWinner", + "address": "0x149ec0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumBattlefieldStats", + "address": "0x149f20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldStatData", + "address": "0x149f60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumBattlefieldPositions", + "address": "0x14a040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumBattlefieldFlagPositions", + "address": "0x14a0e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumBattlefieldVehicles", + "address": "0x14a140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldTeamInfo", + "address": "0x14a180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldArenaFaction", + "address": "0x14a280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumArenaOpponents", + "address": "0x14a2c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetHolidayBGHonorCurrencyBonuses", + "address": "0x14a300" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRandomBGHonorCurrencyBonuses", + "address": "0x14a370" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumBattlefields", + "address": "0x14baa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsBattlefieldArena", + "address": "0x14bae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSelectedBattlefield", + "address": "0x14bb40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSelectedBattlefield", + "address": "0x14bbd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldStatus", + "address": "0x14bc30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldScore", + "address": "0x14be90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetBattlefieldScoreFaction", + "address": "0x14c120" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldStatInfo", + "address": "0x14c170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LeaveBattlefield", + "address": "0x14c250" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldPosition", + "address": "0x14c2e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldVehicleInfo", + "address": "0x14c4d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanJoinBattlefieldAsGroup", + "address": "0x14c6e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldMapIconScale", + "address": "0x14c740" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HearthAndResurrectFromArea", + "address": "0x14c7a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanHearthAndResurrectFromArea", + "address": "0x14c810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumBattlegroundTypes", + "address": "0x14c870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetWorldPVPQueueStatus", + "address": "0x14c8a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SortBGList", + "address": "0x14c9f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldInfo", + "address": "0x14d770" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldInstanceInfo", + "address": "0x14d8f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_JoinBattlefield", + "address": "0x14d990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptBattlefieldPort", + "address": "0x14da10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RequestBattlefieldScoreData", + "address": "0x14dca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RequestBattlefieldPositions", + "address": "0x14dcb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlefieldFlagPosition", + "address": "0x14dcc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SortBattlefieldScoreData", + "address": "0x14de00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBattlegroundInfo", + "address": "0x14e010" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BattlefieldMgrEntryInviteResponse", + "address": "0x14e160" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BattlefieldMgrQueueRequest", + "address": "0x14e1a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BattlefieldMgrQueueInviteResponse", + "address": "0x14e1c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BattlefieldMgrExitRequest", + "address": "0x14e200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RequestBattlegroundInstanceInfo", + "address": "0x14e6d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGamma", + "address": "0x14ea60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetGamma", + "address": "0x14ea90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTerrainMip", + "address": "0x14eb10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTerrainMip", + "address": "0x14eb40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsPlayerResolutionAvailable", + "address": "0x14ebc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetupFullscreenScale", + "address": "0x14ed80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetVideoCaps", + "address": "0x14ee60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsStereoVideoAvailable", + "address": "0x14ef90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetScreenResolutions", + "address": "0x14f430" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentResolution", + "address": "0x14f4a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetScreenResolution", + "address": "0x14f570" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRefreshRates", + "address": "0x14f690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMultisampleFormats", + "address": "0x14f820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentMultisampleFormat", + "address": "0x14f8b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetMultisampleFormat", + "address": "0x14f980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_BeginLoading", + "address": "0x151720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_IsLoaded", + "address": "0x151760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_GetLanguageCount", + "address": "0x151790" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_GetLanguageData", + "address": "0x1517d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_GetCategoryCount", + "address": "0x1518c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_GetCategoryData", + "address": "0x151900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_GetArticleHeaderCount", + "address": "0x1519f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_GetArticleHeaderData", + "address": "0x151a30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_GetTotalArticleCount", + "address": "0x151b40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBQuery_IsLoaded", + "address": "0x151b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBQuery_GetArticleHeaderCount", + "address": "0x151bc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBQuery_GetArticleHeaderData", + "address": "0x151c00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBQuery_GetTotalArticleCount", + "address": "0x151d10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBArticle_BeginLoading", + "address": "0x151d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBArticle_IsLoaded", + "address": "0x151da0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBArticle_GetData", + "address": "0x151dd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSystem_GetMOTD", + "address": "0x151fb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSystem_GetServerStatus", + "address": "0x151fd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSystem_GetServerNotice", + "address": "0x151ff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_GetSubCategoryCount", + "address": "0x1523a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBSetup_GetSubCategoryData", + "address": "0x152440" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KBQuery_BeginLoading", + "address": "0x152580" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SearchLFGGetJoinedID", + "address": "0x1529a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGTypes", + "address": "0x152dd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGRoles", + "address": "0x152e10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGInfoLocal", + "address": "0x152e90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGInfoServer", + "address": "0x152f30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGProposalMember", + "address": "0x153110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRandomDungeonBestChoice", + "address": "0x153120" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanPartyLFGBackfill", + "address": "0x153170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SearchLFGGetNumResults", + "address": "0x153ba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SearchLFGGetEncounterResults", + "address": "0x153c30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetLFGRoles", + "address": "0x153d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CompleteLFGRoleCheck", + "address": "0x153e20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetLFGComment", + "address": "0x153f50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGQueueStats", + "address": "0x153f90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LeaveLFG", + "address": "0x154160" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGProposal", + "address": "0x154370" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGProposalEncounter", + "address": "0x154440" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptProposal", + "address": "0x1545e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RejectProposal", + "address": "0x154600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGRoleUpdate", + "address": "0x154680" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGRoleUpdateSlot", + "address": "0x154740" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGRoleUpdateMember", + "address": "0x1548e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAvailableRoles", + "address": "0x1548f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetLFGBootVote", + "address": "0x154a50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGBootProposal", + "address": "0x154bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFDChoiceOrder", + "address": "0x154be0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFRChoiceOrder", + "address": "0x154d20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFDChoiceInfo", + "address": "0x1551e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumRandomDungeons", + "address": "0x1553b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGDungeonInfo", + "address": "0x155590" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGRandomDungeonInfo", + "address": "0x1555d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsInLFGDungeon", + "address": "0x155660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPartyLFGBackfillInfo", + "address": "0x1556d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitHasLFGRandomCooldown", + "address": "0x155760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitHasLFGDeserter", + "address": "0x155840" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SearchLFGGetResults", + "address": "0x155fd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SearchLFGGetPartyResults", + "address": "0x156280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFDChoiceCollapseState", + "address": "0x1564d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFDChoiceEnabledState", + "address": "0x1567e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RequestLFDPlayerLockInfo", + "address": "0x1569d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RequestLFDPartyLockInfo", + "address": "0x156a50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetLFGHeaderCollapsed", + "address": "0x156ad0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetLFGDungeonEnabled", + "address": "0x156b60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LFGTeleport", + "address": "0x156bc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGQueuedList", + "address": "0x157520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_JoinLFG", + "address": "0x157660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFDChoiceLockedState", + "address": "0x1576b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFDLockPlayerCount", + "address": "0x157890" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFDLockInfo", + "address": "0x157930" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGDungeonRewards", + "address": "0x157aa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGDungeonRewardInfo", + "address": "0x157be0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGDungeonRewardLink", + "address": "0x157d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGCompletionReward", + "address": "0x157e40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGCompletionRewardItem", + "address": "0x157f70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGRandomCooldownExpiration", + "address": "0x158060" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLFGDeserterExpiration", + "address": "0x1580e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsListedInLFR", + "address": "0x1586d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SearchLFGJoin", + "address": "0x159400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SearchLFGLeave", + "address": "0x1594e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearLFGDungeon", + "address": "0x159500" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearAllLFGDungeons", + "address": "0x1595d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetLFGDungeon", + "address": "0x159f50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLastQueueStatusIndex", + "address": "0x159ff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsLFGDungeonJoinable", + "address": "0x15a040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PartyLFGStartBackfill", + "address": "0x15a0c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RefreshLFGList", + "address": "0x15d280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SearchLFGSort", + "address": "0x15d2b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumBindings", + "address": "0x15dc00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentBindingSet", + "address": "0x15dc30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumModifiedClickActions", + "address": "0x15dc60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBinding", + "address": "0x15e8d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBindingKey", + "address": "0x15e9b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetModifiedClickAction", + "address": "0x15ea70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RunBinding", + "address": "0x15fad0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetModifiedClick", + "address": "0x15fb90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetModifiedClick", + "address": "0x15fc20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsModifiedClick", + "address": "0x15fcc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearOverrideBindings", + "address": "0x160560" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBindingAction", + "address": "0x162550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBindingByKey", + "address": "0x1625f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetBinding", + "address": "0x163520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetBindingSpell", + "address": "0x1635e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetBindingItem", + "address": "0x163700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetBindingMacro", + "address": "0x163820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetBindingClick", + "address": "0x163940" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetOverrideBinding", + "address": "0x163a90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetOverrideBindingSpell", + "address": "0x163b80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetOverrideBindingItem", + "address": "0x163cb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetOverrideBindingMacro", + "address": "0x163de0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetOverrideBindingClick", + "address": "0x163f10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LoadBindings", + "address": "0x164070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SaveBindings", + "address": "0x1640c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetClickFrame", + "address": "0x164130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SecureCmdOptionParse", + "address": "0x164ae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StopMacro", + "address": "0x164b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumMacros", + "address": "0x164bb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRunningMacro", + "address": "0x164c10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRunningMacroButton", + "address": "0x164c70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMacroIconInfo", + "address": "0x164e90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMacroItemIconInfo", + "address": "0x164f60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RunMacroText", + "address": "0x166400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumMacroIcons", + "address": "0x166490" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumMacroItemIcons", + "address": "0x1664e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMacroIndexByName", + "address": "0x1666a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RunMacro", + "address": "0x166e80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMacroInfo", + "address": "0x166eb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMacroBody", + "address": "0x166f40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeleteMacro", + "address": "0x166f70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EditMacro", + "address": "0x166fa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetMacroItem", + "address": "0x1670d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMacroItem", + "address": "0x167200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetMacroSpell", + "address": "0x167320" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMacroSpell", + "address": "0x167450" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupMacro", + "address": "0x1674f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CreateMacro", + "address": "0x168160" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetNumMaps", + "address": "0x168730" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorZoomIn", + "address": "0x168770" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorZoomOut", + "address": "0x168810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorSetMode", + "address": "0x1690a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorToggleMode", + "address": "0x169180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetMode", + "address": "0x169230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorUpdatePlayerInfo", + "address": "0x1692a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorUpdateMapInfo", + "address": "0x169340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetMapInfo", + "address": "0x1693e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetInstanceInfo", + "address": "0x169520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorEnterInstance", + "address": "0x1696e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorExitInstance", + "address": "0x1697b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetNumPlayers", + "address": "0x169820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetPlayerInfo", + "address": "0x169910" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorFollowPlayer", + "address": "0x169b50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorLookatPlayer", + "address": "0x169cd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorSetMapAndInstanceIndex", + "address": "0x169e50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorSetPlayerIndex", + "address": "0x169fa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorSetCamera", + "address": "0x16a0f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetCamera", + "address": "0x16a2a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetCurrentMapID", + "address": "0x16a380" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorStartInstance", + "address": "0x16a410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorAddPlayer", + "address": "0x16a640" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorRemovePlayer", + "address": "0x16a860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorSetBattlemaster", + "address": "0x16aa10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorSetMoveSpeed", + "address": "0x16aaf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorSetCameraCollision", + "address": "0x16ab70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorSetTargetHeightOffset", + "address": "0x16ac10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorSetSkirmishMatchmakingMode", + "address": "0x16ac90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorRequestSkirmishQueueData", + "address": "0x16ada0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorRequestSkirmishMode", + "address": "0x16ae50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetSkirmishMode", + "address": "0x16af00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetSkirmishQueueCount", + "address": "0x16af60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorGetSkirmishQueuePlayerInfo", + "address": "0x16afc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CommentatorStartSkirmishMatch", + "address": "0x16b0b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSendMailShowing", + "address": "0x16d570" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearSendMail", + "address": "0x16d5c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSendMailMoney", + "address": "0x16d5d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSendMailCOD", + "address": "0x16d610" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSendMailCOD", + "address": "0x16d690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInboxNumItems", + "address": "0x16d6d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetStationeryInfo", + "address": "0x16df80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SelectStationery", + "address": "0x16e0e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSelectedStationeryTexture", + "address": "0x16e170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumPackages", + "address": "0x16e1e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPackageInfo", + "address": "0x16e210" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SelectPackage", + "address": "0x16e310" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSendMailItemLink", + "address": "0x16e3a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CheckInbox", + "address": "0x16e440" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInboxHeaderInfo", + "address": "0x16e520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInboxInvoiceInfo", + "address": "0x16e9b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInboxItemLink", + "address": "0x16eca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TakeInboxMoney", + "address": "0x16edf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TakeInboxTextItem", + "address": "0x16eef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ReturnInboxItem", + "address": "0x16f000" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeleteInboxItem", + "address": "0x16f140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_InboxItemCanDelete", + "address": "0x16f280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasNewMail", + "address": "0x16f350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLatestThreeSenders", + "address": "0x16f3a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RespondMailLockSendItem", + "address": "0x16f410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClickSendMailItemButton", + "address": "0x170550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSendMailMoney", + "address": "0x1706c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSendMailItem", + "address": "0x170750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SendMail", + "address": "0x170910" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInboxText", + "address": "0x170bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInboxItem", + "address": "0x170f10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TakeInboxItem", + "address": "0x1711c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ComplainInboxItem", + "address": "0x171350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanComplainInboxItem", + "address": "0x1713c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AutoLootMailItem", + "address": "0x171450" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseMail", + "address": "0x171a40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumStationeries", + "address": "0x171ab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSendMailPrice", + "address": "0x171b00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRaidTargetIndex", + "address": "0x172ab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumRaidMembers", + "address": "0x172b40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRealNumRaidMembers", + "address": "0x172b80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetRaidRosterSelection", + "address": "0x172bc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRaidRosterSelection", + "address": "0x172c50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetReadyCheckTimeLeft", + "address": "0x172c80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRaidRosterInfo", + "address": "0x173690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsRaidLeader", + "address": "0x173a60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsRealRaidLeader", + "address": "0x173ab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsRaidOfficer", + "address": "0x173b00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetRaidSubgroup", + "address": "0x173b50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SwapRaidSubgroup", + "address": "0x173c90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PromoteToLeader", + "address": "0x173e10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PromoteToAssistant", + "address": "0x173ef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DemoteAssistant", + "address": "0x173fd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DoReadyCheck", + "address": "0x1740b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConfirmReadyCheck", + "address": "0x1740c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetReadyCheckStatus", + "address": "0x174180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConvertToRaid", + "address": "0x174a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetRaidTarget", + "address": "0x174ab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PlayDance", + "address": "0x1761f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAutoCompleteResults", + "address": "0x17b3a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAutoCompletePresenceID", + "address": "0x17b500" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BankButtonIDToInvSlotID", + "address": "0x17b940" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseBankFrame", + "address": "0x17b9c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumBankSlots", + "address": "0x17bab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBankSlotCost", + "address": "0x17bb30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PurchaseSlot", + "address": "0x17bbc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxXformPop", + "address": "0x17c420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumTrackingTypes", + "address": "0x17f170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrackingInfo", + "address": "0x17f1b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTracking", + "address": "0x17f380" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrackingTexture", + "address": "0x17f4f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMerchantNumItems", + "address": "0x1841d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMerchantItemLink", + "address": "0x184200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMerchantItemMaxStack", + "address": "0x1842d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HideRepairCursor", + "address": "0x184390" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_InRepairMode", + "address": "0x1843b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumBuybackItems", + "address": "0x1843f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseMerchant", + "address": "0x1846d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMerchantItemCostInfo", + "address": "0x1846e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMerchantItemCostItem", + "address": "0x184820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanMerchantRepair", + "address": "0x1849f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowRepairCursor", + "address": "0x184a60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMerchantItemInfo", + "address": "0x184e10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBuybackItemInfo", + "address": "0x185070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBuybackItemLink", + "address": "0x1852c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupMerchantItem", + "address": "0x1853a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BuyMerchantItem", + "address": "0x1854c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BuybackItem", + "address": "0x1855c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowMerchantSellCursor", + "address": "0x1856d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowBuybackSellCursor", + "address": "0x185890" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRepairAllCost", + "address": "0x185990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RepairAllItems", + "address": "0x185c90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeTargetItemLink", + "address": "0x1865f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptTrade", + "address": "0x1866e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelTradeAccept", + "address": "0x186730" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPlayerTradeMoney", + "address": "0x186780" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTargetTradeMoney", + "address": "0x1867d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupTradeMoney", + "address": "0x186810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTradeMoney", + "address": "0x186870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClickTargetTradeButton", + "address": "0x186c80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradePlayerItemLink", + "address": "0x186d00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddTradeMoney", + "address": "0x186d90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseTrade", + "address": "0x187940" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClickTradeButton", + "address": "0x1879d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeTargetItemInfo", + "address": "0x187c60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradePlayerItemInfo", + "address": "0x187eb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumLootItems", + "address": "0x188540" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLootSlotInfo", + "address": "0x188570" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLootSlotLink", + "address": "0x1886d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LootSlotIsItem", + "address": "0x188750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LootSlotIsCoin", + "address": "0x188810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseLoot", + "address": "0x1888b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsFishingLoot", + "address": "0x1888e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMasterLootCandidate", + "address": "0x188920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLootRollItemInfo", + "address": "0x1889d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLootRollItemLink", + "address": "0x188c00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLootRollTimeLeft", + "address": "0x188cc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RollOnLoot", + "address": "0x188d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConfirmLootRoll", + "address": "0x188dd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetLootPortrait", + "address": "0x188f00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LootSlot", + "address": "0x189520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConfirmLootSlot", + "address": "0x189590" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GiveMasterLoot", + "address": "0x189600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ItemTextGetPage", + "address": "0x189b50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ItemTextGetText", + "address": "0x189b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ItemTextGetItem", + "address": "0x189c40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ItemTextGetMaterial", + "address": "0x189c90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ItemTextHasNextPage", + "address": "0x189d70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ItemTextPrevPage", + "address": "0x18a110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ItemTextNextPage", + "address": "0x18a150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseItemText", + "address": "0x18a400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ItemTextGetCreator", + "address": "0x18a480" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGossipText", + "address": "0x18a900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumGossipOptions", + "address": "0x18a920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumGossipAvailableQuests", + "address": "0x18a960" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumGossipActiveQuests", + "address": "0x18a9a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGossipOptions", + "address": "0x18a9e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseGossip", + "address": "0x18aa40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ForceGossip", + "address": "0x18ab50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGossipAvailableQuests", + "address": "0x18b3a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGossipActiveQuests", + "address": "0x18b490" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SelectGossipOption", + "address": "0x18b590" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SelectGossipAvailableQuest", + "address": "0x18b600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SelectGossipActiveQuest", + "address": "0x18b670" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTitleText", + "address": "0x18bd10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGreetingText", + "address": "0x18bd30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestText", + "address": "0x18bd50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetObjectiveText", + "address": "0x18bd70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetProgressText", + "address": "0x18bd90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRewardText", + "address": "0x18bdb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumAvailableQuests", + "address": "0x18bdd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumActiveQuests", + "address": "0x18be00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAvailableTitle", + "address": "0x18be30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActiveTitle", + "address": "0x18bed0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAvailableLevel", + "address": "0x18bf70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActiveLevel", + "address": "0x18c010" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRewardMoney", + "address": "0x18c0b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRewardXP", + "address": "0x18c0e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRewardHonor", + "address": "0x18c110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRewardTalents", + "address": "0x18c140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestMoneyToGet", + "address": "0x18c160" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumQuestRewards", + "address": "0x18c190" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumQuestChoices", + "address": "0x18c1f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumQuestItems", + "address": "0x18c250" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestItemLink", + "address": "0x18c2b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestChooseRewardError", + "address": "0x18c3a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSuggestedGroupNum", + "address": "0x18c3b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestFlagsPVP", + "address": "0x18c3e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestGetAutoAccept", + "address": "0x18c430" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMaxDailyQuests", + "address": "0x18c470" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRewardArenaPoints", + "address": "0x18c4a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestIsDaily", + "address": "0x18c4d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestIsWeekly", + "address": "0x18c510" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConfirmAcceptQuest", + "address": "0x18c910" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestBackgroundMaterial", + "address": "0x18c990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseQuest", + "address": "0x18d350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsAvailableQuestTrivial", + "address": "0x18d370" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsActiveQuestTrivial", + "address": "0x18d420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SelectAvailableQuest", + "address": "0x18d4d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SelectActiveQuest", + "address": "0x18d540" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptQuest", + "address": "0x18d5b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeclineQuest", + "address": "0x18d5c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsQuestCompletable", + "address": "0x18d5d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CompleteQuest", + "address": "0x18d610" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestReward", + "address": "0x18d620" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRewardSpell", + "address": "0x18d670" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRewardTitle", + "address": "0x18d810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestItemInfo", + "address": "0x18d980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestSpellLink", + "address": "0x18dab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetDailyQuestsCompleted", + "address": "0x18db30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAvailableQuestInfo", + "address": "0x18dbc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_NumTaxiNodes", + "address": "0x190710" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTaxiMap", + "address": "0x190d10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TaxiNodeName", + "address": "0x190d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TaxiNodePosition", + "address": "0x190e00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseTaxiMap", + "address": "0x190ec0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TaxiNodeGetType", + "address": "0x190ed0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TaxiGetSrcX", + "address": "0x190f40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TaxiGetSrcY", + "address": "0x190fe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TaxiGetDestX", + "address": "0x191080" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TaxiGetDestY", + "address": "0x191120" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumRoutes", + "address": "0x1911c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TaxiNodeCost", + "address": "0x1915e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TakeTaxiNode", + "address": "0x191680" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TaxiNodeSetCurrent", + "address": "0x191e60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumTrainerServices", + "address": "0x193d10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsTradeskillTrainer", + "address": "0x193d50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerGreetingText", + "address": "0x193d90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceTypeFilter", + "address": "0x193e10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerSkillLineFilter", + "address": "0x193eb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseTrainer", + "address": "0x194370" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SelectTrainerService", + "address": "0x1943a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerSelectionIndex", + "address": "0x194430" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceCost", + "address": "0x194480" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceLevelReq", + "address": "0x194530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceNumAbilityReq", + "address": "0x1945b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerSkillLines", + "address": "0x194650" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_OpenTrainer", + "address": "0x195040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceInfo", + "address": "0x195090" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceIcon", + "address": "0x195150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceSkillLine", + "address": "0x1952f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceSkillReq", + "address": "0x195470" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceAbilityReq", + "address": "0x1955e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceStepReq", + "address": "0x1957d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceDescription", + "address": "0x1959d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsTrainerServiceSkillStep", + "address": "0x195b60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceStepIncrease", + "address": "0x195c40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BuyTrainerService", + "address": "0x195e60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTrainerServiceTypeFilter", + "address": "0x195ec0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTrainerSkillLineFilter", + "address": "0x196010" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CollapseTrainerSkillLine", + "address": "0x196150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ExpandTrainerSkillLine", + "address": "0x1961f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrainerServiceItemLink", + "address": "0x196290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTabardCreationCost", + "address": "0x198dd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseTabardCreation", + "address": "0x198f30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseGuildRegistrar", + "address": "0x199f00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildCharterCost", + "address": "0x199f40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BuyGuildCharter", + "address": "0x19a130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TurnInGuildCharter", + "address": "0x19a1c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTabardInfo", + "address": "0x19a1f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsAuctionSortReversed", + "address": "0x19ab90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAuctionSort", + "address": "0x19ad40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SortAuctionClearSort", + "address": "0x19ae70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SortAuctionSetSort", + "address": "0x19af10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelSell", + "address": "0x19b040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetAuctionsTabShowing", + "address": "0x19b0b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAuctionHouseDepositRate", + "address": "0x19bc90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QueryAuctionItems", + "address": "0x19bcf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumAuctionItems", + "address": "0x19c1a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAuctionItemLink", + "address": "0x19c2d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAuctionItemClasses", + "address": "0x19c420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAuctionItemSubClasses", + "address": "0x19c480" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAuctionInvTypes", + "address": "0x19c590" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanSendAuctionQuery", + "address": "0x19c740" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSelectedAuctionItem", + "address": "0x19c830" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSelectedAuctionItem", + "address": "0x19c920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanCancelAuction", + "address": "0x19c9f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SortAuctionApplySort", + "address": "0x19cab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalculateAuctionDeposit", + "address": "0x19d270" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClickAuctionSellItemButton", + "address": "0x19d410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetOwnerAuctionItems", + "address": "0x19d4f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBidderAuctionItems", + "address": "0x19d540" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAuctionItemInfo", + "address": "0x19d5e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PlaceAuctionBid", + "address": "0x19da40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SortAuctionItems", + "address": "0x19dd00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelAuction", + "address": "0x19ddf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseAuctionHouse", + "address": "0x19f750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAuctionSellItemInfo", + "address": "0x19f760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StartAuction", + "address": "0x19f990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAuctionItemTimeLeft", + "address": "0x19fd60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumStablePets", + "address": "0x1a0f60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumStableSlots", + "address": "0x1a0fa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupStablePet", + "address": "0x1a0fe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSelectedStablePet", + "address": "0x1a1060" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsAtStableMaster", + "address": "0x1a1090" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetStablePetInfo", + "address": "0x1a1330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNextStableSlotCost", + "address": "0x1a14d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetPetStablePaperdoll", + "address": "0x1a1530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetStablePetFoodTypes", + "address": "0x1a16a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClosePetStables", + "address": "0x1a1950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StablePet", + "address": "0x1a19c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnstablePet", + "address": "0x1a1ac0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BuyStableSlot", + "address": "0x1a1bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClickStablePet", + "address": "0x1a1ca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumPetitionItems", + "address": "0x1a1f70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetitionItemInfo", + "address": "0x1a1fb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClickPetitionButton", + "address": "0x1a2200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClosePetitionVendor", + "address": "0x1a24f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BuyPetition", + "address": "0x1a2530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TurnInPetition", + "address": "0x1a2600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TurnInArenaPetition", + "address": "0x1a26d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasFilledPetition", + "address": "0x1a2820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumArenaTeamMembers", + "address": "0x1a2930" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetArenaTeamRosterShowOffline", + "address": "0x1a2a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentArenaSeason", + "address": "0x1a2a40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPreviousArenaSeason", + "address": "0x1a2a70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetArenaTeamRosterInfo", + "address": "0x1a2fc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetArenaTeamGdfInfo", + "address": "0x1a3260" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetArenaTeamRosterSelection", + "address": "0x1a3370" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetArenaTeamRosterSelection", + "address": "0x1a3410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SortArenaTeamRoster", + "address": "0x1a3490" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetArenaTeamRosterShowOffline", + "address": "0x1a35e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetArenaTeam", + "address": "0x1a3860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ArenaTeamRoster", + "address": "0x1a3cf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupGuildBankMoney", + "address": "0x1a4330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetCurrentGuildBankTab", + "address": "0x1a43c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentGuildBankTab", + "address": "0x1a4410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankMoney", + "address": "0x1a4440" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankWithdrawMoney", + "address": "0x1a44a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumGuildBankTabs", + "address": "0x1a44d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseGuildBankFrame", + "address": "0x1a4500" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumGuildBankTransactions", + "address": "0x1a4520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumGuildBankMoneyTransactions", + "address": "0x1a45b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankText", + "address": "0x1a45e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankItemLink", + "address": "0x1a4d30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankMoneyTransaction", + "address": "0x1a4e50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QueryGuildBankTab", + "address": "0x1a5ce0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BuyGuildBankTab", + "address": "0x1a5d30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DepositGuildBankMoney", + "address": "0x1a5e20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_WithdrawGuildBankMoney", + "address": "0x1a5ef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanWithdrawGuildBankMoney", + "address": "0x1a5f60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankItemInfo", + "address": "0x1a6000" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupGuildBankItem", + "address": "0x1a6200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AutoStoreGuildBankItem", + "address": "0x1a63f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SplitGuildBankItem", + "address": "0x1a6600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankTabInfo", + "address": "0x1a67f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetGuildBankTabInfo", + "address": "0x1a6a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankTabCost", + "address": "0x1a6b20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildTabardFileNames", + "address": "0x1a6ba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QueryGuildBankLog", + "address": "0x1a6d50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankTransaction", + "address": "0x1a6dc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QueryGuildBankText", + "address": "0x1a7110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetGuildBankText", + "address": "0x1a7180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActionCount", + "address": "0x1a7d10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActionText", + "address": "0x1a7d90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsUsableAction", + "address": "0x1a7e60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBonusBarOffset", + "address": "0x1a7f20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ChangeActionBarPage", + "address": "0x1a7f60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActionBarPage", + "address": "0x1a7fd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasAction", + "address": "0x1a8220" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetActionBarToggles", + "address": "0x1a8290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMultiCastTotemSpells", + "address": "0x1a8330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsStackableAction", + "address": "0x1a8720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActionBarToggles", + "address": "0x1a8790" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsPossessBarVisible", + "address": "0x1a8820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsEquippedAction", + "address": "0x1a8bc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActionInfo", + "address": "0x1a8f10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActionCooldown", + "address": "0x1a91c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActionAutocast", + "address": "0x1a9290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActionTexture", + "address": "0x1a9b30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsAttackAction", + "address": "0x1a9ba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsAutoRepeatAction", + "address": "0x1a9c10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsConsumableAction", + "address": "0x1a9c80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ActionHasRange", + "address": "0x1a9cf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsActionInRange", + "address": "0x1a9d50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsCurrentAction", + "address": "0x1aad40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PlaceAction", + "address": "0x1ab840" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetMultiCastSpell", + "address": "0x1ab8a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UseAction", + "address": "0x1ac000" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupAction", + "address": "0x1ac090" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RegisterStaticConstants", + "address": "0x1ac320" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GMSurveyAnswerSubmit", + "address": "0x1ac390" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GMSurveyCommentSubmit", + "address": "0x1ac480" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GMSurveyQuestion", + "address": "0x1ac750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GMSurveyAnswer", + "address": "0x1ac7d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GMSurveyNumAnswers", + "address": "0x1ac870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GMReportLag", + "address": "0x1ad020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGMTicket", + "address": "0x1ad070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_NewGMTicket", + "address": "0x1ad080" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UpdateGMTicket", + "address": "0x1ad0f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeleteGMTicket", + "address": "0x1ad140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GMResponseNeedMoreHelp", + "address": "0x1ad150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GMResponseResolve", + "address": "0x1ad1b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGMStatus", + "address": "0x1ad1c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GMSurveySubmit", + "address": "0x1ad230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EquipmentManagerIgnoreSlotForSave", + "address": "0x1ad770" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EquipmentManagerIsSlotIgnoredForSave", + "address": "0x1ad7c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EquipmentManagerClearIgnoredSlotsForSave", + "address": "0x1ad820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EquipmentManagerUnignoreSlotForSave", + "address": "0x1ad830" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanUseEquipmentSets", + "address": "0x1ad880" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DeleteEquipmentSet", + "address": "0x1ae800" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetEquipmentSetLocations", + "address": "0x1ae860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetEquipmentSetItemIDs", + "address": "0x1aef90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumEquipmentSets", + "address": "0x1af0d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetEquipmentSetInfo", + "address": "0x1af120" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetEquipmentSetInfoByName", + "address": "0x1af1d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupEquipmentSetByName", + "address": "0x1af250" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupEquipmentSet", + "address": "0x1af2c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EquipmentSetContainsLockedItems", + "address": "0x1af320" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UseEquipmentSet", + "address": "0x1af380" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RenameEquipmentSet", + "address": "0x1af910" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SaveEquipmentSet", + "address": "0x1af9c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrencyListSize", + "address": "0x1afd10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrencyListInfo", + "address": "0x1b0680" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ExpandCurrencyList", + "address": "0x1b0940" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetCurrencyUnused", + "address": "0x1b09b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetCurrencyBackpack", + "address": "0x1b0a20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBackpackCurrencyInfo", + "address": "0x1b0a90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanShowAchievementUI", + "address": "0x1b0ce0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCategoryList", + "address": "0x1b1390" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetStatisticsCategoryList", + "address": "0x1b14b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCategoryInfo", + "address": "0x1b15c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPreviousAchievement", + "address": "0x1b1690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAchievementInfoFromCriteria", + "address": "0x1b1720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAchievementCategory", + "address": "0x1b18e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAchievementNumRewards", + "address": "0x1b1970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAchievementReward", + "address": "0x1b1a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetAchievementComparisonUnit", + "address": "0x1b1ab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QueryQuestsCompleted", + "address": "0x1b1bb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLatestCompletedAchievements", + "address": "0x1b1c20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLatestUpdatedStats", + "address": "0x1b1c90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLatestCompletedComparisonAchievements", + "address": "0x1b1cf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetLatestUpdatedComparisonStats", + "address": "0x1b1d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTotalAchievementPoints", + "address": "0x1b1dc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetComparisonAchievementPoints", + "address": "0x1b1e40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasCompletedAnyAchievement", + "address": "0x1b1ec0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTrackedAchievements", + "address": "0x1b2040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsTrackedAchievement", + "address": "0x1b2090" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumTrackedAchievements", + "address": "0x1b2120" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCategoryNumAchievements", + "address": "0x1b38e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetComparisonCategoryNumAchievements", + "address": "0x1b3b30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumCompletedAchievements", + "address": "0x1b3ca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumComparisonCompletedAchievements", + "address": "0x1b3dc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNextAchievement", + "address": "0x1b3ef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAchievementInfo", + "address": "0x1b3fc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearAchievementComparisonUnit", + "address": "0x1b4760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAchievementComparisonInfo", + "address": "0x1b4770" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddTrackedAchievement", + "address": "0x1b4870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RemoveTrackedAchievement", + "address": "0x1b48d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestsCompleted", + "address": "0x1b5290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAchievementNumCriteria", + "address": "0x1b5530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetStatistic", + "address": "0x1b5620" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAchievementCriteriaInfo", + "address": "0x1b58b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetComparisonStatistic", + "address": "0x1b5e70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAchievementLink", + "address": "0x1b6110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumGlyphSockets", + "address": "0x1b71e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGlyphSocketInfo", + "address": "0x1b7260" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GlyphMatchesSocket", + "address": "0x1b7410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PlaceGlyphInSocket", + "address": "0x1b75a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RemoveGlyphFromSocket", + "address": "0x1b7660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGlyphLink", + "address": "0x1b7740" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetMonthNames", + "address": "0x1b80e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetWeekdayNames", + "address": "0x1b8120" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetDate", + "address": "0x1b8160" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetMinDate", + "address": "0x1b81f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetMaxDate", + "address": "0x1b82a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetMinHistoryDate", + "address": "0x1b8350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetMaxCreateDate", + "address": "0x1b8410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarCloseEvent", + "address": "0x1b84a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventGetNumInvites", + "address": "0x1b84d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextDeselectEvent", + "address": "0x1b8510" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextEventClipboard", + "address": "0x1b8540" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSortInvites", + "address": "0x1b8570" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventGetInviteSortCriterion", + "address": "0x1b8690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetStatus", + "address": "0x1b8730" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetModerator", + "address": "0x1b87d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventClearModerator", + "address": "0x1b8840" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventIsModerator", + "address": "0x1b88b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventCanModerate", + "address": "0x1b88e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventGetTypes", + "address": "0x1b8970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventGetRepeatOptions", + "address": "0x1b89c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventHaveSettingsChanged", + "address": "0x1b8a10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventCanEdit", + "address": "0x1b8a50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventGetCalendarType", + "address": "0x1b8aa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSelectInvite", + "address": "0x1b8ae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarCanSendInvite", + "address": "0x1b8b30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarCanAddEvent", + "address": "0x1b8ba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarIsActionPending", + "address": "0x1b8c10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetMonth", + "address": "0x1b99f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetAbsMonth", + "address": "0x1b9ac0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetNumDayEvents", + "address": "0x1b9bf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetDayEventSequenceInfo", + "address": "0x1b9ca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetFirstPendingInvite", + "address": "0x1b9e10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarOpenEvent", + "address": "0x1b9eb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetEventIndex", + "address": "0x1b9f80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetRaidInfo", + "address": "0x1ba000" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventGetInvite", + "address": "0x1ba220" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventGetInviteResponseTime", + "address": "0x1ba420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarRemoveEvent", + "address": "0x1ba5a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextSelectEvent", + "address": "0x1ba5b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextGetEventIndex", + "address": "0x1ba680" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextInviteIsPending", + "address": "0x1ba700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextInviteModeratorStatus", + "address": "0x1ba7f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextInviteStatus", + "address": "0x1ba910" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextInviteType", + "address": "0x1baa20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextInviteAvailable", + "address": "0x1bab50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextInviteDecline", + "address": "0x1bad00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextEventCanEdit", + "address": "0x1baeb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextEventGetCalendarType", + "address": "0x1bafc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventRemoveInvite", + "address": "0x1bb0c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventGetStatusOptions", + "address": "0x1bb130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetTitle", + "address": "0x1bb210" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetDescription", + "address": "0x1bb280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetType", + "address": "0x1bb2f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetRepeatOption", + "address": "0x1bb380" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetSize", + "address": "0x1bb410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetDate", + "address": "0x1bb4a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetTime", + "address": "0x1bb5a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetLockoutDate", + "address": "0x1bb650" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetLockoutTime", + "address": "0x1bb750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetTextureID", + "address": "0x1bb800" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetLocked", + "address": "0x1bb870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventClearLocked", + "address": "0x1bb8b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSetAutoApprove", + "address": "0x1bb8f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventClearAutoApprove", + "address": "0x1bb930" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventGetTextures", + "address": "0x1bb970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventGetSelectedInvite", + "address": "0x1bbb00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarSetMonth", + "address": "0x1bcc00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarAddEvent", + "address": "0x1bcc70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarNewEvent", + "address": "0x1bcca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarMassInviteGuild", + "address": "0x1bccb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarNewGuildAnnouncement", + "address": "0x1bcd80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarNewGuildEvent", + "address": "0x1bcd90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarDefaultGuildFilter", + "address": "0x1bcda0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarMassInviteArenaTeam", + "address": "0x1bce60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarUpdateEvent", + "address": "0x1bced0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventInvite", + "address": "0x1bcf00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextInviteTentative", + "address": "0x1bcf30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextInviteRemove", + "address": "0x1bd040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextEventSignUp", + "address": "0x1bd130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextEventRemove", + "address": "0x1bd220" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextEventCopy", + "address": "0x1bd340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextEventPaste", + "address": "0x1bd460" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextEventCanComplain", + "address": "0x1bd4f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarContextEventComplain", + "address": "0x1bd600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventAvailable", + "address": "0x1bd6e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventTentative", + "address": "0x1bd750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventDecline", + "address": "0x1bd760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventSignUp", + "address": "0x1bd7d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_OpenCalendar", + "address": "0x1bd7e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetEventInfo", + "address": "0x1bd8a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarEventHasPendingInvite", + "address": "0x1bdd90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetNumPendingInvites", + "address": "0x1bf830" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetDayEvent", + "address": "0x1c1070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarGetHolidayInfo", + "address": "0x1c1480" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CalendarSetAbsMonth", + "address": "0x1c43b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSocketTypes", + "address": "0x1c4550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseSocketInfo", + "address": "0x1c49c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSocketItemInfo", + "address": "0x1c49d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumSockets", + "address": "0x1c4af0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNewSocketInfo", + "address": "0x1c4b60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNewSocketLink", + "address": "0x1c4d10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClickSocketButton", + "address": "0x1c4dc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSocketItemBoundTradeable", + "address": "0x1c4ea0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetExistingSocketInfo", + "address": "0x1c5160" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetExistingSocketLink", + "address": "0x1c5340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptSockets", + "address": "0x1c5460" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSocketItemRefundable", + "address": "0x1c5470" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMinigameType", + "address": "0x1c5500" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MakeMinigameMove", + "address": "0x1c5550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMinigameState", + "address": "0x1c55f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetActiveTalentGroup", + "address": "0x1c5810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumTalentTabs", + "address": "0x1c5cc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumTalents", + "address": "0x1c5d40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumTalentGroups", + "address": "0x1c5df0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetActiveTalentGroup", + "address": "0x1c5e70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTalentTabInfo", + "address": "0x1c6150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetUnspentTalentPoints", + "address": "0x1c6310" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPreviewTalentPointsSpent", + "address": "0x1c63b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGroupPreviewTalentPointsSpent", + "address": "0x1c6420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LearnPreviewTalents", + "address": "0x1c6a10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResetPreviewTalentPoints", + "address": "0x1c7130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResetGroupPreviewTalentPoints", + "address": "0x1c7200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTalentInfo", + "address": "0x1c7800" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTalentLink", + "address": "0x1c7ce0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTalentPrereqs", + "address": "0x1c7ed0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_LearnTalent", + "address": "0x1c80e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddPreviewTalentPoints", + "address": "0x1c9590" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumGuildMembers", + "address": "0x1ca130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildRosterMOTD", + "address": "0x1ca190" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetGuildRosterShowOffline", + "address": "0x1ca1b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildRosterShowOffline", + "address": "0x1ca1e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildControlGetNumRanks", + "address": "0x1ca220" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildControlSetRank", + "address": "0x1ca260" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildControlSetRankFlag", + "address": "0x1ca2b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildInfoText", + "address": "0x1ca330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumGuildEvents", + "address": "0x1ca350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildRosterLastOnline", + "address": "0x1cabb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildRosterSetPublicNote", + "address": "0x1cad00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildRosterSetOfficerNote", + "address": "0x1cae20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetGuildRosterSelection", + "address": "0x1caf40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildRosterSelection", + "address": "0x1cafd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SortGuildRoster", + "address": "0x1cb000" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildControlSaveRank", + "address": "0x1cb170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildControlAddRank", + "address": "0x1cb330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildControlDelRank", + "address": "0x1cb3f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetGuildBankTabPermissions", + "address": "0x1cb470" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankTabPermissions", + "address": "0x1cb560" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetGuildBankWithdrawLimit", + "address": "0x1cb6a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildBankWithdrawLimit", + "address": "0x1cb700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetGuildBankTabWithdraw", + "address": "0x1cb760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildRoster", + "address": "0x1cb810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetGuildInfoText", + "address": "0x1cb820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanGuildPromote", + "address": "0x1cbcf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanGuildDemote", + "address": "0x1cbd80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanGuildInvite", + "address": "0x1cbe10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanGuildRemove", + "address": "0x1cbea0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanEditMOTD", + "address": "0x1cbf30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanEditPublicNote", + "address": "0x1cbfc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanEditOfficerNote", + "address": "0x1cc050" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanViewOfficerNote", + "address": "0x1cc0e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanEditGuildInfo", + "address": "0x1cc170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanGuildBankRepair", + "address": "0x1cc200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanEditGuildTabInfo", + "address": "0x1cc290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanEditGuildEvent", + "address": "0x1cc360" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildControlGetRankFlags", + "address": "0x1cc3e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QueryGuildEventLog", + "address": "0x1cc470" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildRosterInfo", + "address": "0x1cc9c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GuildControlGetRankName", + "address": "0x1ccc90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildEventInfo", + "address": "0x1ccd90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumSkillLines", + "address": "0x1cd1b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelSkillUps", + "address": "0x1cd820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSelectedSkill", + "address": "0x1cd860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSelectedSkill", + "address": "0x1cd8f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSkillLineInfo", + "address": "0x1cde20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AbandonSkill", + "address": "0x1ce2c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CollapseSkillHeader", + "address": "0x1ce3a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ExpandSkillHeader", + "address": "0x1ce400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddSkillUp", + "address": "0x1ce460" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RemoveSkillUp", + "address": "0x1ce4d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAdjustedSkillPoints", + "address": "0x1ce540" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptSkillUps", + "address": "0x1ce5d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_BuySkillTier", + "address": "0x1ce6f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumPetitionNames", + "address": "0x1ceac0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetitionInfo", + "address": "0x1cece0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetitionNameInfo", + "address": "0x1cee30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClosePetition", + "address": "0x1cf020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanSignPetition", + "address": "0x1cf040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SignPetition", + "address": "0x1cf140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_OfferPetition", + "address": "0x1cf220" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RenamePetition", + "address": "0x1cf450" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StartDuel", + "address": "0x1cf950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AcceptDuel", + "address": "0x1cfdb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumFactions", + "address": "0x1cff20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsFactionInactive", + "address": "0x1d0740" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSelectedFaction", + "address": "0x1d07b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSelectedFaction", + "address": "0x1d0820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetFactionInfo", + "address": "0x1d1150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetFactionInfoByID", + "address": "0x1d11e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetWatchedFactionInfo", + "address": "0x1d1240" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_FactionToggleAtWar", + "address": "0x1d1390" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetWatchedFactionIndex", + "address": "0x1d1420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetFactionInactive", + "address": "0x1d1e50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetFactionActive", + "address": "0x1d1ee0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CollapseFactionHeader", + "address": "0x1d1f70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CollapseAllFactionHeaders", + "address": "0x1d1fc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ExpandAllFactionHeaders", + "address": "0x1d1fe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ExpandFactionHeader", + "address": "0x1d2000" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsPetAttackActive", + "address": "0x1d3160" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetTimeRemaining", + "address": "0x1d3180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetHasActionBar", + "address": "0x1d3720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetCanBeAbandoned", + "address": "0x1d3780" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetCanBeDismissed", + "address": "0x1d3820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetCanBeRenamed", + "address": "0x1d38c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasPetUI", + "address": "0x1d3960" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetExperience", + "address": "0x1d3a20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetHappiness", + "address": "0x1d3b00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetFoodTypes", + "address": "0x1d3bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetIcon", + "address": "0x1d3ce0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetTalentTree", + "address": "0x1d3d80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetActionInfo", + "address": "0x1d4ec0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetActionCooldown", + "address": "0x1d5280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetActionsUsable", + "address": "0x1d53c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetActionSlotUsable", + "address": "0x1d5400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetPassiveMode", + "address": "0x1d54c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetDefensiveMode", + "address": "0x1d54f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetAggressiveMode", + "address": "0x1d5520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetWait", + "address": "0x1d5550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetFollow", + "address": "0x1d5580" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetAttack", + "address": "0x1d55b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetStopAttack", + "address": "0x1d5640" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetAbandon", + "address": "0x1d5650" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetDismiss", + "address": "0x1d5660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PetRename", + "address": "0x1d5670" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPossessInfo", + "address": "0x1d5820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsPetAttackAction", + "address": "0x1d5a10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupPetAction", + "address": "0x1d65c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TogglePetAutocast", + "address": "0x1d66f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CastPetAction", + "address": "0x1d67b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ContainerIDToInventoryID", + "address": "0x1d6f60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMaxArenaCurrency", + "address": "0x1d6ff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetBagPortraitTexture", + "address": "0x1d7180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerNumSlots", + "address": "0x1d74a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerNumFreeSlots", + "address": "0x1d7590" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerFreeSlots", + "address": "0x1d7820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerItemInfo", + "address": "0x1d7a90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerItemLink", + "address": "0x1d7c80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerItemID", + "address": "0x1d7d00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerItemCooldown", + "address": "0x1d7d90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerItemDurability", + "address": "0x1d7ef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupContainerItem", + "address": "0x1d7ff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SplitContainerItem", + "address": "0x1d84f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UseContainerItem", + "address": "0x1d8650" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SocketContainerItem", + "address": "0x1d8b10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowContainerSellCursor", + "address": "0x1d8bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBagName", + "address": "0x1d8c70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerItemPurchaseInfo", + "address": "0x1d8d80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerItemPurchaseItem", + "address": "0x1d8f70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ContainerRefundItemPurchase", + "address": "0x1d91b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerItemGems", + "address": "0x1d9300" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetContainerItemQuestInfo", + "address": "0x1d9400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumTradeSkills", + "address": "0x1da120" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillItemNameFilter", + "address": "0x1da150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillItemLevelFilter", + "address": "0x1da170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillSubClassFilter", + "address": "0x1da1b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeskillRepeatCount", + "address": "0x1da270" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StopTradeSkillRepeat", + "address": "0x1da2e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsTradeSkillLinked", + "address": "0x1da310" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CloseTradeSkill", + "address": "0x1da8b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SelectTradeSkill", + "address": "0x1da900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillSelectionIndex", + "address": "0x1da970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillCooldown", + "address": "0x1da9a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillSubClasses", + "address": "0x1daa70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetFirstTradeSkill", + "address": "0x1dab70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DoTradeSkill", + "address": "0x1dac00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillInfo", + "address": "0x1db2a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillIcon", + "address": "0x1db550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillNumMade", + "address": "0x1db6e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillLine", + "address": "0x1db810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillRecipeLink", + "address": "0x1db920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillItemLink", + "address": "0x1dba70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillNumReagents", + "address": "0x1dbba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillReagentItemLink", + "address": "0x1dbcc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillDescription", + "address": "0x1dbe10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillInvSlots", + "address": "0x1dbf10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillInvSlotFilter", + "address": "0x1dbf90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillListLink", + "address": "0x1dc0b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTradeSkillItemNameFilter", + "address": "0x1dd070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTradeSkillItemLevelFilter", + "address": "0x1dd090" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTradeSkillSubClassFilter", + "address": "0x1dd0f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetTradeSkillInvSlotFilter", + "address": "0x1dd230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TradeSkillOnlyShowMakeable", + "address": "0x1dd3e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TradeSkillOnlyShowSkillUps", + "address": "0x1dd420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CollapseTradeSkillSubClass", + "address": "0x1dd460" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ExpandTradeSkillSubClass", + "address": "0x1dd500" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillReagentInfo", + "address": "0x1de400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTradeSkillTools", + "address": "0x1de620" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumQuestLogEntries", + "address": "0x1df010" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogSelection", + "address": "0x1df0a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetAbandonQuest", + "address": "0x1df0d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAbandonQuestName", + "address": "0x1df0e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumQuestLogRewards", + "address": "0x1df150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumQuestLogChoices", + "address": "0x1df1d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogItemLink", + "address": "0x1df250" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogRewardTalents", + "address": "0x1df3a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogRewardArenaPoints", + "address": "0x1df400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogRequiredMoney", + "address": "0x1df460" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogPushable", + "address": "0x1df520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumQuestWatches", + "address": "0x1df5d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsQuestWatched", + "address": "0x1df610" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RemoveQuestWatch", + "address": "0x1df700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestIndexForWatch", + "address": "0x1df780" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogGroupNum", + "address": "0x1df870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ProcessQuestLogRewardFactions", + "address": "0x1df8a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumQuestLogRewardFactions", + "address": "0x1df910" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogRewardFactionInfo", + "address": "0x1df940" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestSortIndex", + "address": "0x1dfa10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestPOIGetQuestIDByIndex", + "address": "0x1dfa80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetPOIIconOverlapDistance", + "address": "0x1dfb00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetPOIIconOverlapPushDistance", + "address": "0x1dfb40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShiftQuestWatches", + "address": "0x1dfba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestWatchIndex", + "address": "0x1dfc40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SelectQuestLogEntry", + "address": "0x1e02f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogQuestText", + "address": "0x1e0340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestPOIGetIconInfo", + "address": "0x1e0590" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogCompletionText", + "address": "0x1e06d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAbandonQuestItems", + "address": "0x1e3d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AbandonQuest", + "address": "0x1e4060" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsUnitOnQuest", + "address": "0x1e4070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumQuestLeaderBoards", + "address": "0x1e41a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumQuestItemDrops", + "address": "0x1e4260" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogTimeLeft", + "address": "0x1e4320" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsCurrentQuestFailed", + "address": "0x1e43f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogRewardInfo", + "address": "0x1e4490" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogChoiceInfo", + "address": "0x1e4660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogSpellLink", + "address": "0x1e4840" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogRewardMoney", + "address": "0x1e48f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogRewardXP", + "address": "0x1e49b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogRewardHonor", + "address": "0x1e4b70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogRewardTitle", + "address": "0x1e4c10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogRewardSpell", + "address": "0x1e4d10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestLogPushQuest", + "address": "0x1e4ed0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestIndexForTimer", + "address": "0x1e4fb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CollapseQuestHeader", + "address": "0x1e5100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ExpandQuestHeader", + "address": "0x1e5150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestGreenRange", + "address": "0x1e51a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLink", + "address": "0x1e51d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogSpecialItemInfo", + "address": "0x1e52d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogSpecialItemCooldown", + "address": "0x1e53d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsQuestLogSpecialItemInRange", + "address": "0x1e54c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UseQuestLogSpecialItem", + "address": "0x1e5640" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestWorldMapAreaID", + "address": "0x1e56c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestPOIUpdateIcons", + "address": "0x1e5740" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestPOIGetQuestIDByVisibleIndex", + "address": "0x1e5750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogTitle", + "address": "0x1e5cc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogLeaderBoard", + "address": "0x1e5f60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestLogItemDrop", + "address": "0x1e60d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestTimers", + "address": "0x1e6240" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_QuestMapUpdateAllQuests", + "address": "0x1e63d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SortQuestWatches", + "address": "0x1e64b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestPOILeaderBoard", + "address": "0x1e6650" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddQuestWatch", + "address": "0x1e67c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetQuestResetTime", + "address": "0x1e6de0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_KeyRingButtonIDToInvSlotID", + "address": "0x1e7700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasInspectHonorData", + "address": "0x1e7780" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInspectHonorData", + "address": "0x1e77c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ClearInspectPlayer", + "address": "0x1e7890" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventorySlotInfo", + "address": "0x1e7d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryItemCooldown", + "address": "0x1e7e60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryAlertStatus", + "address": "0x1e7fa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInspectArenaTeamData", + "address": "0x1e8030" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryItemsForSlot", + "address": "0x1e95c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryItemTexture", + "address": "0x1e9bc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryItemBroken", + "address": "0x1e9d80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryItemCount", + "address": "0x1e9e40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryItemQuality", + "address": "0x1ea040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryItemDurability", + "address": "0x1ea170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryItemLink", + "address": "0x1ea270" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryItemID", + "address": "0x1ea3e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetInventoryItemGems", + "address": "0x1ea4f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupInventoryItem", + "address": "0x1ea5f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UseInventoryItem", + "address": "0x1ea630" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SocketInventoryItem", + "address": "0x1ea6a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsInventoryItemLocked", + "address": "0x1ea6e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PutItemInBag", + "address": "0x1ea780" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PutItemInBackpack", + "address": "0x1ea7f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PickupBagFromSlot", + "address": "0x1ea840" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CursorCanGoInSlot", + "address": "0x1ea880" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowInventorySellCursor", + "address": "0x1ea930" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetInventoryPortraitTexture", + "address": "0x1ea9b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGuildInfo", + "address": "0x1eaaf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UpdateInventoryAlertStatus", + "address": "0x1eac00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_OffhandHasWeapon", + "address": "0x1eac10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RequestInspectHonorData", + "address": "0x1eac90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetWeaponEnchantInfo", + "address": "0x1eaca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasWandEquipped", + "address": "0x1eae90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_3", + "address": "0x1eeb70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimGetNormPower", + "address": "0x1f9550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsMouselooking", + "address": "0x1f9dd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimGetAngle", + "address": "0x1f9e10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimGetNormAngle", + "address": "0x1f9e60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimSetNormPower", + "address": "0x1f9f10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsVehicleAimAngleAdjustable", + "address": "0x1f9f70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsVehicleAimPowerAdjustable", + "address": "0x1f9fe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DetectWowMouse", + "address": "0x1fa050" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ToggleRun", + "address": "0x1faae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleExit", + "address": "0x1fb660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehiclePrevSeat", + "address": "0x1fb6d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleNextSeat", + "address": "0x1fb720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimIncrement", + "address": "0x1fb770" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimDecrement", + "address": "0x1fb7d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimRequestAngle", + "address": "0x1fb820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimRequestNormAngle", + "address": "0x1fb8c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsUsingVehicleControls", + "address": "0x1fb970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanExitVehicle", + "address": "0x1fb9c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanSwitchVehicleSeats", + "address": "0x1fba10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_JumpOrAscendStart", + "address": "0x1fbf80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AscendStop", + "address": "0x1fc0a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DescendStop", + "address": "0x1fc140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ToggleAutoRun", + "address": "0x1fc190" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveForwardStart", + "address": "0x1fc200" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveForwardStop", + "address": "0x1fc250" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveBackwardStart", + "address": "0x1fc290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveBackwardStop", + "address": "0x1fc2e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TurnLeftStart", + "address": "0x1fc320" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TurnLeftStop", + "address": "0x1fc360" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TurnRightStart", + "address": "0x1fc3b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TurnRightStop", + "address": "0x1fc3f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StrafeLeftStart", + "address": "0x1fc440" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StrafeLeftStop", + "address": "0x1fc490" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StrafeRightStart", + "address": "0x1fc4d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StrafeRightStop", + "address": "0x1fc520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimUpStop", + "address": "0x1fc570" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimDownStop", + "address": "0x1fc5c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TurnOrActionStart", + "address": "0x1fc610" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_TurnOrActionStop", + "address": "0x1fc680" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CameraOrSelectOrMoveStart", + "address": "0x1fc6c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CameraOrSelectOrMoveStop", + "address": "0x1fc730" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveAndSteerStart", + "address": "0x1fc780" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveAndSteerStop", + "address": "0x1fc830" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MouselookStop", + "address": "0x1fc890" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimUpStart", + "address": "0x1fc8e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleAimDownStart", + "address": "0x1fc920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MouselookStart", + "address": "0x1fcc10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetMouselookOverrideBinding", + "address": "0x1fd550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewInStart", + "address": "0x1ff080" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewInStop", + "address": "0x1ff0a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewOutStart", + "address": "0x1ff0d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewOutStop", + "address": "0x1ff0f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewRightStart", + "address": "0x1ff120" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewRightStop", + "address": "0x1ff140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewLeftStart", + "address": "0x1ff170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewLeftStop", + "address": "0x1ff190" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewUpStart", + "address": "0x1ff1c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewUpStop", + "address": "0x1ff1e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewDownStart", + "address": "0x1ff210" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_MoveViewDownStop", + "address": "0x1ff230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SaveView", + "address": "0x1ff260" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_FlipCameraYaw", + "address": "0x1ff2c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CameraZoomIn", + "address": "0x2017e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CameraZoomOut", + "address": "0x201840" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleCameraZoomIn", + "address": "0x2018a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VehicleCameraZoomOut", + "address": "0x2018b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetView", + "address": "0x2039b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ResetView", + "address": "0x204c80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_NextView", + "address": "0x204ce0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PrevView", + "address": "0x204d10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetTime", + "address": "0x2081f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetGameTime", + "address": "0x208230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ConsoleExec", + "address": "0x208270" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMaxCombatRatingBonus", + "address": "0x2082c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetWaterDetail", + "address": "0x208560" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanSwitchVehicleSeat", + "address": "0x208580" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemStats", + "address": "0x208690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetItemStatDelta", + "address": "0x208760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsLoggedIn", + "address": "0x20a450" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPlayerFacing", + "address": "0x20a490" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_FillLocalizedClassList", + "address": "0x20a510" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitExists", + "address": "0x20c2a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsVisible", + "address": "0x20c350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsUnit", + "address": "0x20c3d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsPlayer", + "address": "0x20c4b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsInMyGuild", + "address": "0x20c550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsCorpse", + "address": "0x20c6f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsPartyLeader", + "address": "0x20c770" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitGroupRolesAssigned", + "address": "0x20c810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsRaidOfficer", + "address": "0x20c8a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitInParty", + "address": "0x20c920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitPlayerOrPetInParty", + "address": "0x20c9a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitInRaid", + "address": "0x20ca20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitInBattleground", + "address": "0x20caa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitPlayerOrPetInRaid", + "address": "0x20cb20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitPlayerControlled", + "address": "0x20cba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsAFK", + "address": "0x20cc30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsDND", + "address": "0x20cd50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsPVP", + "address": "0x20ce20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsPVPSanctuary", + "address": "0x20cf20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsPVPFreeForAll", + "address": "0x20cfb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitFactionGroup", + "address": "0x20d0a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitReaction", + "address": "0x20d280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsEnemy", + "address": "0x20d330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsFriend", + "address": "0x20d3d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitCanCooperate", + "address": "0x20d530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitCanAssist", + "address": "0x20d690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitCanAttack", + "address": "0x20d730" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsCharmed", + "address": "0x20d7d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsPossessed", + "address": "0x20d860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PlayerCanTeleport", + "address": "0x20d8f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitClassification", + "address": "0x20d970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitSelectionColor", + "address": "0x20da00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsInGuild", + "address": "0x20db20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsGuildLeader", + "address": "0x20db80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsInArenaTeam", + "address": "0x20dbf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsArenaTeamCaptain", + "address": "0x20dc70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsResting", + "address": "0x20dd40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCombatRating", + "address": "0x20ddb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCombatRatingBonus", + "address": "0x20de70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetDodgeChance", + "address": "0x20df30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetBlockChance", + "address": "0x20df90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetShieldBlock", + "address": "0x20dff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetParryChance", + "address": "0x20e070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCritChance", + "address": "0x20e0d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCritChanceFromAgility", + "address": "0x20e130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellCritChanceFromIntellect", + "address": "0x20e1b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRangedCritChance", + "address": "0x20e230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellCritChance", + "address": "0x20e290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellBonusDamage", + "address": "0x20e310" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellBonusHealing", + "address": "0x20e3b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPetSpellBonusDamage", + "address": "0x20e410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSpellPenetration", + "address": "0x20e470" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetArmorPenetration", + "address": "0x20e4e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetAttackPowerForStat", + "address": "0x20e560" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitGUID", + "address": "0x20e630" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitName", + "address": "0x20e740" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitPVPName", + "address": "0x20e9a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitXP", + "address": "0x20ea60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitXPMax", + "address": "0x20eae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitHealth", + "address": "0x20eb60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitHealthMax", + "address": "0x20ec60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitPower", + "address": "0x20ed40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitPowerMax", + "address": "0x20ef40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitPowerType", + "address": "0x20f100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitOnTaxi", + "address": "0x20f350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsFeignDeath", + "address": "0x20f3d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsDead", + "address": "0x20f480" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsGhost", + "address": "0x20f580" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsDeadOrGhost", + "address": "0x20f680" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsConnected", + "address": "0x20f790" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitAffectingCombat", + "address": "0x20f860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitSex", + "address": "0x20f8e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitLevel", + "address": "0x20f9e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMoney", + "address": "0x20fba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetHonorCurrency", + "address": "0x20fc40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetArenaCurrency", + "address": "0x20fcc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitRace", + "address": "0x20fd40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitClass", + "address": "0x20fec0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitClassBase", + "address": "0x210040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitResistance", + "address": "0x2101a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitStat", + "address": "0x210300" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitAttackBothHands", + "address": "0x210450" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitRangedDamage", + "address": "0x210550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitRangedAttack", + "address": "0x2107d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitDamage", + "address": "0x210860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitAttackSpeed", + "address": "0x210a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitAttackPower", + "address": "0x210b60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitRangedAttackPower", + "address": "0x210ca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitDefense", + "address": "0x210de0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitArmor", + "address": "0x210ec0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitCharacterPoints", + "address": "0x210fb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsTapped", + "address": "0x211130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsTappedByPlayer", + "address": "0x2111b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsTappedByAllThreatList", + "address": "0x211230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsTrivial", + "address": "0x2112b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitHasRelicSlot", + "address": "0x211330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetPortraitTexture", + "address": "0x2113e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_HasFullControl", + "address": "0x211600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetComboPoints", + "address": "0x211670" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitCreatureType", + "address": "0x211780" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitCreatureFamily", + "address": "0x211820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetResSicknessDuration", + "address": "0x2118c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPVPSessionStats", + "address": "0x211a20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPVPYesterdayStats", + "address": "0x211ad0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPVPLifetimeStats", + "address": "0x211b80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitPVPRank", + "address": "0x211c40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPVPRankInfo", + "address": "0x211cb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitCastingInfo", + "address": "0x211df0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitChannelInfo", + "address": "0x212090" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsFlyableArea", + "address": "0x212260" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsIndoors", + "address": "0x212300" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsOutdoors", + "address": "0x212360" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsOutOfBounds", + "address": "0x2123c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsFalling", + "address": "0x212430" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsSwimming", + "address": "0x2124a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsFlying", + "address": "0x212500" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsMounted", + "address": "0x2125a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsStealthed", + "address": "0x212610" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsSameServer", + "address": "0x212670" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetUnitHealthModifier", + "address": "0x2127f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetUnitMaxHealthModifier", + "address": "0x212870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetUnitPowerModifier", + "address": "0x212900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetUnitHealthRegenRateFromSpirit", + "address": "0x212980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetUnitManaRegenRateFromSpirit", + "address": "0x212a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetManaRegen", + "address": "0x212a90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPowerRegen", + "address": "0x212b40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetExpertise", + "address": "0x212bf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetExpertisePercent", + "address": "0x212cb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ReportPlayerIsPVPAFK", + "address": "0x212d50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PlayerIsPVPInactive", + "address": "0x212e20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitInRange", + "address": "0x212f10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRuneCooldown", + "address": "0x213020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRuneCount", + "address": "0x213140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetRuneType", + "address": "0x2131e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetUnitSpeed", + "address": "0x213290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetUnitPitch", + "address": "0x213330" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitInVehicle", + "address": "0x2133d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitUsingVehicle", + "address": "0x2134a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitControllingVehicle", + "address": "0x213570" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitInVehicleControlSeat", + "address": "0x213700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitHasVehicleUI", + "address": "0x213740" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitTargetsVehicleInRaidUI", + "address": "0x213780" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitVehicleSkin", + "address": "0x2137d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitVehicleSeatCount", + "address": "0x213830" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitVehicleSeatInfo", + "address": "0x2138c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitSwitchToVehicleSeat", + "address": "0x2139b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitThreatSituation", + "address": "0x213a60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitDetailedThreatSituation", + "address": "0x213b40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsControlling", + "address": "0x213c90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CanEjectPassengerFromSeat", + "address": "0x213d20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EjectPassengerFromSeat", + "address": "0x213e10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RespondInstanceLock", + "address": "0x213ed0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetPlayerInfoByGUID", + "address": "0x213f90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsXPUserDisabled", + "address": "0x214140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitBuff", + "address": "0x214ca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitDebuff", + "address": "0x214cf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitAura", + "address": "0x214d40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetVehicleUIIndicator", + "address": "0x214e60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetVehicleUIIndicatorSeat", + "address": "0x214ef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CopyCursorImage", + "address": "0x2160b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "UpdateCursor", + "address": "0x2162c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CursorInitialize", + "address": "0x2163b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CursorSetMode", + "address": "0x216800" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxXformPush_EGxXform_C44Matrix", + "address": "0x216ad0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_4", + "address": "0x232050" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_5", + "address": "0x253a10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxDevCreate", + "address": "0x281290" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxSceneClear", + "address": "0x2813b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxTexUpdate", + "address": "0x2813d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxLog", + "address": "0x2817e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxPrimIndexPtr", + "address": "0x281ab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxPrimVertexPtr", + "address": "0x281b00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxTexFlags__CGxTexFlags", + "address": "0x281be0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxTexCreate", + "address": "0x281cb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxDrawLockedElements", + "address": "0x282340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxPrimVertexPtr_FFP", + "address": "0x282400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxPrimLockVertexPtrs", + "address": "0x2828c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxScenePresent", + "address": "0x282a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__DeviceCreate_WindowProc_CGxFormat", + "address": "0x282cb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__DeviceSetBaseMipLevel", + "address": "0x282d00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__DeviceApi", + "address": "0x282d20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__IDevIsWindowed", + "address": "0x282d40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__DeviceCurWindow", + "address": "0x282d70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ScenePresent", + "address": "0x282e50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__PrimCalcCount", + "address": "0x282f40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__LightEnable", + "address": "0x283080" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__NeedsUpdate", + "address": "0x2830b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__MasterEnable", + "address": "0x283100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__BufData", + "address": "0x283130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__BufLock", + "address": "0x283150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__BufUnlock", + "address": "0x283180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ShaderConstantsClear", + "address": "0x2833a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ShaderConstantsSet", + "address": "0x2833e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ShaderConstantsLock", + "address": "0x283560" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ShaderConstantsUnlock", + "address": "0x283580" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ICursorDestroy", + "address": "0x2835e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ICursorUpdate", + "address": "0x283610" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__CursorSetVisible", + "address": "0x283640" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__CursorLock", + "address": "0x283650" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__CursorSetDepth", + "address": "0x283660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__DeviceSetFormat", + "address": "0x2840f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__DeviceSetGamma", + "address": "0x284190" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__DeviceSetDefWindow", + "address": "0x284360" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ClipPlaneSet", + "address": "0x284440" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__LightSet", + "address": "0x2847d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__BufStream", + "address": "0x284850" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__TexMarkForUpdate", + "address": "0x2848a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ITexMarkAsUpdated", + "address": "0x284900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__IShaderLoad", + "address": "0x284970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ICursorCreate", + "address": "0x284ad0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__CursorUnlock", + "address": "0x284b50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__Log", + "address": "0x284c20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__Log_CGxCaps", + "address": "0x284c40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__Log", + "address": "0x284d10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__IRsDirty", + "address": "0x285970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__IRsForceUpdate_EGxRenderState", + "address": "0x2859e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__IRsForceUpdate", + "address": "0x2859e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__IRsForceUpdate", + "address": "0x285a70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__IRsSync", + "address": "0x285b50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__TexCreate", + "address": "0x285c60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__MasterEnableSet", + "address": "0x285eb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__RsSet", + "address": "0x285f50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__RsPop", + "address": "0x285fb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__BufCreate", + "address": "0x287660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__PoolCreate", + "address": "0x2876d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ICursorDraw", + "address": "0x287a90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__PoolDestroy", + "address": "0x288340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__CGxDevice", + "address": "0x288690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ShaderCreate", + "address": "0x2897c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxShader__Valid", + "address": "0x289a50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__NewD3d", + "address": "0x289ef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceOpenGl__CGxDeviceOpenGl", + "address": "0x28bbc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__NewOpenGl", + "address": "0x28bf20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__NewD3d9Ex", + "address": "0x28c220" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ICreateD3dIB", + "address": "0x28e180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ISetPresentParms", + "address": "0x28e250" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__PoolDestroy", + "address": "0x28e720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__CursorSetVisible", + "address": "0x28e750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ICursorDraw", + "address": "0x28e810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ICursorCreate", + "address": "0x28e900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ICreateWindow", + "address": "0x28ebb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ILoadD3dLib", + "address": "0x28ed80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ISetCaps", + "address": "0x28ee20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ICreateD3dDevice", + "address": "0x28f3d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IBufUnlock", + "address": "0x28fa60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__BufUnlock", + "address": "0x28fae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IBufLock", + "address": "0x28fb10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__BufLock", + "address": "0x28fce0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__BufData", + "address": "0x28fd00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__CGxDeviceD3d", + "address": "0x28fd50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__DeviceWM", + "address": "0x290230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__DeviceSetFormat", + "address": "0x2904d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ICreateD3d", + "address": "0x290680" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__DeviceCreate_WindowProc_CGxFormat", + "address": "0x290750" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ICreateD3dVB", + "address": "0x29fb00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__CreatePoolAPI", + "address": "0x29fb70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ICursorDestroy", + "address": "0x2a00c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__WindowProcD3d", + "address": "0x2a0360" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d9Ex__CGxDeviceD3d9Ex", + "address": "0x2a1a90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ITexCreate", + "address": "0x2a2c00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ITexUpload", + "address": "0x2a2d80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ITexMarkAsUpdated", + "address": "0x2a3070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ISceneBegin", + "address": "0x2a3350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ISceneEnd", + "address": "0x2a3420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ScenePresent", + "address": "0x2a3450" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__Draw", + "address": "0x2a3620" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IStateSyncEnables", + "address": "0x2a3810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ISetVertexBuffer", + "address": "0x2a39e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IStateSetD3DDefaults", + "address": "0x2a3a60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__DsSet", + "address": "0x2a3c40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ISetColorOp", + "address": "0x2a4190" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ISetAlphaOp", + "address": "0x2a41f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IStateSyncMaterial", + "address": "0x2a4700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IStateSyncXforms", + "address": "0x2a4850" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ISetTexture", + "address": "0x2a4900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IRsSendToHw", + "address": "0x2a4c30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ICreateD3dVertexDecl", + "address": "0x2a5540" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IStateSyncVertexPtrs", + "address": "0x2a5700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IStateSync", + "address": "0x2a5940" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__CapsWindowSize", + "address": "0x2a5a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IXformSetWorld", + "address": "0x2a5a30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IBindPixelShader", + "address": "0x2a5c70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IShaderCreate", + "address": "0x2a5e10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__ITexWHDStartEnd", + "address": "0x2a5ef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__SceneClear", + "address": "0x2a74b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__CapsWindowSizeInScreenCoords", + "address": "0x2a9920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__XformSetProjection", + "address": "0x2a9b40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__XformSetView", + "address": "0x2a9e00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IShaderConstantsFlush", + "address": "0x2a9fe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IShaderCreatePixel", + "address": "0x2aa070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IShaderCreateVertex", + "address": "0x2aa0d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__ShaderCreate", + "address": "0x2aa130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__IBindVertexShader", + "address": "0x2aa2f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__ColorMapEntryBytes", + "address": "0x2aa350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__ColorMapBytes", + "address": "0x2aa380" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__ValidateColorDepth", + "address": "0x2aa3b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__PreImageBytes", + "address": "0x2aa3e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__AddAlphaChannel_internal", + "address": "0x2aa420" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__ReadRawImage", + "address": "0x2aa520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__RLEDecompressImage", + "address": "0x2aa630" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__SetTopDown", + "address": "0x2aa700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__ImageTGA32Pixel", + "address": "0x2aa840" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__RemoveAlphaChannels", + "address": "0x2aa870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__Close", + "address": "0x2aaf40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__Open", + "address": "0x2aafb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__ConvertColorMapped", + "address": "0x2ab0e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__ReadRleImage", + "address": "0x2ab220" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__AddAlphaChannel", + "address": "0x2ab390" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__ReadColorMappedImage", + "address": "0x2ab450" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CTgaFile__LoadImageData", + "address": "0x2ab4b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GetBitDepth", + "address": "0x2ab5c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CalcLevelSize", + "address": "0x2ab620" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CalcLevelCount", + "address": "0x2ab700" + }, + { + "manual": true, + "module": "wow.exe", + "text": "MippedImgAllocA", + "address": "0x2ab760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "MippedImgSet", + "address": "0x2ab810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "FullShrink", + "address": "0x2ab860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__Close", + "address": "0x2ae8b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__Source", + "address": "0x2ae900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__DecompPalFastPath", + "address": "0x2ae990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__DecompPalARGB8888", + "address": "0x2ae9e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__DecompPalARGB4444DitherFloydSteinberg", + "address": "0x2aeba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__DecompPalARGB1555DitherFloydSteinberg", + "address": "0x2aee70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__DecompPalARGB565DitherFloydSteinberg", + "address": "0x2af140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__DecompPalARGB2565DitherFloydSteinberg", + "address": "0x2af340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__Pixels", + "address": "0x2af6a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__GetFormatSize", + "address": "0x2af730" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__DecompPal", + "address": "0x2af810" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__Lock2", + "address": "0x2afce0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__Open", + "address": "0x2aff10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__LockChain2", + "address": "0x2affd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_154", + "address": "0x2b0960" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_151", + "address": "0x2b1b80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_6", + "address": "0x2b1b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_155", + "address": "0x2b1ba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumWhoResults", + "address": "0x2b33d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetWhoToUI", + "address": "0x2b3430" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumFriends", + "address": "0x2b4060" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetFriendInfo", + "address": "0x2b4130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSelectedFriend", + "address": "0x2b4400" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSelectedFriend", + "address": "0x2b44b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_ShowFriends", + "address": "0x2b44f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumIgnores", + "address": "0x2b4560" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumMutes", + "address": "0x2b45c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetIgnoreName", + "address": "0x2b4620" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetMuteName", + "address": "0x2b4760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSelectedIgnore", + "address": "0x2b48a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetSelectedMute", + "address": "0x2b4950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSelectedIgnore", + "address": "0x2b4a00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetSelectedMute", + "address": "0x2b4a40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetWhoInfo", + "address": "0x2b4a80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SortWho", + "address": "0x2b4eb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddFriend", + "address": "0x2b6af0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SendWho", + "address": "0x2b6b50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddOrDelIgnore", + "address": "0x2b6ba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddOrDelMute", + "address": "0x2b6bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddIgnore", + "address": "0x2b6c00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddMute", + "address": "0x2b6c30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsIgnored", + "address": "0x2b6c60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsMuted", + "address": "0x2b6cf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_IsIgnoredOrMuted", + "address": "0x2b6d80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_AddOrRemoveFriend", + "address": "0x2b7b70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_RemoveFriend", + "address": "0x2b7bd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetFriendNotes", + "address": "0x2b7c90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DelIgnore", + "address": "0x2b7d70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_DelMute", + "address": "0x2b7da0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontAddToBatch", + "address": "0x2bce10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontRenderBatch", + "address": "0x2bce40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontGetTextExtent", + "address": "0x2bce60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontGetMaxCharsWithinWidth", + "address": "0x2bcea0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontGetOneToOneHeight", + "address": "0x2bd020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontSetStringPosition", + "address": "0x2bd0a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontAddShadow", + "address": "0x2bd0c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuDetermineQuotedCode", + "address": "0x2bd5a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontDestroyString", + "address": "0x2bdfc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontWindowSizeChanged", + "address": "0x2be020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontCreateString", + "address": "0x2be2b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontClearBatch", + "address": "0x2be390" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontDestroyBatch", + "address": "0x2be3b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontUpdate", + "address": "0x2be3e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuFontCreateBatch", + "address": "0x2bf160" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuXformCreateProjection_Exact", + "address": "0x2bf370" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuXformCalcFrustumCorners", + "address": "0x2bf6d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuUpdateSingleColorTexture", + "address": "0x2bfda0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuXformCreateProjection_SG", + "address": "0x2bfe00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GxuXformCreateLookAtSgCompat", + "address": "0x2bfe60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "IGxuFontGlyphRenderGlyph", + "address": "0x2c8cc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_152", + "address": "0x343550" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_153", + "address": "0x343560" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatTextSetActiveUnit", + "address": "0x34d580" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatLogSetRetentionTime", + "address": "0x34d5b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatLog_Object_IsA", + "address": "0x34d600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatLogGetRetentionTime", + "address": "0x34d9e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatLogGetCurrentEntry", + "address": "0x34f2b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatLogResetFilter", + "address": "0x34fa60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatLogGetNumEntries", + "address": "0x34fa70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatLogSetCurrentEntry", + "address": "0x34fae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatLogAdvanceEntry", + "address": "0x34fc20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatLogAddFilter", + "address": "0x34ff70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CombatLogClearEntries", + "address": "0x351120" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SetInputString", + "address": "0x363730" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ReserveInputSpace", + "address": "0x3637d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ResetHighlight", + "address": "0x363830" + }, + { + "manual": true, + "module": "wow.exe", + "text": "UpdateHighlight", + "address": "0x363860" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OnMouseUp", + "address": "0x3639a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OnMouseMove", + "address": "0x3639d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "MakeCommandCurrent", + "address": "0x363a60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleCommandHistoryPrev", + "address": "0x363b40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleCommandHistoryNext", + "address": "0x363b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OnKeyUp", + "address": "0x363be0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsolePostClose", + "address": "0x363c50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "EventCloseCallback", + "address": "0x363d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "DrawBackground", + "address": "0x363df0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "DrawHighLight", + "address": "0x364040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "DrawCaret", + "address": "0x3641a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "PaintBackground", + "address": "0x3643f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "GetInputLine", + "address": "0x364520" + }, + { + "manual": true, + "module": "wow.exe", + "text": "PaintText", + "address": "0x3645e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "PasteInInputLine", + "address": "0x364800" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OnChar", + "address": "0x364990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_active", + "address": "0x3649af" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OnMouseDown", + "address": "0x364a10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OnKeyDownRepeat", + "address": "0x364b90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleWrite", + "address": "0x365270" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleWriteA", + "address": "0x3653b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleCommandExecute", + "address": "0x3658a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OnIdle", + "address": "0x3659c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OnKeyDown", + "address": "0x365af0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "RegisterHandlers", + "address": "0x365ff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleScreenInitialize", + "address": "0x366140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CVarLoadFile", + "address": "0x366530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CVar__Set", + "address": "0x3668c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CVarSaveFile", + "address": "0x367100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CVar__Destroy", + "address": "0x3673f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CVar__Register", + "address": "0x367fc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CVar__Initialize", + "address": "0x368340" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleCommand_Quit", + "address": "0x368410" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleCommandHistory", + "address": "0x368440" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleCommandUnregister", + "address": "0x3689e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleCommandRegister", + "address": "0x369100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleAccessGetEnabled", + "address": "0x369230" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleDeviceInitialize", + "address": "0x36ab80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SMemSetDebugFlags", + "address": "0x36e4a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SMemAlloc", + "address": "0x36e540" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SMemFree", + "address": "0x36e5a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SMemReAlloc", + "address": "0x36e5e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrChr", + "address": "0x36e6e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrChrR", + "address": "0x36e720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrCmp", + "address": "0x36e760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrCmpI", + "address": "0x36e780" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrCopy", + "address": "0x36ed20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrLen", + "address": "0x36ee30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrPack", + "address": "0x36ef70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrPrintf", + "address": "0x36f070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrVPrintf", + "address": "0x36f0a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrTokenize", + "address": "0x36f1e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SStrHashHT", + "address": "0x36f640" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SRegLoadValue", + "address": "0x370840" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SRegSaveValue", + "address": "0x3709a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SErrSetLastError", + "address": "0x371870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SErrSetLogTitleString", + "address": "0x371890" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SErrSetLogTitleCallback", + "address": "0x371900" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SErrRegisterHandler", + "address": "0x371b80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SErrCatchUnhandledExceptions", + "address": "0x372b20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SCmdRegisterArgList", + "address": "0x373590" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SCmdProcess", + "address": "0x373890" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SCmdProcessCommandLine", + "address": "0x373990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "StormInitialize", + "address": "0x3739e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "StormSetOption", + "address": "0x373a80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SCritSect__SCritSect", + "address": "0x374620" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SCritSect__destructor", + "address": "0x374630" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SCritSect__Enter", + "address": "0x374640" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SCritSect__Leave", + "address": "0x374650" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CSRWLock__Leave", + "address": "0x374660" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SSyncObject__Wait", + "address": "0x374690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SEvent__Set", + "address": "0x374720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SEvent__Reset", + "address": "0x374730" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SRgnDelete", + "address": "0x377940" + }, + { + "manual": true, + "module": "wow.exe", + "text": "SRgnCreate", + "address": "0x377980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceEnumerateOutputDevices", + "address": "0x3dab80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceEnumerateCaptureDevices", + "address": "0x3dac40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceSelectOutputDevice", + "address": "0x3dacf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceSelectCaptureDevice", + "address": "0x3dae40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceGetCurrentOutputDevice", + "address": "0x3daf90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceGetCurrentCaptureDevice", + "address": "0x3dafe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumVoiceSessions", + "address": "0x3db030" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetVoiceSessionInfo", + "address": "0x3db0b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetVoiceCurrentSessionID", + "address": "0x3db1f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SetActiveVoiceChannelBySessionID", + "address": "0x3db280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumVoiceSessionMembersBySessionID", + "address": "0x3db370" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetVoiceStatus", + "address": "0x3db8d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceIsDisabledByClient", + "address": "0x3dc910" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetVoiceSessionMemberInfoBySessionID", + "address": "0x3deef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_UnitIsTalking", + "address": "0x3df0b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SpellIsTargeting", + "address": "0x3fdcd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SpellCanTargetItem", + "address": "0x3fdd10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SpellCanTargetGlyph", + "address": "0x3fdd60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SpellTargetItem", + "address": "0x4007e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelItemTempEnchantment", + "address": "0x4021d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CannotBeResurrected", + "address": "0x402270" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SpellCanTargetUnit", + "address": "0x404190" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CancelUnitBuff", + "address": "0x404220" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SpellStopTargeting", + "address": "0x409e30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SpellStopCasting", + "address": "0x409ea0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_SpellTargetUnit", + "address": "0x40dc00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "FrameScript_Execute", + "address": "0x419ea0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "FrameScript_SignalEvent", + "address": "0x41b530" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetText", + "address": "0x41b720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CreateFont", + "address": "0x41b7b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetCurrentKeyBoardFocus", + "address": "0x41b820" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_EnumerateFrames", + "address": "0x41b9c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetNumFrames", + "address": "0x41bab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_CreateFrame", + "address": "0x41bb20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_GetFramesRegisteredForEvent", + "address": "0x41be70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_gettop", + "address": "0x44dbd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_settop", + "address": "0x44dbf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_insert", + "address": "0x44dcc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_type", + "address": "0x44deb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_isnumber", + "address": "0x44df20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_isstring", + "address": "0x44df60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_tonumber", + "address": "0x44e030" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_tolstring", + "address": "0x44e0e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_touserdata", + "address": "0x44e1c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_pushnil", + "address": "0x44e280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_pushnumber", + "address": "0x44e2a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_pushstring", + "address": "0x44e350" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_rawget", + "address": "0x44e600" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_rawgeti", + "address": "0x44e670" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_lua_rawset", + "address": "0x44e970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_luaL_error", + "address": "0x44f280" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_luaL_unref", + "address": "0x44f7a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_luaG_runerror", + "address": "0x450920" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_luaD_throw", + "address": "0x4562e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_luaD_precall", + "address": "0x456370" + }, + { + "manual": true, + "module": "wow.exe", + "text": "luaD_call", + "address": "0x456760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "_luaV_execute", + "address": "0x457ca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "RestoreMouse", + "address": "0x4695b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsInputInitialize", + "address": "0x469720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsInputDestroy", + "address": "0x469760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsInputSetEventPollProc", + "address": "0x469d90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CenterMouse", + "address": "0x469db0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsInputGet", + "address": "0x469e00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsInputSetMouseMode", + "address": "0x46a020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsInputGetMousePosition", + "address": "0x46a0d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsInputSetMousePosition", + "address": "0x46a130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsGetDefaultWindowRect", + "address": "0x46a1a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsGetAsyncTimeMs", + "address": "0x46ae20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsSystemEnableCpuLog", + "address": "0x46b0c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsGetProcessorCount", + "address": "0x46b240" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsGetExeName", + "address": "0x46bbd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsPathGetRootChars", + "address": "0x46bc30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsPathStripFilename", + "address": "0x46be50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsGetExePath", + "address": "0x46bea0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsGuiGetWindow", + "address": "0x46c6a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsIMEInitialize", + "address": "0x46d0a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsIMEDestroy", + "address": "0x46d0c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsCallSetContext", + "address": "0x46f5a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsCallInitialize", + "address": "0x46f760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsCallInitializeContext", + "address": "0x46f880" + }, + { + "manual": true, + "module": "wow.exe", + "text": "OsClipboardPutString", + "address": "0x4722a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "return_zero4_sub", + "address": "0x4e5250" + }, + { + "manual": true, + "module": "wow.exe", + "text": "ConsoleCommandHistoryDepth", + "address": "0x55bfb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataRecycler__Clear", + "address": "0x55cec0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataRecycler__GetData", + "address": "0x55cf40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataRecycler__PutData", + "address": "0x55cfb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataAllocator__GetData", + "address": "0x55d110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CDataAllocator__PutData", + "address": "0x55d1b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PlaySound", + "address": "0x5858b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PlayMusic", + "address": "0x585950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_PlaySoundFile", + "address": "0x5859b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_StopMusic", + "address": "0x585a10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Sound_ChatSystem_GetNumInputDrivers", + "address": "0x585a20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Sound_ChatSystem_GetInputDriverNameByIndex", + "address": "0x585a50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Sound_ChatSystem_GetNumOutputDrivers", + "address": "0x585ae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Sound_ChatSystem_GetOutputDriverNameByIndex", + "address": "0x585b10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Sound_GameSystem_GetNumInputDrivers", + "address": "0x585bb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Sound_GameSystem_GetInputDriverNameByIndex", + "address": "0x585be0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Sound_GameSystem_GetNumOutputDrivers", + "address": "0x585c70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Sound_GameSystem_GetOutputDriverNameByIndex", + "address": "0x585ca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_Sound_GameSystem_RestartSoundSystem", + "address": "0x585d30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceChat_StopCapture", + "address": "0x585d50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceChat_RecordLoopbackSound", + "address": "0x585d60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceChat_StopRecordingLoopbackSound", + "address": "0x585dd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceChat_PlayLoopbackSound", + "address": "0x585de0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceChat_StopPlayingLoopbackSound", + "address": "0x585df0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceChat_IsRecordingLoopbackSound", + "address": "0x585e00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceChat_IsPlayingLoopbackSound", + "address": "0x585e30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceChat_GetCurrentMicrophoneSignalLevel", + "address": "0x585e60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceChat_ActivatePrimaryCaptureCallback", + "address": "0x585e90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "Script_VoiceChat_StartCapture", + "address": "0x585ef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_7", + "address": "0x5d34b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_8", + "address": "0x5d34c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_9", + "address": "0x5d4260" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_10", + "address": "0x5db620" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_11", + "address": "0x5db630" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_12", + "address": "0x5dd930" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_13", + "address": "0x5dd940" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_14", + "address": "0x5dd950" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_15", + "address": "0x5dd960" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_16", + "address": "0x5dd970" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_17", + "address": "0x5dd980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_18", + "address": "0x5dd990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_19", + "address": "0x5dd9a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_20", + "address": "0x5dd9b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_21", + "address": "0x5dd9c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_22", + "address": "0x5dd9d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_23", + "address": "0x5dd9e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_24", + "address": "0x5dd9f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_25", + "address": "0x5dda00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_26", + "address": "0x5dda10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_27", + "address": "0x5dda20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_28", + "address": "0x5dda30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_29", + "address": "0x5dda40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_30", + "address": "0x5dda50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_31", + "address": "0x5dda60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_32", + "address": "0x5dda70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_33", + "address": "0x5dda80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_34", + "address": "0x5dda90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_35", + "address": "0x5ddaa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_36", + "address": "0x5ddab0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_37", + "address": "0x5ddac0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_38", + "address": "0x5ddad0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_39", + "address": "0x5ddae0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_40", + "address": "0x5ddaf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_41", + "address": "0x5ddb00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_42", + "address": "0x5ddb10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_43", + "address": "0x5ddb20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_44", + "address": "0x5ddb30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_45", + "address": "0x5ddb40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_46", + "address": "0x5ddb50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_47", + "address": "0x5ddb60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_48", + "address": "0x5ddb70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_49", + "address": "0x5ddb80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_50", + "address": "0x5ddb90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_51", + "address": "0x5ddba0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_52", + "address": "0x5ddbb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_53", + "address": "0x5ddbc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_54", + "address": "0x5ddbd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_55", + "address": "0x5ddbe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_56", + "address": "0x5ddbf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_57", + "address": "0x5ddc00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_58", + "address": "0x5ddc10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_59", + "address": "0x5ddc20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_60", + "address": "0x5ddc30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_61", + "address": "0x5ddc40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_62", + "address": "0x5ddc50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_63", + "address": "0x5ddc60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_64", + "address": "0x5ddc70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_65", + "address": "0x5ddc80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_66", + "address": "0x5ddc90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_67", + "address": "0x5ddca0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_68", + "address": "0x5ddcb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_69", + "address": "0x5ddcc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_70", + "address": "0x5ddcd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_71", + "address": "0x5ddce0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_72", + "address": "0x5ddcf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_73", + "address": "0x5ddd00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_74", + "address": "0x5ddd10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_75", + "address": "0x5ddd20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_76", + "address": "0x5ddd30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_77", + "address": "0x5ddd40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_78", + "address": "0x5ddd50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_79", + "address": "0x5ddd60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_80", + "address": "0x5ddd70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_81", + "address": "0x5ddd80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_82", + "address": "0x5ddd90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_83", + "address": "0x5ddda0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_84", + "address": "0x5dddb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_85", + "address": "0x5dddc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_86", + "address": "0x5dddd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_87", + "address": "0x5ddde0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_88", + "address": "0x5dddf0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_89", + "address": "0x5dde00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_90", + "address": "0x5dde10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_91", + "address": "0x5dde20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_92", + "address": "0x5dde30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_93", + "address": "0x5dde40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_94", + "address": "0x5dde50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_95", + "address": "0x5dde60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_96", + "address": "0x5dde70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_97", + "address": "0x5dde80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_98", + "address": "0x5dde90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_99", + "address": "0x5ddea0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_100", + "address": "0x5ddeb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_101", + "address": "0x5ddec0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_102", + "address": "0x5dded0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_103", + "address": "0x5ddee0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_104", + "address": "0x5ddef0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_105", + "address": "0x5ddf00" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_106", + "address": "0x5ddf10" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_107", + "address": "0x5ddf20" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_108", + "address": "0x5ddf30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_109", + "address": "0x5ddf40" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_110", + "address": "0x5ddf50" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_111", + "address": "0x5ddf60" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_112", + "address": "0x5ddf70" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_113", + "address": "0x5ddf80" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_114", + "address": "0x5ddf90" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_115", + "address": "0x5ddfa0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_116", + "address": "0x5ddfb0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_117", + "address": "0x5ddfc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_118", + "address": "0x5ddfd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_119", + "address": "0x5ddfe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_120", + "address": "0x5ddff0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_121", + "address": "0x5de000" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_122", + "address": "0x5de010" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_123", + "address": "0x5de020" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_124", + "address": "0x5de030" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_125", + "address": "0x5de040" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_126", + "address": "0x5de050" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_127", + "address": "0x5de060" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_128", + "address": "0x5de070" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_129", + "address": "0x5de080" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_130", + "address": "0x5de090" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_131", + "address": "0x5de0a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_132", + "address": "0x5de0b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_133", + "address": "0x5de0c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_134", + "address": "0x5de0d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_135", + "address": "0x5de0e0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_136", + "address": "0x5de0f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_137", + "address": "0x5de100" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_138", + "address": "0x5de110" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_139", + "address": "0x5de120" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_140", + "address": "0x5de130" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_141", + "address": "0x5de140" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_142", + "address": "0x5de150" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_143", + "address": "0x5de160" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_144", + "address": "0x5de170" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_145", + "address": "0x5de180" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_146", + "address": "0x5de190" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_147", + "address": "0x5de1a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_148", + "address": "0x5de1b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_149", + "address": "0x5de1c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "nullsub_150", + "address": "0x5de1d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_pixelFormatToMipBitsCache", + "address": "0x5f1074" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__vtable", + "address": "0x62ddc0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceOpenGl__vtable", + "address": "0x62e198" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d__vtable", + "address": "0x62e718" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDeviceD3d9Ex__vtable", + "address": "0x62f500" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_cursorNames", + "address": "0x6d2808" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__s_eightBitAlphaLookup", + "address": "0x6d90b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CBLPFile__s_oneBitAlphaLookup", + "address": "0x6d90c0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_rect", + "address": "0x6dbab4" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_consoleHotKey", + "address": "0x6dbac4" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_historyIndex", + "address": "0x6dbac8" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_fontHeight", + "address": "0x6dbacc" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_hRect", + "address": "0x6dbad4" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_baseTextFlags", + "address": "0x6dbae4" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_mainThread", + "address": "0x7417c8" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_interactiveCount", + "address": "0x7417d0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_messageRecycler", + "address": "0x741850" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGlueMgr__m_cursorMipBits", + "address": "0x76a9dc" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_cursorFile", + "address": "0x825cd0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_cursorItemMipsWidth", + "address": "0x825dd4" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_cursorItemMipsHeight", + "address": "0x825dd8" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_cursorItemMips", + "address": "0x825ddc" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_cursorItemType", + "address": "0x825de0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_cursorResetMode", + "address": "0x825de4" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_cursorItem", + "address": "0x825de8" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_cursorMode", + "address": "0x826de8" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_cursorImages", + "address": "0x826df0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "g_theGxDevicePtr", + "address": "0x85df88" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__s_uiVertexShader", + "address": "0x85dfdc" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__s_shadowConstants", + "address": "0x85dfe0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "CGxDevice__s_uiPixelShader", + "address": "0x85fffc" + }, + { + "manual": true, + "module": "wow.exe", + "text": "isIdent", + "address": "0x860760" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_caretpixheight", + "address": "0x8a1690" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_caret", + "address": "0x8a1694" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_caretpixwidth", + "address": "0x8a1718" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_inputString", + "address": "0x8a171c" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_currlineptr", + "address": "0x8a1720" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_layerBackground", + "address": "0x8a1724" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_repeatBuffer", + "address": "0x8a1728" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_fontName", + "address": "0x8a1768" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_repeatCount", + "address": "0x8a186c" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_layerText", + "address": "0x8a1870" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_batch", + "address": "0x8a1874" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_partial", + "address": "0x8a1878" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_NumLines", + "address": "0x8a197c" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_completionMode", + "address": "0x8a1980" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_completedCmd", + "address": "0x8a1984" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_textFont", + "address": "0x8a198c" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_consoleResizeState", + "address": "0x8a1990" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_highlightState", + "address": "0x8a1994" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_highlightLeftCharIndex", + "address": "0x8a19a0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_highlightRightCharIndex", + "address": "0x8a19a4" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_charSpacing", + "address": "0x8a19a8" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_consoleHeight", + "address": "0x8a19b0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "carettime", + "address": "0x8a19f0" + }, + { + "manual": true, + "module": "wow.exe", + "text": "g_commandHistory", + "address": "0x8a3a28" + }, + { + "manual": true, + "module": "wow.exe", + "text": "g_commandHistoryIndex", + "address": "0x8aba28" + }, + { + "manual": true, + "module": "wow.exe", + "text": "g_defaultCommand", + "address": "0x8aba2c" + }, + { + "manual": true, + "module": "wow.exe", + "text": "g_consoleCommandHash", + "address": "0x8aba30" + }, + { + "manual": true, + "module": "wow.exe", + "text": "s_consoleAccessEnabled", + "address": "0x8abcc4" + } + ] +} diff --git a/profile/3.3.5a-windows/x32dbg/types.json b/profile/3.3.5a-windows/x32dbg/types.json new file mode 100644 index 0000000..0ab9b02 --- /dev/null +++ b/profile/3.3.5a-windows/x32dbg/types.json @@ -0,0 +1,5282 @@ +{ + "types": [ + { + "type": "int", + "name": "BlitAlpha" + }, + { + "type": "int", + "name": "BlitFormat" + }, + { + "type": "int", + "name": "CGxFormat__Format" + }, + { + "type": "int", + "name": "CGxMatrixStack__EMatrixFlags" + }, + { + "type": "int", + "name": "COLOR_FILE_FORMAT" + }, + { + "type": "long long", + "name": "D3DDEVTYPE" + }, + { + "type": "int32_t", + "name": "D3DFORMAT" + }, + { + "type": "int", + "name": "EGxApi" + }, + { + "type": "int", + "name": "EGxBlend" + }, + { + "type": "int", + "name": "EGxColorFormat" + }, + { + "type": "int", + "name": "EGxFontHJusts" + }, + { + "type": "int", + "name": "EGxFontVJusts" + }, + { + "type": "int", + "name": "EGxMasterEnables" + }, + { + "type": "int", + "name": "EGxPoolHintBits" + }, + { + "type": "int", + "name": "EGxPoolTarget" + }, + { + "type": "int", + "name": "EGxPoolUsage" + }, + { + "type": "int", + "name": "EGxPrim" + }, + { + "type": "int", + "name": "EGxPrimMask" + }, + { + "type": "int", + "name": "EGxRenderState" + }, + { + "type": "int", + "name": "EGxShPS" + }, + { + "type": "int", + "name": "EGxShTarget" + }, + { + "type": "int", + "name": "EGxShVS" + }, + { + "type": "int", + "name": "EGxTexCommand" + }, + { + "type": "int", + "name": "EGxTexFilter" + }, + { + "type": "int", + "name": "EGxTexFormat" + }, + { + "type": "int", + "name": "EGxTexTarget" + }, + { + "type": "int", + "name": "EGxTexWrapMode" + }, + { + "type": "int", + "name": "EGxVertexAttrib" + }, + { + "type": "int", + "name": "EGxVertexBufferFormat" + }, + { + "type": "int", + "name": "EGxWM" + }, + { + "type": "int", + "name": "EGxXform" + }, + { + "type": "int", + "name": "EGxuDrawListCategory" + }, + { + "type": "void**", + "name": "EVENTHANDLERFUNC" + }, + { + "type": "int", + "name": "EVENTID" + }, + { + "type": "HCOLORMAP__*", + "name": "HCOLORMAP" + }, + { + "type": "void*", + "name": "HEVENTCONTEXT" + }, + { + "type": "HPROPCONTEXT__*", + "name": "HPROPCONTEXT" + }, + { + "type": "long long", + "name": "KEY" + }, + { + "type": "long long", + "name": "MOUSEBUTTON" + }, + { + "type": "int", + "name": "MOUSEMODE" + }, + { + "type": "int", + "name": "MipMapAlgorithm" + }, + { + "type": "int", + "name": "OSINPUT" + }, + { + "type": "int", + "name": "OS_MOUSE_MODE" + }, + { + "type": "int", + "name": "PIXEL_FORMAT" + }, + { + "type": "long long", + "name": "SCHEDSTATE" + }, + { + "type": "int", + "name": "STATUS_TYPE" + }, + { + "type": "int32_t", + "name": "intptr_t" + }, + { + "type": "int32_t", + "name": "ptrdiff_t" + }, + { + "type": "uint32_t", + "name": "uintptr_t" + }, + { + "type": "CSBasePriorityQueue", + "name": "TSPriorityQueue_EvtTimer" + }, + { + "type": "TSList_CStatus__STATUSENTRY", + "name": "TSExplicitList_CStatus__STATUSENTRY" + }, + { + "type": "TSList_EvtMessage", + "name": "TSExplicitList_EvtMessage" + }, + { + "type": "TSList_EvtHandler", + "name": "TSExplicitList_EvtHandler" + }, + { + "type": "TSList_EvtKeyDown", + "name": "TSExplicitList_EvtKeyDown" + }, + { + "type": "TSList_EvtContext", + "name": "TSExplicitList_EvtContext" + }, + { + "type": "TSList_SIMPLEFRAMENODE", + "name": "TSExplicitList_SIMPLEFRAMENODE" + }, + { + "type": "TSList_EVENTLISTENERNODE", + "name": "TSExplicitList_EVENTLISTENERNODE" + }, + { + "type": "TSList_FrameScript_EventObject", + "name": "TSExplicitList_FrameScript_EventObject" + }, + { + "type": "TSList_CGxBuf", + "name": "TSExplicitList_CGxBuf" + }, + { + "type": "TSList_CGxPool", + "name": "TSExplicitList_CGxPool" + }, + { + "type": "TSList_CGxShader", + "name": "TSExplicitList_CGxShader" + } + ], + "structs": [ + { + "name": "BLPJPEGHeader", + "size": 1024, + "members": [ + { + "type": "uint32_t", + "name": "headerSize", + "offset": 0 + }, + { + "type": "uint8_t", + "name": "headerData", + "arrsize": 1020, + "offset": 4 + } + ] + }, + { + "name": "BlpPalPixel", + "size": 4, + "members": [ + { + "type": "uint8_t", + "name": "b", + "offset": 0 + }, + { + "type": "uint8_t", + "name": "g", + "offset": 1 + }, + { + "type": "uint8_t", + "name": "r", + "offset": 2 + }, + { + "type": "uint8_t", + "name": "pad", + "offset": 3 + } + ] + }, + { + "name": "C2Vector", + "size": 8, + "members": [ + { + "type": "float", + "name": "x", + "offset": 0 + }, + { + "type": "float", + "name": "y", + "offset": 4 + } + ] + }, + { + "name": "C2iVector", + "size": 8, + "members": [ + { + "type": "int32_t", + "name": "x", + "offset": 0 + }, + { + "type": "int32_t", + "name": "y", + "offset": 4 + } + ] + }, + { + "name": "C33Matrix", + "size": 36, + "members": [ + { + "type": "float", + "name": "a0", + "offset": 0 + }, + { + "type": "float", + "name": "a1", + "offset": 4 + }, + { + "type": "float", + "name": "a2", + "offset": 8 + }, + { + "type": "float", + "name": "b0", + "offset": 12 + }, + { + "type": "float", + "name": "b1", + "offset": 16 + }, + { + "type": "float", + "name": "b2", + "offset": 20 + }, + { + "type": "float", + "name": "c0", + "offset": 24 + }, + { + "type": "float", + "name": "c1", + "offset": 28 + }, + { + "type": "float", + "name": "c2", + "offset": 32 + } + ] + }, + { + "name": "C34Matrix", + "size": 48, + "members": [ + { + "type": "float", + "name": "a0", + "offset": 0 + }, + { + "type": "float", + "name": "a1", + "offset": 4 + }, + { + "type": "float", + "name": "a2", + "offset": 8 + }, + { + "type": "float", + "name": "b0", + "offset": 12 + }, + { + "type": "float", + "name": "b1", + "offset": 16 + }, + { + "type": "float", + "name": "b2", + "offset": 20 + }, + { + "type": "float", + "name": "c0", + "offset": 24 + }, + { + "type": "float", + "name": "c1", + "offset": 28 + }, + { + "type": "float", + "name": "c2", + "offset": 32 + }, + { + "type": "float", + "name": "d0", + "offset": 36 + }, + { + "type": "float", + "name": "d1", + "offset": 40 + }, + { + "type": "float", + "name": "d2", + "offset": 44 + } + ] + }, + { + "name": "C3Vector", + "size": 12, + "members": [ + { + "type": "float", + "name": "x", + "offset": 0 + }, + { + "type": "float", + "name": "y", + "offset": 4 + }, + { + "type": "float", + "name": "z", + "offset": 8 + } + ] + }, + { + "name": "C44Matrix", + "size": 64, + "members": [ + { + "type": "float", + "name": "a0", + "offset": 0 + }, + { + "type": "float", + "name": "a1", + "offset": 4 + }, + { + "type": "float", + "name": "a2", + "offset": 8 + }, + { + "type": "float", + "name": "a3", + "offset": 12 + }, + { + "type": "float", + "name": "b0", + "offset": 16 + }, + { + "type": "float", + "name": "b1", + "offset": 20 + }, + { + "type": "float", + "name": "b2", + "offset": 24 + }, + { + "type": "float", + "name": "b3", + "offset": 28 + }, + { + "type": "float", + "name": "c0", + "offset": 32 + }, + { + "type": "float", + "name": "c1", + "offset": 36 + }, + { + "type": "float", + "name": "c2", + "offset": 40 + }, + { + "type": "float", + "name": "c3", + "offset": 44 + }, + { + "type": "float", + "name": "d0", + "offset": 48 + }, + { + "type": "float", + "name": "d1", + "offset": 52 + }, + { + "type": "float", + "name": "d2", + "offset": 56 + }, + { + "type": "float", + "name": "d3", + "offset": 60 + } + ] + }, + { + "name": "C4LargePixel", + "size": 32, + "members": [ + { + "type": "uint64_t", + "name": "b", + "offset": 0 + }, + { + "type": "uint64_t", + "name": "g", + "offset": 8 + }, + { + "type": "uint64_t", + "name": "r", + "offset": 16 + }, + { + "type": "uint64_t", + "name": "a", + "offset": 24 + } + ] + }, + { + "name": "C4Pixel", + "size": 4, + "members": [ + { + "type": "uint8_t", + "name": "b", + "offset": 0 + }, + { + "type": "uint8_t", + "name": "g", + "offset": 1 + }, + { + "type": "uint8_t", + "name": "r", + "offset": 2 + }, + { + "type": "uint8_t", + "name": "a", + "offset": 3 + } + ] + }, + { + "name": "C4Quaternion", + "size": 16, + "members": [ + { + "type": "float", + "name": "x", + "offset": 0 + }, + { + "type": "float", + "name": "y", + "offset": 4 + }, + { + "type": "float", + "name": "z", + "offset": 8 + }, + { + "type": "float", + "name": "w", + "offset": 12 + } + ] + }, + { + "name": "C4Vector", + "size": 16, + "members": [ + { + "type": "float", + "name": "x", + "offset": 0 + }, + { + "type": "float", + "name": "y", + "offset": 4 + }, + { + "type": "float", + "name": "z", + "offset": 8 + }, + { + "type": "float", + "name": "w", + "offset": 12 + } + ] + }, + { + "name": "CDataRecycler", + "size": 24, + "members": [ + { + "type": "CDataRecycler__vtable*", + "name": "v_vtable", + "offset": 0 + }, + { + "type": "int32_t", + "name": "m_nodesRecyclable", + "offset": 4 + }, + { + "type": "uint32_t", + "name": "m_nodesPerBlock", + "offset": 8 + }, + { + "type": "CDataRecycler__NodeBlock*", + "name": "m_nodeBlockList", + "offset": 12 + }, + { + "type": "CDataRecycler__Node*", + "name": "m_nodeFullList", + "offset": 16 + }, + { + "type": "CDataRecycler__Node*", + "name": "m_nodeEmptyList", + "offset": 20 + } + ] + }, + { + "name": "CDataRecycler__Node", + "size": 12, + "members": [ + { + "type": "CDataRecycler__Node*", + "name": "m_next", + "offset": 0 + }, + { + "type": "void*", + "name": "m_data", + "offset": 4 + }, + { + "type": "uint32_t", + "name": "m_bytes", + "offset": 8 + } + ] + }, + { + "name": "CDataRecycler__vtable", + "size": 20, + "members": [ + { + "type": "void*", + "name": "v_fn_00", + "offset": 0 + }, + { + "type": "void*", + "name": "v_fn_01", + "offset": 4 + }, + { + "type": "void*", + "name": "v_fn_02", + "offset": 8 + }, + { + "type": "void*", + "name": "v_fn_03", + "offset": 12 + }, + { + "type": "void*", + "name": "v_fn_04", + "offset": 16 + } + ] + }, + { + "name": "CGxDevice__vtable", + "size": 336, + "members": [ + { + "type": "void*", + "name": "v_fn_0_ITexMarkAsUpdated", + "offset": 0 + }, + { + "type": "void*", + "name": "v_fn_1_IRsSendToHw", + "offset": 4 + }, + { + "type": "void*", + "name": "v_fn_2_ICursorCreate", + "offset": 8 + }, + { + "type": "void*", + "name": "v_fn_3_ICursorDestroy", + "offset": 12 + }, + { + "type": "void*", + "name": "v_fn_4_ICursorDraw", + "offset": 16 + }, + { + "type": "void*", + "name": "v_fn_5", + "offset": 20 + }, + { + "type": "void*", + "name": "v_fn_6", + "offset": 24 + }, + { + "type": "void*", + "name": "v_fn_7", + "offset": 28 + }, + { + "type": "void*", + "name": "v_fn_8", + "offset": 32 + }, + { + "type": "void*", + "name": "v_fn_9", + "offset": 36 + }, + { + "type": "void*", + "name": "v_fn_10_DeviceCreate", + "offset": 40 + }, + { + "type": "void*", + "name": "v_fn_11_DeviceDestroy", + "offset": 44 + }, + { + "type": "void*", + "name": "v_fn_12", + "offset": 48 + }, + { + "type": "void*", + "name": "v_fn_13_DeviceSetFormat", + "offset": 52 + }, + { + "type": "void*", + "name": "v_fn_14_DeviceSetBaseMipLevel", + "offset": 56 + }, + { + "type": "void*", + "name": "v_fn_15_DeviceSetGamma", + "offset": 60 + }, + { + "type": "void*", + "name": "v_fn_16", + "offset": 64 + }, + { + "type": "void*", + "name": "v_fn_17", + "offset": 68 + }, + { + "type": "void*", + "name": "v_fn_18", + "offset": 72 + }, + { + "type": "void*", + "name": "v_fn_19", + "offset": 76 + }, + { + "type": "void*", + "name": "v_fn_20", + "offset": 80 + }, + { + "type": "void*", + "name": "v_fn_21", + "offset": 84 + }, + { + "type": "void*", + "name": "v_fn_22_DeviceWM", + "offset": 88 + }, + { + "type": "void*", + "name": "v_fn_23", + "offset": 92 + }, + { + "type": "void*", + "name": "v_fn_24", + "offset": 96 + }, + { + "type": "void*", + "name": "v_fn_25", + "offset": 100 + }, + { + "type": "void*", + "name": "v_fn_26", + "offset": 104 + }, + { + "type": "void*", + "name": "v_fn_27", + "offset": 108 + }, + { + "type": "void*", + "name": "v_fn_28_DeviceOverride", + "offset": 112 + }, + { + "type": "void*", + "name": "v_fn_29", + "offset": 116 + }, + { + "type": "void*", + "name": "v_fn_30", + "offset": 120 + }, + { + "type": "void*", + "name": "v_fn_31", + "offset": 124 + }, + { + "type": "void*", + "name": "v_fn_32", + "offset": 128 + }, + { + "type": "void*", + "name": "v_fn_33", + "offset": 132 + }, + { + "type": "void*", + "name": "v_fn_34", + "offset": 136 + }, + { + "type": "void*", + "name": "v_fn_35_CapsWindowSize", + "offset": 140 + }, + { + "type": "void*", + "name": "v_fn_36_CapsWindowSizeInScreenCoords", + "offset": 144 + }, + { + "type": "void*", + "name": "v_fn_37", + "offset": 148 + }, + { + "type": "void*", + "name": "v_fn_38_ScenePresent", + "offset": 152 + }, + { + "type": "void*", + "name": "v_fn_39_SceneClear", + "offset": 156 + }, + { + "type": "void*", + "name": "v_fn_40_XformSetProjection", + "offset": 160 + }, + { + "type": "void*", + "name": "v_fn_41_XformSetView", + "offset": 164 + }, + { + "type": "void*", + "name": "v_fn_42_Draw", + "offset": 168 + }, + { + "type": "void*", + "name": "v_fn_43", + "offset": 172 + }, + { + "type": "void*", + "name": "v_fn_44", + "offset": 176 + }, + { + "type": "void*", + "name": "v_fn_45", + "offset": 180 + }, + { + "type": "void*", + "name": "v_fn_46", + "offset": 184 + }, + { + "type": "void*", + "name": "v_fn_47", + "offset": 188 + }, + { + "type": "void*", + "name": "v_fn_48", + "offset": 192 + }, + { + "type": "void*", + "name": "v_fn_49", + "offset": 196 + }, + { + "type": "void*", + "name": "v_fn_50", + "offset": 200 + }, + { + "type": "void*", + "name": "v_fn_51_MasterEnableSet", + "offset": 204 + }, + { + "type": "void*", + "name": "v_fn_52_PoolSizeSet", + "offset": 208 + }, + { + "type": "void*", + "name": "v_fn_53_PoolDestroy", + "offset": 212 + }, + { + "type": "void*", + "name": "v_fn_54_BufLock", + "offset": 216 + }, + { + "type": "void*", + "name": "v_fn_55_BufUnlock", + "offset": 220 + }, + { + "type": "void*", + "name": "v_fn_56_BufData", + "offset": 224 + }, + { + "type": "void*", + "name": "v_fn_57_TexCreate", + "offset": 228 + }, + { + "type": "void*", + "name": "v_fn_58_TexDestroy", + "offset": 232 + }, + { + "type": "void*", + "name": "v_fn_59_TexCopy", + "offset": 236 + }, + { + "type": "void*", + "name": "v_fn_60", + "offset": 240 + }, + { + "type": "void*", + "name": "v_fn_61", + "offset": 244 + }, + { + "type": "void*", + "name": "v_fn_62", + "offset": 248 + }, + { + "type": "void*", + "name": "v_fn_63", + "offset": 252 + }, + { + "type": "void*", + "name": "v_fn_64", + "offset": 256 + }, + { + "type": "void*", + "name": "v_fn_65", + "offset": 260 + }, + { + "type": "void*", + "name": "v_fn_66", + "offset": 264 + }, + { + "type": "void*", + "name": "v_fn_67", + "offset": 268 + }, + { + "type": "void*", + "name": "v_fn_68_ShaderCreate", + "offset": 272 + }, + { + "type": "void*", + "name": "v_fn_69", + "offset": 276 + }, + { + "type": "void*", + "name": "v_fn_70_ShaderConstantsSet", + "offset": 280 + }, + { + "type": "void*", + "name": "v_fn_71", + "offset": 284 + }, + { + "type": "void*", + "name": "v_fn_72_IShaderCreate", + "offset": 288 + }, + { + "type": "void*", + "name": "v_fn_73_CursorSetVisible", + "offset": 292 + }, + { + "type": "void*", + "name": "v_fn_74_CursorLock", + "offset": 296 + }, + { + "type": "void*", + "name": "v_fn_75_CursorUnlock", + "offset": 300 + }, + { + "type": "void*", + "name": "v_fn_76", + "offset": 304 + }, + { + "type": "void*", + "name": "v_fn_77", + "offset": 308 + }, + { + "type": "void*", + "name": "v_fn_78", + "offset": 312 + }, + { + "type": "void*", + "name": "v_fn_79", + "offset": 316 + }, + { + "type": "void*", + "name": "v_fn_80_StereoEnabled", + "offset": 320 + }, + { + "type": "void*", + "name": "v_fn_81", + "offset": 324 + }, + { + "type": "void*", + "name": "v_fn_82", + "offset": 328 + }, + { + "type": "void*", + "name": "v_fn_83", + "offset": 332 + } + ] + }, + { + "name": "CGxGammaRamp", + "size": 1536, + "members": [ + { + "type": "uint16_t", + "name": "red", + "arrsize": 256, + "offset": 0 + }, + { + "type": "uint16_t", + "name": "green", + "arrsize": 256, + "offset": 512 + }, + { + "type": "uint16_t", + "name": "blue", + "arrsize": 256, + "offset": 1024 + } + ] + }, + { + "name": "CGxTexFlags", + "size": 4, + "members": [ + { + "type": "uint32_t", + "name": "m_flags", + "offset": 0 + } + ] + }, + { + "name": "CImVector", + "size": 4, + "members": [ + { + "type": "uint8_t", + "name": "b", + "offset": 0 + }, + { + "type": "uint8_t", + "name": "g", + "offset": 1 + }, + { + "type": "uint8_t", + "name": "r", + "offset": 2 + }, + { + "type": "uint8_t", + "name": "a", + "offset": 3 + } + ] + }, + { + "name": "CRange", + "size": 8, + "members": [ + { + "type": "float", + "name": "l", + "offset": 0 + }, + { + "type": "float", + "name": "h", + "offset": 4 + } + ] + }, + { + "name": "CRect", + "size": 16, + "members": [ + { + "type": "float", + "name": "minY", + "offset": 0 + }, + { + "type": "float", + "name": "minX", + "offset": 4 + }, + { + "type": "float", + "name": "maxY", + "offset": 8 + }, + { + "type": "float", + "name": "maxX", + "offset": 12 + } + ] + }, + { + "name": "CSBasePriority", + "size": 8, + "members": [ + { + "type": "CSBasePriorityQueue*", + "name": "m_queue", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_index", + "offset": 4 + } + ] + }, + { + "name": "CSRWLock", + "size": 12, + "members": [ + { + "type": "uint8_t", + "name": "m_opaqueData", + "arrsize": 12, + "offset": 0 + } + ] + }, + { + "name": "CSimpleFrame", + "size": 0 + }, + { + "name": "CiRange", + "size": 8, + "members": [ + { + "type": "int32_t", + "name": "l", + "offset": 0 + }, + { + "type": "int32_t", + "name": "h", + "offset": 4 + } + ] + }, + { + "name": "CiRect", + "size": 16, + "members": [ + { + "type": "int32_t", + "name": "minY", + "offset": 0 + }, + { + "type": "int32_t", + "name": "minX", + "offset": 4 + }, + { + "type": "int32_t", + "name": "maxY", + "offset": 8 + }, + { + "type": "int32_t", + "name": "maxX", + "offset": 12 + } + ] + }, + { + "name": "D3DLOCKED_RECT", + "size": 8, + "members": [ + { + "type": "int32_t", + "name": "Pitch", + "offset": 0 + }, + { + "type": "void*", + "name": "pBits", + "offset": 4 + } + ] + }, + { + "name": "D3DPSHADERCAPS2_0", + "size": 20, + "members": [ + { + "type": "uint32_t", + "name": "Caps", + "offset": 0 + }, + { + "type": "int32_t", + "name": "DynamicFlowControlDepth", + "offset": 4 + }, + { + "type": "int32_t", + "name": "NumTemps", + "offset": 8 + }, + { + "type": "int32_t", + "name": "StaticFlowControlDepth", + "offset": 12 + }, + { + "type": "int32_t", + "name": "NumInstructionSlots", + "offset": 16 + } + ] + }, + { + "name": "D3DVSHADERCAPS2_0", + "size": 16, + "members": [ + { + "type": "uint32_t", + "name": "Caps", + "offset": 0 + }, + { + "type": "int32_t", + "name": "DynamicFlowControlDepth", + "offset": 4 + }, + { + "type": "int32_t", + "name": "NumTemps", + "offset": 8 + }, + { + "type": "int32_t", + "name": "StaticFlowControlDepth", + "offset": 12 + } + ] + }, + { + "name": "EVENT_DATA_CHAR", + "size": 12, + "members": [ + { + "type": "int32_t", + "name": "ch", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "metaKeyState", + "offset": 4 + }, + { + "type": "uint32_t", + "name": "repeat", + "offset": 8 + } + ] + }, + { + "name": "EVENT_DATA_FOCUS", + "size": 4, + "members": [ + { + "type": "int32_t", + "name": "focus", + "offset": 0 + } + ] + }, + { + "name": "EVENT_DATA_IDLE", + "size": 8, + "members": [ + { + "type": "float", + "name": "elapsedSec", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "time", + "offset": 4 + } + ] + }, + { + "name": "EVENT_DATA_SIZE", + "size": 8, + "members": [ + { + "type": "int32_t", + "name": "w", + "offset": 0 + }, + { + "type": "int32_t", + "name": "h", + "offset": 4 + } + ] + }, + { + "name": "FrameScript_Object", + "size": 16, + "members": [ + { + "type": "void**", + "name": "v_vtable", + "offset": 0 + }, + { + "type": "int32_t", + "name": "lua_registered", + "offset": 4 + }, + { + "type": "int32_t", + "name": "lua_objectRef", + "offset": 8 + }, + { + "type": "int32_t", + "name": "m_onEvent", + "offset": 12 + } + ] + }, + { + "name": "HASHKEY_NONE", + "size": 4, + "members": [ + { + "type": "int32_t", + "name": "m_unused", + "offset": 0 + } + ] + }, + { + "name": "HASHKEY_PTR", + "size": 4, + "members": [ + { + "type": "void*", + "name": "m_key", + "offset": 0 + } + ] + }, + { + "name": "HASHKEY_STR", + "size": 4, + "members": [ + { + "type": "char*", + "name": "m_str", + "offset": 0 + } + ] + }, + { + "name": "HASHKEY_STRI", + "size": 4, + "members": [ + { + "type": "char*", + "name": "m_str", + "offset": 0 + } + ] + }, + { + "name": "HCOLORMAP__", + "size": 4, + "members": [ + { + "type": "int32_t", + "name": "unused", + "offset": 0 + } + ] + }, + { + "name": "HPROPCONTEXT__", + "size": 4, + "members": [ + { + "type": "int32_t", + "name": "unused", + "offset": 0 + } + ] + }, + { + "name": "IDirect3D9", + "size": 4, + "members": [ + { + "type": "void**", + "name": "v_vtable", + "offset": 0 + } + ] + }, + { + "name": "IDirect3DDevice9", + "size": 4, + "members": [ + { + "type": "void**", + "name": "v_vtable", + "offset": 0 + } + ] + }, + { + "name": "IDirect3DIndexBuffer9", + "size": 4, + "members": [ + { + "type": "void**", + "name": "v_vtable", + "offset": 0 + } + ] + }, + { + "name": "IDirect3DSurface9", + "size": 4, + "members": [ + { + "type": "void**", + "name": "v_vtable", + "offset": 0 + } + ] + }, + { + "name": "IDirect3DTexture9", + "size": 4, + "members": [ + { + "type": "void**", + "name": "v_vtable", + "offset": 0 + } + ] + }, + { + "name": "IDirect3DVertexBuffer9", + "size": 4, + "members": [ + { + "type": "void**", + "name": "v_vtable", + "offset": 0 + } + ] + }, + { + "name": "IDirect3DVertexDeclaration9", + "size": 4, + "members": [ + { + "type": "void**", + "name": "v_vtable", + "offset": 0 + } + ] + }, + { + "name": "MipBits", + "size": 4, + "members": [ + { + "type": "C4Pixel*", + "name": "mip", + "arrsize": 1, + "offset": 0 + } + ] + }, + { + "name": "SCritSect", + "size": 24, + "members": [ + { + "type": "uint8_t", + "name": "m_critsect", + "arrsize": 24, + "offset": 0 + } + ] + }, + { + "name": "SFile", + "size": 0 + }, + { + "name": "TExtraInstanceRecyclable", + "size": 4, + "members": [ + { + "type": "uint32_t", + "name": "m_recycleBytes", + "offset": 0 + } + ] + }, + { + "name": "TGA32Pixel", + "size": 4, + "members": [ + { + "type": "uint8_t", + "name": "b", + "offset": 0 + }, + { + "type": "uint8_t", + "name": "g", + "offset": 1 + }, + { + "type": "uint8_t", + "name": "r", + "offset": 2 + }, + { + "type": "uint8_t", + "name": "a", + "offset": 3 + } + ] + }, + { + "name": "TGAFooter", + "size": 28, + "members": [ + { + "type": "uint32_t", + "name": "dwExtensionOffset", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "dwDeveloperOffset", + "offset": 4 + }, + { + "type": "uint8_t", + "name": "szSigniture", + "arrsize": 18, + "offset": 8 + } + ] + }, + { + "name": "TGAImageDesc", + "size": 1, + "members": [ + { + "type": "uint8_t", + "name": "bAlphaChannelBits", + "offset": 0 + }, + { + "type": "uint8_t", + "name": "bLeftRightOrder", + "offset": 0 + }, + { + "type": "uint8_t", + "name": "bTopBottomOrder", + "offset": 0 + }, + { + "type": "uint8_t", + "name": "bReserved", + "offset": 0 + } + ] + }, + { + "name": "TSFixedArray_CGxAppRenderState", + "size": 12, + "members": [ + { + "type": "uint32_t", + "name": "m_alloc", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 4 + }, + { + "type": "CGxAppRenderState*", + "name": "m_data", + "offset": 8 + } + ] + }, + { + "name": "TSFixedArray_CGxStateBom", + "size": 12, + "members": [ + { + "type": "uint32_t", + "name": "m_alloc", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 4 + }, + { + "type": "CGxStateBom*", + "name": "m_data", + "offset": 8 + } + ] + }, + { + "name": "TSGrowableArray_CGxPushedRenderState", + "size": 16, + "members": [ + { + "type": "uint32_t", + "name": "m_alloc", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 4 + }, + { + "type": "CGxPushedRenderState*", + "name": "m_data", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "m_chunk", + "offset": 12 + } + ] + }, + { + "name": "TSGrowableArray_EGxRenderState", + "size": 16, + "members": [ + { + "type": "uint32_t", + "name": "m_alloc", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 4 + }, + { + "type": "EGxRenderState*", + "name": "m_data", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "m_chunk", + "offset": 12 + } + ] + }, + { + "name": "TSGrowableArray_TSList_CGxShader", + "size": 16, + "members": [ + { + "type": "uint32_t", + "name": "m_alloc", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 4 + }, + { + "type": "TSList_CGxShader*", + "name": "m_data", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "m_chunk", + "offset": 12 + } + ] + }, + { + "name": "TSGrowableArray_TSList_FrameScript_EventObject", + "size": 16, + "members": [ + { + "type": "uint32_t", + "name": "m_alloc", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 4 + }, + { + "type": "TSList_FrameScript_EventObject*", + "name": "m_data", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "m_chunk", + "offset": 12 + } + ] + }, + { + "name": "TSGrowableArray_pointer_to_EvtTimer", + "size": 16, + "members": [ + { + "type": "uint32_t", + "name": "m_alloc", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 4 + }, + { + "type": "EvtTimer**", + "name": "m_data", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "m_chunk", + "offset": 12 + } + ] + }, + { + "name": "TSGrowableArray_pointer_to_void", + "size": 16, + "members": [ + { + "type": "uint32_t", + "name": "m_alloc", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 4 + }, + { + "type": "void**", + "name": "m_data", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "m_chunk", + "offset": 12 + } + ] + }, + { + "name": "TSGrowableArray_uint32_t", + "size": 16, + "members": [ + { + "type": "uint32_t", + "name": "m_alloc", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 4 + }, + { + "type": "uint32_t*", + "name": "m_data", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "m_chunk", + "offset": 12 + } + ] + }, + { + "name": "TSGrowableArray_uint8_t", + "size": 16, + "members": [ + { + "type": "uint32_t", + "name": "m_alloc", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 4 + }, + { + "type": "uint8_t*", + "name": "m_data", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "m_chunk", + "offset": 12 + } + ] + }, + { + "name": "TSLink_CGxBuf", + "size": 8, + "members": [ + { + "type": "TSLink_CGxBuf*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "CGxBuf*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "TSLink_CGxPool", + "size": 8, + "members": [ + { + "type": "TSLink_CGxPool*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "CGxPool*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "TSLink_CGxShader", + "size": 8, + "members": [ + { + "type": "TSLink_CGxShader*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "CGxShader*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "TSLink_CStatus__STATUSENTRY", + "size": 8, + "members": [ + { + "type": "TSLink_CStatus__STATUSENTRY*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "CStatus__STATUSENTRY*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "TSLink_EVENTLISTENERNODE", + "size": 8, + "members": [ + { + "type": "TSLink_EVENTLISTENERNODE*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "EVENTLISTENERNODE*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "TSLink_EvtContext", + "size": 8, + "members": [ + { + "type": "TSLink_EvtContext*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "EvtContext*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "TSLink_EvtHandler", + "size": 8, + "members": [ + { + "type": "TSLink_EvtHandler*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "EvtHandler*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "TSLink_EvtKeyDown", + "size": 8, + "members": [ + { + "type": "TSLink_EvtKeyDown*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "EvtKeyDown*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "TSLink_EvtMessage", + "size": 8, + "members": [ + { + "type": "TSLink_EvtMessage*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "EvtMessage*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "TSLink_FrameScript_EventObject", + "size": 8, + "members": [ + { + "type": "TSLink_FrameScript_EventObject*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "FrameScript_EventObject*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "TSLink_SIMPLEFRAMENODE", + "size": 8, + "members": [ + { + "type": "TSLink_SIMPLEFRAMENODE*", + "name": "m_prevlink", + "offset": 0 + }, + { + "type": "SIMPLEFRAMENODE*", + "name": "m_next", + "offset": 4 + } + ] + }, + { + "name": "CAaBox", + "size": 24, + "members": [ + { + "type": "C3Vector", + "name": "b", + "offset": 0 + }, + { + "type": "C3Vector", + "name": "t", + "offset": 12 + } + ] + }, + { + "name": "C4Plane", + "size": 16, + "members": [ + { + "type": "C3Vector", + "name": "n", + "offset": 0 + }, + { + "type": "float", + "name": "d", + "offset": 12 + } + ] + }, + { + "name": "CAaSphere", + "size": 16, + "members": [ + { + "type": "C3Vector", + "name": "n", + "offset": 0 + }, + { + "type": "float", + "name": "d", + "offset": 12 + } + ] + }, + { + "name": "CGxMatrixStack", + "size": 280, + "members": [ + { + "type": "uint32_t", + "name": "m_level", + "offset": 0 + }, + { + "type": "int8_t", + "name": "m_dirty", + "offset": 4 + }, + { + "type": "C44Matrix", + "name": "m_mtx", + "arrsize": 4, + "offset": 8 + }, + { + "type": "uint32_t", + "name": "m_flags", + "arrsize": 4, + "offset": 264 + } + ] + }, + { + "name": "ShaderConstants", + "size": 4104, + "members": [ + { + "type": "C4Vector", + "name": "constants", + "arrsize": 256, + "offset": 0 + }, + { + "type": "uint32_t", + "name": "unk1", + "offset": 4096 + }, + { + "type": "uint32_t", + "name": "unk2", + "offset": 4100 + } + ] + }, + { + "name": "CDataRecycler__NodeBlock", + "size": 16, + "members": [ + { + "type": "CDataRecycler__NodeBlock*", + "name": "m_next", + "offset": 0 + }, + { + "type": "CDataRecycler__Node", + "name": "m_nodes", + "arrsize": 1, + "offset": 4 + } + ] + }, + { + "name": "CGxFormat", + "size": 88, + "members": [ + { + "type": "uint32_t", + "name": "unk0", + "offset": 0 + }, + { + "type": "bool", + "name": "hwTnL", + "offset": 4 + }, + { + "type": "bool", + "name": "hwCursor", + "offset": 5 + }, + { + "type": "int8_t", + "name": "fixLag", + "offset": 6 + }, + { + "type": "int8_t", + "name": "window", + "offset": 7 + }, + { + "type": "uint32_t", + "name": "unk8", + "offset": 8 + }, + { + "type": "int32_t", + "name": "maximize", + "offset": 12 + }, + { + "type": "CGxFormat__Format", + "name": "depthFormat", + "offset": 16 + }, + { + "type": "C2iVector", + "name": "size", + "offset": 20 + }, + { + "type": "uint32_t", + "name": "unk1C", + "offset": 28 + }, + { + "type": "uint32_t", + "name": "sampleCount", + "offset": 32 + }, + { + "type": "float", + "name": "float24", + "offset": 36 + }, + { + "type": "CGxFormat__Format", + "name": "colorFormat", + "offset": 40 + }, + { + "type": "uint32_t", + "name": "refreshRate", + "offset": 44 + }, + { + "type": "uint32_t", + "name": "vsync", + "offset": 48 + }, + { + "type": "uint32_t", + "name": "unk34", + "offset": 52 + }, + { + "type": "uint32_t", + "name": "unk38", + "offset": 56 + }, + { + "type": "uint32_t", + "name": "unk3C", + "offset": 60 + }, + { + "type": "uint32_t", + "name": "unk40", + "offset": 64 + }, + { + "type": "uint32_t", + "name": "unk44", + "offset": 68 + }, + { + "type": "uint32_t", + "name": "unk48", + "offset": 72 + }, + { + "type": "uint32_t", + "name": "unk4C", + "offset": 76 + }, + { + "type": "C2iVector", + "name": "pos", + "offset": 80 + } + ] + }, + { + "name": "CGxStateBom", + "size": 16, + "members": [ + { + "type": "CGxStateBom__m_data", + "name": "m_data", + "offset": 0 + }, + { + "type": "int32_t", + "name": "filler", + "offset": 12 + } + ] + }, + { + "name": "CGxVertexPCT", + "size": 24, + "members": [ + { + "type": "C3Vector", + "name": "p", + "offset": 0 + }, + { + "type": "CImVector", + "name": "c", + "offset": 12 + }, + { + "type": "C2Vector", + "name": "tc", + "arrsize": 1, + "offset": 16 + } + ] + }, + { + "name": "CBoundingBox", + "size": 24, + "members": [ + { + "type": "CRange", + "name": "x", + "offset": 0 + }, + { + "type": "CRange", + "name": "y", + "offset": 8 + }, + { + "type": "CRange", + "name": "z", + "offset": 16 + } + ] + }, + { + "name": "TSTimerPriority_uint32_t", + "size": 12, + "members": [ + { + "type": "CSBasePriority", + "name": "b_base", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_val", + "offset": 8 + } + ] + }, + { + "name": "CGxTex", + "size": 96, + "members": [ + { + "type": "CiRect", + "name": "m_updateRect", + "offset": 0 + }, + { + "type": "int16_t", + "name": "m_updatePlaneMin", + "offset": 16 + }, + { + "type": "int16_t", + "name": "m_updatePlaneMax", + "offset": 18 + }, + { + "type": "uint32_t", + "name": "m_width", + "offset": 20 + }, + { + "type": "uint32_t", + "name": "m_height", + "offset": 24 + }, + { + "type": "uint32_t", + "name": "m_depth", + "offset": 28 + }, + { + "type": "uint32_t", + "name": "m_target", + "offset": 32 + }, + { + "type": "uint32_t", + "name": "m_format", + "offset": 36 + }, + { + "type": "uint32_t", + "name": "m_dataFormat", + "offset": 40 + }, + { + "type": "CGxTexFlags", + "name": "m_flags", + "offset": 44 + }, + { + "type": "void*", + "name": "m_userArg", + "offset": 48 + }, + { + "type": "void*", + "name": "m_userFunc", + "offset": 52 + }, + { + "type": "void*", + "name": "m_apiSpecificData", + "offset": 56 + }, + { + "type": "void*", + "name": "m_apiSpecificData2", + "offset": 60 + }, + { + "type": "uint32_t", + "name": "unk40", + "offset": 64 + }, + { + "type": "uint32_t", + "name": "unk44", + "offset": 68 + }, + { + "type": "uint32_t", + "name": "unk48", + "offset": 72 + }, + { + "type": "uint32_t", + "name": "unk4C", + "offset": 76 + }, + { + "type": "uint32_t", + "name": "unk50", + "offset": 80 + }, + { + "type": "uint32_t", + "name": "unk54", + "offset": 84 + }, + { + "type": "int8_t", + "name": "char58", + "offset": 88 + }, + { + "type": "int8_t", + "name": "char59", + "offset": 89 + }, + { + "type": "int8_t", + "name": "m_needsUpdate", + "offset": 90 + }, + { + "type": "int8_t", + "name": "m_needsCreation", + "offset": 91 + }, + { + "type": "int8_t", + "name": "m_needsFlagUpdate", + "offset": 92 + }, + { + "type": "int8_t", + "name": "char5D", + "offset": 93 + }, + { + "type": "uint16_t", + "name": "m_pad", + "offset": 94 + } + ] + }, + { + "name": "D3DDISPLAYMODE", + "size": 16, + "members": [ + { + "type": "uint32_t", + "name": "Width", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "Height", + "offset": 4 + }, + { + "type": "uint32_t", + "name": "RefreshRate", + "offset": 8 + }, + { + "type": "D3DFORMAT", + "name": "Format", + "offset": 12 + } + ] + }, + { + "name": "D3DCAPS9", + "size": 312, + "members": [ + { + "type": "D3DDEVTYPE", + "name": "DeviceType", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "AdapterOrdinal", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "Caps", + "offset": 12 + }, + { + "type": "uint32_t", + "name": "Caps2", + "offset": 16 + }, + { + "type": "uint32_t", + "name": "Caps3", + "offset": 20 + }, + { + "type": "uint32_t", + "name": "PresentationIntervals", + "offset": 24 + }, + { + "type": "uint32_t", + "name": "CursorCaps", + "offset": 28 + }, + { + "type": "uint32_t", + "name": "DevCaps", + "offset": 32 + }, + { + "type": "uint32_t", + "name": "PrimitiveMiscCaps", + "offset": 36 + }, + { + "type": "uint32_t", + "name": "RasterCaps", + "offset": 40 + }, + { + "type": "uint32_t", + "name": "ZCmpCaps", + "offset": 44 + }, + { + "type": "uint32_t", + "name": "SrcBlendCaps", + "offset": 48 + }, + { + "type": "uint32_t", + "name": "DestBlendCaps", + "offset": 52 + }, + { + "type": "uint32_t", + "name": "AlphaCmpCaps", + "offset": 56 + }, + { + "type": "uint32_t", + "name": "ShadeCaps", + "offset": 60 + }, + { + "type": "uint32_t", + "name": "TextureCaps", + "offset": 64 + }, + { + "type": "uint32_t", + "name": "TextureFilterCaps", + "offset": 68 + }, + { + "type": "uint32_t", + "name": "CubeTextureFilterCaps", + "offset": 72 + }, + { + "type": "uint32_t", + "name": "VolumeTextureFilterCaps", + "offset": 76 + }, + { + "type": "uint32_t", + "name": "TextureAddressCaps", + "offset": 80 + }, + { + "type": "uint32_t", + "name": "VolumeTextureAddressCaps", + "offset": 84 + }, + { + "type": "uint32_t", + "name": "LineCaps", + "offset": 88 + }, + { + "type": "uint32_t", + "name": "MaxTextureWidth", + "offset": 92 + }, + { + "type": "uint32_t", + "name": "MaxTextureHeight", + "offset": 96 + }, + { + "type": "uint32_t", + "name": "MaxVolumeExtent", + "offset": 100 + }, + { + "type": "uint32_t", + "name": "MaxTextureRepeat", + "offset": 104 + }, + { + "type": "uint32_t", + "name": "MaxTextureAspectRatio", + "offset": 108 + }, + { + "type": "uint32_t", + "name": "MaxAnisotropy", + "offset": 112 + }, + { + "type": "float", + "name": "MaxVertexW", + "offset": 116 + }, + { + "type": "float", + "name": "GuardBandLeft", + "offset": 120 + }, + { + "type": "float", + "name": "GuardBandTop", + "offset": 124 + }, + { + "type": "float", + "name": "GuardBandRight", + "offset": 128 + }, + { + "type": "float", + "name": "GuardBandBottom", + "offset": 132 + }, + { + "type": "float", + "name": "ExtentsAdjust", + "offset": 136 + }, + { + "type": "uint32_t", + "name": "StencilCaps", + "offset": 140 + }, + { + "type": "uint32_t", + "name": "FVFCaps", + "offset": 144 + }, + { + "type": "uint32_t", + "name": "TextureOpCaps", + "offset": 148 + }, + { + "type": "uint32_t", + "name": "MaxTextureBlendStages", + "offset": 152 + }, + { + "type": "uint32_t", + "name": "MaxSimultaneousTextures", + "offset": 156 + }, + { + "type": "uint32_t", + "name": "VertexProcessingCaps", + "offset": 160 + }, + { + "type": "uint32_t", + "name": "MaxActiveLights", + "offset": 164 + }, + { + "type": "uint32_t", + "name": "MaxUserClipPlanes", + "offset": 168 + }, + { + "type": "uint32_t", + "name": "MaxVertexBlendMatrices", + "offset": 172 + }, + { + "type": "uint32_t", + "name": "MaxVertexBlendMatrixIndex", + "offset": 176 + }, + { + "type": "float", + "name": "MaxPointSize", + "offset": 180 + }, + { + "type": "uint32_t", + "name": "MaxPrimitiveCount", + "offset": 184 + }, + { + "type": "uint32_t", + "name": "MaxVertexIndex", + "offset": 188 + }, + { + "type": "uint32_t", + "name": "MaxStreams", + "offset": 192 + }, + { + "type": "uint32_t", + "name": "MaxStreamStride", + "offset": 196 + }, + { + "type": "uint32_t", + "name": "VertexShaderVersion", + "offset": 200 + }, + { + "type": "uint32_t", + "name": "MaxVertexShaderConst", + "offset": 204 + }, + { + "type": "uint32_t", + "name": "PixelShaderVersion", + "offset": 208 + }, + { + "type": "float", + "name": "PixelShader1xMaxValue", + "offset": 212 + }, + { + "type": "uint32_t", + "name": "DevCaps2", + "offset": 216 + }, + { + "type": "float", + "name": "MaxNpatchTessellationLevel", + "offset": 220 + }, + { + "type": "uint32_t", + "name": "Reserved5", + "offset": 224 + }, + { + "type": "uint32_t", + "name": "MasterAdapterOrdinal", + "offset": 228 + }, + { + "type": "uint32_t", + "name": "AdapterOrdinalInGroup", + "offset": 232 + }, + { + "type": "uint32_t", + "name": "NumberOfAdaptersInGroup", + "offset": 236 + }, + { + "type": "uint32_t", + "name": "DeclTypes", + "offset": 240 + }, + { + "type": "uint32_t", + "name": "NumSimultaneousRTs", + "offset": 244 + }, + { + "type": "uint32_t", + "name": "StretchRectFilterCaps", + "offset": 248 + }, + { + "type": "D3DVSHADERCAPS2_0", + "name": "VS20Caps", + "offset": 252 + }, + { + "type": "D3DPSHADERCAPS2_0", + "name": "PS20Caps", + "offset": 268 + }, + { + "type": "uint32_t", + "name": "VertexTextureFilterCaps", + "offset": 288 + }, + { + "type": "uint32_t", + "name": "MaxVShaderInstructionsExecuted", + "offset": 292 + }, + { + "type": "uint32_t", + "name": "MaxPShaderInstructionsExecuted", + "offset": 296 + }, + { + "type": "uint32_t", + "name": "MaxVertexShader30InstructionSlots", + "offset": 300 + }, + { + "type": "uint32_t", + "name": "MaxPixelShader30InstructionSlots", + "offset": 304 + } + ] + }, + { + "name": "CGxCaps", + "size": 316, + "members": [ + { + "type": "int32_t", + "name": "m_numTmus", + "offset": 0 + }, + { + "type": "int32_t", + "name": "m_pixelCenterOnEdge", + "offset": 4 + }, + { + "type": "int32_t", + "name": "m_texelCenterOnEdge", + "offset": 8 + }, + { + "type": "int32_t", + "name": "m_numStreams", + "offset": 12 + }, + { + "type": "int32_t", + "name": "int10", + "offset": 16 + }, + { + "type": "EGxColorFormat", + "name": "m_colorFormat", + "offset": 20 + }, + { + "type": "uint32_t", + "name": "unk18", + "offset": 24 + }, + { + "type": "uint32_t", + "name": "m_maxIndex", + "offset": 28 + }, + { + "type": "int32_t", + "name": "m_generateMipMaps", + "offset": 32 + }, + { + "type": "int32_t", + "name": "m_texFmt", + "arrsize": 13, + "offset": 36 + }, + { + "type": "int32_t", + "name": "m_texTarget", + "arrsize": 4, + "offset": 88 + }, + { + "type": "uint32_t", + "name": "unk68", + "offset": 104 + }, + { + "type": "uint32_t", + "name": "m_texMaxSize", + "arrsize": 4, + "offset": 108 + }, + { + "type": "uint32_t", + "name": "unk7C", + "offset": 124 + }, + { + "type": "uint32_t", + "name": "unk80", + "offset": 128 + }, + { + "type": "uint32_t", + "name": "unk84", + "offset": 132 + }, + { + "type": "uint32_t", + "name": "unk88", + "offset": 136 + }, + { + "type": "uint32_t", + "name": "unk8C", + "offset": 140 + }, + { + "type": "uint32_t", + "name": "unk90", + "offset": 144 + }, + { + "type": "uint32_t", + "name": "unk94", + "offset": 148 + }, + { + "type": "uint32_t", + "name": "unk98", + "offset": 152 + }, + { + "type": "uint32_t", + "name": "unk9C", + "offset": 156 + }, + { + "type": "uint32_t", + "name": "unkA0", + "offset": 160 + }, + { + "type": "uint32_t", + "name": "unkA4", + "offset": 164 + }, + { + "type": "uint32_t", + "name": "unkA8", + "offset": 168 + }, + { + "type": "int32_t", + "name": "hwPcf", + "offset": 172 + }, + { + "type": "uint32_t", + "name": "unkB0", + "offset": 176 + }, + { + "type": "int32_t", + "name": "m_shaderTargets", + "arrsize": 6, + "offset": 180 + }, + { + "type": "uint32_t", + "name": "m_shaderConstants", + "arrsize": 6, + "offset": 204 + }, + { + "type": "int32_t", + "name": "m_texFilterTrilinear", + "offset": 228 + }, + { + "type": "int32_t", + "name": "m_texFilterAnisotropic", + "offset": 232 + }, + { + "type": "uint32_t", + "name": "m_maxTexAnisotropy", + "offset": 236 + }, + { + "type": "int32_t", + "name": "m_depthBias", + "offset": 240 + }, + { + "type": "uint32_t", + "name": "unkF4", + "offset": 244 + }, + { + "type": "int32_t", + "name": "m_maxClipPlanes", + "offset": 248 + }, + { + "type": "int32_t", + "name": "m_hardwareCursor", + "offset": 252 + }, + { + "type": "uint32_t", + "name": "unk100", + "arrsize": 5, + "offset": 256 + }, + { + "type": "uint32_t", + "name": "unk114", + "arrsize": 6, + "offset": 276 + }, + { + "type": "int32_t", + "name": "m_stereoAvailable", + "offset": 300 + }, + { + "type": "int32_t", + "name": "int130", + "offset": 304 + }, + { + "type": "int32_t", + "name": "int134", + "offset": 308 + }, + { + "type": "int32_t", + "name": "int138", + "offset": 312 + } + ] + }, + { + "name": "CGxBatch", + "size": 16, + "members": [ + { + "type": "EGxPrim", + "name": "m_primType", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_start", + "offset": 4 + }, + { + "type": "uint32_t", + "name": "m_count", + "offset": 8 + }, + { + "type": "uint16_t", + "name": "m_minIndex", + "offset": 12 + }, + { + "type": "uint16_t", + "name": "m_maxIndex", + "offset": 14 + } + ] + }, + { + "name": "CGxVertexAttrib", + "size": 16, + "members": [ + { + "type": "EGxVertexAttrib", + "name": "attrib", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "type", + "offset": 4 + }, + { + "type": "uint32_t", + "name": "offset", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "bufSize", + "offset": 12 + } + ] + }, + { + "name": "EVENT_DATA_KEY", + "size": 24, + "members": [ + { + "type": "KEY", + "name": "key", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "metaKeyState", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "repeat", + "offset": 12 + }, + { + "type": "uint32_t", + "name": "time", + "offset": 16 + } + ] + }, + { + "name": "EVENT_DATA_MOUSE", + "size": 48, + "members": [ + { + "type": "MOUSEMODE", + "name": "mode", + "offset": 0 + }, + { + "type": "MOUSEBUTTON", + "name": "button", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "buttonState", + "offset": 16 + }, + { + "type": "uint32_t", + "name": "metaKeyState", + "offset": 20 + }, + { + "type": "uint32_t", + "name": "flags", + "offset": 24 + }, + { + "type": "float", + "name": "x", + "offset": 28 + }, + { + "type": "float", + "name": "y", + "offset": 32 + }, + { + "type": "int32_t", + "name": "wheelDistance", + "offset": 36 + }, + { + "type": "uint32_t", + "name": "time", + "offset": 40 + } + ] + }, + { + "name": "OSEVENT", + "size": 20, + "members": [ + { + "type": "OSINPUT", + "name": "id", + "offset": 0 + }, + { + "type": "int32_t", + "name": "param", + "arrsize": 4, + "offset": 4 + } + ] + }, + { + "name": "CSBasePriorityQueue", + "size": 20, + "members": [ + { + "type": "TSGrowableArray_pointer_to_void", + "name": "b_base", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_linkOffset", + "offset": 16 + } + ] + }, + { + "name": "EvtIdTable_pointer_to_EvtTimer", + "size": 32, + "members": [ + { + "type": "TSGrowableArray_pointer_to_EvtTimer", + "name": "m_allocArray", + "offset": 0 + }, + { + "type": "TSGrowableArray_uint32_t", + "name": "m_freeArray", + "offset": 16 + } + ] + }, + { + "name": "TSLinkedNode_CGxBuf", + "size": 8, + "members": [ + { + "type": "TSLink_CGxBuf", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "TSLinkedNode_CGxPool", + "size": 8, + "members": [ + { + "type": "TSLink_CGxPool", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "TSHashObject_CGxShader_HASHKEY_STRI", + "size": 24, + "members": [ + { + "type": "uint32_t", + "name": "m_hashval", + "offset": 0 + }, + { + "type": "TSLink_CGxShader", + "name": "m_linktoslot", + "offset": 4 + }, + { + "type": "TSLink_CGxShader", + "name": "m_linktofull", + "offset": 12 + }, + { + "type": "HASHKEY_STRI", + "name": "m_key", + "offset": 20 + } + ] + }, + { + "name": "TSLinkedNode_CGxShader", + "size": 8, + "members": [ + { + "type": "TSLink_CGxShader", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "CStatus__STATUSENTRY", + "size": 16, + "members": [ + { + "type": "char*", + "name": "text", + "offset": 0 + }, + { + "type": "STATUS_TYPE", + "name": "severity", + "offset": 4 + }, + { + "type": "TSLink_CStatus__STATUSENTRY", + "name": "link", + "offset": 8 + } + ] + }, + { + "name": "TSLinkedNode_CStatus__STATUSENTRY", + "size": 8, + "members": [ + { + "type": "TSLink_CStatus__STATUSENTRY", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "TSLinkedNode_EVENTLISTENERNODE", + "size": 8, + "members": [ + { + "type": "TSLink_EVENTLISTENERNODE", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "TSLinkedNode_EvtContext", + "size": 8, + "members": [ + { + "type": "TSLink_EvtContext", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "EvtHandler", + "size": 24, + "members": [ + { + "type": "TSLink_EvtHandler", + "name": "link", + "offset": 0 + }, + { + "type": "void**", + "name": "func", + "offset": 8 + }, + { + "type": "void*", + "name": "param", + "offset": 12 + }, + { + "type": "float", + "name": "priority", + "offset": 16 + }, + { + "type": "int32_t", + "name": "marker", + "offset": 20 + } + ] + }, + { + "name": "TSLinkedNode_EvtHandler", + "size": 8, + "members": [ + { + "type": "TSLink_EvtHandler", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "EvtKeyDown", + "size": 16, + "members": [ + { + "type": "TSLink_EvtKeyDown", + "name": "link", + "offset": 0 + }, + { + "type": "KEY", + "name": "key", + "offset": 8 + } + ] + }, + { + "name": "TSLinkedNode_EvtKeyDown", + "size": 8, + "members": [ + { + "type": "TSLink_EvtKeyDown", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "EvtMessage", + "size": 20, + "members": [ + { + "type": "TExtraInstanceRecyclable", + "name": "b_base", + "offset": 0 + }, + { + "type": "TSLink_EvtMessage", + "name": "link", + "offset": 4 + }, + { + "type": "EVENTID", + "name": "id", + "offset": 12 + }, + { + "type": "char", + "name": "data", + "arrsize": 4, + "offset": 16 + } + ] + }, + { + "name": "TSLinkedNode_EvtMessage", + "size": 8, + "members": [ + { + "type": "TSLink_EvtMessage", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "TSHashObject_FrameScript_EventObject_HASHKEY_STRI", + "size": 24, + "members": [ + { + "type": "uint32_t", + "name": "m_hashval", + "offset": 0 + }, + { + "type": "TSLink_FrameScript_EventObject", + "name": "m_linktoslot", + "offset": 4 + }, + { + "type": "TSLink_FrameScript_EventObject", + "name": "m_linktofull", + "offset": 12 + }, + { + "type": "HASHKEY_STRI", + "name": "m_key", + "offset": 20 + } + ] + }, + { + "name": "TSLinkedNode_FrameScript_EventObject", + "size": 8, + "members": [ + { + "type": "TSLink_FrameScript_EventObject", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "TSLinkedNode_SIMPLEFRAMENODE", + "size": 8, + "members": [ + { + "type": "TSLink_SIMPLEFRAMENODE", + "name": "m_link", + "offset": 0 + } + ] + }, + { + "name": "TSList_CStatus__STATUSENTRY", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_CStatus__STATUSENTRY", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "TSList_EvtMessage", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_EvtMessage", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "TSList_EvtHandler", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_EvtHandler", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "TSList_EvtKeyDown", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_EvtKeyDown", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "TSList_EvtContext", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_EvtContext", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "TSList_SIMPLEFRAMENODE", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_SIMPLEFRAMENODE", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "TSList_EVENTLISTENERNODE", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_EVENTLISTENERNODE", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "TSList_FrameScript_EventObject", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_FrameScript_EventObject", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "TSList_CGxBuf", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_CGxBuf", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "TSList_CGxPool", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_CGxPool", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "TSList_CGxShader", + "size": 12, + "members": [ + { + "type": "ptrdiff_t", + "name": "m_linkoffset", + "offset": 0 + }, + { + "type": "TSLink_CGxShader", + "name": "m_terminator", + "offset": 4 + } + ] + }, + { + "name": "ubyte4", + "size": 4, + "members": [ + { + "type": "ubyte4__0000", + "name": "", + "offset": 0 + } + ] + }, + { + "name": "BLPHeader", + "size": 1172, + "members": [ + { + "type": "uint32_t", + "name": "magic", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "formatVersion", + "offset": 4 + }, + { + "type": "uint8_t", + "name": "colorEncoding", + "offset": 8 + }, + { + "type": "uint8_t", + "name": "alphaSize", + "offset": 9 + }, + { + "type": "uint8_t", + "name": "preferredFormat", + "offset": 10 + }, + { + "type": "uint8_t", + "name": "hasMips", + "offset": 11 + }, + { + "type": "uint32_t", + "name": "width", + "offset": 12 + }, + { + "type": "uint32_t", + "name": "height", + "offset": 16 + }, + { + "type": "uint32_t", + "name": "mipOffsets", + "arrsize": 16, + "offset": 20 + }, + { + "type": "uint32_t", + "name": "mipSizes", + "arrsize": 16, + "offset": 84 + }, + { + "type": "BLPHeader__extended", + "name": "extended", + "offset": 148 + } + ] + }, + { + "name": "CGxAppRenderState", + "size": 24, + "members": [ + { + "type": "CGxStateBom", + "name": "m_value", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_stackDepth", + "offset": 16 + }, + { + "type": "int32_t", + "name": "m_dirty", + "offset": 20 + } + ] + }, + { + "name": "CGxPushedRenderState", + "size": 24, + "members": [ + { + "type": "EGxRenderState", + "name": "m_which", + "offset": 0 + }, + { + "type": "CGxStateBom", + "name": "m_value", + "offset": 4 + }, + { + "type": "uint32_t", + "name": "m_stackDepth", + "offset": 20 + } + ] + }, + { + "name": "EvtTimer", + "size": 48, + "members": [ + { + "type": "uint32_t", + "name": "id", + "offset": 0 + }, + { + "type": "TSTimerPriority_uint32_t", + "name": "targetTime", + "offset": 4 + }, + { + "type": "float", + "name": "timeout", + "offset": 16 + }, + { + "type": "void**", + "name": "handler", + "offset": 20 + }, + { + "type": "void*", + "name": "param", + "offset": 24 + }, + { + "type": "void**", + "name": "guidHandler", + "offset": 28 + }, + { + "type": "uint64_t", + "name": "guidParam", + "offset": 32 + }, + { + "type": "void*", + "name": "guidParam2", + "offset": 40 + } + ] + }, + { + "name": "TGAHeader", + "size": 20, + "members": [ + { + "type": "uint8_t", + "name": "bIDLength", + "offset": 0 + }, + { + "type": "uint8_t", + "name": "bColorMapType", + "offset": 1 + }, + { + "type": "uint8_t", + "name": "bImageType", + "offset": 2 + }, + { + "type": "uint16_t", + "name": "wColorMapStartIndex", + "offset": 4 + }, + { + "type": "uint16_t", + "name": "wColorMapEntries", + "offset": 6 + }, + { + "type": "uint8_t", + "name": "bColorMapEntrySize", + "offset": 8 + }, + { + "type": "uint16_t", + "name": "wXOrigin", + "offset": 10 + }, + { + "type": "uint16_t", + "name": "wYOrigin", + "offset": 12 + }, + { + "type": "uint16_t", + "name": "wWidth", + "offset": 14 + }, + { + "type": "uint16_t", + "name": "wHeight", + "offset": 16 + }, + { + "type": "uint8_t", + "name": "bPixelDepth", + "offset": 18 + }, + { + "type": "TGAHeader__0019", + "name": "", + "offset": 19 + } + ] + }, + { + "name": "CGxBuf", + "size": 32, + "members": [ + { + "type": "TSLinkedNode_CGxBuf", + "name": "b_base", + "offset": 0 + }, + { + "type": "CGxPool*", + "name": "m_pool", + "offset": 8 + }, + { + "type": "uint32_t", + "name": "m_itemSize", + "offset": 12 + }, + { + "type": "uint32_t", + "name": "m_itemCount", + "offset": 16 + }, + { + "type": "uint32_t", + "name": "m_size", + "offset": 20 + }, + { + "type": "uint32_t", + "name": "m_index", + "offset": 24 + }, + { + "type": "uint8_t", + "name": "unk1C", + "offset": 28 + }, + { + "type": "uint8_t", + "name": "unk1D", + "offset": 29 + }, + { + "type": "uint8_t", + "name": "unk1E", + "offset": 30 + }, + { + "type": "uint8_t", + "name": "unk1F", + "offset": 31 + } + ] + }, + { + "name": "CGxShader", + "size": 84, + "members": [ + { + "type": "TSHashObject_CGxShader_HASHKEY_STRI", + "name": "b_base", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "refCount", + "offset": 24 + }, + { + "type": "void*", + "name": "apiSpecific", + "offset": 28 + }, + { + "type": "int32_t", + "name": "target", + "offset": 32 + }, + { + "type": "int32_t", + "name": "int28", + "offset": 36 + }, + { + "type": "int32_t", + "name": "valid", + "offset": 40 + }, + { + "type": "int32_t", + "name": "loaded", + "offset": 44 + }, + { + "type": "int32_t", + "name": "int34", + "offset": 48 + }, + { + "type": "int32_t", + "name": "patched", + "offset": 52 + }, + { + "type": "int32_t", + "name": "int3C", + "offset": 56 + }, + { + "type": "int32_t", + "name": "int40", + "offset": 60 + }, + { + "type": "int16_t", + "name": "int44", + "offset": 64 + }, + { + "type": "int16_t", + "name": "int46", + "offset": 66 + }, + { + "type": "TSGrowableArray_uint8_t", + "name": "code", + "offset": 68 + } + ] + }, + { + "name": "EVENTLISTENERNODE", + "size": 12, + "members": [ + { + "type": "TSLinkedNode_EVENTLISTENERNODE", + "name": "b_base", + "offset": 0 + }, + { + "type": "FrameScript_Object*", + "name": "listener", + "offset": 8 + } + ] + }, + { + "name": "TInstanceId_EvtContext", + "size": 12, + "members": [ + { + "type": "TSLinkedNode_EvtContext", + "name": "b_base", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_id", + "offset": 8 + } + ] + }, + { + "name": "FrameScript_EventObject", + "size": 24, + "members": [ + { + "type": "TSHashObject_FrameScript_EventObject_HASHKEY_STRI", + "name": "b_base", + "offset": 0 + } + ] + }, + { + "name": "SIMPLEFRAMENODE", + "size": 12, + "members": [ + { + "type": "TSLinkedNode_SIMPLEFRAMENODE", + "name": "b_base", + "offset": 0 + }, + { + "type": "CSimpleFrame*", + "name": "frame", + "offset": 8 + } + ] + }, + { + "name": "TSHashTable_FrameScript_EventObject_HASHKEY_STRI", + "size": 36, + "members": [ + { + "type": "TSList_FrameScript_EventObject", + "name": "m_fulllist", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_fullnessIndicator", + "offset": 12 + }, + { + "type": "TSGrowableArray_TSList_FrameScript_EventObject", + "name": "m_slotlistarray", + "offset": 16 + }, + { + "type": "uint32_t", + "name": "m_slotmask", + "offset": 32 + } + ] + }, + { + "name": "CGxPool", + "size": 52, + "members": [ + { + "type": "TSLinkedNode_CGxPool", + "name": "b_base", + "offset": 0 + }, + { + "type": "EGxPoolTarget", + "name": "m_target", + "offset": 8 + }, + { + "type": "EGxPoolUsage", + "name": "m_usage", + "offset": 12 + }, + { + "type": "int32_t", + "name": "m_size", + "offset": 16 + }, + { + "type": "void*", + "name": "m_apiSpecific", + "offset": 20 + }, + { + "type": "void*", + "name": "m_mem", + "offset": 24 + }, + { + "type": "int32_t", + "name": "unk1C", + "offset": 28 + }, + { + "type": "TSList_CGxBuf", + "name": "m_bufList", + "offset": 32 + }, + { + "type": "EGxPoolHintBits", + "name": "m_hint", + "offset": 44 + }, + { + "type": "char*", + "name": "m_name", + "offset": 48 + } + ] + }, + { + "name": "CGxDevice", + "size": 14696, + "members": [ + { + "type": "CGxDevice__vtable*", + "name": "v_vtable", + "offset": 0 + }, + { + "type": "TSGrowableArray_CGxPushedRenderState", + "name": "m_pushedStates", + "offset": 4 + }, + { + "type": "TSGrowableArray_uint32_t", + "name": "m_stackOffsets", + "offset": 20 + }, + { + "type": "TSGrowableArray_EGxRenderState", + "name": "m_dirtyStates", + "offset": 36 + }, + { + "type": "uint32_t", + "name": "m_unk34", + "arrsize": 76, + "offset": 52 + }, + { + "type": "CRect", + "name": "m_defWindowRect", + "offset": 356 + }, + { + "type": "CRect", + "name": "m_curWindowRect", + "offset": 372 + }, + { + "type": "uint32_t", + "name": "m_unk184", + "arrsize": 12, + "offset": 388 + }, + { + "type": "EGxApi", + "name": "m_api", + "offset": 436 + }, + { + "type": "uint32_t", + "name": "m_cpuFeatures", + "offset": 440 + }, + { + "type": "CGxFormat", + "name": "m_format", + "offset": 444 + }, + { + "type": "CGxCaps", + "name": "m_caps", + "offset": 532 + }, + { + "type": "uint32_t", + "name": "m_baseMipLevel", + "offset": 848 + }, + { + "type": "CGxGammaRamp", + "name": "m_gammaRamp", + "offset": 852 + }, + { + "type": "CGxGammaRamp", + "name": "m_systemGammaRamp", + "offset": 2388 + }, + { + "type": "void**", + "name": "m_windowProc", + "offset": 3924 + }, + { + "type": "int32_t", + "name": "m_context", + "offset": 3928 + }, + { + "type": "int32_t", + "name": "intF5C", + "offset": 3932 + }, + { + "type": "int32_t", + "name": "m_windowVisible", + "offset": 3936 + }, + { + "type": "int32_t", + "name": "intF64", + "offset": 3940 + }, + { + "type": "int32_t", + "name": "intF68", + "offset": 3944 + }, + { + "type": "int32_t", + "name": "intF6C", + "offset": 3948 + }, + { + "type": "CBoundingBox", + "name": "m_viewport", + "offset": 3952 + }, + { + "type": "C44Matrix", + "name": "m_projection", + "offset": 3976 + }, + { + "type": "C44Matrix", + "name": "m_projNative", + "offset": 4040 + }, + { + "type": "CGxMatrixStack", + "name": "m_xforms", + "arrsize": 11, + "offset": 4104 + }, + { + "type": "CGxMatrixStack", + "name": "m_texGen", + "arrsize": 8, + "offset": 7184 + }, + { + "type": "uint32_t", + "name": "unk24D0", + "arrsize": 162, + "offset": 9424 + }, + { + "type": "uint32_t", + "name": "m_appMasterEnables", + "offset": 10072 + }, + { + "type": "uint32_t", + "name": "m_hwMasterEnables", + "offset": 10076 + }, + { + "type": "TSList_CGxPool", + "name": "m_poolList", + "offset": 10080 + }, + { + "type": "uint32_t", + "name": "unk276C", + "arrsize": 3, + "offset": 10092 + }, + { + "type": "CGxBuf*", + "name": "m_bufLocked", + "arrsize": 2, + "offset": 10104 + }, + { + "type": "CGxPool*", + "name": "m_vertexPool", + "offset": 10112 + }, + { + "type": "CGxPool*", + "name": "m_indexPool", + "offset": 10116 + }, + { + "type": "CGxBuf*", + "name": "m_streamBufs", + "arrsize": 2, + "offset": 10120 + }, + { + "type": "CGxVertexAttrib", + "name": "m_primVertexFormatAttrib", + "arrsize": 14, + "offset": 10128 + }, + { + "type": "CGxBuf*", + "name": "m_primVertexFormatBuf", + "arrsize": 14, + "offset": 10352 + }, + { + "type": "uint32_t", + "name": "m_primVertexMask", + "offset": 10408 + }, + { + "type": "uint32_t", + "name": "m_primVertexDirty", + "offset": 10412 + }, + { + "type": "EGxVertexBufferFormat", + "name": "m_primVertexFormat", + "offset": 10416 + }, + { + "type": "CGxBuf*", + "name": "m_primVertexBuf", + "offset": 10420 + }, + { + "type": "uint32_t", + "name": "m_primVertexSize", + "offset": 10424 + }, + { + "type": "CGxBuf*", + "name": "m_primIndexBuf", + "offset": 10428 + }, + { + "type": "int32_t", + "name": "m_primIndexDirty", + "offset": 10432 + }, + { + "type": "uint32_t", + "name": "unk28C4", + "offset": 10436 + }, + { + "type": "uint32_t", + "name": "unk28C8", + "offset": 10440 + }, + { + "type": "uint32_t", + "name": "unk28CC", + "offset": 10444 + }, + { + "type": "uint32_t", + "name": "unk28D0", + "offset": 10448 + }, + { + "type": "uint32_t", + "name": "unk28D4", + "offset": 10452 + }, + { + "type": "uint32_t", + "name": "unk28D8", + "offset": 10456 + }, + { + "type": "uint32_t", + "name": "unk28DC", + "offset": 10460 + }, + { + "type": "uint32_t", + "name": "unk28E0", + "offset": 10464 + }, + { + "type": "uint32_t", + "name": "unk28E4", + "offset": 10468 + }, + { + "type": "uint32_t", + "name": "unk28E8", + "offset": 10472 + }, + { + "type": "TSFixedArray_CGxAppRenderState", + "name": "m_appRenderStates", + "offset": 10476 + }, + { + "type": "TSFixedArray_CGxStateBom", + "name": "m_hwRenderStates", + "offset": 10488 + }, + { + "type": "uint32_t", + "name": "unk2904", + "arrsize": 19, + "offset": 10500 + }, + { + "type": "int32_t", + "name": "m_cursorVisible", + "offset": 10576 + }, + { + "type": "int32_t", + "name": "m_hardwareCursor", + "offset": 10580 + }, + { + "type": "uint32_t", + "name": "m_cursorHotspotX", + "offset": 10584 + }, + { + "type": "uint32_t", + "name": "m_cursorHotspotY", + "offset": 10588 + }, + { + "type": "CImVector", + "name": "m_cursor", + "arrsize": 1024, + "offset": 10592 + }, + { + "type": "CGxTex*", + "name": "m_cursorTexture", + "offset": 14688 + }, + { + "type": "float", + "name": "m_cursorDepth", + "offset": 14692 + } + ] + }, + { + "name": "TSHashTable_CGxShader_HASHKEY_STRI", + "size": 36, + "members": [ + { + "type": "TSList_CGxShader", + "name": "m_fulllist", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "m_fullnessIndicator", + "offset": 12 + }, + { + "type": "TSGrowableArray_TSList_CGxShader", + "name": "m_slotlistarray", + "offset": 16 + }, + { + "type": "uint32_t", + "name": "m_slotmask", + "offset": 32 + } + ] + }, + { + "name": "CGxVertexPBNT2", + "size": 48, + "members": [ + { + "type": "C3Vector", + "name": "p", + "offset": 0 + }, + { + "type": "ubyte4", + "name": "bw", + "offset": 12 + }, + { + "type": "ubyte4", + "name": "bi", + "offset": 16 + }, + { + "type": "C3Vector", + "name": "n", + "offset": 20 + }, + { + "type": "C2Vector", + "name": "tc", + "arrsize": 2, + "offset": 32 + } + ] + }, + { + "name": "CBLPFile", + "size": 1204, + "members": [ + { + "type": "MipBits*", + "name": "m_images", + "offset": 0 + }, + { + "type": "BLPHeader", + "name": "m_header", + "offset": 4 + }, + { + "type": "void*", + "name": "m_inMemoryImage", + "offset": 1176 + }, + { + "type": "int32_t", + "name": "m_inMemoryNeedsFree", + "offset": 1180 + }, + { + "type": "uint32_t", + "name": "m_numLevels", + "offset": 1184 + }, + { + "type": "uint32_t", + "name": "m_quality", + "offset": 1188 + }, + { + "type": "HCOLORMAP", + "name": "m_colorMapping", + "offset": 1192 + }, + { + "type": "MipMapAlgorithm", + "name": "m_mipMapAlgorithm", + "offset": 1196 + }, + { + "type": "uint8_t*", + "name": "m_lockDecompMem", + "offset": 1200 + } + ] + }, + { + "name": "CTgaFile", + "size": 68, + "members": [ + { + "type": "SFile*", + "name": "m_file", + "offset": 0 + }, + { + "type": "uint8_t*", + "name": "m_image", + "offset": 4 + }, + { + "type": "TGAHeader", + "name": "m_header", + "offset": 8 + }, + { + "type": "uint8_t*", + "name": "m_addlHeaderData", + "offset": 28 + }, + { + "type": "TGAFooter", + "name": "m_footer", + "offset": 32 + }, + { + "type": "uint32_t", + "name": "m_imageBytes", + "offset": 60 + }, + { + "type": "uint8_t*", + "name": "m_colorMap", + "offset": 64 + } + ] + }, + { + "name": "EvtTimerQueue", + "size": 20, + "members": [ + { + "type": "TSPriorityQueue_EvtTimer", + "name": "b_base", + "offset": 0 + } + ] + }, + { + "name": "TSingletonInstanceId_EvtContext", + "size": 12, + "members": [ + { + "type": "TInstanceId_EvtContext", + "name": "b_base", + "offset": 0 + } + ] + }, + { + "name": "CStatus", + "size": 12, + "members": [ + { + "type": "TSExplicitList_CStatus__STATUSENTRY", + "name": "statusList", + "offset": 0 + } + ] + }, + { + "name": "CGxDeviceD3d", + "size": 16048, + "members": [ + { + "type": "CGxDevice", + "name": "b_base", + "offset": 0 + }, + { + "type": "void*", + "name": "m_hwnd", + "offset": 14696 + }, + { + "type": "uint16_t", + "name": "m_hwndClass", + "offset": 14700 + }, + { + "type": "uint16_t", + "name": "unk396E", + "offset": 14702 + }, + { + "type": "int32_t", + "name": "m_ownhwnd", + "offset": 14704 + }, + { + "type": "void*", + "name": "m_d3dLib", + "offset": 14708 + }, + { + "type": "IDirect3D9*", + "name": "m_d3d", + "offset": 14712 + }, + { + "type": "IDirect3DDevice9*", + "name": "m_d3dDevice", + "offset": 14716 + }, + { + "type": "D3DCAPS9", + "name": "m_d3dCaps", + "offset": 14720 + }, + { + "type": "int32_t", + "name": "m_d3dIsHwDevice", + "offset": 15032 + }, + { + "type": "uint32_t", + "name": "unk3AB4", + "arrsize": 11, + "offset": 15036 + }, + { + "type": "IDirect3DVertexDeclaration9*", + "name": "m_d3dVertexDecl", + "arrsize": 14, + "offset": 15080 + }, + { + "type": "D3DDISPLAYMODE", + "name": "m_desktopDisplayMode", + "offset": 15136 + }, + { + "type": "int32_t", + "name": "m_inScene", + "offset": 15152 + }, + { + "type": "uint32_t", + "name": "unk3B2C", + "offset": 15156 + }, + { + "type": "D3DFORMAT", + "name": "m_devDepthFormat", + "offset": 15160 + }, + { + "type": "D3DFORMAT", + "name": "m_devAdapterFormat", + "offset": 15164 + }, + { + "type": "uint32_t", + "name": "unk3B38", + "offset": 15168 + }, + { + "type": "IDirect3DSurface9*", + "name": "m_defColorSurface", + "offset": 15172 + }, + { + "type": "IDirect3DSurface9*", + "name": "m_defDepthSurface", + "offset": 15176 + }, + { + "type": "uint32_t", + "name": "unk3B44", + "offset": 15180 + }, + { + "type": "uint32_t", + "name": "unk3B48", + "offset": 15184 + }, + { + "type": "int32_t", + "name": "m_hwCursorNeedsUpdate", + "offset": 15188 + }, + { + "type": "IDirect3DTexture9*", + "name": "m_hwCursorTexture", + "offset": 15192 + }, + { + "type": "IDirect3DSurface9*", + "name": "m_hwCursorBitmap", + "offset": 15196 + }, + { + "type": "uint32_t", + "name": "unk3B58", + "offset": 15200 + }, + { + "type": "IDirect3DVertexDeclaration9*", + "name": "m_d3dCurrentVertexDecl", + "offset": 15204 + }, + { + "type": "IDirect3DIndexBuffer9*", + "name": "m_d3dCurrentIndexBuf", + "offset": 15208 + }, + { + "type": "IDirect3DVertexBuffer9*", + "name": "m_d3dVertexStreamBuf", + "arrsize": 8, + "offset": 15212 + }, + { + "type": "uint32_t", + "name": "m_d3dVertexStreamOfs", + "arrsize": 8, + "offset": 15244 + }, + { + "type": "uint32_t", + "name": "m_d3dVertexStreamStride", + "arrsize": 8, + "offset": 15276 + }, + { + "type": "uint32_t", + "name": "m_deviceStates", + "arrsize": 182, + "offset": 15308 + }, + { + "type": "bool", + "name": "m_texEnabled", + "arrsize": 8, + "offset": 16036 + } + ] + }, + { + "name": "EvtContext", + "size": 640, + "members": [ + { + "type": "TSingletonInstanceId_EvtContext", + "name": "b_base", + "offset": 0 + }, + { + "type": "uint32_t", + "name": "unkA", + "offset": 12 + }, + { + "type": "SCritSect", + "name": "m_critsect", + "offset": 16 + }, + { + "type": "uint32_t", + "name": "m_currTime", + "offset": 40 + }, + { + "type": "SCHEDSTATE", + "name": "m_schedState", + "offset": 48 + }, + { + "type": "TSTimerPriority_uint32_t", + "name": "m_schedNextWakeTime", + "offset": 56 + }, + { + "type": "uint32_t", + "name": "m_schedLastIdle", + "offset": 68 + }, + { + "type": "uint32_t", + "name": "m_schedFlags", + "offset": 72 + }, + { + "type": "uint32_t", + "name": "m_schedIdleTime", + "offset": 76 + }, + { + "type": "uint32_t", + "name": "m_schedInitialIdleTime", + "offset": 80 + }, + { + "type": "uint32_t", + "name": "m_schedWeight", + "offset": 84 + }, + { + "type": "uint32_t", + "name": "m_schedSmoothWeight", + "offset": 88 + }, + { + "type": "int32_t", + "name": "m_schedRebalance", + "offset": 92 + }, + { + "type": "int32_t", + "name": "unkXX", + "offset": 96 + }, + { + "type": "int32_t", + "name": "unkXY", + "offset": 100 + }, + { + "type": "int32_t", + "name": "unkXZ", + "offset": 104 + }, + { + "type": "int32_t", + "name": "unkYY", + "offset": 108 + }, + { + "type": "int32_t", + "name": "unkYZ", + "offset": 112 + }, + { + "type": "TSExplicitList_EvtHandler", + "name": "m_queueHandlerList", + "arrsize": 36, + "offset": 116 + }, + { + "type": "TSExplicitList_EvtMessage", + "name": "m_queueMessageList", + "offset": 548 + }, + { + "type": "uint32_t", + "name": "m_queueSyncButtonState", + "offset": 560 + }, + { + "type": "TSExplicitList_EvtKeyDown", + "name": "m_queueSyncKeyDownList", + "offset": 564 + }, + { + "type": "EvtIdTable_pointer_to_EvtTimer", + "name": "m_timerIdTable", + "offset": 576 + }, + { + "type": "EvtTimerQueue", + "name": "m_timerQueue", + "offset": 608 + }, + { + "type": "HPROPCONTEXT", + "name": "m_propContext", + "offset": 628 + }, + { + "type": "void*", + "name": "m_callContext", + "offset": 632 + }, + { + "type": "uint32_t", + "name": "m_startWatchdog", + "offset": 636 + } + ] + } + ], + "unions": [ + { + "name": "CGxStateBom__m_data", + "members": [ + { + "type": "int32_t", + "name": "i", + "arrsize": 3 + }, + { + "type": "uint32_t", + "name": "u", + "arrsize": 3 + }, + { + "type": "float", + "name": "f", + "arrsize": 3 + }, + { + "type": "void*", + "name": "p" + } + ] + }, + { + "name": "ubyte4__0000", + "members": [ + { + "type": "uint8_t", + "name": "b", + "arrsize": 4 + }, + { + "type": "uint32_t", + "name": "u" + } + ] + }, + { + "name": "BLPHeader__extended", + "members": [ + { + "type": "BlpPalPixel", + "name": "palette", + "arrsize": 256 + }, + { + "type": "BLPJPEGHeader", + "name": "jpeg" + } + ] + }, + { + "name": "TGAHeader__0019", + "members": [ + { + "type": "uint8_t", + "name": "bImageDescriptor" + }, + { + "type": "TGAImageDesc", + "name": "desc" + } + ] + } + ] +}